Rasa Isaacson writes:

 > Is there something analogous in mailman to associate a personal email
 > account with the generic account on incoming posts to the board? Like an
 > alias, but looking at the "From:" field and translating it to the generic
 > account like presid...@ourwebsite.org.

This could be done in a custom Handler.  I haven't worked on such a
thing in a long while, but somebody who's familiar with the email
package could probably work a simple one up in less than an hour.
Loop over the from addresses, and in that loop, loop over a dictionary
like

officer_map = { "j...@home.example.com" : "presid...@ourwebsite.org",
                "f...@flintstones.org" : "vice-presid...@ourwebsite.org" }

substituting the value for the text that matches the key.  The key can
be a regular expression, too.

Then insert that Handler into either the global pipeline (if you want
it to happen for all lists) or the list-specific pipelines for the
lists where it should happen using bin/withlist.  (Don't worry if you
don't understand any of that; anybody who can do the work will know
what I'm talking about, it's not rocket science.)

Making this customizable from the web interface would be harder, maybe
taking two to three times as much time (just because of a fair number
of fussy details).

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to