-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The latest version introduced a bunch of new settings. Allow to tune them. Release notes: https://www.sogo.nu/news/2024/sogo-v5100-released.html
- Loading branch information
Showing
4 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,6 +193,12 @@ | |
'password_recovery_domains' => ['example.com'], | ||
'jwt_secret' => sensitive('secret'), | ||
'create_identities_disabled' => true, | ||
'url_encryption_enabled' => true, | ||
'url_encryption_passphrase' => sensitive('this is a secret'), | ||
'global_address_book_first_entries' => true, | ||
'global_address_book_first_entries_count' => 10, | ||
'secret_type' => 'env', | ||
'secret_value' => 'SOGO_SECRET', | ||
|
||
# Authentication using LDAP | ||
'ldap_contact_info_attribute' => 'comment', | ||
|
@@ -208,6 +214,7 @@ | |
'store_url' => 'postgresql://sogo:[email protected]:5432/sogo/sogo_store', | ||
'acl_url' => 'postgresql://sogo:[email protected]:5432/sogo/sogo_acl', | ||
'cache_folder_url' => 'postgresql://sogo:[email protected]:5432/sogo/sogo_cache_folder', | ||
'admin_url' => 'postgresql://sogo:[email protected]:5432/sogo/sogo_admin', | ||
|
||
'mailing_mechanism' => 'smtp', | ||
'smtp_server' => 'smtp://localhost:587/?tls=YES&tlsVerifyMode=allowInsecureLocalhost', | ||
|
@@ -620,6 +627,12 @@ | |
); | ||
SOGoJWTSecret = "secret"; | ||
SOGoCreateIdentitiesDisabled = YES; | ||
SOGoURLEncryptionEnabled = YES; | ||
SOGoURLEncryptionPassphrase = "this is a secret"; | ||
SOGoGlobalAddressBookFirstEntries = YES; | ||
SOGoGlobalAddressBookFirstEntriesCount = 10; | ||
SOGoSecretType = "env"; | ||
SOGoSecretValue = "SOGO_SECRET"; | ||
/* Database Configuration */ | ||
SOGoProfileURL = "mysql://sogo:[email protected]:3306/sogo/sogo_user_profile"; | ||
|
@@ -630,6 +643,7 @@ | |
OCSStoreURL = "postgresql://sogo:[email protected]:5432/sogo/sogo_store"; | ||
OCSAclURL = "postgresql://sogo:[email protected]:5432/sogo/sogo_acl"; | ||
OCSCacheFolderURL = "postgresql://sogo:[email protected]:5432/sogo/sogo_cache_folder"; | ||
OCSAdminURL = "postgresql://sogo:[email protected]:5432/sogo/sogo_admin"; | ||
/* Authentication using LDAP */ | ||
SOGoLDAPContactInfoAttribute = "comment"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters