diff --git a/plinth/modules/sogo/__init__.py b/plinth/modules/sogo/__init__.py index 732faed6e..ba4935ad5 100644 --- a/plinth/modules/sogo/__init__.py +++ b/plinth/modules/sogo/__init__.py @@ -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.""" diff --git a/plinth/modules/sogo/privileged.py b/plinth/modules/sogo/privileged.py index 7d7a13f95..39b6a198c 100644 --- a/plinth/modules/sogo/privileged.py +++ b/plinth/modules/sogo/privileged.py @@ -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";