summaryrefslogtreecommitdiff
path: root/mail/nullmailer/files/nullmailer-daemon
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2017-10-28 04:51:06 +0000
committerschmonz <schmonz@pkgsrc.org>2017-10-28 04:51:06 +0000
commit9bd8182f200ecb0fff3bc62a96d41de03b50a511 (patch)
treed560fd874f9e57fc1d2c333124bd6b663f7b6578 /mail/nullmailer/files/nullmailer-daemon
parentbb5ca75abf544f6adf398f881a919fb482def0ba (diff)
downloadpkgsrc-9bd8182f200ecb0fff3bc62a96d41de03b50a511.tar.gz
Update to 2.1. From the changelog:
- Added support for TLS anonymous authentication. Thanks Uffe Jakobsen. - Fixed sendmail wrapper handling of empty sender on command line. Thanks Sebastian Wiedenroth. - Fixed handling of quoted strings in the "remotes" file. Thanks Mihai Moldovan. - Fixed nullmailer-inject handling of leading "From " lines. - Some build fixes. - Fixed bogus temporary gethostbyname error message when the protocol source address was incorrect. - Fixed potential race condition in tests. Thanks Felix Lechner. - Fixed handling of time values on 32-bit big-endian systems. Thanks Felix Lechner. - Added support to nullmailer-send to move permanently failing messages out of the queue, and to generate bounce messages. - Added support for IPv6. - Added program to generate bounce/delay messages. - Added an "allmailfrom" control file to nullmailer-queue, causing all messages to share a hard-coded envelope sender. - Added logging the message sender/recipient in nullmailer-send. - Improved handling of system errors when reading config files. - Secured handling of password options for protocol modules. - Support standard shell quoting for options in the "remotes" file. - Added protocol option to set a separate TLS client private key file. - Added protocol option to bind the source address on connections. - Fixed nullmailer-inject to report errors to stderr. - Fixed gnutls cast to pointer from integer of different size warning. - Fixed nullmailer-inject and -queue to handle the null (empty) sender address. Needed for RFC 3798 (Message Disposition Notification). - Moved spool directory to /var/spool/nullmailer like other MTAs.
Diffstat (limited to 'mail/nullmailer/files/nullmailer-daemon')
-rw-r--r--mail/nullmailer/files/nullmailer-daemon13
1 files changed, 0 insertions, 13 deletions
diff --git a/mail/nullmailer/files/nullmailer-daemon b/mail/nullmailer/files/nullmailer-daemon
deleted file mode 100644
index 468b146cf9c..00000000000
--- a/mail/nullmailer/files/nullmailer-daemon
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# ensure that the trigger fifo exists and we own it, then start up
-# nullmailer-send with logging and detach
-
-trigger="@VARBASE@/spool/nullmailer/trigger"
-
-if [ ! -p ${trigger} -o ! -O ${trigger} -o ! -G ${trigger} ]; then
- rm -f ${trigger}
- mkfifo -m 0600 ${trigger}
-fi
-
-@PREFIX@/libexec/nullmailer/nullmailer-send 2>&1 | logger -t nullmailer -p mail.info &