Re: [Mailman-Users] missing list!

2009-10-08 Thread Khalil Abbas
Actually the missing list is called: dailymail.. I went to /var/lib/mailman/lists/dailymail and found these files: config.pck config.pck.corrupt config.pck.last config.pck.safety config.pck.MY-MAIL-SERVER-ADDRESS.11461 config.pck.MY-MAIL-SERVER-ADDRESS.2530

Re: [Mailman-Users] missing list!

2009-10-08 Thread Mark Sapiro
Khalil Abbas wrote: I went to /var/lib/mailman/lists/dailymail and found these files: config.pck config.pck.corrupt config.pck.last config.pck.safety config.pck.MY-MAIL-SERVER-ADDRESS.11461 config.pck.MY-MAIL-SERVER-ADDRESS.2530 config.pck.MY-MAIL-SERVER-ADDRESS.2554

Re: [Mailman-Users] Virtual domain support

2009-10-08 Thread Terri Oda
Geoff Shang wrote: I will review your patch, and I used list-domain.tld instead of list.domain.tld, but I basically came to the same conclusion and just implemented same. I got the idea from http://mail.python.org/pipermail/mailman-users/2008-September/063254.html This really needs to be

Re: [Mailman-Users] Virtual domain support

2009-10-08 Thread Geoff Shang
On Thu, 8 Oct 2009, Terri Oda wrote: Geoff Shang wrote: I will review your patch, and I used list-domain.tld instead of This really needs to be documented somewhere. And by somewhere I recommend you put it into the Mailman Wiki, probably just add it to the FAQs: I'll do this. I probably

[Mailman-Users] bin/arch : ctime

2009-10-08 Thread Rob Lingelbach
I rebuilt, not long ago, the archives of a particular mailinglist, and the html files' atime/ctime/mtime were all changed to the time of the rebuild. The search facilities I'm using, on the same machine- glimpseindex and swish-e - by default use the ctime or mtime to return results, which

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Mark Sapiro
Rob Lingelbach wrote: Has anybody ever written a script that would rebuild the html message archives that would also modify the file ctime/mtime back to the date of the message, as retrieved from the list's mbox file? This script

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Rob Lingelbach
On Oct 8, 2009, at 6:30 PM, Mark Sapiro wrote: will change atime and mtime for all the nn.html files subordinate to the BASE directory to the time parsed from the line thank you very much, just what was needed. Rob -- Rob Lingelbach r...@colorist.org

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Mark Sapiro
Mark Sapiro wrote: This script --- [...] try: ptime = time.strptime(mo.group(1), '%a %b %d %H:%M:%S %Z %Y') except ValueError: next

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Rob Lingelbach
On Oct 8, 2009, at 8:11 PM, Mark Sapiro wrote: Mark Sapiro wrote: This script --- [...] try: ptime = time.strptime(mo.group(1), '%a %b %d %H:%M:%S %Z %Y')

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Mark Sapiro
Rob Lingelbach wrote: On Oct 8, 2009, at 8:11 PM, Mark Sapiro wrote: Mark Sapiro wrote: This script --- [...] try: ptime = time.strptime(mo.group(1), '%a %b %d

Re: [Mailman-Users] bin/arch : ctime

2009-10-08 Thread Rob Lingelbach
On Oct 8, 2009, at 8:28 PM, Mark Sapiro wrote: files are all well formed, but is there in order to keep looking in case it does. Python doesn't care that the name 'next' is undefined until it actually tries to execute it. There's a vortex with python in the center, me on the fringe. --