Young, Darren wrote: > Not much, close in all of them:
As I said in another recent reply - "If I had a nickel for every time I didn't realize the obvious ..." :) Is ArchRunner running? What's in /usr/local/mailman/qfiles/archive? > The only one that sticks out but was earlier: > > Jan 20 12:47:42 2009 (9809) admin.py access for non-existent list: > daily-job-postings > Jan 20 12:47:50 2009 (9813) admin.py access for non-existent list: > daily-job-postings > Jan 20 12:34:52 2010 qrunner(7726): Traceback (most recent call last): > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/bin/qrunner", line 270, in ? > Jan 20 12:34:52 2010 qrunner(7726): main() > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/bin/qrunner", line 230, in main > Jan 20 12:34:52 2010 qrunner(7726): qrunner.run() > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/Mailman/Queue/Runner.py", line 87, in run > Jan 20 12:34:52 2010 qrunner(7726): self._cleanup() > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/Mailman/Queue/BounceRunner.py", line 220, in > _cleanup > Jan 20 12:34:52 2010 qrunner(7726): BounceMixin._cleanup(self) > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/Mailman/Queue/BounceRunner.py", line 132, in > _cleanup > Jan 20 12:34:52 2010 qrunner(7726): self._register_bounces() > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/Mailman/Queue/BounceRunner.py", line 120, in > _register_bounces > Jan 20 12:34:52 2010 qrunner(7726): mlist.registerBounce(addr, msg, > day=day) > Jan 20 12:34:52 2010 qrunner(7726): File > "/usr/local/mailman/Mailman/Bouncer.py", line 131, in registerBounce > Jan 20 12:34:52 2010 qrunner(7726): time.strftime('%d-%b-%Y', day + > (0,)*6)) > Jan 20 12:34:52 2010 qrunner(7726): ValueError : day of year out of > range This is an incompatibility between Mailman 2.1.5 and older and Python 2.4.x and newer. If you can't upgrade Mailman, the attached Bouncer.py.patch will fix it. -- Mark Sapiro <m...@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
=== modified file 'Mailman/Bouncer.py' --- Mailman/Bouncer.py 2004-10-22 07:01:30 +0000 +++ Mailman/Bouncer.py 2004-12-04 05:01:12 +0000 @@ -128,7 +128,7 @@ # We've already scored any bounces for this day, so ignore it. syslog('bounce', '%s: %s already scored a bounce for date %s', self.internal_name(), member, - time.strftime('%d-%b-%Y', day + (0,)*6)) + time.strftime('%d-%b-%Y', day + (0,0,0,0,1,0))) # Continue to check phase below else: # See if this member's bounce information is stale.
------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org