[Pkg-mailman-hackers] Pkg-mailman commit - rev 290 - in trunk/debian: . patches

Lionel Elie Mamane lmamane at costa.debian.org
Tue Apr 11 20:29:41 UTC 2006


Author: lmamane
Date: 2006-04-11 20:05:31 +0000 (Tue, 11 Apr 2006)
New Revision: 290

Removed:
   trunk/debian/patches/02_stolen_from_upstream_CVS.dpatch
   trunk/debian/patches/23_fix_urls.dpatch
   trunk/debian/patches/72_hyperarch_error_handling.dpatch
Modified:
   trunk/debian/changelog
   trunk/debian/patches/00list
   trunk/debian/patches/64_correct_html_nesting.dpatch
   trunk/debian/patches/68_translation_update_nl.dpatch
   trunk/debian/patches/71_date_overflows.dpatch
   trunk/debian/patches/99_js_templates.dpatch
Log:
New upstream version 2.1.8rc1

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/changelog	2006-04-11 20:05:31 UTC (rev 290)
@@ -1,3 +1,20 @@
+mailman (0:2.1.7:2.1.8rc1-1) unstable; urgency=low
+
+  * New upstream release
+    - Update patches:
+      64_correct_html_nesting
+      68_translation_update_nl
+      71_date_overflows
+      99_js_templates
+    - Drop patches merged upstream:
+      02_stolen_from_upstream_CVS
+      23_fix_urls
+      72_hyperarch_error_handling.dpatch
+    - Bugs fixed upstream:
+      - Fix XSS hole in private archive cgi-bin. (CVE-2006-1512)
+
+ -- Lionel Elie Mamane <lmamane at debian.org>  Tue, 11 Apr 2006 21:24:54 +0200
+
 mailman (2.1.7-2) UNRELEASED; urgency=low
 
   * Integrate translations: (closes: #350491, #351759, #351947)

Modified: trunk/debian/patches/00list
===================================================================
--- trunk/debian/patches/00list	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/00list	2006-04-11 20:05:31 UTC (rev 290)
@@ -1,6 +1,5 @@
 00_stolen_from_HEAD
 01_defaults.debian
-02_stolen_from_upstream_CVS
 03_documentation_source
 07_snooze
 10_wrapper_uid
@@ -10,7 +9,6 @@
 16_update_debian
 20_qmail_to_mailman.debian
 21_newlist_help
-23_fix_urls
 30_pipermail_threads
 32_MIME_fixup
 51_nocompile.pyc
@@ -29,7 +27,6 @@
 68_translation_update_nl
 70_invalid_utf8_dos.dpatch
 71_date_overflows.dpatch
-72_hyperarch_error_handling.dpatch
 74_admin_non-ascii_emails.dpatch
 77_header_folding_in_attachments
 78_DeprecationWarning

Deleted: trunk/debian/patches/02_stolen_from_upstream_CVS.dpatch
===================================================================
--- trunk/debian/patches/02_stolen_from_upstream_CVS.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/02_stolen_from_upstream_CVS.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -1,172 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 02_stolen_from_upstream.dpatch by  <lionel at mamane.lu>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Taken from http://sourceforge.net/tracker/index.php?func=detail&aid=1405790&group_id=103&atid=300103
-## DP: Mailman 2.1.7 multiple patch
-## DP: After the release of Mailman 2.1.7, a few bugs are
-## DP: found in a couple of weeks. We are planning to release
-## DP: 2.1.8 near future, but in the mean time, please apply
-## DP: this patch. It fixes bugs 1400128, 1395683, 1194419,
-## DP: http://mail.python.org/pipermail/mailman-users/2006-January/048573.html
-## DP: (SpamDetect loop) and few others.
-
- at DPATCH@
-diff -urNad mailman-2.1.7~/Mailman/Archiver/HyperArch.py mailman-2.1.7/Mailman/Archiver/HyperArch.py
---- mailman-2.1.7~/Mailman/Archiver/HyperArch.py	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/Mailman/Archiver/HyperArch.py	2006-01-29 17:19:57.793320007 +0100
-@@ -569,16 +569,21 @@
-         if d['_message_id']:
-             headers.append('Message-ID: %(_message_id)s')
-         body = EMPTYSTRING.join(self.body)
--        if isinstance(body, types.UnicodeType):
--            body = body.encode(Utils.GetCharSet(self._lang), 'replace')
-+        cset = Utils.GetCharSet(self._lang)
-+        # Coerce the body to Unicode and replace any invalid characters.
-+        if not isinstance(body, types.UnicodeType):
-+            body = unicode(body, cset, 'replace')
-         if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS:
-             otrans = i18n.get_translation()
-             try:
-+                atmark = unicode(_(' at '), cset)
-                 i18n.set_language(self._lang)
-                 body = re.sub(r'([-+,.\w]+)@([-+.\w]+)',
--                              '\g<1>' + _(' at ') + '\g<2>', body)
-+                              '\g<1>' + atmark + '\g<2>', body)
-             finally:
-                 i18n.set_translation(otrans)
-+        # Return body to character set of article.
-+        body = body.encode(cset, 'replace')
-         return NL.join(headers) % d + '\n\n' + body + '\n'
- 
-     def _set_date(self, message):
-diff -urNad mailman-2.1.7~/Mailman/Bouncers/SimpleMatch.py mailman-2.1.7/Mailman/Bouncers/SimpleMatch.py
---- mailman-2.1.7~/Mailman/Bouncers/SimpleMatch.py	2005-08-27 03:40:15.000000000 +0200
-+++ mailman-2.1.7/Mailman/Bouncers/SimpleMatch.py	2006-01-29 17:19:57.794319867 +0100
-@@ -1,4 +1,4 @@
--# Copyright (C) 1998-2003 by the Free Software Foundation, Inc.
-+# Copyright (C) 1998-2006 by the Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License
-@@ -12,7 +12,8 @@
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
--# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-+# USA.
- 
- """Recognizes simple heuristically delimited bounces."""
- 
-@@ -74,6 +75,10 @@
-     (_c('This message was created automatically by mail delivery'),
-      _c('^---- START OF RETURNED MESSAGE ----'),
-      _c("addressed to '(?P<addr>[^']*)'")),
-+    # Prodigy.net full mailbox
-+    (_c("User's mailbox is full:"),
-+     _c('Unable to deliver mail.'),
-+     _c("User's mailbox is full:\s*<(?P<addr>.*)>.*$")),
-     # Next one goes here...
-     ]
- 
-diff -urNad mailman-2.1.7~/Mailman/Cgi/edithtml.py mailman-2.1.7/Mailman/Cgi/edithtml.py
---- mailman-2.1.7~/Mailman/Cgi/edithtml.py	2005-12-30 19:50:07.000000000 +0100
-+++ mailman-2.1.7/Mailman/Cgi/edithtml.py	2006-01-29 17:19:57.794319867 +0100
-@@ -1,4 +1,4 @@
--# Copyright (C) 1998-2005 by the Free Software Foundation, Inc.
-+# Copyright (C) 1998-2006 by the Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License
-@@ -20,6 +20,7 @@
- import os
- import cgi
- import errno
-+import re
- 
- from Mailman import Utils
- from Mailman import MailList
-diff -urNad mailman-2.1.7~/Mailman/Gui/Topics.py mailman-2.1.7/Mailman/Gui/Topics.py
---- mailman-2.1.7~/Mailman/Gui/Topics.py	2005-08-27 03:40:15.000000000 +0200
-+++ mailman-2.1.7/Mailman/Gui/Topics.py	2006-01-29 17:19:57.794319867 +0100
-@@ -91,6 +91,9 @@
-             ]
- 
-     def handleForm(self, mlist, category, subcat, cgidata, doc):
-+        # MAS: Did we come from the authentication page?
-+        if not cgidata.has_key('topic_box_01'):
-+            return
-         topics = []
-         # We start i at 1 and keep going until we no longer find items keyed
-         # with the marked tags.
-diff -urNad mailman-2.1.7~/Mailman/Handlers/CookHeaders.py mailman-2.1.7/Mailman/Handlers/CookHeaders.py
---- mailman-2.1.7~/Mailman/Handlers/CookHeaders.py	2005-12-30 19:50:08.000000000 +0100
-+++ mailman-2.1.7/Mailman/Handlers/CookHeaders.py	2006-01-29 17:19:57.795319727 +0100
-@@ -193,10 +193,9 @@
-     # We always add a List-ID: header.
-     del msg['list-id']
-     msg['List-Id'] = listid_h
--    # For internally crafted messages, we
--    # also add a (nonstandard), "X-List-Administrivia: yes" header.  For all
--    # others (i.e. those coming from list posts), we adda a bunch of other RFC
--    # 2369 headers.
-+    # For internally crafted messages, we also add a (nonstandard),
-+    # "X-List-Administrivia: yes" header.  For all others (i.e. those coming
-+    # from list posts), we add a bunch of other RFC 2369 headers.
-     requestaddr = mlist.GetRequestEmail()
-     subfieldfmt = '<%s>, <mailto:%s?subject=%ssubscribe>'
-     listinfo = mlist.GetScriptURL('listinfo', absolute=1)
-diff -urNad mailman-2.1.7~/Mailman/Handlers/SpamDetect.py mailman-2.1.7/Mailman/Handlers/SpamDetect.py
---- mailman-2.1.7~/Mailman/Handlers/SpamDetect.py	2005-12-31 07:15:33.000000000 +0100
-+++ mailman-2.1.7/Mailman/Handlers/SpamDetect.py	2006-01-29 17:19:57.810317623 +0100
-@@ -1,4 +1,4 @@
--# Copyright (C) 1998-2005 by the Free Software Foundation, Inc.
-+# Copyright (C) 1998-2006 by the Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License
-@@ -92,8 +92,7 @@
- 
- 
- def process(mlist, msg, msgdata):
--    if msgdata.get('approved') or msgdata.get('reduced_list_headers'):
--        # TK: 'reduced_list_headers' is intenally crafted message (virgin).
-+    if msgdata.get('approved'):
-         return
-     # First do site hard coded header spam checks
-     for header, regex in mm_cfg.KNOWN_SPAMMERS:
-@@ -103,20 +102,23 @@
-             if mo:
-                 # we've detected spam, so throw the message away
-                 raise SpamDetected
-+    # Before we go to header_filter_rules, we exclude internally generated
-+    # owner notification from checking, because 1) we collect headers from
-+    # all the attachments but this will cause matching the filter rule again,
-+    # and 2) list owners may want to check header name / value pair like
-+    # 'Precedence: bulk' which is also generated by mailman.  Both will
-+    # cause loop of holding owner notification messages if the action is
-+    # set to 'hold'.
-+    if msgdata.get('toowner') and msg.get('x-list-administrivia') == 'yes':
-+        return
-     # Now do header_filter_rules
-     # TK: Collect headers in sub-parts because attachment filename
-     # extension may be a clue to possible virus/spam.
--    if msg.is_multipart():
--        headers = ''
--        for p in msg.walk():
--            g = HeaderGenerator(StringIO())
--            g.flatten(p)
--            headers += g.header_text()
--    else:
--        # Only the top level header should be checked.
-+    headers = ''
-+    for p in msg.walk():
-         g = HeaderGenerator(StringIO())
--        g.flatten(msg)
--        headers = g.header_text()
-+        g.flatten(p)
-+        headers += g.header_text()
-     # Now reshape headers (remove extra CR and connect multiline).
-     headers = re.sub('\n+', '\n', headers)
-     headers = re.sub('\n\s', ' ', headers)

Deleted: trunk/debian/patches/23_fix_urls.dpatch
===================================================================
--- trunk/debian/patches/23_fix_urls.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/23_fix_urls.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -1,36 +0,0 @@
-#! /bin/sh -e
-## 23_fix_urls.dpatch by Tollef Fog Heen <tfheen at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Make sure URLs are the way we want them.  (See #214211 for more
-## DP: info) 
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch ${2:+-d $2}}"
-
-if [ $# -lt 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-case "$1" in
-    -patch) patch $patch_opts -p1 < $0;;
-    -unpatch) patch $patch_opts -p1 -R < $0;;
-    *)
-        echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-        exit 1;;
-esac
-
-exit 0
- at DPATCH@
-
---- mailman-2.1.4.orig/Mailman/Utils.py
-+++ mailman-2.1.4/Mailman/Utils.py
-@@ -638,7 +638,7 @@
-     else:
-         # See the note in Defaults.py concerning DEFAULT_HOST_NAME
-         # vs. DEFAULT_EMAIL_HOST.
--        hostname = mm_cfg.DEFAULT_HOST_NAME or mm_cfg.DEFAULT_EMAIL_HOST
-+        hostname = mm_cfg.DEFAULT_HOST_NAME or mm_cfg.DEFAULT_URL_HOST
-         return hostname.lower()
- 
- 

Modified: trunk/debian/patches/64_correct_html_nesting.dpatch
===================================================================
--- trunk/debian/patches/64_correct_html_nesting.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/64_correct_html_nesting.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -23,9 +23,9 @@
 
 exit 0
 @DPATCH@
-diff -urNad mailman-2.1.6~/templates/ca/listinfo.html mailman-2.1.6/templates/ca/listinfo.html
---- mailman-2.1.6~/templates/ca/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/ca/listinfo.html	2005-12-10 11:59:46.538086466 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ca/listinfo.html mailman-2.1.8rc1/templates/ca/listinfo.html
+--- mailman-2.1.8rc1~/templates/ca/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/ca/listinfo.html	2006-04-11 21:22:32.267496053 +0200
 @@ -53,8 +53,9 @@
        </TR>
        
@@ -37,9 +37,9 @@
          <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
            <TR> 
-diff -urNad mailman-2.1.6~/templates/cs/listinfo.html mailman-2.1.6/templates/cs/listinfo.html
---- mailman-2.1.6~/templates/cs/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/cs/listinfo.html	2005-12-10 11:59:46.538086466 +0100
+diff -urNad mailman-2.1.8rc1~/templates/cs/listinfo.html mailman-2.1.8rc1/templates/cs/listinfo.html
+--- mailman-2.1.8rc1~/templates/cs/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/cs/listinfo.html	2006-04-11 21:22:32.268495913 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -50,9 +50,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/da/listinfo.html mailman-2.1.6/templates/da/listinfo.html
---- mailman-2.1.6~/templates/da/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/da/listinfo.html	2005-12-10 11:59:46.538086466 +0100
+diff -urNad mailman-2.1.8rc1~/templates/da/listinfo.html mailman-2.1.8rc1/templates/da/listinfo.html
+--- mailman-2.1.8rc1~/templates/da/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/da/listinfo.html	2006-04-11 21:22:32.268495913 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -63,9 +63,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/de/listinfo.html mailman-2.1.6/templates/de/listinfo.html
---- mailman-2.1.6~/templates/de/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/de/listinfo.html	2005-12-10 11:59:46.539086326 +0100
+diff -urNad mailman-2.1.8rc1~/templates/de/listinfo.html mailman-2.1.8rc1/templates/de/listinfo.html
+--- mailman-2.1.8rc1~/templates/de/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/de/listinfo.html	2006-04-11 21:22:32.269495773 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Abonnieren Sie <MM-List-Name>, indem Sie das folgende Formular
@@ -76,9 +76,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/en/listinfo.html mailman-2.1.6/templates/en/listinfo.html
---- mailman-2.1.6~/templates/en/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/en/listinfo.html	2005-12-10 11:59:46.539086326 +0100
+diff -urNad mailman-2.1.8rc1~/templates/en/listinfo.html mailman-2.1.8rc1/templates/en/listinfo.html
+--- mailman-2.1.8rc1~/templates/en/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/en/listinfo.html	2006-04-11 21:22:32.269495773 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Subscribe to <MM-List-Name> by filling out the following
@@ -89,12 +89,12 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/es/listinfo.html mailman-2.1.6/templates/es/listinfo.html
---- mailman-2.1.6~/templates/es/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/es/listinfo.html	2005-12-10 11:59:46.539086326 +0100
+diff -urNad mailman-2.1.8rc1~/templates/es/listinfo.html mailman-2.1.8rc1/templates/es/listinfo.html
+--- mailman-2.1.8rc1~/templates/es/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/es/listinfo.html	2006-04-11 21:22:32.269495773 +0200
 @@ -64,8 +64,8 @@
  	  <P>
- 	    Subscribase a <MM-List-Name> rellenando los datos del
+ 	    Suscr&iacute;base a <MM-List-Name> rellenando los datos del
  	    siguiente formulario
 -	  <MM-List-Subscription-Msg>
  	  <ul>
@@ -102,9 +102,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/et/listinfo.html mailman-2.1.6/templates/et/listinfo.html
---- mailman-2.1.6~/templates/et/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/et/listinfo.html	2005-12-10 11:59:46.540086186 +0100
+diff -urNad mailman-2.1.8rc1~/templates/et/listinfo.html mailman-2.1.8rc1/templates/et/listinfo.html
+--- mailman-2.1.8rc1~/templates/et/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/et/listinfo.html	2006-04-11 21:22:32.269495773 +0200
 @@ -58,8 +58,8 @@
  	<td colspan="2">
  	  <P>
@@ -115,9 +115,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/eu/listinfo.html mailman-2.1.6/templates/eu/listinfo.html
---- mailman-2.1.6~/templates/eu/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/eu/listinfo.html	2005-12-10 11:59:46.540086186 +0100
+diff -urNad mailman-2.1.8rc1~/templates/eu/listinfo.html mailman-2.1.8rc1/templates/eu/listinfo.html
+--- mailman-2.1.8rc1~/templates/eu/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/eu/listinfo.html	2006-04-11 21:22:32.270495633 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -128,9 +128,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/fi/listinfo.html mailman-2.1.6/templates/fi/listinfo.html
---- mailman-2.1.6~/templates/fi/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/fi/listinfo.html	2005-12-10 11:59:46.540086186 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fi/listinfo.html mailman-2.1.8rc1/templates/fi/listinfo.html
+--- mailman-2.1.8rc1~/templates/fi/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/fi/listinfo.html	2006-04-11 21:22:32.270495633 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -141,9 +141,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/fr/listinfo.html mailman-2.1.6/templates/fr/listinfo.html
---- mailman-2.1.6~/templates/fr/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/fr/listinfo.html	2005-12-10 11:59:46.541086045 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fr/listinfo.html mailman-2.1.8rc1/templates/fr/listinfo.html
+--- mailman-2.1.8rc1~/templates/fr/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/fr/listinfo.html	2006-04-11 21:22:32.270495633 +0200
 @@ -61,8 +61,8 @@
        <p> 	    
  	Abonnez-vous &agrave; <MM-List-Name> en remplissant le formulaire 
@@ -154,9 +154,9 @@
          <table border="0" cellspacing="2" cellpadding="2" width="70%"
   height="112">
              <tr>
-diff -urNad mailman-2.1.6~/templates/hr/listinfo.html mailman-2.1.6/templates/hr/listinfo.html
---- mailman-2.1.6~/templates/hr/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/hr/listinfo.html	2005-12-10 11:59:46.541086045 +0100
+diff -urNad mailman-2.1.8rc1~/templates/hr/listinfo.html mailman-2.1.8rc1/templates/hr/listinfo.html
+--- mailman-2.1.8rc1~/templates/hr/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/hr/listinfo.html	2006-04-11 21:22:32.271495493 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Pretplatite se na <MM-List-Name> ispunjavanjem sljedeæe 
@@ -167,9 +167,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/hu/listinfo.html mailman-2.1.6/templates/hu/listinfo.html
---- mailman-2.1.6~/templates/hu/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/hu/listinfo.html	2005-12-10 11:59:46.541086045 +0100
+diff -urNad mailman-2.1.8rc1~/templates/hu/listinfo.html mailman-2.1.8rc1/templates/hu/listinfo.html
+--- mailman-2.1.8rc1~/templates/hu/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/hu/listinfo.html	2006-04-11 21:22:32.271495493 +0200
 @@ -59,11 +59,10 @@
  	<td colspan="2">
  	  <P>
@@ -183,9 +183,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/it/listinfo.html mailman-2.1.6/templates/it/listinfo.html
---- mailman-2.1.6~/templates/it/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/it/listinfo.html	2005-12-10 11:59:46.542085905 +0100
+diff -urNad mailman-2.1.8rc1~/templates/it/listinfo.html mailman-2.1.8rc1/templates/it/listinfo.html
+--- mailman-2.1.8rc1~/templates/it/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/it/listinfo.html	2006-04-11 21:22:32.271495493 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -196,9 +196,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/ja/listinfo.html mailman-2.1.6/templates/ja/listinfo.html
---- mailman-2.1.6~/templates/ja/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/ja/listinfo.html	2005-12-10 11:59:46.542085905 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ja/listinfo.html mailman-2.1.8rc1/templates/ja/listinfo.html
+--- mailman-2.1.8rc1~/templates/ja/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/ja/listinfo.html	2006-04-11 21:22:32.272495353 +0200
 @@ -65,8 +65,8 @@
  	  <P>
  	    <MM-List-Name> ¤Ø¤ÎÆþ²ñ¤Ï, 
@@ -209,9 +209,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/ko/listinfo.html mailman-2.1.6/templates/ko/listinfo.html
---- mailman-2.1.6~/templates/ko/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/ko/listinfo.html	2005-12-10 11:59:46.542085905 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ko/listinfo.html mailman-2.1.8rc1/templates/ko/listinfo.html
+--- mailman-2.1.8rc1~/templates/ko/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/ko/listinfo.html	2006-04-11 21:22:32.272495353 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -222,9 +222,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/lt/listinfo.html mailman-2.1.6/templates/lt/listinfo.html
---- mailman-2.1.6~/templates/lt/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/lt/listinfo.html	2005-12-10 11:59:46.543085765 +0100
+diff -urNad mailman-2.1.8rc1~/templates/lt/listinfo.html mailman-2.1.8rc1/templates/lt/listinfo.html
+--- mailman-2.1.8rc1~/templates/lt/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/lt/listinfo.html	2006-04-11 21:22:32.272495353 +0200
 @@ -61,8 +61,8 @@
  	<td colspan="2">
  	  <P>
@@ -235,9 +235,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/nl/listinfo.html mailman-2.1.6/templates/nl/listinfo.html
---- mailman-2.1.6~/templates/nl/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/nl/listinfo.html	2005-12-10 11:59:46.543085765 +0100
+diff -urNad mailman-2.1.8rc1~/templates/nl/listinfo.html mailman-2.1.8rc1/templates/nl/listinfo.html
+--- mailman-2.1.8rc1~/templates/nl/listinfo.html	2006-04-11 21:22:03.000000000 +0200
++++ mailman-2.1.8rc1/templates/nl/listinfo.html	2006-04-11 21:22:32.272495353 +0200
 @@ -57,8 +57,8 @@
  	<td colspan="2">
  	  <P>
@@ -248,16 +248,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-@@ -123,4 +123,4 @@
-   </table>
- <MM-Mailman-Footer>
- </BODY>
--</HTML>
-\ No newline at end of file
-+</HTML>
-diff -urNad mailman-2.1.6~/templates/no/listinfo.html mailman-2.1.6/templates/no/listinfo.html
---- mailman-2.1.6~/templates/no/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/no/listinfo.html	2005-12-10 11:59:46.543085765 +0100
+diff -urNad mailman-2.1.8rc1~/templates/no/listinfo.html mailman-2.1.8rc1/templates/no/listinfo.html
+--- mailman-2.1.8rc1~/templates/no/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/no/listinfo.html	2006-04-11 21:22:32.273495213 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -268,9 +261,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/pl/listinfo.html mailman-2.1.6/templates/pl/listinfo.html
---- mailman-2.1.6~/templates/pl/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/pl/listinfo.html	2005-12-10 11:59:46.543085765 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pl/listinfo.html mailman-2.1.8rc1/templates/pl/listinfo.html
+--- mailman-2.1.8rc1~/templates/pl/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/pl/listinfo.html	2006-04-11 21:22:32.273495213 +0200
 @@ -65,8 +65,8 @@
            W celu zapisania siê na listê <MM-List-Name> nale¿y wype³niæ 
            poni¿szy formularz.
@@ -281,9 +274,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/pt/listinfo.html mailman-2.1.6/templates/pt/listinfo.html
---- mailman-2.1.6~/templates/pt/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/pt/listinfo.html	2005-12-10 11:59:46.544085624 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt/listinfo.html mailman-2.1.8rc1/templates/pt/listinfo.html
+--- mailman-2.1.8rc1~/templates/pt/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt/listinfo.html	2006-04-11 21:22:32.274495072 +0200
 @@ -63,8 +63,8 @@
  	<td colspan="2">
  	  <P>
@@ -294,9 +287,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/pt_BR/listinfo.html mailman-2.1.6/templates/pt_BR/listinfo.html
---- mailman-2.1.6~/templates/pt_BR/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/pt_BR/listinfo.html	2005-12-10 11:59:46.544085624 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt_BR/listinfo.html mailman-2.1.8rc1/templates/pt_BR/listinfo.html
+--- mailman-2.1.8rc1~/templates/pt_BR/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt_BR/listinfo.html	2006-04-11 21:22:32.274495072 +0200
 @@ -64,8 +64,8 @@
  	  <P>
  	    Para se inscrever na lista <MM-List-Name>, preencha o seguinte
@@ -307,9 +300,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/ro/listinfo.html mailman-2.1.6/templates/ro/listinfo.html
---- mailman-2.1.6~/templates/ro/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/ro/listinfo.html	2005-12-10 11:59:46.544085624 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ro/listinfo.html mailman-2.1.8rc1/templates/ro/listinfo.html
+--- mailman-2.1.8rc1~/templates/ro/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/ro/listinfo.html	2006-04-11 21:22:32.274495072 +0200
 @@ -60,8 +60,8 @@
  	  <P>
  	    Vã puteþi abona la lista de discuþii <MM-List-Name> completând formularul
@@ -320,9 +313,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/ru/listinfo.html mailman-2.1.6/templates/ru/listinfo.html
---- mailman-2.1.6~/templates/ru/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/ru/listinfo.html	2005-12-10 11:59:46.545085484 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ru/listinfo.html mailman-2.1.8rc1/templates/ru/listinfo.html
+--- mailman-2.1.8rc1~/templates/ru/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/ru/listinfo.html	2006-04-11 21:22:32.307490450 +0200
 @@ -51,8 +51,8 @@
          <td colspan="2">
            <P>
@@ -333,9 +326,9 @@
                <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
                  WIDTH="70%" HEIGHT= "112">
                  <TR>
-diff -urNad mailman-2.1.6~/templates/sl/listinfo.html mailman-2.1.6/templates/sl/listinfo.html
---- mailman-2.1.6~/templates/sl/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/sl/listinfo.html	2005-12-10 11:59:46.545085484 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sl/listinfo.html mailman-2.1.8rc1/templates/sl/listinfo.html
+--- mailman-2.1.8rc1~/templates/sl/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/sl/listinfo.html	2006-04-11 21:22:32.307490450 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    Na seznam <MM-List-Name> se prijavite tako, da izpolnite
@@ -346,9 +339,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/sr/listinfo.html mailman-2.1.6/templates/sr/listinfo.html
---- mailman-2.1.6~/templates/sr/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/sr/listinfo.html	2005-12-10 11:59:46.545085484 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sr/listinfo.html mailman-2.1.8rc1/templates/sr/listinfo.html
+--- mailman-2.1.8rc1~/templates/sr/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/sr/listinfo.html	2006-04-11 21:22:32.307490450 +0200
 @@ -52,8 +52,9 @@
        </TR>
        <tr>
@@ -360,9 +353,9 @@
          <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
            <TR> 
