summaryrefslogtreecommitdiffstats
path: root/lucifer.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 /lucifer.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 'lucifer.kyriasis.com')
-rw-r--r--lucifer.kyriasis.com/smtpd.conf9
1 files changed, 5 insertions, 4 deletions
diff --git a/lucifer.kyriasis.com/smtpd.conf b/lucifer.kyriasis.com/smtpd.conf
index 0f0efc7..2db7f99 100644
--- a/lucifer.kyriasis.com/smtpd.conf
+++ b/lucifer.kyriasis.com/smtpd.conf
@@ -12,19 +12,20 @@ pki lucifer.kyriasis.com key "/etc/smtpd/certs/lucifer.kyriasis.com.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 lucifer.kyriasis.com auth-optional
-listen on eth0 port 587 tls-require pki lucifer.kyriasis.com auth
-listen on eth0 port 465 smtps pki lucifer.kyriasis.com auth
+listen on enp0s4 port 25 tls pki lucifer.kyriasis.com auth-optional senders <sendertable> masquerade
+listen on enp0s4 port 587 tls-require pki lucifer.kyriasis.com auth senders <sendertable> masquerade
+listen on enp0s4 port 465 smtps pki lucifer.kyriasis.com auth senders <sendertable> masquerade
listen on lo port 10029 tag DKIM-OUT
-listen on localhost
+listen on localhost senders <sendertable> masquerade
##