From 1151cd3cbefdde14b0dad6738a0ded43c508515d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 12 Aug 2020 12:29:14 +0200 Subject: [PATCH] Add app config option to disable "Email was changed by admin" email Signed-off-by: Morris Jobke --- .../config_sample_php_parameters.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index c070f05e1..a6d531a93 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -2016,3 +2016,18 @@ which are older then the number of days that is set for ``activity_expire_days`` 'wnd.logging.enable' => true, This enables debug logs for the windows_network_drive app. + +Settings app +^^^^^^^^^^^^ + +If an email address of a user is changed by an admin, then it triggers an email +to the user that states "Your email address on URL was changed by an +administrator.". In some cases this should not be triggered, because it was a +normal maintenance change. To disable this specific email the appconfig option +``disable_email.email_address_changed_by_admin`` can be set to ``yes``:: + + occ config:app:set settings disable_email.email_address_changed_by_admin --value yes + +To disable this behaviour change it to any other value or delete the app config:: + + occ config:app:delete settings disable_email.email_address_changed_by_admin