-diff -urNad mailman-2.1.6~/templates/sv/listinfo.html mailman-2.1.6/templates/sv/listinfo.html
---- mailman-2.1.6~/templates/sv/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/sv/listinfo.html	2005-12-10 11:59:46.546085344 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sv/listinfo.html mailman-2.1.8rc1/templates/sv/listinfo.html
+--- mailman-2.1.8rc1~/templates/sv/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/sv/listinfo.html	2006-04-11 21:22:32.310490030 +0200
 @@ -56,8 +56,9 @@
        </TR>
        <tr>
@@ -374,9 +367,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/tr/listinfo.html mailman-2.1.6/templates/tr/listinfo.html
---- mailman-2.1.6~/templates/tr/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/tr/listinfo.html	2005-12-10 11:59:46.546085344 +0100
+diff -urNad mailman-2.1.8rc1~/templates/tr/listinfo.html mailman-2.1.8rc1/templates/tr/listinfo.html
+--- mailman-2.1.8rc1~/templates/tr/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/tr/listinfo.html	2006-04-11 21:22:32.310490030 +0200
 @@ -63,8 +63,8 @@
  	  <P>
  	    <MM-List-Name> listesine aþaðýdaki formu doldurarak üye
@@ -387,9 +380,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/uk/listinfo.html mailman-2.1.6/templates/uk/listinfo.html
---- mailman-2.1.6~/templates/uk/listinfo.html	2005-12-10 11:53:42.000000000 +0100
-+++ mailman-2.1.6/templates/uk/listinfo.html	2005-12-10 11:59:46.546085344 +0100
+diff -urNad mailman-2.1.8rc1~/templates/uk/listinfo.html mailman-2.1.8rc1/templates/uk/listinfo.html
+--- mailman-2.1.8rc1~/templates/uk/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/uk/listinfo.html	2006-04-11 21:22:32.310490030 +0200
 @@ -62,8 +62,8 @@
  	<td colspan="2">
  	  <P>
@@ -400,9 +393,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/zh_CN/listinfo.html mailman-2.1.6/templates/zh_CN/listinfo.html
---- mailman-2.1.6~/templates/zh_CN/listinfo.html	2005-05-14 06:13:41.000000000 +0200
-+++ mailman-2.1.6/templates/zh_CN/listinfo.html	2005-12-10 12:00:53.081745941 +0100
+diff -urNad mailman-2.1.8rc1~/templates/zh_CN/listinfo.html mailman-2.1.8rc1/templates/zh_CN/listinfo.html
+--- mailman-2.1.8rc1~/templates/zh_CN/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/zh_CN/listinfo.html	2006-04-11 21:22:32.310490030 +0200
 @@ -60,8 +60,8 @@
  	<td colspan="2">
  	  <P>
@@ -413,9 +406,9 @@
  	      <TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
  		WIDTH="70%" HEIGHT= "112">
  		<TR>
-diff -urNad mailman-2.1.6~/templates/zh_TW/listinfo.html mailman-2.1.6/templates/zh_TW/listinfo.html
---- mailman-2.1.6~/templates/zh_TW/listinfo.html	2005-03-23 03:04:14.000000000 +0100
-+++ mailman-2.1.6/templates/zh_TW/listinfo.html	2005-12-10 12:00:43.257124993 +0100
+diff -urNad mailman-2.1.8rc1~/templates/zh_TW/listinfo.html mailman-2.1.8rc1/templates/zh_TW/listinfo.html
+--- mailman-2.1.8rc1~/templates/zh_TW/listinfo.html	2006-04-11 21:21:05.000000000 +0200
++++ mailman-2.1.8rc1/templates/zh_TW/listinfo.html	2006-04-11 21:22:32.311489890 +0200
 @@ -60,8 +60,8 @@
  	<td colspan="2">
  	  <P>

Modified: trunk/debian/patches/68_translation_update_nl.dpatch
===================================================================
--- trunk/debian/patches/68_translation_update_nl.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/68_translation_update_nl.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -5,9 +5,9 @@
 ## DP: Update NL translation
 
 @DPATCH@
-diff -urNad mailman-2.1.7~/messages/nl/LC_MESSAGES/mailman.po mailman-2.1.7/messages/nl/LC_MESSAGES/mailman.po
---- mailman-2.1.7~/messages/nl/LC_MESSAGES/mailman.po	2005-12-20 01:52:47.000000000 +0100
-+++ mailman-2.1.7/messages/nl/LC_MESSAGES/mailman.po	2006-02-17 17:18:07.591870765 +0100
+diff -urNad mailman-2.1.8rc1~/messages/nl/LC_MESSAGES/mailman.po mailman-2.1.8rc1/messages/nl/LC_MESSAGES/mailman.po
+--- mailman-2.1.8rc1~/messages/nl/LC_MESSAGES/mailman.po	2006-04-11 21:25:50.000000000 +0200
++++ mailman-2.1.8rc1/messages/nl/LC_MESSAGES/mailman.po	2006-04-11 21:38:19.762052307 +0200
 @@ -311,7 +311,7 @@
  "            %(mailmanlink)s mailing lists on %(hostname)s.  Click on a list\n"
  "            name to visit the configuration pages for that list."
@@ -25,38 +25,38 @@
 +"    wordt getoond.  U kan ook\n"
  "    "
  
- #: Mailman/Cgi/admin.py:373
+ #: Mailman/Cgi/admin.py:374
 @@ -599,11 +599,11 @@
  
- #: Mailman/Cgi/admin.py:834
+ #: Mailman/Cgi/admin.py:835
  msgid "Mass Subscriptions"
 -msgstr "Meerdere leden aanmelden"
 +msgstr "Meerdere leden inschrijven"
  
- #: Mailman/Cgi/admin.py:841
+ #: Mailman/Cgi/admin.py:842
  msgid "Mass Removals"
 -msgstr "Meerdere leden afmelden"
 +msgstr "Meerdere leden uitschrijven"
  
- #: Mailman/Cgi/admin.py:848
+ #: Mailman/Cgi/admin.py:849
  msgid "Membership List"
 @@ -635,7 +635,7 @@
  
- #: Mailman/Cgi/admin.py:958
+ #: Mailman/Cgi/admin.py:959
  msgid "unsub"
 -msgstr "afmelden"
 +msgstr "uitschrijven"
  
- #: Mailman/Cgi/admin.py:959
+ #: Mailman/Cgi/admin.py:960
  msgid "member address<br>member name"
 @@ -695,7 +695,7 @@
  
- #: Mailman/Cgi/admin.py:1050
+ #: Mailman/Cgi/admin.py:1051
  msgid "<b>unsub</b> -- Click on this to unsubscribe the member."
 -msgstr "b>afmelden</b> -- Klik hier om een lid af te melden.."
 +msgstr "b>uitschrijven</b> -- Klik hier om een lid uit te schrijven."
  
- #: Mailman/Cgi/admin.py:1052
+ #: Mailman/Cgi/admin.py:1053
  msgid ""
 @@ -810,7 +810,7 @@
  "<p><em>To view more members, click on the appropriate\n"
@@ -66,39 +66,39 @@
 +"<p><em>Om meer leden te zien, klik op de letterlinks\n"
  "        hieronder:</em>"
  
- #: Mailman/Cgi/admin.py:1121
+ #: Mailman/Cgi/admin.py:1122
 @@ -827,7 +827,7 @@
  
- #: Mailman/Cgi/admin.py:1136 Mailman/Cgi/listinfo.py:178
+ #: Mailman/Cgi/admin.py:1137 Mailman/Cgi/listinfo.py:178
  msgid "Subscribe"
 -msgstr "Aanmelden"
 +msgstr "Inschrijven"
  
- #: Mailman/Cgi/admin.py:1142
+ #: Mailman/Cgi/admin.py:1143
  msgid "Send welcome messages to new subscribees?"
 @@ -889,7 +889,7 @@
  
- #: Mailman/Cgi/admin.py:1151
+ #: Mailman/Cgi/admin.py:1152
  msgid "Send notifications of new subscriptions to the list owner?"
 -msgstr "Stuur een melding naar de lijstbeheerder over nieuwe aanmeldingen?"
 +msgstr "Stuur een melding naar de lijstbeheerder over nieuwe inschrijvingen?"
  
- #: Mailman/Cgi/admin.py:1159 Mailman/Cgi/admin.py:1200
+ #: Mailman/Cgi/admin.py:1160 Mailman/Cgi/admin.py:1201
  msgid "Enter one address per line below..."
 @@ -907,12 +907,12 @@
  "    one blank line at the end..."
  msgstr ""
  "Voeg hieronder een begeleidende tekst in die\n"
 -"    wordt toegevoegd aan de uitnodiging of het aanmeldingsbericht.    voeg "
-+"    wordt toegevoegd aan de uitnodiging of het inchrijvingsbericht.    voeg "
++"    wordt toegevoegd aan de uitnodiging of het inschrijvingsbericht.    voeg "
  "tenminste een lege regel toe aan het eind..."
  
- #: Mailman/Cgi/admin.py:1184
+ #: Mailman/Cgi/admin.py:1185
  msgid "Send unsubscription acknowledgement to the user?"
 -msgstr "Stuur een afmeldingsbericht naar de gebruiker?"
 +msgstr "Stuur een uitschrijvingsbericht naar de gebruiker?"
  
- #: Mailman/Cgi/admin.py:1192
+ #: Mailman/Cgi/admin.py:1193
  msgid "Send notifications to the list owner?"
 @@ -951,7 +951,7 @@
  "geen veranderingen in de instellingen van de lijst aanbrengen, maar zij "
@@ -111,78 +111,78 @@
  "\n"
 @@ -1015,7 +1015,7 @@
  
- #: Mailman/Cgi/admin.py:1358
+ #: Mailman/Cgi/admin.py:1359
  msgid "Successfully subscribed:"
 -msgstr "Succesvol aangemeld:"
 +msgstr "Succesvol ingeschreven:"
  
- #: Mailman/Cgi/admin.py:1363
+ #: Mailman/Cgi/admin.py:1364
  msgid "Error inviting:"
 @@ -1023,15 +1023,15 @@
  
- #: Mailman/Cgi/admin.py:1365
+ #: Mailman/Cgi/admin.py:1366
  msgid "Error subscribing:"
 -msgstr "Fouten bij het aanmelden:"
 +msgstr "Fouten bij het inschrijven:"
  
- #: Mailman/Cgi/admin.py:1394
+ #: Mailman/Cgi/admin.py:1395
  msgid "Successfully Unsubscribed:"
 -msgstr "Met success afgemeld:"
 +msgstr "Met success uitgeschreven:"
  
- #: Mailman/Cgi/admin.py:1399
+ #: Mailman/Cgi/admin.py:1400
  msgid "Cannot unsubscribe non-members:"
 -msgstr "Kan geen niet-leden afmelden:"
 +msgstr "Kan geen niet-leden uitschrijven:"
  
- #: Mailman/Cgi/admin.py:1411
+ #: Mailman/Cgi/admin.py:1412
  msgid "Bad moderation flag value"
 @@ -1039,7 +1039,7 @@
  
- #: Mailman/Cgi/admin.py:1432
+ #: Mailman/Cgi/admin.py:1433
  msgid "Not subscribed"
 -msgstr "Niet aangemeld"
 +msgstr "Niet ingeschreven"
  
- #: Mailman/Cgi/admin.py:1435
+ #: Mailman/Cgi/admin.py:1436
  msgid "Ignoring changes to deleted member: %(user)s"
 @@ -1051,7 +1051,7 @@
  
- #: Mailman/Cgi/admin.py:1479
+ #: Mailman/Cgi/admin.py:1480
  msgid "Error Unsubscribing:"
 -msgstr "Fout bij afmelden:"
 +msgstr "Fout bij uitschrijven:"
  
- #: Mailman/Cgi/admindb.py:159 Mailman/Cgi/admindb.py:167
+ #: Mailman/Cgi/admindb.py:160 Mailman/Cgi/admindb.py:168
  msgid "%(realname)s Administrative Database"
 @@ -1111,7 +1111,7 @@
  
- #: Mailman/Cgi/admindb.py:280
+ #: Mailman/Cgi/admindb.py:281
  msgid "Subscription Requests"
 -msgstr "Aanmeldingsverzoeken"
 +msgstr "Inschrijvingsverzoeken"
  
- #: Mailman/Cgi/admindb.py:282
+ #: Mailman/Cgi/admindb.py:283
  msgid "Address/name"
 @@ -1140,7 +1140,7 @@
  
- #: Mailman/Cgi/admindb.py:373
+ #: Mailman/Cgi/admindb.py:374
  msgid "Unsubscription Requests"
 -msgstr "Afmeldingsverzoeken"
 +msgstr "Uitschrijvingsverzoeken"
  
- #: Mailman/Cgi/admindb.py:396 Mailman/Cgi/admindb.py:620
+ #: Mailman/Cgi/admindb.py:397 Mailman/Cgi/admindb.py:621
  msgid "From:"
 @@ -1167,9 +1167,8 @@
  msgstr "<em>De zender is nu lid van deze lijst</em>"
  
- #: Mailman/Cgi/admindb.py:448
+ #: Mailman/Cgi/admindb.py:449
 -#, fuzzy
  msgid "Add <b>%(esender)s</b> to one of these sender filters:"
 -msgstr "Voeg <b>%(esender)s</b> toe aan het verstuurdersfilter"
 +msgstr "Voeg <b>%(esender)s</b> toe aan de verzendersfilter"
  
- #: Mailman/Cgi/admindb.py:453
+ #: Mailman/Cgi/admindb.py:454
  msgid "Accepts"
 @@ -1193,7 +1192,7 @@
  "Ban <b>%(esender)s</b> from ever subscribing to this\n"
@@ -192,7 +192,7 @@
 +"Verbied <b>%(esender)s</b> om zich ooit in te schrijven op deze\n"
  "                    maillijst"
  
- #: Mailman/Cgi/admindb.py:467
+ #: Mailman/Cgi/admindb.py:468
 @@ -1313,8 +1312,8 @@
  "    %(safecookie)s.\n"
  "\n"
@@ -214,7 +214,7 @@
 +"                lid van de maillijst.  Misschien heeft bent u al uitgeschreven,\n"
  "                bijvoorbeeld door de lijstbeheerder?"
  
- #: Mailman/Cgi/confirm.py:144
+ #: Mailman/Cgi/confirm.py:145
 @@ -1336,7 +1335,7 @@
  "                    cancelled."
  msgstr ""
@@ -222,16 +222,16 @@
 -"                    is al afgemeld. Dit verzoek is geannuleerd."
 +"                    is al uitgeschreven. Dit verzoek is geannuleerd."
  
- #: Mailman/Cgi/confirm.py:164
+ #: Mailman/Cgi/confirm.py:165
  msgid "System error, bad content: %(content)s"
 @@ -1374,10 +1373,9 @@
  
- #: Mailman/Cgi/confirm.py:230
+ #: Mailman/Cgi/confirm.py:231
  msgid "Confirm subscription request"
 -msgstr "Bevestig het aanmeldingsverzoek"
 +msgstr "Bevestig het inschrijvingsverzoek"
  
- #: Mailman/Cgi/confirm.py:245
+ #: Mailman/Cgi/confirm.py:246
 -#, fuzzy
  msgid ""
  "Your confirmation is required in order to complete the\n"
@@ -262,7 +262,7 @@
 -"    <p>Of klik op <em>Annuleren</em> om dit aanmeldingsverzoek af te breken."
 +"    <p>Of klik op <em>Annuleren</em> om dit inschrijvingsverzoek af te breken."
  
- #: Mailman/Cgi/confirm.py:260
+ #: Mailman/Cgi/confirm.py:261
  msgid ""
 @@ -1432,17 +1430,17 @@
  "        this mailing list, you can hit <em>Cancel my subscription\n"
@@ -293,26 +293,26 @@
 -"    maillijst klik op dan op <em>Annuleer mijn aanmeldingsverzoek</em>."
 +"    maillijst klik op dan op <em>Annuleer mijn inschrijvingsverzoek</em>."
  
- #: Mailman/Cgi/confirm.py:278
+ #: Mailman/Cgi/confirm.py:279
  msgid "Your email address:"
 @@ -1470,15 +1468,15 @@
  
- #: Mailman/Cgi/confirm.py:302
+ #: Mailman/Cgi/confirm.py:303
  msgid "Cancel my subscription request"
 -msgstr "Verwijder mijn aanmeldingsverzoek"
 +msgstr "Verwijder mijn inschrijvingsverzoek"
  
- #: Mailman/Cgi/confirm.py:303
+ #: Mailman/Cgi/confirm.py:304
  msgid "Subscribe to list %(listname)s"
 -msgstr "Meldt u aan op deze maillijst %(listname)s"
-+msgstr "Schrijf in op de %(listname)s lijst"
++msgstr "Schrijf in op deze maillijst %(listname)s"
  
- #: Mailman/Cgi/confirm.py:320
+ #: Mailman/Cgi/confirm.py:321
  msgid "You have canceled your subscription request."
 -msgstr "U heeft uw aanmelding geannuleerd."
 +msgstr "U heeft uw inschrijving geannuleerd."
  
- #: Mailman/Cgi/confirm.py:358
+ #: Mailman/Cgi/confirm.py:359
  msgid "Awaiting moderator approval"
 @@ -1495,12 +1493,12 @@
  "notified\n"
@@ -339,15 +339,15 @@
 +"            e-mailadres dat al is uitgeschreven.\n"
  "            "
  
- #: Mailman/Cgi/confirm.py:372
+ #: Mailman/Cgi/confirm.py:373
 @@ -1542,7 +1540,7 @@
  
- #: Mailman/Cgi/confirm.py:389
+ #: Mailman/Cgi/confirm.py:390
  msgid "Subscription request confirmed"
 -msgstr "Aanmeldingsverzoek bevestigd"
 +msgstr "Inschrijvingsverzoek bevestigd"
  
- #: Mailman/Cgi/confirm.py:393
+ #: Mailman/Cgi/confirm.py:394
  msgid ""
 @@ -1555,7 +1553,7 @@
  "            <a href=\"%(optionsurl)s\">proceed to your membership login\n"
@@ -360,17 +360,17 @@
  "            verstuurd, samen met uw wachtwoord en andere belangrijke\n"
 @@ -1566,11 +1564,11 @@
  
- #: Mailman/Cgi/confirm.py:411
+ #: Mailman/Cgi/confirm.py:412
  msgid "You have canceled your unsubscription request."
 -msgstr "U heeft uw afmeldingsverzoek geannuleerd."
 +msgstr "U heeft uw uitschrijvingsverzoek geannuleerd."
  
- #: Mailman/Cgi/confirm.py:439
+ #: Mailman/Cgi/confirm.py:440
  msgid "Unsubscription request confirmed"
 -msgstr "Afmeldingsverzoek is bevestigd"
 +msgstr "Uitschrijvingsverzoek is bevestigd"
  
- #: Mailman/Cgi/confirm.py:443
+ #: Mailman/Cgi/confirm.py:444
  msgid ""
 @@ -1580,14 +1578,14 @@
  "main\n"
@@ -382,12 +382,12 @@
  "de\n"
  "            maillijst</a> bezoeken."
  
- #: Mailman/Cgi/confirm.py:454
+ #: Mailman/Cgi/confirm.py:455
  msgid "Confirm unsubscription request"
 -msgstr "Bevestig afmeldingsverzoek"
 +msgstr "Bevestig uitschrijvingsverzoek"
  
- #: Mailman/Cgi/confirm.py:469 Mailman/Cgi/confirm.py:565
+ #: Mailman/Cgi/confirm.py:470 Mailman/Cgi/confirm.py:566
  msgid "<em>Not available</em>"
 @@ -1610,24 +1608,24 @@
  "    <p>Or hit <em>Cancel and discard</em> to cancel this unsubscription\n"
@@ -411,22 +411,22 @@
 +"    <p>Of klik op <em>Annuleren</em> om uw uitschrijvingsverzoek af\n"
  "    te breken."
  
- #: Mailman/Cgi/confirm.py:488 Mailman/Cgi/options.py:746
+ #: Mailman/Cgi/confirm.py:489 Mailman/Cgi/options.py:746
  #: Mailman/Cgi/options.py:887 Mailman/Cgi/options.py:897
  msgid "Unsubscribe"
 -msgstr "Afmelden"
 +msgstr "Uitschrijven"
  
- #: Mailman/Cgi/confirm.py:489 Mailman/Cgi/confirm.py:594
+ #: Mailman/Cgi/confirm.py:490 Mailman/Cgi/confirm.py:595
  msgid "Cancel and discard"
 @@ -1635,7 +1633,7 @@
  
- #: Mailman/Cgi/confirm.py:499
+ #: Mailman/Cgi/confirm.py:500
  msgid "You have canceled your change of address request."
 -msgstr "Je hebt je email adres verandering geannuleerd."
 +msgstr "U hebt uw email adres verandering geannuleerd."
  
- #: Mailman/Cgi/confirm.py:528
+ #: Mailman/Cgi/confirm.py:529
  #, fuzzy
 @@ -1701,7 +1699,7 @@
  msgstr ""
@@ -439,12 +439,12 @@
  "        <li><b>Oude e-mailadres:</b> %(oldaddr)s\n"
 @@ -1826,7 +1824,7 @@
  
- #: Mailman/Cgi/confirm.py:757
+ #: Mailman/Cgi/confirm.py:758
  msgid "Membership re-enabled."
 -msgstr "Lidmaatschap is weer geaktiveerd."
 +msgstr "Lidmaatschap is weer geactiveerd."
  
- #: Mailman/Cgi/confirm.py:761
+ #: Mailman/Cgi/confirm.py:762
  msgid ""
 @@ -1835,7 +1833,7 @@
  "            href=\"%(optionsurl)s\">visit your member options page</a>.\n"
@@ -457,12 +457,12 @@
  "bezoeken</a>.\n"
 @@ -1843,7 +1841,7 @@
  
- #: Mailman/Cgi/confirm.py:773
+ #: Mailman/Cgi/confirm.py:774
  msgid "Re-enable mailing list membership"
 -msgstr "Her-aanmelding mailing lijst lidmaatschap"
 +msgstr "Her-inschrijving mailinglijst lidmaatschap"
  
- #: Mailman/Cgi/confirm.py:790
+ #: Mailman/Cgi/confirm.py:791
  msgid ""
 @@ -1851,8 +1849,8 @@
  "        from this mailing list.  To re-subscribe, please visit the\n"
@@ -474,17 +474,17 @@
 +"        deze mailing lijst.  Om weer in te schrijven, bezoek\n"
  "        <a href=\"%(listinfourl)s\">lijst informatie pagina</a>."
  
- #: Mailman/Cgi/confirm.py:805
+ #: Mailman/Cgi/confirm.py:806
 @@ -1934,9 +1932,8 @@
  msgstr "Lijstnaam mag niet de volgende tekens bevatten: \"@\": %(listname)s"
  
- #: Mailman/Cgi/create.py:110
+ #: Mailman/Cgi/create.py:111
 -#, fuzzy
  msgid "List already exists: %(safelistname)s"
 -msgstr "Lijst bestaat al: %(listname)s"
 +msgstr "Lijst bestaat al: %(safelistname)s"
  
- #: Mailman/Cgi/create.py:114
+ #: Mailman/Cgi/create.py:115
  msgid "You forgot to enter the list name"
 @@ -2008,7 +2005,7 @@
  msgstr ""
@@ -493,7 +493,7 @@
 -"    <b>%(owner)s</b>.  Je kan nu:"
 +"    <b>%(owner)s</b>.  U kan nu:"
  
- #: Mailman/Cgi/create.py:263
+ #: Mailman/Cgi/create.py:264
  msgid "Visit the list's info page"
 @@ -2131,7 +2128,7 @@
  "        select at least one initial language, the list will use the server\n"
@@ -506,12 +506,12 @@
  
 @@ -2157,7 +2154,7 @@
  
- #: Mailman/Cgi/edithtml.py:44
+ #: Mailman/Cgi/edithtml.py:46
  msgid "Subscribe results page"
 -msgstr "Aanmeldingsresultaatpagina"
 +msgstr "Inschrijvingsresultaatpagina"
  
- #: Mailman/Cgi/edithtml.py:45
+ #: Mailman/Cgi/edithtml.py:47
  msgid "User specific options page"
 @@ -2236,7 +2233,7 @@
  "preferences\n"
@@ -684,32 +684,32 @@
 @@ -2692,9 +2684,8 @@
  msgstr "Patroon:"
  
- #: Mailman/Cgi/private.py:65
+ #: Mailman/Cgi/private.py:64
 -#, fuzzy
  msgid "Private Archive Error"
 -msgstr "privé Archief fout"
 +msgstr "Privé Archief fout"
  
- #: Mailman/Cgi/private.py:66
+ #: Mailman/Cgi/private.py:65
  msgid "You must specify a list."
-@@ -2705,14 +2696,12 @@
+@@ -2705,14 +2696,13 @@
  msgstr ""
  
- #: Mailman/Cgi/private.py:110
+ #: Mailman/Cgi/private.py:109
 -#, fuzzy
  msgid "Private Archive Error - %(msg)s"
 -msgstr "privé Archief fout - %(msg)s"
 +msgstr "Privé Archief fout - %(msg)s"
  
- #: Mailman/Cgi/private.py:180
--#, fuzzy
+ #: Mailman/Cgi/private.py:178
+ #, fuzzy
  msgid "Private archive file not found"
 -msgstr "privé archief bestand niet gevonden"
 +msgstr "Privé archief bestand niet gevonden"
  
  #: Mailman/Cgi/rmlist.py:81
  msgid "You're being a sneaky list owner!"
-@@ -2814,7 +2803,7 @@
+@@ -2814,7 +2804,7 @@
  
  #: Mailman/Cgi/roster.py:97
  msgid "%(realname)s roster authentication failed."
@@ -718,7 +718,7 @@
  
  #: Mailman/Cgi/roster.py:125 Mailman/Cgi/roster.py:126
  #: Mailman/Cgi/subscribe.py:49 Mailman/Cgi/subscribe.py:60
-@@ -2827,7 +2816,7 @@
+@@ -2827,7 +2817,7 @@
  
  #: Mailman/Cgi/subscribe.py:123
  msgid "You may not subscribe a list to itself!"
@@ -727,7 +727,7 @@
  
  #: Mailman/Cgi/subscribe.py:131
  msgid "If you supply a password, you must confirm it."
-@@ -2846,10 +2835,10 @@
+@@ -2846,10 +2836,10 @@
  "moderator.  If confirmation is required, you will soon get a confirmation\n"
  "email which contains further instructions."
  msgstr ""
@@ -740,7 +740,7 @@
  "moet worden goedgekeurd door de lijstmoderator. Als uw bevestiging nodig\n"
  "is zult u een e-mail ontvangen met verdere instructies"
  
-@@ -2877,7 +2866,7 @@
+@@ -2877,7 +2867,7 @@
  "Your subscription is not allowed because the email address you gave is\n"
  "insecure."
  msgstr ""
@@ -749,7 +749,7 @@
  "onveilig is."
  
  #: Mailman/Cgi/subscribe.py:197
-@@ -2887,10 +2876,10 @@
+@@ -2887,10 +2877,10 @@
  "%(email)s.  Please note your subscription will not start until you confirm\n"
  "your subscription."
  msgstr ""
@@ -764,23 +764,16 @@
  
  #: Mailman/Cgi/subscribe.py:209
  msgid ""
