[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 993
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 18:40:13 -0700
message:
  /cygdrive/c/MM_bzr/log.txt
modified:
  Mailman/Queue/MaildirRunner.py*

=== modified file 'Mailman/Queue/MaildirRunner.py' (properties changed)
--- a/Mailman/Queue/MaildirRunner.py2005-08-27 01:40:17 +
+++ b/Mailman/Queue/MaildirRunner.py2007-10-05 01:40:13 +
@@ -1,4 +1,4 @@
-# Copyright (C) 2002 by the Free Software Foundation, Inc.
+# Copyright (C) 2002-2007 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.
 
 Maildir pre-queue runner.
 
@@ -66,11 +67,22 @@
 # listname-request@
 lre = re.compile(r
  ^# start of string
- (?Plistname[EMAIL PROTECTED]) # listname@ or listname-subq@
+ (?Plistname[EMAIL PROTECTED])# listname@ or listname-subq@ (non-greedy)
  (?:  # non-grouping
-  # dash separator
-   (?Psubq[EMAIL PROTECTED])  # everything up to + or - or @
+   (?Psubq  # any known suffix
+ admin|
+ bounces|
+ confirm|
+ join|
+ leave|
+ owner|
+ request|
+ subscribe|
+ unsubscribe
+   )
  )?   # if it exists
+ [EMAIL PROTECTED] # followed by + or @
  , re.VERBOSE | re.IGNORECASE)
 
 



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org



[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 992
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 18:35:10 -0700
message:
  /cygdrive/c/MM_bzr/log.txt
modified:
  Mailman/versions.py

=== modified file 'Mailman/versions.py'
--- a/Mailman/versions.py   2005-12-30 18:50:08 +
+++ b/Mailman/versions.py   2007-10-05 01:35:10 +
@@ -483,10 +483,11 @@
 # blow away the original timestamp and request id.  This means the
 # request will live a little longer than it possibly should have,
 # but that's no big deal.
+import email
 for p in v:
 author, text = p[2]
 reason = p[3]
-msg = Message.OutgoingMessage(text)
+msg = email.message_from_string(text, Message.Message)
 l.HoldMessage(msg, reason)
 del r[k]
 elif k == 'add_member':



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org



[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 994
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 18:43:42 -0700
message:
  /cygdrive/c/MM_bzr/log.txt
modified:
  Mailman/Handlers/MimeDel.py

=== modified file 'Mailman/Handlers/MimeDel.py'
--- a/Mailman/Handlers/MimeDel.py   2005-12-30 18:50:08 +
+++ b/Mailman/Handlers/MimeDel.py   2007-10-05 01:43:42 +
@@ -256,4 +256,4 @@
 fext = fext[1:]
 else:
 fext = ''
-return fext
+return fext.lower()



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org



[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 997
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 19:53:13 -0700
message:
  Fixed MaildirRunner.py to handle hyphenated list names.



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org



[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 995
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 19:50:56 -0700
message:
  In rare cases, versions.py can encounter a very old list with held posts in
  its requests dictionary.  It then tries to create a Message.OutgoingMessage
  object from the message text, but that class no longer exists.  Fixed by
  using email.message_from_string() instead.
modified:
  Mailman/versions.py

=== modified file 'Mailman/versions.py'
--- a/Mailman/versions.py   2007-10-05 01:35:10 +
+++ b/Mailman/versions.py   2007-10-05 02:50:56 +
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2005 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2007 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



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org



[Mailman-checkins] [Branch ~mailman-coders/mailman/2.1]

2007-10-04 Thread noreply

revno: 996
committer: Mark Sapiro [EMAIL PROTECTED]
branch nick: 2.1
timestamp: Thu 2007-10-04 19:52:04 -0700
message:
  MimeDel.py neglected to lower case file extensions for comparison with
  lower cased *_filename_extensions.  Fixed.
modified:
  Mailman/Handlers/MimeDel.py

=== modified file 'Mailman/Handlers/MimeDel.py'
--- a/Mailman/Handlers/MimeDel.py   2007-10-05 01:43:42 +
+++ b/Mailman/Handlers/MimeDel.py   2007-10-05 02:52:04 +
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2005 by the Free Software Foundation, Inc.
+# Copyright (C) 2002-2007 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



--

https://code.launchpad.net/~mailman-coders/mailman/2.1

You are receiving this branch notification because you are subscribed to it.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+subscription/mailman-checkins.
___
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org