-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: Mail transport agent to enable email notifications in docker
This adds the `msmtp` and `msmtp-mta` packages to achieve ability of sending email notifications from docker container. Default `gvmd` image has no MTA but tries to send emails via local mailer (and always fails for sure). With msmtp user can send emails to a single preferred SMTP server.
- Loading branch information
1 parent
149ee59
commit e0b092d
Showing
3 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ | |
|
||
#!/bin/bash | ||
|
||
. setup-mta | ||
exec gosu gvmd "$@" |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# Make any changes only when MTA_HOST has been set | ||
if [ -n MTA_HOST ]; then | ||
echo "setting up configuration file for mail agent" | ||
CONFIG="/etc/msmtprc" | ||
echo "host $MTA_HOST" > $CONFIG | ||
[ -n MTA_PORT ] && echo "port $MTA_PORT" >> $CONFIG | ||
[ -n MTA_TLS ] && echo "tls $MTA_TLS" >> $CONFIG | ||
[ -n MTA_STARTTLS ] && echo "tls_starttls $MTA_STARTTLS" >> $CONFIG | ||
[ -n MTA_AUTH ] && echo "auth $MTA_AUTH" >> $CONFIG | ||
[ -n MTA_USER ] && echo "user $MTA_USER" >> $CONFIG | ||
[ -n MTA_FROM ] && echo "from $MTA_FROM" >> $CONFIG | ||
[ -n MTA_PASSWORD ] && echo "password $MTA_PASSWORD" >> $CONFIG | ||
[ -n MTA_LOGFILE ] && echo "logfile $MTA_LOGFILE" >> $CONFIG | ||
chown gvmd:mail $CONFIG | ||
chmod 750 $CONFIG | ||
fi |