Barry Finkel wrote:
>
>I have not looked at the Mailman source, so I am not sure what is
>failing.  Is it the case that the
>
>      accept_these_nonmembers
>
>is stored in a different internal format than
>
>      acceptable_aliases
>
>is?  This is a 2.1.14 package built from the SourceForge source.  


Yes. accept_these_nonmembers is a Python list whose elements are
strings equal to email addresses or regexps matching email addresses.
accept_these_nonmembers is a single string consisting of zero or more
email addresses separated by newlines.

You could do a few different things in your config_list input. One such
would be

if mlist.acceptable_aliases:
    mlist.acceptable_aliases += '\ntestu...@example.com'
else:
    mlist.acceptable_aliases = 'testu...@example.com'

-- 
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better 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

Reply via email to