[Mailman-Users] Private Lists with Real Name Signatures

2011-02-02 Thread Doug Gaff
Hi all, I thought I'd send a summary of this in case anyone else needs to do it. Thanks to Mark for basically explaining all of this to me. As a reminder of my original request, I have one of my lists set up in anonymous mode, but the list owner wants emails signed with "handles" used by folks on

Re: [Mailman-Users] private lists with real name signatures

2011-01-23 Thread Mark Sapiro
Doug Gaff wrote: >(Sorry to resurrect an old thread, but I recently switched to a VPS, and now >finally have access to the mailman install.) > >As mentioned in the old thread, I'd like add %(member_name) and >%(member_address) as variables that can be used in the msg_header and >msg_footer fiel

Re: [Mailman-Users] private lists with real name signatures

2011-01-23 Thread Doug Gaff
(Sorry to resurrect an old thread, but I recently switched to a VPS, and now finally have access to the mailman install.) As mentioned in the old thread, I'd like add %(member_name) and %(member_address) as variables that can be used in the msg_header and msg_footer fields if desired by the lis

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Mark Sapiro
Stephen J. Turnbull wrote: >Mark Sapiro writes: > > > Sure. A somewhat more complete handler (and perhaps more Pythonic as > > well) would be: > > > > > > from email.Utils import parseaddr > > def process(mlist, msg, msgdata): > > poster_name, addrs = parseaddr(msg['from']) > > if not po

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Stephen J. Turnbull
Mark Sapiro writes: > Sure. A somewhat more complete handler (and perhaps more Pythonic as > well) would be: > > > from email.Utils import parseaddr > def process(mlist, msg, msgdata): > poster_name, addrs = parseaddr(msg['from']) > if not poster_name and mlist.isMember(addrs):

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Mark Sapiro
Stephen J. Turnbull wrote: >Mark Sapiro writes: > > > This would add %(poster_name)s to the replacements available for > > msg_header and msg_footer, and its value would be the real name part > > of the From: address of the original post or the empty string if there > > wasn't a real name in the F

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Stephen J. Turnbull
Mark Sapiro writes: > This would add %(poster_name)s to the replacements available for > msg_header and msg_footer, and its value would be the real name part > of the From: address of the original post or the empty string if there > wasn't a real name in the From: Would it be possible to get

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Doug Gaff
#2 sounds like a better approach. I'll look into that. Thanks! -Original Message- From: Mark Sapiro [mailto:m...@msapiro.net] Sent: Wednesday, May 26, 2010 11:15 AM To: Doug Gaff; Mailman-Users@python.org Subject: Re: [Mailman-Users] private lists with real name signatures Doug

Re: [Mailman-Users] private lists with real name signatures

2010-05-26 Thread Mark Sapiro
Doug Gaff wrote: > >The request I'm getting from list members is to have their "Real Name" >displayed but not their email address. I see two ways to do this: > > > >1. The "on behalf of" text in the header could put the real name only >and not the email address. The "on behalf of" text is

[Mailman-Users] private lists with real name signatures

2010-05-26 Thread Doug Gaff
Hello all, Sorry if I missed this in the FAQ. I'm a heavy user/admin of mailman, but this is the first time I've had "anonymous_list" set to Yes. The request I'm getting from list members is to have their "Real Name" displayed but not their email address. I see two ways to do this: 1.