diff options
author | schmonz <schmonz@pkgsrc.org> | 2017-10-28 04:51:06 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2017-10-28 04:51:06 +0000 |
commit | 9bd8182f200ecb0fff3bc62a96d41de03b50a511 (patch) | |
tree | d560fd874f9e57fc1d2c333124bd6b663f7b6578 /mail/nullmailer/options.mk | |
parent | bb5ca75abf544f6adf398f881a919fb482def0ba (diff) | |
download | pkgsrc-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/options.mk')
-rw-r--r-- | mail/nullmailer/options.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/nullmailer/options.mk b/mail/nullmailer/options.mk index e83af9ec7c9..fb6ef5b313e 100644 --- a/mail/nullmailer/options.mk +++ b/mail/nullmailer/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2015/03/11 15:18:51 wiedi Exp $ +# $NetBSD: options.mk,v 1.2 2017/10/28 04:51:06 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.nullmailer PKG_SUPPORTED_OPTIONS= gnutls @@ -9,5 +9,6 @@ PKG_SUGGESTED_OPTIONS= gnutls .if !empty(PKG_OPTIONS:Mgnutls) . include "../../security/gnutls/buildlink3.mk" CONFIGURE_ARGS+= --enable-tls +.else +CONFIGURE_ARGS+= --disable-tls .endif # option gnutls - |