SMTP Error Code
-
Hi, I am trying to send an email through connecting to SMTP Server. It establishes the connection successfully with the server but when i issue RCPT To: it returns an error with code number 571 and a text "....we do not relay! I could not find this error code within any document related to SMTP Errors. Does anybody know anything about it?Can you please put some light over me? I am tearing my hairs! with greetings from Germany Özgür
-
Hi, I am trying to send an email through connecting to SMTP Server. It establishes the connection successfully with the server but when i issue RCPT To: it returns an error with code number 571 and a text "....we do not relay! I could not find this error code within any document related to SMTP Errors. Does anybody know anything about it?Can you please put some light over me? I am tearing my hairs! with greetings from Germany Özgür
Sounds like the SMTP server won't let you specify a "FROM" belonging to a different domain. If the SMTP server is
smtp.foo.com
, it looks like you'll have to beusername@foo.com
and notusername@bar.com
. /ravi "There is always one more bug..." http://www.ravib.com ravib@ravib.com -
Hi, I am trying to send an email through connecting to SMTP Server. It establishes the connection successfully with the server but when i issue RCPT To: it returns an error with code number 571 and a text "....we do not relay! I could not find this error code within any document related to SMTP Errors. Does anybody know anything about it?Can you please put some light over me? I am tearing my hairs! with greetings from Germany Özgür
-
Hi, I am trying to send an email through connecting to SMTP Server. It establishes the connection successfully with the server but when i issue RCPT To: it returns an error with code number 571 and a text "....we do not relay! I could not find this error code within any document related to SMTP Errors. Does anybody know anything about it?Can you please put some light over me? I am tearing my hairs! with greetings from Germany Özgür
Sorry, I may have misled you by my earlier reply. The 571 error code can also be returned when the FROM domain doesn't match that of the SMTP server. This is configurable by the ISP. Getting back to your problem: try the issuing the RCPT command without relaying information - i.e. use a direct destination of the form
user@foo.com
instead of@host.com:user@foo.com
(which requests thathost.com
relays the mail touser@foo.com
). Does this help? /ravi "There is always one more bug..." http://www.ravib.com ravib@ravib.com -
Hi, I am trying to send an email through connecting to SMTP Server. It establishes the connection successfully with the server but when i issue RCPT To: it returns an error with code number 571 and a text "....we do not relay! I could not find this error code within any document related to SMTP Errors. Does anybody know anything about it?Can you please put some light over me? I am tearing my hairs! with greetings from Germany Özgür
This is definitely an anti-spam measure. Many SMTP servers are now configured to avoid relaying email from unknown sources to avoid spam and malicious attacks. The SMTP may server may allow you to log in with a valid account, in which case it would then permit relaying. Failing that it probably expects the email to originate within its own domain, try setting the reply address to a user on the same domain as the SMTP server. The following link may be of use: http://www.mailabuse.org -- The Obliterator
-
This is definitely an anti-spam measure. Many SMTP servers are now configured to avoid relaying email from unknown sources to avoid spam and malicious attacks. The SMTP may server may allow you to log in with a valid account, in which case it would then permit relaying. Failing that it probably expects the email to originate within its own domain, try setting the reply address to a user on the same domain as the SMTP server. The following link may be of use: http://www.mailabuse.org -- The Obliterator
Hi, I am definitly trying to send e-mail through my SMTP Server. I used nslookup to detect my SMTP Server. The IP address is like: blabla.somecompany.de And my email address is like :ozgur@blabla.somecompany.de and my host name is like : blablacomputer.somecompany.de more help? greetings from .de Özgür
-
Sorry, I may have misled you by my earlier reply. The 571 error code can also be returned when the FROM domain doesn't match that of the SMTP server. This is configurable by the ISP. Getting back to your problem: try the issuing the RCPT command without relaying information - i.e. use a direct destination of the form
user@foo.com
instead of@host.com:user@foo.com
(which requests thathost.com
relays the mail touser@foo.com
). Does this help? /ravi "There is always one more bug..." http://www.ravib.com ravib@ravib.com -
Hi, I am definitly trying to send e-mail through my SMTP Server. I used nslookup to detect my SMTP Server. The IP address is like: blabla.somecompany.de And my email address is like :ozgur@blabla.somecompany.de and my host name is like : blablacomputer.somecompany.de more help? greetings from .de Özgür
If the SMTP server resides with an ISP I would ensure you are connecting to their network via that ISP rather an another ISP. You must use the SMTP server of the ISP you are actually connected with, thus even for somecompany.com you may have to use smtp.btopenworld.com if you connect via BT openworld for example. If the SMTP server resides within a corporate network, check you are sending the email from within that network. Short of that I would contact the administrator of the server for help. You may need to login to SMTP server via secure sockets (STARTTLS) or whatever to actually be granted permission to send email. Otherwise I would try to locate an alternate SMTP which supports relaying. -- The Obliterator