[Mailman-Users] Hooking to listen for new mails?

2010-04-09 Thread Bibek Shrestha
How can a 3rd party application listen to new incoming mails in mailman?
Can this be done?

Right now, I'm more thinking into adding a route in our local exim but
a direct integration with mailman would be better.
Has anything as such been done?
--
Bibek Shrestha
bibekshrestha at gmail dot com
Blog: http://bibekshrestha.com.np
Twitter: http://twitter.com/bibstha
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Hooking to listen for new mails?

2010-04-09 Thread Mark Sapiro
Bibek Shrestha wrote:

How can a 3rd party application listen to new incoming mails in mailman?
Can this be done?

Right now, I'm more thinking into adding a route in our local exim but
a direct integration with mailman would be better.
Has anything as such been done?


It depends whether you want *all* mail to mailman or just list posts.
If you want all mail including mail to -bounces, -owner -request,
-subscribe, etc., I think doing it in your exim router is the best
option.

If you want only mail to list posting addresses, you can do it easily
in Mailman with a custom handler. See the FAQ at
http://wiki.list.org/x/l4A9.

If this is an archiving application, see the Defaults.py/mm_cfg.py
settings PUBLIC_EXTERNAL_ARCHIVER and PRIVATE_EXTERNAL_ARCHIVER and
the FAQ at http://wiki.list.org/x/RAKJ.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

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


[Mailman-Users] accept_these_nonmbers Regular Expression

2010-04-09 Thread Barry Finkel
I have a question about regular expressions and
accept_these_nonmembers.  If I want any address in

 anl.gov
or
 example.com

to be able to post, is this correct for the accept_these_nonmembers box?

 ^.*anl\.gov
 ^.*example\.com

Do I need a $ at the end of each regular expression?
Thanks.
--
Barry S. Finkel
Computing and Information Systems Division
Argonne National Laboratory  Phone:+1 (630) 252-7277
9700 South Cass Avenue   Facsimile:+1 (630) 252-4601
Building 240, Room 5.B.8 Internet: bsfin...@anl.gov
Argonne, IL   60439-4828 IBMMAIL:  I1004994

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


Re: [Mailman-Users] accept_these_nonmbers Regular Expression

2010-04-09 Thread Mark Sapiro
Barry Finkel wrote:

I have a question about regular expressions and
accept_these_nonmembers.  If I want any address in

 anl.gov
or
 example.com

to be able to post, is this correct for the accept_these_nonmembers box?

 ^.*anl\.gov
 ^.*example\.com

Do I need a $ at the end of each regular expression?


No, you don't need a '$', but consider that ^.*anl\.gov will not only
match all the addresses you want to match but also addresses such as
manl.governa...@spammer.invalid spam...@zanl.gov and
spam...@anl.gov.cc. I suggest either

  ^...@.]anl\.gov$

if you want to also accept sub domains like mail.anl.gov or

  ^...@anl\.gov$

if you don't.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

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


[Mailman-Users] How to change bounce_score_threshold value?

2010-04-09 Thread Mailman Admin Universitaet Konstanz

Hi all,

we have about 300 lists. We would like to change the  
bounce_score_threshold value in all existing lists. How could we do it  
automatically?


Next, is it possible to set another default value for the new lists?
Thank you!


Kind regards,
Milda

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


Re: [Mailman-Users] How to change bounce_score_threshold value?

2010-04-09 Thread Mark Sapiro
Mailman Admin Universitaet Konstanz wrote:

we have about 300 lists. We would like to change the  
bounce_score_threshold value in all existing lists. How could we do it  
automatically?


See the FAQ at http://wiki.list.org/x/MIBp


Next, is it possible to set another default value for the new lists?
Thank you!


Set

DEFAULT_BOUNCE_SCORE_THRESHOLD = whatever

in mm_cfg/py. See the 

#
# Bounce processing defaults.
#

section in Defaults.py

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

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


[Mailman-Users] -Hi-

2010-04-09 Thread Stylus Studio
http://sandbox.schwartzie.com/Tgc8IjbQPK.htm
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Monthly Announcement

2010-04-09 Thread Stumpie
I'd like to send out a monthly announcement reminding users that they are on a 
list and to remind them of some list etiquette.  I want to do this 
automatically.  I've looked at the FAQ, but I can't find a way to do this.

TIA for help.

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


Re: [Mailman-Users] Monthly Announcement

2010-04-09 Thread Mark Sapiro
On 4/9/2010 8:45 PM, Stumpie wrote:
 I'd like to send out a monthly announcement reminding users that they
 are on a list and to remind them of some list etiquette.  I want to
 do this automatically.  I've looked at the FAQ, but I can't find a
 way to do this.


If you have access to the host server or any server, set up a cron to
mail the list once a month with whatever message you want.

If you don't have access to a server that reliably runs cron jobs, you
might be able to set up something in some web calendar to mail a
reminder to your list of some monthly recurring event. I think the hard
part of that would be to get the mail to contain the appropriate
message, but it might be doable.

-- 
Mark Sapiro m...@msapiro.netThe highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

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