-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
email reporter: Allow multiple recipients for sendmail method (#797, …
…by monperrus) Co-authored-by: Thomas Perl <[email protected]>
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ The list of built-in reporters can be retrieved using:: | |
At the moment, the following reporters are built-in: | ||
|
||
- **discord**: Send a message to a Discord channel | ||
- **email**: Send summary via e-mail / SMTP | ||
- **email**: Send summary via e-mail / SMTP / sendmail | ||
- **ifttt**: Send summary via IFTTT | ||
- **mailgun**: Send e-mail via the Mailgun service | ||
- **matrix**: Send a message to a room using the Matrix protocol | ||
|
@@ -290,6 +290,21 @@ public Matrix room, as the messages quickly become noisy: | |
minimal: true | ||
enabled: true | ||
E-Mail via sendmail | ||
--------------------- | ||
|
||
You can send email via the system's ``sendmail`` command provided by the MTA. You need to set ``method: sendmail`` in the config file: | ||
|
||
.. code:: yaml | ||
report: | ||
email: | ||
enabled: true | ||
from: '[email protected]' | ||
to: '[email protected]' | ||
method: sendmail | ||
E-Mail via GMail SMTP | ||
--------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters