pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/pkgsrc-2006Q1]: pkgsrc/mail/mailman Pullup ticket 1368 - requested by...
details: https://anonhg.NetBSD.org/pkgsrc/rev/ffb0220efa30
branches: pkgsrc-2006Q1
changeset: 510204:ffb0220efa30
user: salo <salo%pkgsrc.org@localhost>
date: Thu Apr 13 16:31:39 2006 +0000
description:
Pullup ticket 1368 - requested by bouyer
security update for mailman
Revisions pulled up:
- pkgsrc/mail/mailman/MESSAGE 1.4
- pkgsrc/mail/mailman/Makefile 1.33
- pkgsrc/mail/mailman/PLIST 1.10
- pkgsrc/mail/mailman/distinfo 1.11
- pkgsrc/mail/mailman/patches/patch-ai removed
- pkgsrc/mail/mailman/patches/patch-aj removed
Module Name: pkgsrc
Committed By: bouyer
Date: Mon Apr 10 20:33:12 UTC 2006
Modified Files:
pkgsrc/mail/mailman: MESSAGE Makefile PLIST distinfo
Removed Files:
pkgsrc/mail/mailman/patches: patch-ai patch-aj
Log Message:
Upgrade mailman to 2.1.8rc1, fix a cross-site scripting issue.
pkgsrc changes:
- install the admin/www/mailman-*.{pdf,ps,txt} documentation file, and
change MESSAGES to point to mailman-install.txt
changes between 2.1.7 and 2.1.8rc1:
- A cross-site scripting hole in the private archive script of 2.1.7
has been closed. Thanks to Moritz Naumann for its discovery.
- Bouncers support added: 'unknown user', Microsoft SMTPSVC, Prodigy.net
and several others.
- Updated email library to 2.5.7 which will encode payload into qp/base64
upon setting. This enabled backing out the scrubber related patches
including 'X-Mailman-Scrubbed' header in 2.1.7.
- Fix SpamDetect.py potential hold/reject loop problem.
- A warning message from email package to the stderr can cause error
in Logging because stderr may be detached from the process during
the qrunner run. We chose not to output errors to stderr but to
the logs/error if the process is running under mailmanctl subprocess.
- DKIM header cleansing was separated from Cleanse.py and added to
-owner messages too.
- Fixes: Lose Topics when go directly to topics URL (1194419).
UnicodeError running bin/arch (1395683). edithtml.py missing import
(1400128). Bad escape in cleanarch. Wrong timezone in list archive
index pages (1433673). bin/arch fails with TypeError (1430236).
Subscription fails with some Language combinations (1435722).
Postfix delayed notification not recognized (863989). 2.1.7 (VERP)
mistakes delay notice for bounce (1421285). show_qfiles: 'str'
object has no attribute 'as_string' (1444447). Utils.get_domain()
wrong if VIRTUAL_HOST_OVERVIEW off (1275856).
diffstat:
mail/mailman/MESSAGE | 7 ++-----
mail/mailman/Makefile | 10 ++++++----
mail/mailman/PLIST | 35 ++++++++++++++++++++++++++++++++++-
mail/mailman/distinfo | 10 ++++------
mail/mailman/patches/patch-ai | 17 -----------------
mail/mailman/patches/patch-aj | 17 -----------------
6 files changed, 46 insertions(+), 50 deletions(-)
diffs (210 lines):
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/MESSAGE
--- a/mail/mailman/MESSAGE Thu Apr 13 16:08:44 2006 +0000
+++ b/mail/mailman/MESSAGE Thu Apr 13 16:31:39 2006 +0000
@@ -1,5 +1,5 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.3 2003/12/23 11:02:13 xtraeme Exp $
+$NetBSD: MESSAGE,v 1.3.18.1 2006/04/13 16:31:39 salo Exp $
Mailman needs to know your mail domain and Web server hostname. Edit
${PREFIX}/lib/mailman/Mailman/mm_cfg.py and insert your hostname
@@ -19,9 +19,6 @@
You can use ${EXECDIR}/cron/crontab.in as template.
See the files in ${DOCDIR} for how to use mailman,
-especially the sections:
-
- 4, starting with 'Create a "site-wide" mailing list'.
- 5, 'Customizing Mailman'
+especially the file ${DOCDIR}/mailman-install.txt
===========================================================================
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/Makefile
--- a/mail/mailman/Makefile Thu Apr 13 16:08:44 2006 +0000
+++ b/mail/mailman/Makefile Thu Apr 13 16:31:39 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.32 2006/03/14 01:14:30 jlam Exp $
+# $NetBSD: Makefile,v 1.32.2.1 2006/04/13 16:31:39 salo Exp $
-DISTNAME= mailman-2.1.7
-PKGREVISION= 2
+DISTNAME= mailman-2.1.8rc1
CATEGORIES= mail www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mailman/}
EXTRACT_SUFX= .tgz
@@ -20,7 +19,6 @@
GNU_CONFIGURE_PREFIX= ${EXECDIR}
MAKE_FLAGS+= DIRSETGID=${TRUE:Q}
-
EXECDIR= ${PREFIX}/lib/mailman
MAILMAN_DATADIR?= ${VARBASE}/db/mailman
EGDIR= ${PREFIX}/share/examples/mailman
@@ -112,6 +110,10 @@
cd ${WRKSRC} && for i in [A-IN-U]*; do \
${INSTALL_DATA} $$i ${DOCDIR}/; \
done
+ cd ${WRKSRC}/admin/www && for i in \
+ mailman-*.ps mailman-*.pdf mailman-*.txt; do \
+ ${INSTALL_DATA} $$i ${DOCDIR}/; \
+ done
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKDIR}/mailman.conf.dist ${EGDIR}/mailman.conf
${CHOWN} -R root:${MAILMAN_GROUP} ${EXECDIR}
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/PLIST
--- a/mail/mailman/PLIST Thu Apr 13 16:08:44 2006 +0000
+++ b/mail/mailman/PLIST Thu Apr 13 16:31:39 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2006/01/21 16:14:24 bouyer Exp $
+@comment $NetBSD: PLIST,v 1.9.2.1 2006/04/13 16:31:39 salo Exp $
lib/mailman/Mailman/Archiver/Archiver.py
lib/mailman/Mailman/Archiver/Archiver.pyc
lib/mailman/Mailman/Archiver/HyperArch.py
@@ -163,6 +163,8 @@
lib/mailman/Mailman/Handlers/CalcRecips.pyc
lib/mailman/Mailman/Handlers/Cleanse.py
lib/mailman/Mailman/Handlers/Cleanse.pyc
+lib/mailman/Mailman/Handlers/CleanseDKIM.py
+lib/mailman/Mailman/Handlers/CleanseDKIM.pyc
lib/mailman/Mailman/Handlers/CookHeaders.py
lib/mailman/Mailman/Handlers/CookHeaders.pyc
lib/mailman/Mailman/Handlers/Decorate.py
@@ -1869,6 +1871,9 @@
lib/mailman/tests/bounces/dsn_09.txt
lib/mailman/tests/bounces/dsn_10.txt
lib/mailman/tests/bounces/dsn_11.txt
+lib/mailman/tests/bounces/dsn_12.txt
+lib/mailman/tests/bounces/dsn_13.txt
+lib/mailman/tests/bounces/dsn_14.txt
lib/mailman/tests/bounces/dumbass_01.txt
lib/mailman/tests/bounces/exim_01.txt
lib/mailman/tests/bounces/groupwise_01.txt
@@ -1877,6 +1882,7 @@
lib/mailman/tests/bounces/llnl_01.txt
lib/mailman/tests/bounces/microsoft_01.txt
lib/mailman/tests/bounces/microsoft_02.txt
+lib/mailman/tests/bounces/microsoft_03.txt
lib/mailman/tests/bounces/netscape_01.txt
lib/mailman/tests/bounces/newmailru_01.txt
lib/mailman/tests/bounces/postfix_01.txt
@@ -1885,15 +1891,32 @@
lib/mailman/tests/bounces/postfix_04.txt
lib/mailman/tests/bounces/postfix_05.txt
lib/mailman/tests/bounces/qmail_01.txt
+lib/mailman/tests/bounces/qmail_02.txt
+lib/mailman/tests/bounces/qmail_03.txt
lib/mailman/tests/bounces/sendmail_01.txt
lib/mailman/tests/bounces/simple_01.txt
lib/mailman/tests/bounces/simple_02.txt
lib/mailman/tests/bounces/simple_03.txt
lib/mailman/tests/bounces/simple_04.txt
+lib/mailman/tests/bounces/simple_05.txt
+lib/mailman/tests/bounces/simple_06.txt
+lib/mailman/tests/bounces/simple_07.txt
+lib/mailman/tests/bounces/simple_08.txt
+lib/mailman/tests/bounces/simple_09.txt
+lib/mailman/tests/bounces/simple_10.txt
+lib/mailman/tests/bounces/simple_11.txt
+lib/mailman/tests/bounces/simple_12.txt
+lib/mailman/tests/bounces/simple_13.txt
+lib/mailman/tests/bounces/simple_14.txt
+lib/mailman/tests/bounces/simple_15.txt
+lib/mailman/tests/bounces/simple_16.txt
lib/mailman/tests/bounces/sina_01.txt
lib/mailman/tests/bounces/smtp32_01.txt
lib/mailman/tests/bounces/smtp32_02.txt
lib/mailman/tests/bounces/smtp32_03.txt
+lib/mailman/tests/bounces/smtp32_04.txt
+lib/mailman/tests/bounces/smtp32_05.txt
+lib/mailman/tests/bounces/smtp32_06.txt
lib/mailman/tests/bounces/yahoo_01.txt
lib/mailman/tests/bounces/yahoo_02.txt
lib/mailman/tests/bounces/yahoo_03.txt
@@ -1903,6 +1926,7 @@
lib/mailman/tests/bounces/yahoo_07.txt
lib/mailman/tests/bounces/yahoo_08.txt
lib/mailman/tests/bounces/yahoo_09.txt
+lib/mailman/tests/bounces/yahoo_10.txt
lib/mailman/tests/bounces/yale_01.txt
lib/mailman/tests/fblast.py
lib/mailman/tests/msgs/bad_01.txt
@@ -1931,6 +1955,15 @@
share/doc/mailman/STYLEGUIDE.txt
share/doc/mailman/TODO
share/doc/mailman/UPGRADING
+share/doc/mailman/mailman-admin.pdf
+share/doc/mailman/mailman-admin.ps
+share/doc/mailman/mailman-admin.txt
+share/doc/mailman/mailman-install.pdf
+share/doc/mailman/mailman-install.ps
+share/doc/mailman/mailman-install.txt
+share/doc/mailman/mailman-member.pdf
+share/doc/mailman/mailman-member.ps
+share/doc/mailman/mailman-member.txt
share/examples/mailman/mailman.conf
share/examples/rc.d/mailman
@dirrm share/examples/mailman
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/distinfo
--- a/mail/mailman/distinfo Thu Apr 13 16:08:44 2006 +0000
+++ b/mail/mailman/distinfo Thu Apr 13 16:31:39 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.10 2006/01/21 16:14:24 bouyer Exp $
+$NetBSD: distinfo,v 1.10.2.1 2006/04/13 16:31:39 salo Exp $
-SHA1 (mailman-2.1.7.tgz) = f84b465dc03227f384ea902fca3d8396035bd9e2
-RMD160 (mailman-2.1.7.tgz) = 05eb4119c7fd4d1a3af00dc5b60601f4ee2896df
-Size (mailman-2.1.7.tgz) = 6736536 bytes
+SHA1 (mailman-2.1.8rc1.tgz) = bbed7bbca363dfdce7915ac63d72f1d93f9ebc11
+RMD160 (mailman-2.1.8rc1.tgz) = 853e31435a6c9d5a35776d534a9ffe4991c0fd94
+Size (mailman-2.1.8rc1.tgz) = 6856298 bytes
SHA1 (patch-aa) = f0bc550b28794008ea840a88a5b0053578f3ae0f
SHA1 (patch-ab) = 39f6294e53110bd1fd09b1e90ab46820f4d48e3f
SHA1 (patch-ad) = 665884b9dd1789e4abd430c762bdbfd707d48d30
@@ -10,5 +10,3 @@
SHA1 (patch-af) = 985a619a055151d998cefd0c1b7280a0d55f889e
SHA1 (patch-ag) = f94f190e69ce892841b88574ec8e9f100b182ed9
SHA1 (patch-ah) = 42296c52e30b1fcc1d42ef0f1b89c83414ca85df
-SHA1 (patch-ai) = 9b54bd2326bd9e0bbce588fda2bf287a4c480295
-SHA1 (patch-aj) = eb4e78f817f6d2ddab9e60b4b1cf902e28391689
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/patches/patch-ai
--- a/mail/mailman/patches/patch-ai Thu Apr 13 16:08:44 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$NetBSD: patch-ai,v 1.3 2006/01/21 16:14:24 bouyer Exp $
-
-Fix for http://secunia.com/advisories/18449/. Adapted from
-Adapted from
-http://security.ubuntu.com/ubunt...mailman_2.1.5-8ubuntu2.1.diff.gz
-
---- Mailman/Queue/ArchRunner.py.orig Sat Jan 21 15:51:14 2006
-+++ Mailman/Queue/ArchRunner.py Sat Jan 21 15:51:50 2006
-@@ -49,7 +49,7 @@
- elif abs(now - mktime_tz(tup)) > \
- mm_cfg.ARCHIVER_ALLOWABLE_SANE_DATE_SKEW:
- clobber = 1
-- except ValueError:
-+ except (OverflowError, ValueError):
- # The likely cause of this is that the year in the Date: field
- # is horribly incorrect, e.g. (from SF bug # 571634):
- # Date: Tue, 18 Jun 0102 05:12:09 +0500
diff -r b4516e1c9895 -r ffb0220efa30 mail/mailman/patches/patch-aj
--- a/mail/mailman/patches/patch-aj Thu Apr 13 16:08:44 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$NetBSD: patch-aj,v 1.1 2006/01/21 16:14:24 bouyer Exp $
-
-Fix for http://secunia.com/advisories/18449/. Adapted from
-Adapted from
-http://security.ubuntu.com/ubunt...mailman_2.1.5-8ubuntu2.1.diff.gz
-
---- Mailman/Handlers/Scrubber.py.orig Sat Jan 21 15:49:01 2006
-+++ Mailman/Handlers/Scrubber.py Sat Jan 21 15:50:36 2006
-@@ -143,7 +143,7 @@
- }.get(parts[3], 0)
- day = int(parts[4])
- year = int(parts[6])
-- except (IndexError, ValueError):
-+ except (OverflowError, IndexError, ValueError):
- # Best we can do I think
- month = day = year = 0
- datedir = '%04d%02d%02d' % (year, month, day)
Home |
Main Index |
Thread Index |
Old Index