-@@ -2900,13 +2889,13 @@
- "the\n"
- "moderator's decision when they get to your request."
- msgstr ""
--"Uw aanmeldingsverzoek week af omdat %(x)s.  Uw verzoek is doorgestuurd\n"
-+"Uw inschrijvingsverzoek week af omdat %(x)s.  Uw verzoek is doorgestuurd\n"
- "naar de lijstmoderator.  U zult nog een bericht ontvangen met daarin de\n"
- "beslissing van de moderator zodra hij het verzoek heeft verwerkt."
+@@ -2906,7 +2896,7 @@
  
- #: Mailman/Cgi/subscribe.py:216 Mailman/Commands/cmd_confirm.py:60
+ #: Mailman/Cgi/subscribe.py:216 Mailman/Commands/cmd_confirm.py:61
  msgid "You are already subscribed."
 -msgstr "U bent al aangemeld."
 +msgstr "U bent al ingeschreven."
  
  #: Mailman/Cgi/subscribe.py:230
  msgid "Mailman privacy alert"
-@@ -2930,8 +2919,8 @@
+@@ -2930,8 +2920,8 @@
  "message\n"
  "to the list administrator at %(listowner)s.\n"
  msgstr ""
@@ -791,7 +784,7 @@
  "\n"
  "Let er op dat lidmaatschap van deze lijst niet publiek toegankelijk is, dus\n"
  "het is mogelijk dat een onbevoegd person probeert de lijst binnen te "
-@@ -2939,11 +2928,11 @@
+@@ -2939,11 +2929,11 @@
  "Het zou een privacyschending zijn als we dit door zouden laten, daarom\n"
  "is deze poging tegengehouden.\n"
  "\n"
@@ -806,16 +799,16 @@
  "over\n"
  "uw privacy, meld dit dan aan de lijsteigenaar op dit e-mailadres: %"
  "(listowner)s.\n"
-@@ -2958,7 +2947,7 @@
+@@ -2958,7 +2948,7 @@
  
  #: Mailman/Cgi/subscribe.py:259
  msgid "You have been successfully subscribed to the %(realname)s mailing list."
 -msgstr "Je succesvol aangemeld bij de %(realname)s maillijst."
 +msgstr "U bent succesvol ingeschreven bij de %(realname)s maillijst."
  
- #: Mailman/Commands/cmd_confirm.py:17
+ #: Mailman/Commands/cmd_confirm.py:18
  #, fuzzy
-@@ -2989,9 +2978,9 @@
+@@ -2989,9 +2979,9 @@
  "message."
  msgstr ""
  "Ongeldige bevestigingscode. Let er op dat de bevestigingscode \n"
@@ -825,9 +818,9 @@
 -"aanmeldingsverzoek."
 +"inschrijvingsverzoek."
  
- #: Mailman/Commands/cmd_confirm.py:55
+ #: Mailman/Commands/cmd_confirm.py:56
  msgid "Your request has been forwarded to the list moderator for approval."
-@@ -3003,7 +2992,7 @@
+@@ -3003,7 +2993,7 @@
  "You are not currently a member.  Have you already unsubscribed or changed\n"
  "your email address?"
  msgstr ""
@@ -836,7 +829,7 @@
  "uw\n"
  "e-mailadres veranderd?"
  
-@@ -3169,13 +3158,13 @@
+@@ -3169,13 +3159,13 @@
  "        huidige wachtwoord toegestuurd. Met de argumenten <oud wachtwoord>\n"
  "        en <nieuw wachtwoord> kunt u uw wachtwoord veranderen.\n"
  "\n"
@@ -854,7 +847,7 @@
  
  #: Mailman/Commands/cmd_password.py:51 Mailman/Commands/cmd_password.py:66
  msgid "Your password is: %(password)s"
-@@ -3313,7 +3302,7 @@
+@@ -3313,7 +3303,7 @@
  "    set show [address=<adres>]\n"
  "        Bekijken van uw huidige instellingen.  Als u een bericht verstuurd "
  "vanaf een\n"
@@ -863,7 +856,7 @@
  "adres\n"
  "        op met `address=<adres>' (zonder haakjes om het e-mailadres heen, en "
  "zonder\n"
-@@ -3323,7 +3312,7 @@
+@@ -3323,7 +3313,7 @@
  "        Om uw instellingen te kunnen wijzigen moet u eerst dit commando "
  "gebruiken,\n"
  "        samen met uw wachtwoord.  Als u een bericht verstuurd vanaf een\n"
@@ -872,7 +865,7 @@
  "adres\n"
  "        op met `address=<adres>' (zonder haakjes om het e-mailadres heen, en "
  "zonder\n"
-@@ -3461,7 +3450,7 @@
+@@ -3461,7 +3451,7 @@
  
  #: Mailman/Commands/cmd_set.py:224
  msgid "You did not give the correct password"
@@ -881,7 +874,7 @@
  
  #: Mailman/Commands/cmd_set.py:236 Mailman/Commands/cmd_set.py:283
  msgid "Bad argument: %(arg)s"
-@@ -3534,17 +3523,17 @@
+@@ -3534,17 +3524,17 @@
  msgstr ""
  "\n"
  "    subscribe [wachtwoord] [digest|nodigest] [address=<adres>]\n"
@@ -903,7 +896,7 @@
  "het \n"
  "        e-mailadres, en zonder aanhalingstekens!) gebruiken.\n"
  
-@@ -3554,7 +3543,7 @@
+@@ -3554,7 +3544,7 @@
  
  #: Mailman/Commands/cmd_subscribe.py:84
  msgid "No valid address found to subscribe"
@@ -912,7 +905,7 @@
  
  #: Mailman/Commands/cmd_subscribe.py:105
  msgid ""
-@@ -3579,16 +3568,16 @@
+@@ -3579,16 +3569,16 @@
  "Your subscription is not allowed because\n"
  "the email address you gave is insecure."
  msgstr ""
@@ -932,7 +925,7 @@
  
  #: Mailman/Commands/cmd_subscribe.py:128
  msgid "This list only supports digest subscriptions!"
-@@ -3599,12 +3588,12 @@
+@@ -3599,12 +3589,12 @@
  "Your subscription request has been forwarded to the list administrator\n"
  "at %(listowner)s for review."
  msgstr ""
@@ -947,7 +940,7 @@
  
  #: Mailman/Commands/cmd_unsubscribe.py:17
  msgid ""
-@@ -3621,18 +3610,18 @@
+@@ -3621,18 +3611,18 @@
  msgstr ""
  "\n"
  "    unsubscribe [wachtwoord] [address=<adres>]\n"
@@ -970,7 +963,7 @@
  
  #: Mailman/Commands/cmd_unsubscribe.py:62
  msgid "%(address)s is not a member of the %(listname)s mailing list"
-@@ -3644,7 +3633,7 @@
+@@ -3644,7 +3634,7 @@
  "for\n"
  "approval."
  msgstr ""
@@ -979,7 +972,7 @@
  "goedkeuring."
  
  #: Mailman/Commands/cmd_unsubscribe.py:84
-@@ -3653,7 +3642,7 @@
+@@ -3653,7 +3643,7 @@
  
  #: Mailman/Commands/cmd_unsubscribe.py:87
  msgid "Unsubscription request succeeded."
@@ -988,7 +981,7 @@
  
  #: Mailman/Commands/cmd_who.py:29
  msgid ""
-@@ -3683,11 +3672,11 @@
+@@ -3683,11 +3673,11 @@
  "        door leden worden opgevraagd, daarom moet uw wachtwoord worden\n"
  "        opgegeven om de lijst op te vragen. Als u een bericht verstuurd "
  "vanaf\n"
@@ -1003,7 +996,7 @@
  "verstuurd.\n"
  
  #: Mailman/Commands/cmd_who.py:44
-@@ -3872,7 +3861,7 @@
+@@ -3872,7 +3862,7 @@
  
  #: Mailman/Deliverer.py:88
  msgid "You have been unsubscribed from the %(realname)s mailing list"
@@ -1012,7 +1005,7 @@
  
  #: Mailman/Deliverer.py:115
  msgid "%(listfullname)s mailing list reminder"
-@@ -3995,7 +3984,7 @@
+@@ -3995,7 +3985,7 @@
  "    <li><b>owneremail</b> - <em>geeft het adres van de lijsteigenaar</em>\n"
  "</ul>\n"
  "\n"
@@ -1021,7 +1014,7 @@
  "kan\n"
  " een bestand specificeren op uw locale computersysteem om als tekst te "
  "uploaden."
-@@ -4398,7 +4387,7 @@
+@@ -4398,7 +4388,7 @@
  "             cause a member to be unsubscribed?"
  msgstr ""
  "Moet Mailman u, de lijsteigenaar, een melding sturen wanneer\n"
@@ -1030,7 +1023,7 @@
  
  #: Mailman/Gui/Bounce.py:158
  msgid ""
-@@ -4411,7 +4400,7 @@
+@@ -4411,7 +4401,7 @@
  "Door deze waarde op <em>Nee</em> in te stellen worden\n"
  "             meldingsberichten uitgeschakeld die normaal aan de "
  "lijsteigenaar\n"
@@ -1039,7 +1032,7 @@
  "             teveel aan bounceberichten.\n"
  "             Een poging om het lid hiervan op de hoogte te stellen zal wel\n"
  "             worden gedaan."
-@@ -4918,7 +4907,7 @@
+@@ -4918,7 +4908,7 @@
  "De letters in deze naam kunnen naar kleine letters of hoofdletters\n"
  "             worden veranderd om het meer toonbaar te maken. Echter,\n"
  "             deze naam wordt gebruikt als het e-mailadres (b.v. in\n"
@@ -1048,7 +1041,7 @@
  "             andere manieren worden veranderd (e-mail is niet hoofdletter/\n"
  "             kleine lettergevoelig, maar is wel gevoelig voor al het "
  "andere :-)"
-@@ -4970,7 +4959,7 @@
+@@ -4970,7 +4960,7 @@
  "             <p>De <em>lijstmoderators</em> hebben wat beperktere\n"
  "             bevoegdheden. Zijn kunnen geen enkele lijstinstelling\n"
  "             wijzigen, maar zij mogen wel uitstaande beheertaken doen,\n"
@@ -1057,7 +1050,7 @@
  "             en het verwijderen van vastgehouden berichten. Natuurlijk\n"
  "             kunnen de <em>lijstbeheerders</em> ook deze taken uitvoeren.\n"
  "\n"
-@@ -5030,7 +5019,7 @@
+@@ -5030,7 +5020,7 @@
  "             <p>De <em>lijstmoderators</em> hebben wat beperktere\n"
  "             bevoegdheden. Zijn kunnen geen enkele lijstinstelling\n"
  "             wijzigen, maar zij mogen wel uitstaande beheertaken doen,\n"
@@ -1066,7 +1059,7 @@
  "             en het verwijderen van vastgehouden berichten. Natuurlijk\n"
  "             kunnen de <em>lijstbeheerders</em> ook deze taken uitvoeren.\n"
  "\n"
-@@ -5475,7 +5464,7 @@
+@@ -5475,7 +5465,7 @@
  
  #: Mailman/Gui/General.py:292
  msgid "Send welcome message to newly subscribed members?"
@@ -1075,7 +1068,7 @@
  
  #: Mailman/Gui/General.py:293
  msgid ""
-@@ -5486,7 +5475,7 @@
+@@ -5486,7 +5476,7 @@
  "mailing\n"
  "             list manager to Mailman."
  msgstr ""
@@ -1084,7 +1077,7 @@
  "             zonder dat zij dat merken. Deze instelling is waardevol\n"
  "             wanneer u lijsten transparant wilt verhuizen van een\n"
  "             ander lijstbeheerprogramma naar Mailman."
-@@ -5498,11 +5487,11 @@
+@@ -5498,11 +5488,11 @@
  msgstr ""
  "Tekst die wordt verzonden naar mensen die de lijst verlaten.\n"
  "             Als dit leeg is dan zal geen speciale tekst worden\n"
@@ -1094,11 +1087,11 @@
  #: Mailman/Gui/General.py:303
  msgid "Send goodbye message to members when they are unsubscribed?"
 -msgstr "Verstuur een afmeldingsbericht aan leden als ze zijn afgemeld?"
-+msgstr "Verstuur een uitschrijvingsbericht aan leden als ze zijn afgemeld?"
++msgstr "Verstuur een uitschrijvingsbericht aan leden als ze zijn uitgeschreven?"
  
  #: Mailman/Gui/General.py:306
  msgid ""
-@@ -5524,7 +5513,7 @@
+@@ -5524,7 +5514,7 @@
  msgstr ""
  "Lijstmoderators (en lijstbeheerders) krijgen dagelijks\n"
  "             herinneringen van aanvragen die wachten op goedkeuring, zoals\n"
@@ -1107,7 +1100,7 @@
  "             worden vastgehouden om bepaalde redenen. Het instellen van\n"
  "             deze instelling zorgt er ook voor dat er onmiddelijk meldingen\n"
  "             worden verstuurd als er nieuwe verzoeken binnenkomen."
-@@ -5534,8 +5523,8 @@
+@@ -5534,8 +5524,8 @@
  "Should administrator get notices of subscribes and\n"
  "             unsubscribes?"
  msgstr ""
@@ -1118,7 +1111,7 @@
  
  #: Mailman/Gui/General.py:321
  msgid "Send mail to poster when their posting is held for approval?"
-@@ -5572,7 +5561,7 @@
+@@ -5572,7 +5562,7 @@
  "Default options for new members joining this list.<input\n"
  "             type=\"hidden\" name=\"new_member_options\" value=\"ignore\">"
  msgstr ""
@@ -1127,7 +1120,7 @@
  "             op deze lijst.<input type=\"hidden\" name=\"new_member_options"
  "\" value=\"ignore\">"
  
-@@ -5581,7 +5570,7 @@
+@@ -5581,7 +5571,7 @@
  "When a new member is subscribed to this list, their initial\n"
  "             set of options is taken from the this variable's setting."
  msgstr ""
@@ -1136,7 +1129,7 @@
  "             initiële groepinstellingen genomen van de instelling\n"
  "             van deze variabele."
  
