python script to act as list server

W

William Gill

Before I spend the next couple weeks researching and testing, can anyone
tell me if what I want to do is possible, and possibly point me in the
right direction to get started.

I want to forward any email addressed to (e-mail address removed) 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
(e-mail address removed). 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 :)
 
L

Lawrence D'Oliveiro

William said:
I want to forward any email addressed to (e-mail address removed) 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
(e-mail address removed). 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.
 
T

Tim Roberts

William Gill said:
Before I spend the next couple weeks researching and testing, can anyone
tell me if what I want to do is possible, and possibly point me in the
right direction to get started.

I want to forward any email addressed to (e-mail address removed) 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
(e-mail address removed). That way people will be able to have an e-mail
based chat group w/o revealing their email address.

You know, the well-known, well-tested, and reliable Mailman application can
do this, and it's written in Python.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top