1
0

Initial Commit

This commit is contained in:
2022-01-03 21:49:48 +01:00
commit ff0e1ecee8
9 changed files with 280 additions and 0 deletions

1
src/mail.ini Normal file
View File

@ -0,0 +1 @@
sendmail_path = "/usr/bin/msmtp -t"

10
src/msmtprc Normal file
View File

@ -0,0 +1,10 @@
account default
host nathan.nehmer.net
tls on
tls_starttls on
domain docker.nehmer.net
from postmaster@nehmer.net
maildomain nehmer.net

16
src/ssmtp.conf Normal file
View File

@ -0,0 +1,16 @@
#
# /etc/ssmtp.conf -- a config file for sSMTP sendmail.
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=postmaster
# The place where the mail goes. The actual machine name is required
# no MX records are consulted. Commonly mailhosts are named mail.domain.com
# The example will fit if you are in domain.com and you mailhub is so named.
mailhub=nathan.nehmer.net
# Where will the mail seem to come from?
rewriteDomain=nehmer.net
# The full hostname
hostname=docker.nehmer.net
UseSTARTTLS=Yes