mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
sogo: Allow adding IMAP accounts and changing full name
Configuration provided by David (https://discuss.freedombox.org/u/david/) Tests: - Install SOGo without patch and apply the patch. The app setup is run and new version of configuration file is installed. After logging into SOGo: - Mail settings shows an option to add IMAP account. - Editing Full Name in the identity of the default account is now possible. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
c479e2b819
commit
fe7d478099
@ -38,7 +38,7 @@ class SOGoApp(app_module.App):
|
||||
|
||||
app_id = 'sogo'
|
||||
|
||||
_version = 2
|
||||
_version = 3
|
||||
|
||||
def __init__(self) -> None:
|
||||
"""Create components for the app."""
|
||||
|
||||
@ -51,6 +51,10 @@ def _create_config(db_password: str):
|
||||
SOGoCalendarDefaultRoles = ("PublicViewer", "ConfidentialDAndTViewer");
|
||||
SOGoAppointmentSendEMailNotifications = YES;
|
||||
SOGoRefreshViewCheck = "every_minute";
|
||||
/* Allow users to add their own additional IMAP accounts */
|
||||
SOGoMailAuxiliaryUserAccountsEnabled = YES;
|
||||
/* Allow users to change their full name in default account */
|
||||
SOGoMailCustomFromEnabled = YES;
|
||||
|
||||
/* Authentication */
|
||||
SOGoMaximumFailedLoginCount = "10";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user