d263f96ea3
- nullmailer-send no longer generates bounces for rejected bounces. Thanks Fejes József - Fixed compile error in sendmail on GCC older than 4.9. - Fixed treating authentication failure as message rejection. Thanks Fejes József - nullmailer-inject now sets the full name of the sender to the user name as a fallback. This helps distinguish system sent messages when the MTA rewrites the address (as does GMail, for example). - Fixed compatibility issue with gnutls 3.6 (and possibly others).
14 lines
364 B
Makefile
14 lines
364 B
Makefile
# $NetBSD: options.mk,v 1.3 2018/10/13 14:38:54 schmonz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.nullmailer
|
|
PKG_SUPPORTED_OPTIONS= gnutls
|
|
PKG_SUGGESTED_OPTIONS= gnutls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgnutls)
|
|
. include "../../security/gnutls/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-tls
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-tls
|
|
.endif
|