diff --git a/plinth/modules/email/__init__.py b/plinth/modules/email/__init__.py index 867a3f824..dae3bb869 100644 --- a/plinth/modules/email/__init__.py +++ b/plinth/modules/email/__init__.py @@ -183,10 +183,10 @@ def setup(helper, old_version=None): helper.call('post', privileged.postfix.setup) helper.call('post', privileged.spam.setup) - # Reload - actions.superuser_run('service', ['reload', 'postfix']) - actions.superuser_run('service', ['reload', 'dovecot']) - actions.superuser_run('service', ['reload', 'rspamd']) + # Restart daemons + actions.superuser_run('service', ['try-restart', 'postfix']) + actions.superuser_run('service', ['try-restart', 'dovecot']) + actions.superuser_run('service', ['try-restart', 'rspamd']) # Expose to public internet helper.call('post', app.enable)