-@@ -5604,8 +5593,8 @@
+@@ -5604,8 +5594,8 @@
  "             in the process."
  msgstr ""
  "Beheertests zullen berichten controleren of ze\n"
@@ -1147,7 +1140,7 @@
  "             toegevoegd aan de beheerverzoekenwachtrij met een\n"
  "             melding aan de beheerder dat er een nieuw verzoek is\n"
  "             binnengekomen."
-@@ -5900,11 +5889,11 @@
+@@ -5900,11 +5890,11 @@
  
  #: Mailman/Gui/Membership.py:31
  msgid "Mass&nbsp;Subscription"
@@ -1161,7 +1154,7 @@
  
  #: Mailman/Gui/NonDigest.py:34
  msgid "Non-digest&nbsp;options"
-@@ -6125,7 +6114,7 @@
+@@ -6125,7 +6115,7 @@
  
  #: Mailman/Gui/Privacy.py:41
  msgid "Subscription&nbsp;rules"
@@ -1170,7 +1163,7 @@
  
  #: Mailman/Gui/Privacy.py:42
  msgid "Sender&nbsp;filters"
-@@ -6157,7 +6146,7 @@
+@@ -6157,7 +6147,7 @@
  
  #: Mailman/Gui/Privacy.py:63 Mailman/Gui/Privacy.py:86
  msgid "What steps are required for subscription?<br>"
@@ -1179,7 +1172,7 @@
  
  #: Mailman/Gui/Privacy.py:64
  msgid ""
-@@ -6188,13 +6177,13 @@
+@@ -6188,13 +6178,13 @@
  "                           Bevestiging en goedkeuring - zowel goedkeuring "
  "als bevestiging zijn vereist\n"
  "                           \n"
@@ -1196,7 +1189,7 @@
  "                           doen voor anderen zonder hun toestemming."
  
  #: Mailman/Gui/Privacy.py:87
-@@ -6215,16 +6204,16 @@
+@@ -6215,16 +6205,16 @@
  "Bevestiging (*) - er wordt een e-mailbevestigingsstap gevraagd <br>\n"
  "                           Verzoek tot goedkeuring - de lijstbeheerder wordt "
  "om goedkeuring gevraagd\n"
@@ -1217,7 +1210,7 @@
  "                           voor anderen zonder hun toestemming."
  
  #: Mailman/Gui/Privacy.py:103
-@@ -6235,7 +6224,7 @@
+@@ -6235,7 +6225,7 @@
  "            <a href=\"%(admin)s/archive\">Archival Options</a> section for\n"
  "            separate archive-related privacy settings."
  msgstr ""
@@ -1226,7 +1219,7 @@
  "            en ledenpublicatiebeleid in te stellen. U kunt ook instellen of "
  "deze\n"
  "            lijst wel of niet publiek toegankelijk is.  Zie ook de\n"
-@@ -6245,7 +6234,7 @@
+@@ -6245,7 +6235,7 @@
  
  #: Mailman/Gui/Privacy.py:109
  msgid "Subscribing"
@@ -1235,7 +1228,7 @@
  
  #: Mailman/Gui/Privacy.py:111
  msgid ""
-@@ -6261,7 +6250,7 @@
+@@ -6261,7 +6251,7 @@
  "             requests?  (<em>No</em> is recommended)"
  msgstr ""
  "Is de lijstmoderator's goedkeuring noodzakelijk voor\n"
@@ -1244,7 +1237,7 @@
  
  #: Mailman/Gui/Privacy.py:120
  msgid ""
-@@ -6281,9 +6270,9 @@
+@@ -6281,9 +6271,9 @@
  "             are required to be members of."
  msgstr ""
  "Als leden een lijst willen verlaten, dan moeten zijn een\n"
@@ -1257,7 +1250,7 @@
  "maillijsten.\n"
  "             (ze kunnen echt heel kwaad worden als ze niet van een lijst "
  "af \n"
-@@ -6291,7 +6280,7 @@
+@@ -6291,7 +6281,7 @@
  "\n"
  "             <p>For sommige lijsten kan het nodig zijn om "
  "moderatorgoedkeuring\n"
@@ -1266,7 +1259,7 @@
  "Voorbeelden\n"
  "             hiervan zijn lijsten binnen bedrijven waar alle werknemers lid "
  "van\n"
-@@ -6318,7 +6307,7 @@
+@@ -6318,7 +6308,7 @@
  "             addresses one per line; start the line with a ^ character to\n"
  "             designate a regular expression match."
  msgstr ""
@@ -1275,7 +1268,7 @@
  "             deze maillijst, zonder dat verdere moderatie noodzakelijk is.  "
  "Voeg\n"
  "             een adres per regel toe. Start de regel met een ^ teken om\n"
-@@ -6502,7 +6491,7 @@
+@@ -6502,7 +6492,7 @@
  "             de lijstbeheerder kan beslissen of een specifiek individueel\n"
  "             adres moet worden gemodereerd of niet.\n"
  "\n"
@@ -1284,7 +1277,7 @@
  "             gezet overeenkomstig deze instelling. Zet deze instelling uit "
  "om\n"
  "             berichten van leden standaard te accepteren. Zet deze "
-@@ -7398,7 +7387,7 @@
+@@ -7398,7 +7388,7 @@
  #: Mailman/HTMLFormatter.py:149
  #, fuzzy
  msgid "Note: your list delivery is currently disabled%(reason)s."
@@ -1293,7 +1286,7 @@
  
  #: Mailman/HTMLFormatter.py:152
  msgid "Mail delivery"
-@@ -7442,6 +7431,8 @@
+@@ -7442,6 +7432,8 @@
  "You will be sent email requesting confirmation, to\n"
  "            prevent others from gratuitously subscribing you."
  msgstr ""
@@ -1302,7 +1295,7 @@
  
  #: Mailman/HTMLFormatter.py:192
  msgid ""
-@@ -7449,6 +7440,9 @@
+@@ -7449,6 +7441,9 @@
  "            will be held for approval.  You will be notified of the list\n"
  "            moderator's decision by email."
  msgstr ""
@@ -1312,7 +1305,7 @@
  
  #: Mailman/HTMLFormatter.py:195 Mailman/HTMLFormatter.py:202
  msgid "also "
-@@ -7464,7 +7458,7 @@
+@@ -7464,7 +7459,7 @@
  "            decision by email."
  msgstr ""
  "Er wordt een bericht verzonden ter bevestiging, zodat\n"
@@ -1321,7 +1314,7 @@
  "            de bevestiging is ontvangen, wordt uw verzoek \n"
  "            vastgehouden voor goedkeuring  door de\n"
  "            lijstmoderator.  U krijgt via de beslissing van de\n"
-@@ -7513,7 +7507,6 @@
+@@ -7513,7 +7508,6 @@
  msgstr "<b><i>of</i></b> "
  
  #: Mailman/HTMLFormatter.py:254
@@ -1329,7 +1322,7 @@
  msgid ""
  "To unsubscribe from %(realname)s, get a password reminder,\n"
  "        or change your subscription options %(either)senter your "
-@@ -7521,16 +7514,15 @@
+@@ -7521,16 +7515,15 @@
  "        email address:\n"
  "        <p><center> "
  msgstr ""
@@ -1351,7 +1344,7 @@
  
  #: Mailman/HTMLFormatter.py:265
  msgid ""
-@@ -7545,25 +7537,23 @@
+@@ -7545,25 +7538,23 @@
  " If you leave the field blank, you will be prompted for\n"
  "        your email address"
  msgstr ""
@@ -1380,7 +1373,7 @@
  "            de lijst beheerder.</i>)"
  
  #: Mailman/HTMLFormatter.py:289
-@@ -7592,16 +7582,15 @@
+@@ -7592,16 +7583,15 @@
  
  #: Mailman/HTMLFormatter.py:303
  msgid "The subscribers list"
@@ -1400,7 +1393,7 @@
  
  #: Mailman/HTMLFormatter.py:312
  msgid "Password: "
-@@ -7612,16 +7601,14 @@
+@@ -7612,16 +7602,14 @@
  msgstr "Bezoek de ledenlijst"
  
  #: Mailman/HTMLFormatter.py:346
@@ -1419,7 +1412,7 @@
  
  #: Mailman/Handlers/Acknowledge.py:59
  msgid "%(realname)s post acknowledgement"
-@@ -7634,9 +7621,8 @@
+@@ -7634,9 +7622,8 @@
  msgstr ""
  
  #: Mailman/Handlers/Emergency.py:29
@@ -1430,7 +1423,7 @@
  
  #: Mailman/Handlers/Emergency.py:30 Mailman/Handlers/Hold.py:57
  msgid "Your message was deemed inappropriate by the moderator."
-@@ -7663,43 +7649,34 @@
+@@ -7663,43 +7650,34 @@
  msgstr "Niet-leden mogen geen berichten sturen naar deze lijst."
  
  #: Mailman/Handlers/Hold.py:64
@@ -1481,7 +1474,7 @@
  
  #: Mailman/Handlers/Hold.py:78
  msgid "Message may contain administrivia"
-@@ -7715,7 +7692,6 @@
+@@ -7715,7 +7693,6 @@
  msgstr ""
  
  #: Mailman/Handlers/Hold.py:89
@@ -1489,7 +1482,7 @@
  msgid "Message has a suspicious header"
  msgstr "Bericht heeft een verdachte header"
  
-@@ -7963,9 +7939,8 @@
+@@ -7963,9 +7940,8 @@
  msgstr ""
  
  #: Mailman/ListAdmin.py:496
@@ -1500,30 +1493,30 @@
  
  #: Mailman/ListAdmin.py:499
  msgid "Request to mailing list %(realname)s rejected"
-@@ -7989,9 +7964,8 @@
+@@ -7989,9 +7965,8 @@
  msgstr ""
  
- #: Mailman/MTA/Manual.py:81
+ #: Mailman/MTA/Manual.py:82
 -#, fuzzy
  msgid "## %(listname)s mailing list"
 -msgstr "%(hostname)s Mailing Lijsten"
 +msgstr "%(hostname)s maillijsten"
  
- #: Mailman/MTA/Manual.py:98
+ #: Mailman/MTA/Manual.py:99
  msgid "Mailing list creation request for list %(listname)s"
-@@ -8063,7 +8037,7 @@
+@@ -8063,7 +8038,7 @@
  
- #: Mailman/MailList.py:877 Mailman/MailList.py:1289
+ #: Mailman/MailList.py:880 Mailman/MailList.py:1292
  msgid " from %(remote)s"
 -msgstr ""
 +msgstr " vanaf %(remote)s"
  
- #: Mailman/MailList.py:910
+ #: Mailman/MailList.py:913
  msgid "subscriptions to %(realname)s require moderator approval"
-@@ -8104,9 +8078,8 @@
+@@ -8104,9 +8079,8 @@
  msgstr ""
  
- #: Mailman/Queue/BounceRunner.py:308
+ #: Mailman/Queue/BounceRunner.py:320
 -#, fuzzy
  msgid "Uncaught bounce notification"
 -msgstr "Niet gevangen Bounce meldingNiet onderschepte bouncemelding"
@@ -1531,7 +1524,7 @@
  
  #: Mailman/Queue/CommandRunner.py:92
  msgid "Ignoring non-text/plain MIME parts"
-@@ -8961,11 +8934,11 @@
+@@ -8961,11 +8935,11 @@
  #: bin/discard:94
  #, fuzzy
  msgid "Ignoring non-held message: %(f)s"

Modified: trunk/debian/patches/71_date_overflows.dpatch
===================================================================
--- trunk/debian/patches/71_date_overflows.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/71_date_overflows.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -5,9 +5,9 @@
 ## DP: React sensibly on integer overflow in date handling
 
 @DPATCH@
-diff -urNad mailman-2.1.7~/Mailman/Handlers/Scrubber.py mailman-2.1.7/Mailman/Handlers/Scrubber.py
---- mailman-2.1.7~/Mailman/Handlers/Scrubber.py	2006-01-29 17:06:54.132258543 +0100
-+++ mailman-2.1.7/Mailman/Handlers/Scrubber.py	2006-01-29 17:06:55.657044794 +0100
+diff -urNad mailman-2.1.8rc1~/Mailman/Handlers/Scrubber.py mailman-2.1.8rc1/Mailman/Handlers/Scrubber.py
+--- mailman-2.1.8rc1~/Mailman/Handlers/Scrubber.py	2006-04-11 21:42:42.598306358 +0200
++++ mailman-2.1.8rc1/Mailman/Handlers/Scrubber.py	2006-04-11 21:42:43.737147119 +0200
 @@ -143,7 +143,7 @@
                       }.get(parts[3], 0)
              day = int(parts[4])
@@ -17,15 +17,3 @@
              # Best we can do I think
              month = day = year = 0
          datedir = '%04d%02d%02d' % (year, month, day)
-diff -urNad mailman-2.1.7~/Mailman/Queue/ArchRunner.py mailman-2.1.7/Mailman/Queue/ArchRunner.py
---- mailman-2.1.7~/Mailman/Queue/ArchRunner.py	2006-01-29 17:06:43.000000000 +0100
-+++ mailman-2.1.7/Mailman/Queue/ArchRunner.py	2006-01-29 17:06:55.658044654 +0100
-@@ -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

Deleted: trunk/debian/patches/72_hyperarch_error_handling.dpatch
===================================================================
--- trunk/debian/patches/72_hyperarch_error_handling.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/72_hyperarch_error_handling.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 72_hyperarch_error_handling.dpatch by  <lionel at mamane.lu>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Debian bug #310451
-## DP: Add error handling to HyperArch
-
- at DPATCH@
-diff -urNad mailman-2.1.5~/Mailman/Archiver/HyperArch.py mailman-2.1.5/Mailman/Archiver/HyperArch.py
---- mailman-2.1.5~/Mailman/Archiver/HyperArch.py	2003-12-26 21:41:30.000000000 +0100
-+++ mailman-2.1.5/Mailman/Archiver/HyperArch.py	2005-11-13 17:53:49.260054232 +0100
-@@ -43,6 +43,7 @@
- 
- from Mailman import mm_cfg
- from Mailman import Utils
-+from Mailman import Errors
- from Mailman import LockFile
- from Mailman import MailList
- from Mailman import i18n

