python script to act as list server

Lawrence D'Oliveiro ldo at geek-central.gen.new_zealand
Sun Nov 16 23:05:21 EST 2008


William Gill wrote:

> I want to forward any email addressed to agroup at example.com to a python
> script that will forward it to all the other subscribers,but does not
> reveal the sender's email address.  Instead the return address will be
> agroup at example.com.  That way people will be able to have an e-mail
> based chat group w/o revealing their email address.
> 
> Sounds simple enough to me, but sounding and implementing can be vastly
> different animals :-)

Yeah, pretty basic header-rewriting stuff. Search for "From:", "To:" and perhaps "Reply-To:" lines and replace them with your own. You'd probably want your "To:" lines to be something suitably non-revealing, like

   To: (members of agroup):;

with the real addressees in "Bcc:" lines.



More information about the Python-list mailing list