summaryrefslogtreecommitdiffstats
path: root/theos.kyriasis.com
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-03-07 07:48:17 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2016-03-07 07:48:17 +0100
commit2caad1713e1dd64a7f4db9a27984b4762a0694b5 (patch)
tree13c808d22c22ff546d4ba5271e597e60cb948db3 /theos.kyriasis.com
parent323969c17a5c18ab99faa104fa7570a19587683e (diff)
downloadsmtpd-conf-2caad1713e1dd64a7f4db9a27984b4762a0694b5.tar.xz
smtpd.conf: Do a masquerade on senders table
Only lets people send using their proper addresses. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'theos.kyriasis.com')
-rw-r--r--theos.kyriasis.com/smtpd.conf13
1 files changed, 7 insertions, 6 deletions
diff --git a/theos.kyriasis.com/smtpd.conf b/theos.kyriasis.com/smtpd.conf
index 03f1de5..7ef11dc 100644
--- a/theos.kyriasis.com/smtpd.conf
+++ b/theos.kyriasis.com/smtpd.conf
@@ -12,23 +12,24 @@ pki theos.kyriasis.com key "/etc/ssl/kyriasis-wosign/private.key"
# If you edit the file, you have to run "smtpctl update table users"
table users file:/etc/smtpd/users
+table sendertable file:/etc/smtpd/senders
##
# Listen directives
#
-listen on eth0 port 25 tls pki theos.kyriasis.com auth-optional
-listen on eth0 port 587 tls-require pki theos.kyriasis.com auth
-listen on eth0 port 465 smtps pki theos.kyriasis.com auth
+listen on ens4 port 25 tls pki theos.kyriasis.com auth-optional senders <sendertable> masquerade
+listen on ens4 port 587 tls-require pki theos.kyriasis.com auth senders <sendertable> masquerade
+listen on ens4 port 465 smtps pki theos.kyriasis.com auth senders <sendertable> masquerade
-listen on tun0 port 25 tls pki theos.kyriasis.com auth-optional
-listen on tun0 port 587 tls-require pki theos.kyriasis.com auth
+listen on cjdns port 25 tls pki theos.kyriasis.com auth-optional senders <sendertable> masquerade
+listen on cjdns port 587 tls-require pki theos.kyriasis.com auth senders <sendertable> masquerade
listen on lo port 10026 tag DKIM-IN
listen on lo port 10029 tag DKIM-OUT
-listen on localhost
+listen on localhost senders <sendertable> masquerade
##