diff options
author | schmonz <schmonz@pkgsrc.org> | 2006-12-29 10:32:05 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2006-12-29 10:32:05 +0000 |
commit | 980985d25bbbf8023d55a0d7f2fe99337c2fa81d (patch) | |
tree | 4d32f4a79c54687be0a2e0bb1c1b48bca87bf229 /mail/qmail/options.mk | |
parent | 2a09af0f4eed6a07569c49a5f5b32948795342c3 (diff) | |
download | pkgsrc-980985d25bbbf8023d55a0d7f2fe99337c2fa81d.tar.gz |
Update to nb12 (is this a record?). From the respective patch changelogs:
* Update qregex patch (PR pkg/34760) to 20060423:
- qregex adds the matched regex pattern to its log entries if the
LOGREGEX environment variable is set.
* Update realrcptto patch to 20061210:
- Logging uses substdio_puts() and substdio_flush() instead of
substdio_putsflush(). This makes log entries less likely to be
interleaved. Thanks to Matthew Dempsky for finding this.
- For QMAILRRTENYALL, use error code 554 after DATA, not 550.
Thanks to ... sorry, I lost track of who found this.
- Log stat() errors for .qmail files. Thanks to Chris Bensend for
suggesting this.
* Update tls-smtpauth combined patch to 20060105. TLS changes:
- bug: qmail-remote loops on malformed server response (B. Shupp,
A. Meltzer)
- no STARTTLS advertised when control/servercert.pem absent (Jason
Haar)
- control/notlshosts (Albert Weichselbraun)
- control/tlshosts/exhaustivelist
- scripts honor conf-users (Sven Verdoolaege)
- strerror declaration in tls.c compile problem (Renato Botelho,
Bill Shupp)
- chown uid.gid deprecated, should be uid:gid (Bill Shupp)
SMTP AUTH changes:
- includes the evaluation of the 'Auth' and the 'Size' parameter
in the 'Mail From:' command.
- uses DJB functions to copy FDs.
- corrects some minor mistakes displaying the 'Auth' userid.
- uses keyword "ESMTPA" in Received header in case of authentication
to comply with RFC 3848.
pkgsrc changes:
* Note SPECIAL_PERMS on qmail-queue binary (from dsainty@).
Diffstat (limited to 'mail/qmail/options.mk')
-rw-r--r-- | mail/qmail/options.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/qmail/options.mk b/mail/qmail/options.mk index a2f7b234bbf..bc64c828027 100644 --- a/mail/qmail/options.mk +++ b/mail/qmail/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.21 2006/03/12 14:15:43 rillig Exp $ +# $NetBSD: options.mk,v 1.22 2006/12/29 10:32:05 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.qmail PKG_SUPPORTED_OPTIONS+= darwin sasl syncdir tls qmail-badrcptto qmail-bigdns @@ -51,7 +51,7 @@ SITES.${OUTGOINGIP_PATCH}= http://www.qmail.org/ .endif .if !empty(PKG_OPTIONS:Mqmail-qregex) -QREGEX_PATCH= qregex-20040725.patch +QREGEX_PATCH= qregex-20060423.patch PATCHFILES+= ${QREGEX_PATCH} SITES.${QREGEX_PATCH}= http://www.arda.homeunix.net/store/qmail/ PATCH_DIST_STRIP.${QREGEX_PATCH}= -p3 @@ -59,7 +59,7 @@ PLIST_SRC+= ${PKGDIR}/PLIST.qregex .endif .if !empty(PKG_OPTIONS:Mqmail-realrcptto) -REALRCPTTO_PATCH= qmail-1.03-realrcptto-2004.08.20.patch +REALRCPTTO_PATCH= qmail-1.03-realrcptto-2006.12.10.patch PATCHFILES+= ${REALRCPTTO_PATCH} SITES.${REALRCPTTO_PATCH}= http://code.dogmap.org/qmail/ PATCH_DIST_STRIP.${REALRCPTTO_PATCH}= -p1 @@ -70,11 +70,11 @@ PATCH_DIST_STRIP.${REALRCPTTO_PATCH}= -p1 PKG_OPTIONS+= sasl . endif . include "../../security/openssl/buildlink3.mk" -TLSSASL_PATCH= netqmail-1.05-tls-smtpauth-20040705.patch +TLSSASL_PATCH= netqmail-1.05-tls-smtpauth-20060105.patch PATCHFILES+= ${TLSSASL_PATCH} SITES.${TLSSASL_PATCH}= http://shupp.org/patches/ . if !empty(PKG_OPTIONS:Mtls) -CFLAGS+= -DTLS=20040419 # from the patch +CFLAGS+= -DTLS=20060104 # NOTE: update according to the patch DJB_INSTALL_TARGETS= cert tmprsadh USE_TOOLS+= gmake PLIST_SRC+= ${PKGDIR}/PLIST.tls |