Gary Casterline wrote:
>
> # ../../bin/dumpdb config.pck | grep -i sudden
>      '[EMAIL PROTECTED]': 'en',
languages

>      '[EMAIL PROTECTED]': 0,
bogus entry in members list.

>      '[EMAIL PROTECTED]': 0,
members

>      '[EMAIL PROTECTED]': 'xxxxxxxxx',
passwords

>      '[EMAIL PROTECTED]': 264,
user_options

>
>I think if I could clean up that line with [EMAIL PROTECTED]
>from the config.pck file, I'd be ok.  Is there a procedure
>for editing a config.pck file?


I don't know how the bogus entry got in the members dictionary, but it
is definitely bogus. These entries MUST have an all lower case address
as the key, and if the value is zero as here, that is also the
case-preserved address. Otherwise the value is the case-preserved
address.

You get rid of the bogus entry with bin/withlist.

bin/withlist -l listname
Loading list listname (locked)
The variable `m' is the listname MailList instance
>>> del m.members['[EMAIL PROTECTED]']
>>> m.Save()
>>>
Unlocking (but not saving) list: list1
Finalizing


>>> is the Python prompt. You type the indicated things on those lines. The 
>>> last entry is a control-D (end of file). Be sure to type the address with 
>>> the capital 'S' or you'll make things worse, and don't forget the m.Save().

I agree that this will fix your problem.

-- 
Mark Sapiro <[EMAIL PROTECTED]>       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://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=show&amp;file=faq01.027.htp

Reply via email to