Modified: trunk/debian/patches/99_js_templates.dpatch
===================================================================
--- trunk/debian/patches/99_js_templates.dpatch	2006-04-11 18:35:32 UTC (rev 289)
+++ trunk/debian/patches/99_js_templates.dpatch	2006-04-11 20:05:31 UTC (rev 290)
@@ -22,9 +22,9 @@
 
 exit 0
 @DPATCH@
-diff -urNad mailman-2.1.7~/templates/cs/admlogin.html mailman-2.1.7/templates/cs/admlogin.html
---- mailman-2.1.7~/templates/cs/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/cs/admlogin.html	2006-01-29 17:12:06.061456483 +0100
+diff -urNad mailman-2.1.8rc1~/templates/cs/admlogin.html mailman-2.1.8rc1/templates/cs/admlogin.html
+--- mailman-2.1.8rc1~/templates/cs/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/cs/admlogin.html	2006-04-11 21:52:26.033075599 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -38,9 +38,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/cs/private.html mailman-2.1.7/templates/cs/private.html
---- mailman-2.1.7~/templates/cs/private.html	2006-01-29 17:12:04.304703481 +0100
-+++ mailman-2.1.7/templates/cs/private.html	2006-01-29 17:12:06.061456483 +0100
+diff -urNad mailman-2.1.8rc1~/templates/cs/private.html mailman-2.1.8rc1/templates/cs/private.html
+--- mailman-2.1.8rc1~/templates/cs/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/cs/private.html	2006-04-11 21:52:26.034075460 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -52,9 +52,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/da/admlogin.html mailman-2.1.7/templates/da/admlogin.html
---- mailman-2.1.7~/templates/da/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/da/admlogin.html	2006-01-29 17:12:06.062456342 +0100
+diff -urNad mailman-2.1.8rc1~/templates/da/admlogin.html mailman-2.1.8rc1/templates/da/admlogin.html
+--- mailman-2.1.8rc1~/templates/da/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/da/admlogin.html	2006-04-11 21:52:26.034075460 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -68,9 +68,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/da/private.html mailman-2.1.7/templates/da/private.html
---- mailman-2.1.7~/templates/da/private.html	2006-01-29 17:12:04.304703481 +0100
-+++ mailman-2.1.7/templates/da/private.html	2006-01-29 17:12:06.062456342 +0100
+diff -urNad mailman-2.1.8rc1~/templates/da/private.html mailman-2.1.8rc1/templates/da/private.html
+--- mailman-2.1.8rc1~/templates/da/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/da/private.html	2006-04-11 21:52:26.034075460 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -82,9 +82,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/de/admlogin.html mailman-2.1.7/templates/de/admlogin.html
---- mailman-2.1.7~/templates/de/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/de/admlogin.html	2006-01-29 17:12:06.062456342 +0100
+diff -urNad mailman-2.1.8rc1~/templates/de/admlogin.html mailman-2.1.8rc1/templates/de/admlogin.html
+--- mailman-2.1.8rc1~/templates/de/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/de/admlogin.html	2006-04-11 21:52:26.034075460 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -98,9 +98,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/de/private.html mailman-2.1.7/templates/de/private.html
---- mailman-2.1.7~/templates/de/private.html	2006-01-29 17:12:04.305703341 +0100
-+++ mailman-2.1.7/templates/de/private.html	2006-01-29 17:12:06.062456342 +0100
+diff -urNad mailman-2.1.8rc1~/templates/de/private.html mailman-2.1.8rc1/templates/de/private.html
+--- mailman-2.1.8rc1~/templates/de/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/de/private.html	2006-04-11 21:52:26.035075321 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -112,9 +112,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/en/admlogin.html mailman-2.1.7/templates/en/admlogin.html
---- mailman-2.1.7~/templates/en/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/en/admlogin.html	2006-01-29 17:12:06.063456201 +0100
+diff -urNad mailman-2.1.8rc1~/templates/en/admlogin.html mailman-2.1.8rc1/templates/en/admlogin.html
+--- mailman-2.1.8rc1~/templates/en/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/en/admlogin.html	2006-04-11 21:52:26.035075321 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -128,9 +128,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/en/listinfo.html mailman-2.1.7/templates/en/listinfo.html
---- mailman-2.1.7~/templates/en/listinfo.html	2006-01-29 17:12:04.065737080 +0100
-+++ mailman-2.1.7/templates/en/listinfo.html	2006-01-29 17:12:06.063456201 +0100
+diff -urNad mailman-2.1.8rc1~/templates/en/listinfo.html mailman-2.1.8rc1/templates/en/listinfo.html
+--- mailman-2.1.8rc1~/templates/en/listinfo.html	2006-04-11 21:52:24.747254731 +0200
++++ mailman-2.1.8rc1/templates/en/listinfo.html	2006-04-11 21:52:26.035075321 +0200
 @@ -4,7 +4,7 @@
      <TITLE><MM-List-Name> Info Page</TITLE>
    
@@ -140,9 +140,9 @@
  
      <P>
        <TABLE COLS="1" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/en/private.html mailman-2.1.7/templates/en/private.html
---- mailman-2.1.7~/templates/en/private.html	2006-01-29 17:12:04.305703341 +0100
-+++ mailman-2.1.7/templates/en/private.html	2006-01-29 17:12:06.063456201 +0100
+diff -urNad mailman-2.1.8rc1~/templates/en/private.html mailman-2.1.8rc1/templates/en/private.html
+--- mailman-2.1.8rc1~/templates/en/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/en/private.html	2006-04-11 21:52:26.035075321 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -154,9 +154,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/es/admlogin.html mailman-2.1.7/templates/es/admlogin.html
---- mailman-2.1.7~/templates/es/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/es/admlogin.html	2006-01-29 17:12:06.063456201 +0100
+diff -urNad mailman-2.1.8rc1~/templates/es/admlogin.html mailman-2.1.8rc1/templates/es/admlogin.html
+--- mailman-2.1.8rc1~/templates/es/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/es/admlogin.html	2006-04-11 21:52:26.036075181 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -170,9 +170,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/es/private.html mailman-2.1.7/templates/es/private.html
---- mailman-2.1.7~/templates/es/private.html	2006-01-29 17:12:04.305703341 +0100
-+++ mailman-2.1.7/templates/es/private.html	2006-01-29 17:12:06.064456061 +0100
+diff -urNad mailman-2.1.8rc1~/templates/es/private.html mailman-2.1.8rc1/templates/es/private.html
+--- mailman-2.1.8rc1~/templates/es/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/es/private.html	2006-04-11 21:52:26.036075181 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -184,9 +184,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/et/admlogin.html mailman-2.1.7/templates/et/admlogin.html
---- mailman-2.1.7~/templates/et/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/et/admlogin.html	2006-01-29 17:12:06.064456061 +0100
+diff -urNad mailman-2.1.8rc1~/templates/et/admlogin.html mailman-2.1.8rc1/templates/et/admlogin.html
+--- mailman-2.1.8rc1~/templates/et/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/et/admlogin.html	2006-04-11 21:52:26.036075181 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -200,9 +200,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/et/private.html mailman-2.1.7/templates/et/private.html
---- mailman-2.1.7~/templates/et/private.html	2006-01-29 17:12:04.306703200 +0100
-+++ mailman-2.1.7/templates/et/private.html	2006-01-29 17:12:06.064456061 +0100
+diff -urNad mailman-2.1.8rc1~/templates/et/private.html mailman-2.1.8rc1/templates/et/private.html
+--- mailman-2.1.8rc1~/templates/et/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/et/private.html	2006-04-11 21:52:26.037075042 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -214,9 +214,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/eu/admlogin.html mailman-2.1.7/templates/eu/admlogin.html
---- mailman-2.1.7~/templates/eu/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/eu/admlogin.html	2006-01-29 17:12:06.065455920 +0100
+diff -urNad mailman-2.1.8rc1~/templates/eu/admlogin.html mailman-2.1.8rc1/templates/eu/admlogin.html
+--- mailman-2.1.8rc1~/templates/eu/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/eu/admlogin.html	2006-04-11 21:52:26.037075042 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -230,9 +230,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/eu/private.html mailman-2.1.7/templates/eu/private.html
---- mailman-2.1.7~/templates/eu/private.html	2006-01-29 17:12:04.306703200 +0100
-+++ mailman-2.1.7/templates/eu/private.html	2006-01-29 17:12:06.065455920 +0100
+diff -urNad mailman-2.1.8rc1~/templates/eu/private.html mailman-2.1.8rc1/templates/eu/private.html
+--- mailman-2.1.8rc1~/templates/eu/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/eu/private.html	2006-04-11 21:52:26.037075042 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -246,9 +246,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/fi/admlogin.html mailman-2.1.7/templates/fi/admlogin.html
---- mailman-2.1.7~/templates/fi/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/fi/admlogin.html	2006-01-29 17:12:06.065455920 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fi/admlogin.html mailman-2.1.8rc1/templates/fi/admlogin.html
+--- mailman-2.1.8rc1~/templates/fi/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/fi/admlogin.html	2006-04-11 21:52:26.037075042 +0200
 @@ -2,9 +2,10 @@
  <html>
  <head>
@@ -262,9 +262,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/fi/private.html mailman-2.1.7/templates/fi/private.html
---- mailman-2.1.7~/templates/fi/private.html	2006-01-29 17:12:04.306703200 +0100
-+++ mailman-2.1.7/templates/fi/private.html	2006-01-29 17:12:06.065455920 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fi/private.html mailman-2.1.8rc1/templates/fi/private.html
+--- mailman-2.1.8rc1~/templates/fi/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/fi/private.html	2006-04-11 21:52:26.038074903 +0200
 @@ -2,8 +2,9 @@
  <html>
  <head>
@@ -276,9 +276,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/fr/admlogin.html mailman-2.1.7/templates/fr/admlogin.html
---- mailman-2.1.7~/templates/fr/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/fr/admlogin.html	2006-01-29 17:12:06.066455780 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fr/admlogin.html mailman-2.1.8rc1/templates/fr/admlogin.html
+--- mailman-2.1.8rc1~/templates/fr/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/fr/admlogin.html	2006-04-11 21:52:26.038074903 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -292,9 +292,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/fr/private.html mailman-2.1.7/templates/fr/private.html
---- mailman-2.1.7~/templates/fr/private.html	2006-01-29 17:12:04.306703200 +0100
-+++ mailman-2.1.7/templates/fr/private.html	2006-01-29 17:12:06.066455780 +0100
+diff -urNad mailman-2.1.8rc1~/templates/fr/private.html mailman-2.1.8rc1/templates/fr/private.html
+--- mailman-2.1.8rc1~/templates/fr/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/fr/private.html	2006-04-11 21:52:26.038074903 +0200
 @@ -2,8 +2,9 @@
  <head>
      <title>Authentification pour l'acc&egrave;s aux archives priv&eacute;es de
