Re: [Mailman-Developers] [Mailman-Users] Problems with uuencoded attachments

2006-01-15 Thread Tokio Kikuchi
Barry Warsaw wrote: > On Mon, 2006-01-16 at 09:25 +0900, Tokio Kikuchi wrote: > > >>In usual mailman qrunner execs, stderr is logged into logs/errors. It >>is the additional tee_to_real_stderr in LogStdErr() setting which wants >>to print the error into real stderr. >> >>Isn't it safe to put t

Re: [Mailman-Developers] [Mailman-Users] Problems with uuencoded attachments

2006-01-15 Thread Barry Warsaw
On Mon, 2006-01-16 at 09:25 +0900, Tokio Kikuchi wrote: > In usual mailman qrunner execs, stderr is logged into logs/errors. It > is the additional tee_to_real_stderr in LogStdErr() setting which wants > to print the error into real stderr. > > Isn't it safe to put the tee_to_real_stderr value

Re: [Mailman-Developers] [Mailman-Users] Problems with uuencoded attachments

2006-01-15 Thread Tokio Kikuchi
Barry Warsaw wrote: > On Jan 14, 2006, at 9:59 PM, Tokio Kikuchi wrote: > > >>Mark Sapiro wrote: >> >> >> File "/usr/lib/python2.3/uu.py", line 139, in decode sys.stderr.write("Warning: %s\n" % str(v)) File "/usr/lib/mailman/Mailman/Logging/MultiLogger.py", line 45, in write >

Re: [Mailman-Developers] Dealing with DomainKeys and DKIM

2006-01-15 Thread Camberwell
Joe Peterson Sat, 10 Sep 2005 12:03:55 -0700 I've recently been testing DomainKeys (http://antispam.yahoo.com/domainkeys) and DKIM (which is supposedly a merging of DomainKeys with Cisco's scheme. I am using dk-milter and dkim-milter with sendmail. What this does is add two header lines to outg

Re: [Mailman-Developers] Dealing with DomainKeys and DKIM

2006-01-15 Thread Mark Sapiro
Mark Sapiro wrote: > >Note to developers: > >It seems we should move this from Cleanse.py to ToOutgoing.py for >exactly the reasons expressed earlier in this thread, but I'm a little >uneasy about mucking with headers in ToOutgoing as that isn't its >purpose. Any comments? And Barry Warsaw comment

Re: [Mailman-Developers] Dealing with DomainKeys and DKIM

2006-01-15 Thread Mark Sapiro
Camberwell wrote: > >i have added that line to my mm_cfg.py and it works perfectly thankyou >very much. sorry i'm not brilliant at python but how might i go about >removing the signatures in ToOutgoing.py. your first solution works fine >for me as my list will never be anonymous so thanks again

Re: [Mailman-Developers] Dealing with DomainKeys and DKIM

2006-01-15 Thread Barry Warsaw
On Jan 15, 2006, at 11:10 AM, Mark Sapiro wrote: > Brad Knowles wrote: >> >> Did you check Mailman version 2.1.7? It was released recently >> and I believe that handling DomainKeys/DKIM was one of the things >> that was addressed. > > Brad is correct, but it is addressed exactly as described

Re: [Mailman-Developers] Dealing with DomainKeys and DKIM

2006-01-15 Thread Mark Sapiro
Brad Knowles wrote: > > Did you check Mailman version 2.1.7? It was released recently >and I believe that handling DomainKeys/DKIM was one of the things >that was addressed. Brad is correct, but it is addressed exactly as described in the OP, namely by modifying Cleanse.py to delete 'doma

Re: [Mailman-Developers] [Mailman-Users] Problems with uuencoded attachments

2006-01-15 Thread Barry Warsaw
On Jan 14, 2006, at 9:59 PM, Tokio Kikuchi wrote: > Mark Sapiro wrote: > > >>> File "/usr/lib/python2.3/uu.py", line 139, in decode >>> sys.stderr.write("Warning: %s\n" % str(v)) >>> File "/usr/lib/mailman/Mailman/Logging/MultiLogger.py", line 45, >>> in write >>> _logexc(logger, msg) >>> Fi

Re: [Mailman-Developers] [Mailman-Users] Problems with uuencoded attachments

2006-01-15 Thread Mark Sapiro
Tokio Kikuchi wrote: > >There should be other chances that Python builtin modules spew warnings >to sys.stderr. How about this patch for Logging/Utils.py to write these >messages into syslog facility. The patch looks good to me, and I think is a good thing in general. It's clearly better than s