On 6 Sep 2002, Aaron Johnson wrote:

>
> First off thanks for the earlier reassurance on the 551 error, that was
> apparently the source of the problem since after it was changed all was
> well.
>
> Now I have a different issue.  I tested this using MIME::Lite with debug
> enabled and watched the server SMTP transaction.  If there is a bad
> local address in the To (Cc,Bcc) list then the email server stops
> sending the emails as soon as the bad address is encountered.
>
> This is my Perl test script:
>
> use MIME::Lite;
>
>         $msg = MIME::Lite->new(
>
> To => [EMAIL PROTECTED],
> [EMAIL PROTECTED],
> [EMAIL PROTECTED]!,
>         From => qq!solution\@gina.net!,
>         Subject  =>'Test - please ignore',
>         Data     =>"Testing please ignore",
> );
>
>
> MIME::Lite->send('smtp', "domain.com", Timeout=>60 , Debug => 1 );
> $msg->send;
>
> The send fails as soon as the bad local address is encountered, that is
> if I move fakeemail to the end of the list then it will send the first
> two and then the SMTP dies.
>
> My question(s) is:
> Is this the correct default behavior for XMail and can it be altered via
> a configuration option?
>
> The reason being is the users may change frequently and they attempt to
> send an email to a list of user in Outlook that may or may not up to
> date and user doesn't know which emails went.

it is not XMail problem, is software problem. XMail limit itself to return
an error response on the invalid local address but it doesn't mean that
other recipients cannot be sent. as long as there's one valid recipient
you can issue a DATA command.



- Davide


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

Reply via email to