zbigniew szalbot wrote:

>zbigniew szalbot pisze:
<snip>
>> >
>> > Have you set SMTP_MAX_SESSIONS_PER_CONNECTION in mm_cfg.py?
>> >
>> > In particular, have you set it to a string instead of a number?
>> >
>> > I.e., it needs to be something like
>> >
>> > SMTP_MAX_SESSIONS_PER_CONNECTION = 10
>> >
>> > (or whatever number you want) not
>> >
>> > SMTP_MAX_SESSIONS_PER_CONNECTION = '10'
>> >   
>> The content of mm_cfg.py currently looks like this:
>> OWNERS_CAN_ENABLE_PERSONALIZATION = Yes
>> DEFAULT_URL_HOST = 'lists.lc-words.com'
>> SMTPHOST = 'localhost'
>> VERP_CONFIRMATIONS = Yes
>> DEFAULT_EMAIL_HOST = 'lists.lc-words.com'
>> SMTP_MAX_SESSIONS_PER_CONNECTION = '25'
>> VIRTUAL_HOSTS.clear()
>> add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
>>
>>   
>If any of you had any advice where to start looking for solution, I'd 
>really appreciate. Thanks!


Look carefully at what I posted previously.

Your problem is

SMTP_MAX_SESSIONS_PER_CONNECTION = '25'

The value must be an integer, not a string. Change it to

SMTP_MAX_SESSIONS_PER_CONNECTION = 25

-- 
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