diff options
-rw-r--r-- | mail-mta/qmail/ChangeLog | 6 | ||||
-rw-r--r-- | mail-mta/qmail/Manifest | 4 | ||||
-rw-r--r-- | mail-mta/qmail/files/1.03-r16/qmail-remote-auth-log-fix.patch | 22 |
3 files changed, 18 insertions, 14 deletions
diff --git a/mail-mta/qmail/ChangeLog b/mail-mta/qmail/ChangeLog index cd43087d3420..a4b488464cdd 100644 --- a/mail-mta/qmail/ChangeLog +++ b/mail-mta/qmail/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-mta/qmail # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/qmail/ChangeLog,v 1.57 2005/08/11 19:39:26 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/qmail/ChangeLog,v 1.58 2005/08/12 20:42:39 hansmi Exp $ + + 12 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> + files/1.03-r16/qmail-remote-auth-log-fix.patch: + Fixed patch from yesterday. 11 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> +files/1.03-r16/qmail-remote-auth-log-fix.patch, qmail-1.03-r16.ebuild: diff --git a/mail-mta/qmail/Manifest b/mail-mta/qmail/Manifest index 1b3a431bc0cc..d75a5a590cdc 100644 --- a/mail-mta/qmail/Manifest +++ b/mail-mta/qmail/Manifest @@ -1,5 +1,5 @@ MD5 e60e7e9ed6a2c7d3a2ebcee6a6af429e metadata.xml 277 -MD5 cf73165693cff42ec721ccba8ce58f41 ChangeLog 31475 +MD5 560a7b0266aa8051a626054259c18310 ChangeLog 31610 MD5 16dfdae5cae93a2fcd988b3205bc2496 qmail-1.03-r16.ebuild 21423 MD5 8eb5e85638263cb9b63ea67369b8a886 qmail-1.03-r15.ebuild 18864 MD5 7db09ceb9337348431fb9f8418e5892e files/dot_qmail-log 276 @@ -57,7 +57,7 @@ MD5 dbfe7d95b274567088123575d5da00ba files/1.03-r16/gentoo-qmail-1.03-r16-loggin MD5 a1e8f454e96a2b23e9daae34fa6b6b5e files/1.03-r16/qmail-1.03-accept-5xx.tls.patch 930 MD5 8f196c7649132af2c0c3745c1a5f1e9c files/1.03-r16/famd-dnotify.patch 555 MD5 d48eeee899c7999925dd64afd4109269 files/1.03-r16/nullenvsender-recipcount.tls.patch 1479 -MD5 de7443750483557900d6796409084e29 files/1.03-r16/qmail-remote-auth-log-fix.patch 418 +MD5 0f5e8b8c5d8ab208beee57281c7cf215 files/1.03-r16/qmail-remote-auth-log-fix.patch 475 MD5 72c4027c99c19158d4bbe3ed77efcae6 files/1.03-r16/double-bounce-trim.patch 1662 MD5 8d015331a1c3f0ad22f40bb6837569ca files/1.03-r16/qmail-logmail.patch 269 MD5 a8af4cf9b59e294737987624bc917e80 files/1.03-r16/smtpplugins 614 diff --git a/mail-mta/qmail/files/1.03-r16/qmail-remote-auth-log-fix.patch b/mail-mta/qmail/files/1.03-r16/qmail-remote-auth-log-fix.patch index d5d112b035f4..5d54021d6abd 100644 --- a/mail-mta/qmail/files/1.03-r16/qmail-remote-auth-log-fix.patch +++ b/mail-mta/qmail/files/1.03-r16/qmail-remote-auth-log-fix.patch @@ -1,11 +1,11 @@ ---- qmail-remote.c.orig 2005-08-11 21:35:35.000000000 +0200 -+++ qmail-remote.c 2005-08-11 21:35:44.000000000 +0200 -@@ -672,7 +672,7 @@ - * James Raftery <james@now.ie> - * Log _real_ envelope recipient, post canonicalisation. - */ -- out("r"); out(auth_status.s); -+ out("r"); out("Delivered to "); - out("<"); outsafe(&reciplist.sa[i]); out("> "); zero(); - flagbother = 1; - } +--- qmail-remote.c.orig 2005-08-12 22:04:43.000000000 +0200 ++++ qmail-remote.c 2005-08-12 22:09:01.000000000 +0200 +@@ -638,6 +638,8 @@ + substdio_put(&smtpto,sender.s,sender.len); + substdio_puts(&smtpto,">\r\n"); + substdio_flush(&smtpto); ++ if(!stralloc_copys(&auth_status, "Delivered with authenticated connection to \n")) temp_nomem(); ++ if(!stralloc_0(&auth_status)) temp_nomem(); + } else { + no_supported_auth(); + mail_without_auth(); |