diff options
author | Joerg Jung <jung@cvs.openbsd.org> | 2016-05-03 18:43:46 +0000 |
---|---|---|
committer | Joerg Jung <jung@cvs.openbsd.org> | 2016-05-03 18:43:46 +0000 |
commit | ad5a22515d4bb07e1a70cfd730aa53c327daebcb (patch) | |
tree | a83ec594085e4961ad377ccade24f1e702ecd972 /etc | |
parent | 69f677b10faa7c45574431f001f1d500a2b19c9f (diff) |
listen directive may use a table for authentication, to make this work the
table has to be defined BEFORE
consequently move all tables in the examples to the beginning and before the
listen directive to avoid tables not being found
no functional change
ran into this myself earlier, also reported by cjones via irc
ok gilles
Diffstat (limited to 'etc')
-rw-r--r-- | etc/mail/smtpd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/mail/smtpd.conf b/etc/mail/smtpd.conf index 0e550637473..9b489619934 100644 --- a/etc/mail/smtpd.conf +++ b/etc/mail/smtpd.conf @@ -1,14 +1,14 @@ -# $OpenBSD: smtpd.conf,v 1.8 2015/12/21 16:25:44 sunil Exp $ +# $OpenBSD: smtpd.conf,v 1.9 2016/05/03 18:43:45 jung Exp $ # This is the smtpd server system-wide configuration file. # See smtpd.conf(5) for more information. +table aliases file:/etc/mail/aliases + # To accept external mail, replace with: listen on all # listen on lo0 -table aliases file:/etc/mail/aliases - # Uncomment the following to accept external mail for domain "example.org" # # accept from any for domain "example.org" alias <aliases> deliver to mbox |