<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic 503 5.5.2 Need Rcpt command in Windows Server 2003</title>
    <link>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569985#M5899</link>
    <description>hi&lt;BR /&gt;&lt;BR /&gt;I try to send a mail from Exchange 2003 using command line, but I'm getting this message:&lt;BR /&gt;&lt;BR /&gt;telnet 192.168.0.2 25&lt;BR /&gt;&lt;BR /&gt;220 mail.mydomain.net Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at  Sat, 23 Jan 2010 17:28:30 +0100&lt;BR /&gt;helo&lt;BR /&gt;250 mail.mydomain.net Hello [192.168.0.2]&lt;BR /&gt;mail from: administrator@mydomain.net&lt;BR /&gt;250 2.1.0 administrator@mail.mydomain.net....Sender OK&lt;BR /&gt;mail to: rcpt@mydomain.net&lt;BR /&gt;503 5.5.2 Sender already specified&lt;BR /&gt;data&lt;BR /&gt;503 5.5.2 Need Rcpt command.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What are Rcpt commands?</description>
    <pubDate>Sat, 23 Jan 2010 16:35:33 GMT</pubDate>
    <dc:creator>'chris'</dc:creator>
    <dc:date>2010-01-23T16:35:33Z</dc:date>
    <item>
      <title>503 5.5.2 Need Rcpt command</title>
      <link>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569985#M5899</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;I try to send a mail from Exchange 2003 using command line, but I'm getting this message:&lt;BR /&gt;&lt;BR /&gt;telnet 192.168.0.2 25&lt;BR /&gt;&lt;BR /&gt;220 mail.mydomain.net Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at  Sat, 23 Jan 2010 17:28:30 +0100&lt;BR /&gt;helo&lt;BR /&gt;250 mail.mydomain.net Hello [192.168.0.2]&lt;BR /&gt;mail from: administrator@mydomain.net&lt;BR /&gt;250 2.1.0 administrator@mail.mydomain.net....Sender OK&lt;BR /&gt;mail to: rcpt@mydomain.net&lt;BR /&gt;503 5.5.2 Sender already specified&lt;BR /&gt;data&lt;BR /&gt;503 5.5.2 Need Rcpt command.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What are Rcpt commands?</description>
      <pubDate>Sat, 23 Jan 2010 16:35:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569985#M5899</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2010-01-23T16:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: 503 5.5.2 Need Rcpt command</title>
      <link>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569986#M5900</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;You tell the mail server who the recipient of your message is by using the RCPT command. You can send more than one RCPT command for multiple recipients. The server will respond with a code of 250 to each command. The syntax for the RCPT is:&lt;BR /&gt;&lt;BR /&gt;RCPT TO:&lt;FORWARD-PATH&gt;&lt;BR /&gt;&lt;BR /&gt;Only one recipient can be named per RCPT command. If the recipient is not known to the mail server, the response code will be 550. You might also get a response code indicating that the recipient is not local to the server. If that is the case, you will get one of two responses back from the server:&lt;BR /&gt;&lt;BR /&gt;    * 251 User not local; will forward to &lt;FORWARD-PATH&gt;-This reply means that the server will forward the message. The correct mail address is returned so that you can store it for future use.&lt;BR /&gt;    * 551 User not local; please try &lt;FORWARD-PATH&gt;-This reply means that the server won't forward the message. You need to issue another RCPT command with the new address. &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Haytham Hosny&lt;/FORWARD-PATH&gt;&lt;/FORWARD-PATH&gt;&lt;/FORWARD-PATH&gt;</description>
      <pubDate>Sat, 23 Jan 2010 18:09:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569986#M5900</guid>
      <dc:creator>haytham_hosny</dc:creator>
      <dc:date>2010-01-23T18:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: 503 5.5.2 Need Rcpt command</title>
      <link>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569987#M5901</link>
      <description>The problem here is that you are using "mail to" wich is incorrect, you must use "rcpt to:"&lt;BR /&gt;&lt;BR /&gt;telnet host 25&lt;BR /&gt;helo &lt;BR /&gt;mail from: administrator@mydomain.net&lt;BR /&gt;rcpt to: rcpt@mydomain.net&lt;BR /&gt;data&lt;BR /&gt;Subject: test&lt;BR /&gt;&lt;BR /&gt;The quick brown fox.....&lt;BR /&gt;&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Shoghi.</description>
      <pubDate>Thu, 28 Jan 2010 14:02:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/503-5-5-2-need-rcpt-command/m-p/4569987#M5901</guid>
      <dc:creator>Shoghi Martinez G.</dc:creator>
      <dc:date>2010-01-28T14:02:45Z</dc:date>
    </item>
  </channel>
</rss>

