On Wednesday, October 8, 2003, at 01:10 am, Merle Reine wrote:






1. I need to be able to allow anyone from @domainname.com to be able to
send to a list. I see the box to do this but can not figure out the
proper text to do so.


I tried [EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
etc.


I would use a regular expression. Something like this should work:


[EMAIL PROTECTED]@domainname\.com$

Explanation:

^ means this is a regex and start matching at the beginingof the address string

[EMAIL PROTECTED] means match any character that is not an @ to match any mail alias

@ means match the @ character

domainname\.com means match the mail domain. Note the \. so that the period is not treated as the match character meta character but as a literal period character

$ means match the end of the address string

Anyone have any ideas? I read the python manual to no avail.

It is under Privacy Options > Sender filters > List of non-member
addresses whose postings should be automatically accepted.

I do not want to add anyone to the list but rather want anyone in the
company to be able to send to the list.

For example, the list of [EMAIL PROTECTED] . I only want 5 people on the
list getting the mail but want anyone from inside the company to be able
to send to it.


2.  Is there a way to allow any user anywhere to post to a list without
subscribing?  Example, [EMAIL PROTECTED] .  I want anyone in world to
be able to send to it but not subscribe to it.

Thanks for the help.




-- Merle Reine Lindows.com Hardware Certification Specialist
-----------------------------------------------------------------------
Richard Barrett                               http://www.openinfo.co.uk


------------------------------------------------------ Mailman-Users mailing list [EMAIL PROTECTED] 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/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to