diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2020-06-02 02:38:54 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2020-06-02 02:38:54 +0000 |
| commit | cb99e93575e8f5df7345a0bdb7104ff46fdeec5c (patch) | |
| tree | 3c24cad17aeac5bfa7bc3ad4b5fa227bba46ba88 /etc | |
| parent | ef1eabca5d6b0b998490d328b2e99f8f19a7569d (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/Makefile | 9 | ||||
| -rw-r--r-- | etc/mail/mailer.conf | 3 |
2 files changed, 7 insertions, 5 deletions
diff --git a/etc/Makefile b/etc/Makefile index 78a60b6fcb306..8ca259b10a17c 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -17,11 +17,10 @@ SUBDIR+=sendmail # NB: keep these sorted by MK_* knobs -.if ${MK_SENDMAIL} == "no" -ETCMAIL=mailer.conf aliases -.else -ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \ - mailertable.sample aliases +ETCMAIL=aliases +.if ${MK_SENDMAIL} != "no" +ETCMAIL+=Makefile README access.sample virtusertable.sample \ + mailertable.sample .endif # Special top level files for FreeBSD diff --git a/etc/mail/mailer.conf b/etc/mail/mailer.conf index 3f4bd392639ba..12f28885fb2eb 100644 --- a/etc/mail/mailer.conf +++ b/etc/mail/mailer.conf @@ -2,6 +2,9 @@ # # Execute the "real" sendmail program, named /usr/libexec/sendmail/sendmail # +# If dma(8) is installed, an example mailer.conf that uses dma(8) instead can +# can be found in /usr/share/examples/dma. +# sendmail /usr/libexec/sendmail/sendmail mailq /usr/libexec/sendmail/sendmail newaliases /usr/libexec/sendmail/sendmail |
