diff options
author | 2018-05-24 11:40:17 +0000 | |
---|---|---|
committer | 2018-05-24 11:40:17 +0000 | |
commit | 72c624f6e3189626cc1acfaa47b3541948a0cbed (patch) | |
tree | 15baca08858ac2fd3f77843fa00fb177dddd513d | |
parent | sync (diff) | |
download | wireguard-openbsd-72c624f6e3189626cc1acfaa47b3541948a0cbed.tar.xz wireguard-openbsd-72c624f6e3189626cc1acfaa47b3541948a0cbed.zip |
update default config to new grammar
ok eric@
-rw-r--r-- | etc/mail/smtpd.conf | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/etc/mail/smtpd.conf b/etc/mail/smtpd.conf index 9b489619934..af8adea5dbe 100644 --- a/etc/mail/smtpd.conf +++ b/etc/mail/smtpd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: smtpd.conf,v 1.9 2016/05/03 18:43:45 jung Exp $ +# $OpenBSD: smtpd.conf,v 1.10 2018/05/24 11:40:17 gilles Exp $ # This is the smtpd server system-wide configuration file. # See smtpd.conf(5) for more information. @@ -9,8 +9,11 @@ table aliases file:/etc/mail/aliases # listen on lo0 +action "local" mbox alias <aliases> +action "relay" relay + # Uncomment the following to accept external mail for domain "example.org" # -# accept from any for domain "example.org" alias <aliases> deliver to mbox -accept for local alias <aliases> deliver to mbox -accept from local for any relay +# match from any for domain "example.org" action "local" +match for local action "local" +match from local for any action "relay" |