c574666897
- 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.
20 lines
764 B
Text
20 lines
764 B
Text
$NetBSD: patch-Makefile.in,v 1.1 2017/10/28 04:51:06 schmonz Exp $
|
|
|
|
Override hard-coded user and group.
|
|
|
|
--- Makefile.in.orig 2017-10-24 00:12:35.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -790,10 +790,10 @@ install-data-local:
|
|
chmod 600 $(DESTDIR)$(localstatedir)/trigger
|
|
|
|
install-root:
|
|
- chown nullmail $(DESTDIR)$(localstatedir)/*
|
|
- chown nullmail $(DESTDIR)$(sbindir)/nullmailer-queue
|
|
+ chown ${NULLMAILER_USER}:${NULLMAILER_GROUP} $(DESTDIR)$(localstatedir)/*
|
|
+ chown ${NULLMAILER_USER}:${NULLMAILER_GROUP} $(DESTDIR)$(sbindir)/nullmailer-queue
|
|
chmod u+s $(DESTDIR)$(sbindir)/nullmailer-queue
|
|
- chown nullmail $(DESTDIR)$(bindir)/mailq
|
|
+ chown ${NULLMAILER_USER}:${NULLMAILER_GROUP} $(DESTDIR)$(bindir)/mailq
|
|
chmod u+s $(DESTDIR)$(bindir)/mailq
|
|
|
|
dist-hook:
|