diff options
author | wiz <wiz> | 2003-07-12 10:23:24 +0000 |
---|---|---|
committer | wiz <wiz> | 2003-07-12 10:23:24 +0000 |
commit | fd7c9dd69da8cf74d7334883af56b8bddb05eb5e (patch) | |
tree | e1c7463ce2c6e85ae9267af4bfa54eafca8b3369 | |
parent | 1fe89e587797b2adcf63c84b59a0ead0f82a8f67 (diff) | |
download | pkgsrc-fd7c9dd69da8cf74d7334883af56b8bddb05eb5e.tar.gz |
Update to 3.1.7, provided by Toru TAKAMIZU in PR 22007.
-getmail_mbox.py was missing an import for the string module.
Thanks to Emily Jackson for the report. This was introduced in
3.1.6.
-Argh; my change to getmail_mbox was incomplete -- not only would
getmail not put duplicate From_ lines in, it would escape the
single one that it did. This fixes it, so don't bother filing
a bug report about this one.
-Fredrik Steen reported that getmail was adding a duplicate From_
line when using getmail_mbox to deliver to mbox files. Fixed.
-Added -q and --quiet flags to getmail_mbox to suppress warning
message.
-removed the experimental message_filter code; it was unworkable.
If you want to filter messages, use a filtering MDA. getmail
works fine with maildrop, procmail, and other MDAs. Thanks to
Dan Hensley for experimenting with the message_filter functionality.
-message logging inconsistently used local time; changed to GMT
for consistency. Thanks to Markus Vetter for the report.
-address_no_brackets couldn't handle empty strings. Fixed; thanks
to Fredrik Steen for the report.
-rw-r--r-- | mail/getmail/Makefile | 18 | ||||
-rw-r--r-- | mail/getmail/distinfo | 6 |
2 files changed, 12 insertions, 12 deletions
diff --git a/mail/getmail/Makefile b/mail/getmail/Makefile index 0c1ee3993a0..3a01798628e 100644 --- a/mail/getmail/Makefile +++ b/mail/getmail/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2003/03/22 03:39:48 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2003/07/12 10:23:24 wiz Exp $ # -DISTNAME= getmail-3.1.1 +DISTNAME= getmail-3.1.7 CATEGORIES= mail MASTER_SITES= http://www.qcc.ca/~charlesc/software/getmail-3.0/ \ http://www.qcc.ca/~charlesc/software/getmail-3.0/old-versions/ @@ -24,16 +24,16 @@ OWN_DIRS+= ${PREFIX}/share/doc/html/getmail OWN_DIRS+= ${PREFIX}/libexec/getmail post-patch: - ${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail \ + @${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail \ > ${WRKSRC}/getmail.done1 - ${SED} "s,\`which python\`,${PYTHONBIN}," <${WRKSRC}/getmail.done1 \ + @${SED} "s,\`which python\`,${PYTHONBIN}," <${WRKSRC}/getmail.done1 \ > ${WRKSRC}/getmail.done2 - ${MV} ${WRKSRC}/getmail.done2 ${WRKSRC}/getmail - ${MV} ${WRKSRC}/getmail_maildir ${WRKSRC}/getmail_maildir.tmp - ${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail_maildir.tmp \ + @${MV} ${WRKSRC}/getmail.done2 ${WRKSRC}/getmail + @${MV} ${WRKSRC}/getmail_maildir ${WRKSRC}/getmail_maildir.tmp + @${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail_maildir.tmp \ > ${WRKSRC}/getmail_maildir - ${MV} ${WRKSRC}/getmail_mbox ${WRKSRC}/getmail_mbox.tmp - ${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail_mbox.tmp \ + @${MV} ${WRKSRC}/getmail_mbox ${WRKSRC}/getmail_mbox.tmp + @${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail_mbox.tmp \ > ${WRKSRC}/getmail_mbox do-install: diff --git a/mail/getmail/distinfo b/mail/getmail/distinfo index 635e0aefda2..1785aca3e21 100644 --- a/mail/getmail/distinfo +++ b/mail/getmail/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2003/03/22 03:39:48 wiz Exp $ +$NetBSD: distinfo,v 1.7 2003/07/12 10:23:24 wiz Exp $ -SHA1 (getmail-3.1.1.tar.gz) = a4c3290b90d8b530850671a903647511e56b7448 -Size (getmail-3.1.1.tar.gz) = 64046 bytes +SHA1 (getmail-3.1.7.tar.gz) = 8b4adc2c8edd4e29c53f0197f94165a260cd644c +Size (getmail-3.1.7.tar.gz) = 64569 bytes |