"Dan Egli" <[EMAIL PROTECTED]> writes: > What I mean by CRASH is this:
[...] > smtplib.SMTPSenderRefused: (501, 'size: sender address must contain > a domain', '') Your SMTP server is configured to refuse the connection if the sender address does not include a domain name. Under Sendmail, one of the following features would work: FEATURE(`accept_unqualified_senders') Normally, MAIL FROM: commands in the SMTP session will be refused if the connection is a network connection and the sender address does not include a domain name. If your setup sends local mail unqualified (i.e. MAIL FROM: <joe>), you will need to use this feature to accept unqualified sender addresses. FEATURE(`always_add_domain') Include the local host domain even on locally delivered mail. Normally it is not added on unqualified names. However, if you use a shared message store but do not use the same user name space everywhere, you may need the host name on local names. I'm not sure what the Exim equivalent would be. A workaround is to not use direct SMTP when sending mail. Do this by adding the following to your ~/.tmda/config or /etc/tmdarc: OUTGOINGMAIL = "sendmail" _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
