Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Cedric Jeanneret
On Wed, 03 Mar 2010 10:04:31 -0800 Mark Sapiro wrote: > On 3/3/2010 9:20 AM, Cédric Jeanneret wrote: > > > > Maybe a python version? What is really strange is that it works inside > > the archiver I tried to NOT use email.message_from_file (so use > > directly StringIO on sys.stdin), and it

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Mark Sapiro
Masaharu Kawada wrote: >Kikuchi-san, Mark-san, > >I will ask the customer to consider patching it. > >Thanks a million!!! > >Best Regards, > >Tokio Kikuchi wrote: >> (10/03/04 11:47), Masaharu Kawada wrote: >> >>> Hi Mark-san, Kikuchi-san, >>> >>> Thank you very much for your help. >>> >>> Just

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Masaharu Kawada
Kikuchi-san, Mark-san, I will ask the customer to consider patching it. Thanks a million!!! Best Regards, Tokio Kikuchi wrote: (10/03/04 11:47), Masaharu Kawada wrote: Hi Mark-san, Kikuchi-san, Thank you very much for your help. Just to make sure, about the patch, is it just need to be

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Tokio Kikuchi
(10/03/04 11:47), Masaharu Kawada wrote: > Hi Mark-san, Kikuchi-san, > > Thank you very much for your help. > > Just to make sure, about the patch, is it just need to be modified in the > way you mentioned? Which means that it should be look like below. Yes, its OK. > > # vi /usr/lib/python2.

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Masaharu Kawada
Hi Mark-san, Kikuchi-san, Thank you very much for your help. Just to make sure, about the patch, is it just need to be modified in the way you mentioned? Which means that it should be look like below. # vi /usr/lib/python2.4/email/Charset.py -- 243 def convert(self, s): 244

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Tokio Kikuchi
Hi, (10/03/04 1:58), Mark Sapiro wrote: > Masaharu Kawada wrote: >> >> There is one thing that I wonder, is that if the charset.py is done with >> that patch, what the current digest.mbox exsisted under lists/ >> are supposed to be? Do they need to be deleted or not? My point on >> this is that on

Re: [Mailman-Users] what's going on ???

2010-03-03 Thread Geoff Shang
On Wed, 3 Mar 2010, Khalil Abbas wrote: I've been getting hundreds of complaints from people that they're not getting any mail from the lists.. I checked the lists and found that LIST1 has only 574 members!! while the other list (LIST2) has not changed.. My guess is that one or more mail pro

Re: [Mailman-Users] what's going on ???

2010-03-03 Thread Mark Sapiro
Khalil Abbas wrote: > >I've been getting hundreds of complaints from people that they're not getting >any mail from the lists.. I checked the lists and found that LIST1 has only >574 members!! while the other list (LIST2) has not changed.. I re-uploaded the >list from backup and after sometime i

[Mailman-Users] what's going on ???

2010-03-03 Thread Khalil Abbas
hi, I have 2 lists on the same server containing 40,000 subscribers, 20,000 in each list .. I've been getting hundreds of complaints from people that they're not getting any mail from the lists.. I checked the lists and found that LIST1 has only 574 members!! while the other list (LIST2

Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Mark Sapiro
On 3/3/2010 9:20 AM, Cédric Jeanneret wrote: > > Maybe a python version? What is really strange is that it works inside > the archiver I tried to NOT use email.message_from_file (so use > directly StringIO on sys.stdin), and it worked fine. In fact, the > error was that "Message doesn't have "

Re: [Mailman-Users] unsuscribe problem

2010-03-03 Thread Mark Sapiro
Roberto Gherardi de Candei wrote: > >I'm an admin of newsletters, by email I delete users without entering the >password in the subject and without arrivals cancellation confirmation to >users > >I do this? In order to unsubscribe a user by email without confirmation the users list password must

Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Cédric Jeanneret
On Wed, Mar 3, 2010 at 4:44 PM, Mark Sapiro wrote: > On 3/3/2010 12:57 AM, Cedric Jeanneret wrote: >> On Tue, 02 Mar 2010 11:34:25 -0800 >> Mark Sapiro wrote: >> >>> On 3/2/2010 3:41 AM, Cedric Jeanneret wrote: > [...] from cStringIO import StringIO > [...] f = StringIO(str(msg)) h

Re: [Mailman-Users] Disabling list archiving

2010-03-03 Thread Mark Sapiro
Geoff Shang wrote: > >We've got an archive taking up a fair amount of space, but much of the >traffic on that list is transient and doesn't need to be archived. So >we've decided to stop archiving it and to remove existing archives. > >Apart from turning off archiving in the list configuration a

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Mark Sapiro
Masaharu Kawada wrote: > >There is one thing that I wonder, is that if the charset.py is done with >that patch, what the current digest.mbox exsisted under lists/ >are supposed to be? Do they need to be deleted or not? My point on >this is that once the patch is done, is there nothing else to do to

Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Mark Sapiro
On 3/3/2010 12:57 AM, Cedric Jeanneret wrote: > On Tue, 02 Mar 2010 11:34:25 -0800 > Mark Sapiro wrote: > >> On 3/2/2010 3:41 AM, Cedric Jeanneret wrote: [...] >>> from cStringIO import StringIO [...] >>> f = StringIO(str(msg)) >>> h = HyperArch.HyperArchive(mlist) >>> h.processUnixMailbox(f) [..

Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Mark Sapiro
On 3/2/2010 11:02 PM, Cedric Jeanneret wrote: > > Woops, right. it was commented out in my code. For now, I'm pocking > around with some other problems, such as my external archiver returns > a non-zero status. It seems to crash with the > h.processUnixMailbox(f) Is there any way to have a backtr

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Masaharu Kawada
Hello Kikuchi-san, As far as I checked the error messages and compared with each one, The problem of my customer's seems to be almost the same as one posted to the thread written in the last Kikuchi-san's email. There is one thing that I wonder, is that if the charset.py is done with that patch,

[Mailman-Users] unsuscribe problem

2010-03-03 Thread Roberto Gherardi de Candei
Hi I'm an admin of newsletters, by email I delete users without entering the password in the subject and without arrivals cancellation confirmation to users I do this? many thanks -- RGdC -- Mailman-Users mailing list Mailman-Users@python.or

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Masaharu Kawada
Hello kikuchi-san, Thank you for your response with a precious information. Since I am a beginner for mailman, any comments/suggestions such as this kind of thing are very helpful for me. Including what Mark-san have been doing for me and you have done for me as well, I really appreciate the coop

[Mailman-Users] Disabling list archiving

2010-03-03 Thread Geoff Shang
Hi, We've got an archive taking up a fair amount of space, but much of the traffic on that list is transient and doesn't need to be archived. So we've decided to stop archiving it and to remove existing archives. Apart from turning off archiving in the list configuration and removing the pu

Re: [Mailman-Users] Attachments are unexpectedly re-created.

2010-03-03 Thread Tokio Kikuchi
(10/03/03 16:54), Masaharu Kawada wrote: > Hi Mark-san, > > I got a reply from the customer, but it was not possbile for the customer > to provide the whole digest.mbox to us due to their policy. However, > sevral parts of the error log and digest.mbox's content have been provided. > As for the e

Re: [Mailman-Users] Indexing mail right after delivery

2010-03-03 Thread Cedric Jeanneret
On Tue, 02 Mar 2010 11:34:25 -0800 Mark Sapiro wrote: > On 3/2/2010 3:41 AM, Cedric Jeanneret wrote: > > On Fri, 26 Feb 2010 10:15:13 -0800 > > Mark Sapiro wrote: > >> > >> At this point, you have a list object (locked) and a message object. You > >> might think you could just do > >> > >> mlist