Created
July 25, 2020 22:53
-
-
Save lennartkoopmann/890988801288f609d959368b2570a881 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
alerting { | |
# Notifications and callbacks for triggered alerts. | |
callbacks: [ | |
{ | |
type: email | |
enabled: false | |
# One of: SMTP, SMTPS or SMTP_TLS | |
transport_strategy: SMTP_TLS | |
host: smtp.example.org | |
port: 587 | |
username: "your_username" | |
password: "your_password" | |
from: "nzyme <[email protected]>" | |
subject_prefix: "[NZYME]" | |
recipients: [ | |
"Somebody <[email protected]>", | |
"Somebody Else <[email protected]>" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment