Re: [Mailman-Users] Umbrella List / Moderation

2006-11-10 Thread Todd Seeleman

Greetings,

I'm still not clear on the umbrella list function.  What I'm trying to 
do is have a number of sub-lists (different faculty status) to which 
email to the super-list (all-faculty comprising all of the sub-list 
names) will distribute.  I'd like to allow all sub-list members to send 
to the super-list and, if possible, allow all domain addresses i.e. 
[EMAIL PROTECTED] to send to certain lists.  Is this possible?  I've tried 
using the following options without success.

 On Privacy options...-Recipient filters for each sub-list, add the
 posting address of the umbrella lis to acceptable_aliases or, if you
 prefer, set require_explicit_destination to No.
 

-- 

  ***
  Todd Seeleman, Systems Analyst
  Penn Graduate School of Education
  3440 Market Street, Rm 477email: [EMAIL PROTECTED]
  Philadelphia, PA. 19104-3325  phone: 215-573-8378
  ***


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Umbrella List / Moderation

2006-11-10 Thread Patrick Bogen
On 11/10/06, Todd Seeleman [EMAIL PROTECTED] wrote:
 I'm still not clear on the umbrella list function.  What I'm trying to
 do is have a number of sub-lists (different faculty status) to which
 email to the super-list (all-faculty comprising all of the sub-list
 names) will distribute.  I'd like to allow all sub-list members to send
 to the super-list
There is a patch to facilitate this, which allows you to reference
other lists' memberships in Privacy Options  Sender Filters 
accept_these_nonmembers.

 and, if possible, allow all domain addresses i.e.
 [EMAIL PROTECTED] to send to certain lists.  Is this possible?  I've tried
 using the following options without success.
You want to add [EMAIL PROTECTED] to accept_these_nonmembers, which
should make it a regexp match.

As for the umbrella list configuration, not only do you need either
acceptable_aliases or !require_explicit_destination, but the umbrella
list address will also need to be in accept_these_nonmembers, or a
member of the sub lists (but the latter, here, is almost certainly a
bad idea. So, stick with accept_these_nonmembers.)


Hope this helps,

-- 
- Patrick Bogen
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Umbrella List / Moderation

2006-10-25 Thread Bruce E. Breeding
I'm implementing an umbrella list over three other lists.

When I send mail to the umbrella list, three events occur:
(a)  For each of the three lists, I (as owner) receive a request for approval 
with the message:  Message has implicit destination
(b)  Duplicate receiving email addresses (on two or all three of the sublists) 
are not being eliminated.
(c)  I do NOT receive a request for approval from the umbrella list (yes!)

I would like for the approval to be automatic and I'd like for duplicate email 
addresses to be eliminated.  I've probably missed the obvious, but I've 
invested several hours in troubleshooting ...

What I've done:
(1)  added the sender's email address to the privacy options / sender filter / 
non-member (even though the sender is a member and the sender's email moderate 
check-box is not checked).
(2)  done (1) above for each sublist and the umbrella list, although in the 
umbrella list, the sender is not a member.
(3)  added the umbrellalistname@listdomain.org as a sender not needing 
approval as in (1) above, but I didn't think I should have to do this, since 
it's not the original sender.

I've presumed that email addresses are not case sensitive, and routinely enter 
all addresses in lower case.

Solutions or next troubleshooting step suggestions are welcomed.

Thank you,
Bruce
(newbie to mailman, oldie to information technology, and embarrassed that I 
can't figure this out on my own)
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Umbrella List / Moderation

2006-10-25 Thread Mark Sapiro
Bruce E. Breeding wrote:

I'm implementing an umbrella list over three other lists.

When I send mail to the umbrella list, three events occur:
(a)  For each of the three lists, I (as owner) receive a request for approval 
with the message:  Message has implicit destination



On Privacy options...-Recipient filters for each sub-list, add the
posting address of the umbrella lis to acceptable_aliases or, if you
prefer, set require_explicit_destination to No.


(b)  Duplicate receiving email addresses (on two or all three of the sublists) 
are not being eliminated.


That is correct. The members nodups setting only stops sending a list
post to the member if the member is an explicit addressee of the post.
The original idea of nodups was to do more, but it wasn't implemented.


(c)  I do NOT receive a request for approval from the umbrella list (yes!)

I would like for the approval to be automatic and I'd like for duplicate email 
addresses to be eliminated.  I've probably missed the obvious, but I've 
invested several hours in troubleshooting ...


As indicated, you can do the former, but doing the latter requires code
modification.


What I've done:
(1)  added the sender's email address to the privacy options / sender filter / 
non-member (even though the sender is a member and the sender's email moderate 
check-box is not checked).


Never checked if the sender is a member and not the hold reason. See
comment under (a) above.


(2)  done (1) above for each sublist and the umbrella list, although in the 
umbrella list, the sender is not a member.


This for the umbrella list is probably what allows the sender's post to
pass through to the sub-lists.


(3)  added the umbrellalistname@listdomain.org as a sender not needing 
approval as in (1) above, but I didn't think I should have to do this, since 
it's not the original sender.


Probably correct that you didn't need to do this.


Remark under (a) will fix (a).

(b) is the subject of Feature Request
http://sourceforge.net/tracker/index.php?func=detailaid=230730group_id=103atid=350103.

-- 
Mark Sapiro [EMAIL PROTECTED]   The 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://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Umbrella List / Moderation

2006-10-25 Thread stephen
Bruce E. Breeding writes:

  I'm implementing an umbrella list over three other lists.

  When I send mail to the umbrella list, three events occur:

  (a) For each of the three lists, I (as owner) receive a request for
  approval with the message: Message has implicit destination

Add [EMAIL PROTECTED] to acceptable_aliases in
PrivacyRecipient Filters.

  (b) Duplicate receiving email addresses (on two or all three of the
  sublists) are not being eliminated.

No way to win here, currently.  Mailman could easily keep a database
of delivered-msgid/subscriber/timestamp triples, but for large
high-traffic lists this would be huge even with short expirations, and
probably would impact performance severely (the database would need to
be locked for every single delivery).  More sophisticated algorithms
specifically for umbrella lists could be designed, but that would
require a centralized user database which Mailman doesn't have yet.
(For the relatively rare do this for all my lists kind of user
request, it just interates over all lists looking for the user in the
list-specific databases.)

If you really want that badly and your lists are small, it would be
easy to insert such a delivery database filter into the pipeline, plus
a couple of lines of code in the actual delivery Handler to consult
it.  (I don't have one yet, not even a proof of concept.  Sorry.  But
somebody should be able to pick up on the hint.)

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Umbrella List / Moderation

2006-10-25 Thread Tokio Kikuchi
   (b) Duplicate receiving email addresses (on two or all three of the
   sublists) are not being eliminated.
 
 No way to win here, currently.  

Try this patch.

http://sourceforge.net/tracker/index.php?func=detailaid=1347962group_id=103atid=300103

-- 
Tokio Kikuch, [EMAIL PROTECTED]
http://weather.is.kochi-u.ac.jp/
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Umbrella List / Moderation

2006-10-25 Thread Bruce E. Breeding
Bruce's original question:
 (a)  For each of the three lists, I (as owner) receive a request for
approval with the message:  Message has implicit destination


Mark Sapiro's answer to question (a):
 On Privacy options...-Recipient filters for each sub-list, add the
 posting address of the umbrella lis to acceptable_aliases or, if you
 prefer, set require_explicit_destination to No.

Thank you, Mark (and Stephen who gave the same answer).  Yes, I did this
[added the posting address for the umbrella list in the recipient filter
under privacy options for each sub-list] and it worked.

-- Bruce

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
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://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp