<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : 553 Sender Address Rejected</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : 553 Sender Address Rejected]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 08:18:35 +0000</pubDate>
  <lastBuildDate>Sun, 11 Nov 2007 14:37:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=24804</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[553 Sender Address Rejected : This is not a coding error in...]]></title>
   <link>https://forums.webwiz.net/553-sender-address-rejected_topic24804_post129233.html#129233</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 24804<br /><strong>Posted:</strong> 11&nbsp;November&nbsp;2007 at 2:37pm<br /><br />This is not a coding error in Web Wiz Forums, but rather a setup error on the part of the forum admin.<br><br>The error means that the email settings in the admin area are incorrect to work with the SMTP server that has been specified.<br><br>You should check with your web hosts the correct settings needed inorder for your site to relay emails.<br>]]>
   </description>
   <pubDate>Sun, 11 Nov 2007 14:37:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/553-sender-address-rejected_topic24804_post129233.html#129233</guid>
  </item> 
  <item>
   <title><![CDATA[553 Sender Address Rejected : Please help, I have just taken...]]></title>
   <link>https://forums.webwiz.net/553-sender-address-rejected_topic24804_post129232.html#129232</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=27238">az990tony</a><br /><strong>Subject:</strong> 24804<br /><strong>Posted:</strong> 11&nbsp;November&nbsp;2007 at 2:28pm<br /><br />Please help, I have just taken over as web-master, and first order of the day is to fix our broken registration process.&nbsp; Here is the message we get:<br><br><p><font face="Arial" size="2">Persits.MailSender.4</font> <font face="Arial" size="2">error '800a0006'<br>553 &lt;webmaster@thepresidio.net&gt;: Sender address rejected: not owned by user mail@thepresidio.net<br>/forum/functions/functions_send_mail.asp</font><font face="Arial" size="2">, line 269</font> </p>I checked the file, and it has this at this line:<br><br>Here is the code segment, of which I marked line 269 with an arrow<br>...<br>'AspEmail component<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Case "AspEmail"<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Create the e-mail server object<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Set objAspEmail = Server.CreateObject("Persits.MailSender")<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; With objAspEmail<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If strEmailUsername &lt;&gt; "" Then .Username = strEmailUsername<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If strEmailPassword &lt;&gt; "" Then .Password = strEmailPassword<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Out going SMTP mail server address<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Host = strOutgoingMailServer<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Who the e-mail is from<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .From = strFromEmailAddress<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .FromName = strFromEmailName<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Who the e-mail is sent to<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .AddAddress strRecipientEmailAddress<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'The subject of the e-mail<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Subject = strSubject<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Set the e-mail body format (BodyHTML=HTML Body=Text)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If blnHTML = True Then .IsHTML = True<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'The main body of the e-mail<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Body = strEmailBodyMessage &amp; strEmailBodyAppendMessage<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Send the e-mail<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If NOT strOutgoingMailServer = "" Then .Send&nbsp;&nbsp;&nbsp;&nbsp; &lt;-- this is line 269<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Close the server mail object<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Set objAspEmail = Nothing<br><br>I don't know how to fix this, or what do even look for in debugging this problem.&nbsp; Please help.<br><br>Thanks<br>Tony Pearson<br>990.tony@gmail.com<br>]]>
   </description>
   <pubDate>Sun, 11 Nov 2007 14:28:46 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/553-sender-address-rejected_topic24804_post129232.html#129232</guid>
  </item> 
 </channel>
</rss>