@@ -306,9 +306,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/hu/admlogin.html mailman-2.1.7/templates/hu/admlogin.html
---- mailman-2.1.7~/templates/hu/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/hu/admlogin.html	2006-01-29 17:12:06.066455780 +0100
+diff -urNad mailman-2.1.8rc1~/templates/hu/admlogin.html mailman-2.1.8rc1/templates/hu/admlogin.html
+--- mailman-2.1.8rc1~/templates/hu/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/hu/admlogin.html	2006-04-11 21:52:26.038074903 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -322,9 +322,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/hu/private.html mailman-2.1.7/templates/hu/private.html
---- mailman-2.1.7~/templates/hu/private.html	2006-01-29 17:12:04.307703060 +0100
-+++ mailman-2.1.7/templates/hu/private.html	2006-01-29 17:12:06.066455780 +0100
+diff -urNad mailman-2.1.8rc1~/templates/hu/private.html mailman-2.1.8rc1/templates/hu/private.html
+--- mailman-2.1.8rc1~/templates/hu/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/hu/private.html	2006-04-11 21:52:26.039074764 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -336,9 +336,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/it/admlogin.html mailman-2.1.7/templates/it/admlogin.html
---- mailman-2.1.7~/templates/it/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/it/admlogin.html	2006-01-29 17:12:06.067455639 +0100
+diff -urNad mailman-2.1.8rc1~/templates/it/admlogin.html mailman-2.1.8rc1/templates/it/admlogin.html
+--- mailman-2.1.8rc1~/templates/it/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/it/admlogin.html	2006-04-11 21:52:26.077069470 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -352,9 +352,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/it/private.html mailman-2.1.7/templates/it/private.html
---- mailman-2.1.7~/templates/it/private.html	2006-01-29 17:12:04.307703060 +0100
-+++ mailman-2.1.7/templates/it/private.html	2006-01-29 17:12:06.067455639 +0100
+diff -urNad mailman-2.1.8rc1~/templates/it/private.html mailman-2.1.8rc1/templates/it/private.html
+--- mailman-2.1.8rc1~/templates/it/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/it/private.html	2006-04-11 21:52:26.077069470 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -366,9 +366,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/ja/admlogin.html mailman-2.1.7/templates/ja/admlogin.html
---- mailman-2.1.7~/templates/ja/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/ja/admlogin.html	2006-01-29 17:12:06.067455639 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ja/admlogin.html mailman-2.1.8rc1/templates/ja/admlogin.html
+--- mailman-2.1.8rc1~/templates/ja/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ja/admlogin.html	2006-04-11 21:52:26.077069470 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -382,9 +382,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/ja/private.html mailman-2.1.7/templates/ja/private.html
---- mailman-2.1.7~/templates/ja/private.html	2006-01-29 17:12:04.308702919 +0100
-+++ mailman-2.1.7/templates/ja/private.html	2006-01-29 17:12:06.068455499 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ja/private.html mailman-2.1.8rc1/templates/ja/private.html
+--- mailman-2.1.8rc1~/templates/ja/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ja/private.html	2006-04-11 21:52:26.078069331 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -396,9 +396,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/ko/admlogin.html mailman-2.1.7/templates/ko/admlogin.html
---- mailman-2.1.7~/templates/ko/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/ko/admlogin.html	2006-01-29 17:12:06.068455499 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ko/admlogin.html mailman-2.1.8rc1/templates/ko/admlogin.html
+--- mailman-2.1.8rc1~/templates/ko/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ko/admlogin.html	2006-04-11 21:52:26.078069331 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -412,9 +412,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/ko/private.html mailman-2.1.7/templates/ko/private.html
---- mailman-2.1.7~/templates/ko/private.html	2006-01-29 17:12:04.308702919 +0100
-+++ mailman-2.1.7/templates/ko/private.html	2006-01-29 17:12:06.068455499 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ko/private.html mailman-2.1.8rc1/templates/ko/private.html
+--- mailman-2.1.8rc1~/templates/ko/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ko/private.html	2006-04-11 21:52:26.078069331 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -426,9 +426,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/lt/admlogin.html mailman-2.1.7/templates/lt/admlogin.html
---- mailman-2.1.7~/templates/lt/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/lt/admlogin.html	2006-01-29 17:12:06.109449735 +0100
+diff -urNad mailman-2.1.8rc1~/templates/lt/admlogin.html mailman-2.1.8rc1/templates/lt/admlogin.html
+--- mailman-2.1.8rc1~/templates/lt/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/lt/admlogin.html	2006-04-11 21:52:26.078069331 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -442,9 +442,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/lt/private.html mailman-2.1.7/templates/lt/private.html
---- mailman-2.1.7~/templates/lt/private.html	2006-01-29 17:12:04.308702919 +0100
-+++ mailman-2.1.7/templates/lt/private.html	2006-01-29 17:12:06.110449594 +0100
+diff -urNad mailman-2.1.8rc1~/templates/lt/private.html mailman-2.1.8rc1/templates/lt/private.html
+--- mailman-2.1.8rc1~/templates/lt/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/lt/private.html	2006-04-11 21:52:26.079069192 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -456,9 +456,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/nl/admlogin.html mailman-2.1.7/templates/nl/admlogin.html
---- mailman-2.1.7~/templates/nl/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/nl/admlogin.html	2006-01-29 17:12:06.110449594 +0100
+diff -urNad mailman-2.1.8rc1~/templates/nl/admlogin.html mailman-2.1.8rc1/templates/nl/admlogin.html
+--- mailman-2.1.8rc1~/templates/nl/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/nl/admlogin.html	2006-04-11 21:52:26.079069192 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -472,9 +472,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/nl/private.html mailman-2.1.7/templates/nl/private.html
---- mailman-2.1.7~/templates/nl/private.html	2006-01-29 17:12:04.308702919 +0100
-+++ mailman-2.1.7/templates/nl/private.html	2006-01-29 17:12:06.110449594 +0100
+diff -urNad mailman-2.1.8rc1~/templates/nl/private.html mailman-2.1.8rc1/templates/nl/private.html
+--- mailman-2.1.8rc1~/templates/nl/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/nl/private.html	2006-04-11 21:54:39.536373682 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -483,12 +483,12 @@
  </head>
 -<body bgcolor="#ffffff">
 +<body bgcolor="#ffffff" onLoad="sf()">
- <FORM METHOD=POST ACTION="%(action)s">
+ <FORM METHOD=POST ACTION="%(action)s/">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/no/admlogin.html mailman-2.1.7/templates/no/admlogin.html
---- mailman-2.1.7~/templates/no/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/no/admlogin.html	2006-01-29 17:12:06.110449594 +0100
+diff -urNad mailman-2.1.8rc1~/templates/no/admlogin.html mailman-2.1.8rc1/templates/no/admlogin.html
+--- mailman-2.1.8rc1~/templates/no/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/no/admlogin.html	2006-04-11 21:52:26.080069052 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -502,9 +502,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/no/private.html mailman-2.1.7/templates/no/private.html
---- mailman-2.1.7~/templates/no/private.html	2006-01-29 17:12:04.309702779 +0100
-+++ mailman-2.1.7/templates/no/private.html	2006-01-29 17:12:06.111449454 +0100
+diff -urNad mailman-2.1.8rc1~/templates/no/private.html mailman-2.1.8rc1/templates/no/private.html
+--- mailman-2.1.8rc1~/templates/no/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/no/private.html	2006-04-11 21:52:26.080069052 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -516,9 +516,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/pl/admlogin.html mailman-2.1.7/templates/pl/admlogin.html
---- mailman-2.1.7~/templates/pl/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/pl/admlogin.html	2006-01-29 17:12:06.111449454 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pl/admlogin.html mailman-2.1.8rc1/templates/pl/admlogin.html
+--- mailman-2.1.8rc1~/templates/pl/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pl/admlogin.html	2006-04-11 21:52:26.080069052 +0200
 @@ -2,9 +2,10 @@
  <head>
    <title>Uwierzytelnienie %(who)s %(listname)s</title>
@@ -532,9 +532,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/pl/private.html mailman-2.1.7/templates/pl/private.html
---- mailman-2.1.7~/templates/pl/private.html	2006-01-29 17:12:04.309702779 +0100
-+++ mailman-2.1.7/templates/pl/private.html	2006-01-29 17:12:06.111449454 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pl/private.html mailman-2.1.8rc1/templates/pl/private.html
+--- mailman-2.1.8rc1~/templates/pl/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pl/private.html	2006-04-11 21:52:26.080069052 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -546,9 +546,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/pt/admlogin.html mailman-2.1.7/templates/pt/admlogin.html
---- mailman-2.1.7~/templates/pt/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/pt/admlogin.html	2006-01-29 17:12:06.111449454 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt/admlogin.html mailman-2.1.8rc1/templates/pt/admlogin.html
+--- mailman-2.1.8rc1~/templates/pt/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt/admlogin.html	2006-04-11 21:52:26.081068913 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -562,9 +562,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/pt/private.html mailman-2.1.7/templates/pt/private.html
---- mailman-2.1.7~/templates/pt/private.html	2006-01-29 17:12:04.309702779 +0100
-+++ mailman-2.1.7/templates/pt/private.html	2006-01-29 17:12:06.112449313 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt/private.html mailman-2.1.8rc1/templates/pt/private.html
+--- mailman-2.1.8rc1~/templates/pt/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt/private.html	2006-04-11 21:52:26.081068913 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -576,9 +576,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/pt_BR/admlogin.html mailman-2.1.7/templates/pt_BR/admlogin.html
---- mailman-2.1.7~/templates/pt_BR/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/pt_BR/admlogin.html	2006-01-29 17:12:06.112449313 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt_BR/admlogin.html mailman-2.1.8rc1/templates/pt_BR/admlogin.html
+--- mailman-2.1.8rc1~/templates/pt_BR/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt_BR/admlogin.html	2006-04-11 21:52:26.081068913 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -592,9 +592,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/pt_BR/private.html mailman-2.1.7/templates/pt_BR/private.html
---- mailman-2.1.7~/templates/pt_BR/private.html	2006-01-29 17:12:04.309702779 +0100
-+++ mailman-2.1.7/templates/pt_BR/private.html	2006-01-29 17:12:06.112449313 +0100
+diff -urNad mailman-2.1.8rc1~/templates/pt_BR/private.html mailman-2.1.8rc1/templates/pt_BR/private.html
+--- mailman-2.1.8rc1~/templates/pt_BR/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/pt_BR/private.html	2006-04-11 21:52:26.082068774 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -606,9 +606,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/ru/admlogin.html mailman-2.1.7/templates/ru/admlogin.html
---- mailman-2.1.7~/templates/ru/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/ru/admlogin.html	2006-01-29 17:12:06.112449313 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ru/admlogin.html mailman-2.1.8rc1/templates/ru/admlogin.html
+--- mailman-2.1.8rc1~/templates/ru/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ru/admlogin.html	2006-04-11 21:52:26.082068774 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -622,9 +622,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/ru/private.html mailman-2.1.7/templates/ru/private.html
---- mailman-2.1.7~/templates/ru/private.html	2006-01-29 17:12:04.310702638 +0100
-+++ mailman-2.1.7/templates/ru/private.html	2006-01-29 17:12:06.113449172 +0100
+diff -urNad mailman-2.1.8rc1~/templates/ru/private.html mailman-2.1.8rc1/templates/ru/private.html
+--- mailman-2.1.8rc1~/templates/ru/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/ru/private.html	2006-04-11 21:52:26.092067381 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -636,9 +636,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/sr/admlogin.html mailman-2.1.7/templates/sr/admlogin.html
---- mailman-2.1.7~/templates/sr/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/sr/admlogin.html	2006-01-29 17:12:06.113449172 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sr/admlogin.html mailman-2.1.8rc1/templates/sr/admlogin.html
+--- mailman-2.1.8rc1~/templates/sr/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/sr/admlogin.html	2006-04-11 21:52:26.092067381 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -653,9 +653,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/sr/private.html mailman-2.1.7/templates/sr/private.html
---- mailman-2.1.7~/templates/sr/private.html	2006-01-29 17:12:04.310702638 +0100
-+++ mailman-2.1.7/templates/sr/private.html	2006-01-29 17:12:06.113449172 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sr/private.html mailman-2.1.8rc1/templates/sr/private.html
+--- mailman-2.1.8rc1~/templates/sr/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/sr/private.html	2006-04-11 21:52:26.108065152 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -668,9 +668,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/sv/admlogin.html mailman-2.1.7/templates/sv/admlogin.html
---- mailman-2.1.7~/templates/sv/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/sv/admlogin.html	2006-01-29 17:12:06.116448751 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sv/admlogin.html mailman-2.1.8rc1/templates/sv/admlogin.html
+--- mailman-2.1.8rc1~/templates/sv/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/sv/admlogin.html	2006-04-11 21:52:26.108065152 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -684,9 +684,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/sv/private.html mailman-2.1.7/templates/sv/private.html
---- mailman-2.1.7~/templates/sv/private.html	2006-01-29 17:12:04.311702497 +0100
-+++ mailman-2.1.7/templates/sv/private.html	2006-01-29 17:12:06.116448751 +0100
+diff -urNad mailman-2.1.8rc1~/templates/sv/private.html mailman-2.1.8rc1/templates/sv/private.html
+--- mailman-2.1.8rc1~/templates/sv/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/sv/private.html	2006-04-11 21:52:26.108065152 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -698,9 +698,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/uk/admlogin.html mailman-2.1.7/templates/uk/admlogin.html
---- mailman-2.1.7~/templates/uk/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/uk/admlogin.html	2006-01-29 17:12:06.117448610 +0100
+diff -urNad mailman-2.1.8rc1~/templates/uk/admlogin.html mailman-2.1.8rc1/templates/uk/admlogin.html
+--- mailman-2.1.8rc1~/templates/uk/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/uk/admlogin.html	2006-04-11 21:52:26.109065013 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -714,9 +714,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/uk/private.html mailman-2.1.7/templates/uk/private.html
---- mailman-2.1.7~/templates/uk/private.html	2006-01-29 17:12:04.311702497 +0100
-+++ mailman-2.1.7/templates/uk/private.html	2006-01-29 17:12:06.117448610 +0100
+diff -urNad mailman-2.1.8rc1~/templates/uk/private.html mailman-2.1.8rc1/templates/uk/private.html
+--- mailman-2.1.8rc1~/templates/uk/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/uk/private.html	2006-04-11 21:52:26.109065013 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -728,9 +728,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/zh_CN/admlogin.html mailman-2.1.7/templates/zh_CN/admlogin.html
---- mailman-2.1.7~/templates/zh_CN/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/zh_CN/admlogin.html	2006-01-29 17:12:06.124447626 +0100
+diff -urNad mailman-2.1.8rc1~/templates/zh_CN/admlogin.html mailman-2.1.8rc1/templates/zh_CN/admlogin.html
+--- mailman-2.1.8rc1~/templates/zh_CN/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/zh_CN/admlogin.html	2006-04-11 21:52:26.109065013 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>
@@ -744,9 +744,9 @@
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
      <TR>
-diff -urNad mailman-2.1.7~/templates/zh_CN/private.html mailman-2.1.7/templates/zh_CN/private.html
---- mailman-2.1.7~/templates/zh_CN/private.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/zh_CN/private.html	2006-01-29 17:13:45.065438208 +0100
+diff -urNad mailman-2.1.8rc1~/templates/zh_CN/private.html mailman-2.1.8rc1/templates/zh_CN/private.html
+--- mailman-2.1.8rc1~/templates/zh_CN/private.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/zh_CN/private.html	2006-04-11 21:52:26.109065013 +0200
 @@ -1,8 +1,9 @@
  <html>
  <head>
@@ -758,9 +758,9 @@
  <FORM METHOD=POST ACTION="%(action)s">
  %(message)s
    <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5">
-diff -urNad mailman-2.1.7~/templates/zh_TW/admlogin.html mailman-2.1.7/templates/zh_TW/admlogin.html
---- mailman-2.1.7~/templates/zh_TW/admlogin.html	2006-01-29 17:11:56.000000000 +0100
-+++ mailman-2.1.7/templates/zh_TW/admlogin.html	2006-01-29 17:12:06.125447486 +0100
+diff -urNad mailman-2.1.8rc1~/templates/zh_TW/admlogin.html mailman-2.1.8rc1/templates/zh_TW/admlogin.html
+--- mailman-2.1.8rc1~/templates/zh_TW/admlogin.html	2006-04-11 21:51:58.000000000 +0200
++++ mailman-2.1.8rc1/templates/zh_TW/admlogin.html	2006-04-11 21:52:26.110064874 +0200
 @@ -1,9 +1,10 @@
  <html>
  <head>




More information about the Pkg-mailman-hackers mailing list