feat(alarms): Add possibility to use SMTP master account for system alarms. Fixes #5565.

This commit is contained in:
smizrahi
2023-02-20 17:23:17 +01:00
parent 1964ef0358
commit 7faf4eb2f4
+7 -3
View File
@@ -2801,9 +2801,13 @@ As a reference, the _cronjob_ should de defined like this:
* * * * *     /usr/sbin/sogo-ealarms-notify
----
If your mail server requires use of SMTP AUTH, specify a credential file
using `-p /path/to/credFile`. This file should contain the username and
password, separated by a colon (`username:password`)
If your mail server requires use of SMTP AUTH, you can use the following parameters in the configuration file :
```
SOGoSMTPMasterUserEnabled = YES;
SOGoSMTPMasterUserUsername = "foo";
SOGoSMTPMasterUserPassword = "bar";
```
_Cronjob_ — Vacation messages activation and expiration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~