Chris Mason wrote:
>>
>I followed your instructions, thi sis the session:
>[EMAIL PROTECTED] root]# python
>Python 2.2.3 (#1, Feb  2 2005, 12:20:51)
>[GCC 3.2.3 20030502 (Red Hat Linux 3.2.3-49)] on linux2
>Type "help", "copyright", "credits" or "license" for more information.
> >>> import smtplib
> >>> msg = """Subject: Test Message
>... Message-Id: some-id at nowhere.example.com
>... From: [EMAIL PROTECTED]
>... To: You
>...
>... This is a test
>... """
> >>> rcpts = ['[EMAIL PROTECTED]', '[EMAIL PROTECTED]']


Are these the actual recipients that were "bouncing" on your test list?


> >>> env = '[EMAIL PROTECTED]'


I suggested that you put your own address here so the "bounces" would
come directly to you.


> >>> SMTPHOST = 'localhost'
> >>> SMTPPORT = 0
> >>> x = smtplib.SMTP()
> >>> x.connect(SMTPHOST, SMTPPORT)
>(220, 'server7.picadoo.com ESMTP Sendmail 8.12.11/8.12.11; Sat, 25 Mar 
>2006 12:20:49 -0400')
> >>> x.sendmail(env, rcpts, msg)
>{}
> >>>
>
>
>And the emails arrived as planned with no bounces.


In any case, this is just the way Mailman sends mail, so if there are
no "bounces" returned from this, I have no idea why there would be
bounces from list posts sent to the same addresses.

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