<?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 Re: problems sending email , receives ok in Email</title>
    <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997415#M48272</link>
    <description>&lt;P&gt;turned router off for 2 hours and all sorted , thanks for your help&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jan 2025 17:49:14 GMT</pubDate>
    <dc:creator>to666ny</dc:creator>
    <dc:date>2025-01-31T17:49:14Z</dc:date>
    <item>
      <title>problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997195#M48250</link>
      <description>&lt;P&gt;in the past couple of weeks I've had issues sending email from my plusnet email it receives ok but comes up with a username password error when trying to send , I'm not with plusnet broadband and haven't been for years but kept email&lt;/P&gt;&lt;P&gt;emails won't send from home pc through outlook or through my iPhone (although sometime it gores later from my phone )&lt;/P&gt;&lt;P&gt;nothing has changed settings are all the same&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm hoping someone can help&lt;/P&gt;&lt;P&gt;many thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 12:03:13 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997195#M48250</guid>
      <dc:creator>to666ny</dc:creator>
      <dc:date>2025-01-29T12:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997203#M48251</link>
      <description>&lt;P&gt;When did this work last?&lt;/P&gt;
&lt;P&gt;I would suspect that you have acquired a 'dirty' IP address.&amp;nbsp; Email clients are not very good at providing precise error messages when the connection to the SMTP server fails: a lazy "password error" is used to cover many sins.&lt;/P&gt;
&lt;P&gt;Can you send if you use Webmail?&amp;nbsp; That would verify that the account is fully operational.&lt;/P&gt;
&lt;P&gt;Determining the exact cause of the issue, needs some precise diagnostics - the following looks a lot more complex than it really is ... give it a try and see what the precise issue is.&amp;nbsp; My money is on an issue with your current ISP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Test SMTP authentication&lt;/STRONG&gt;&lt;/P&gt;
&lt;DIV style="background: #EDF3F5; padding: 10px; margin-top: 20px; margin-right: 10px; border: 2px solid #CFD8DC; border-radius: 10px; box-shadow: 8px 8px 7px #676D70; font-size: 10pt;"&gt;
&lt;P&gt;Email programs often report username / password error for issues not actually related to those being wrong, but for other connectivity issues. Such can be very frustrating when you are convinced that they are correct. Testing SMTP authentication through a command line interface can deliver a more precise error message. The following describes how to do this using TELNET.&lt;/P&gt;
&lt;P&gt;This is not difficult, but you need the following resources which might be unfamiliar...&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;TELNET - this might need installing as an additional option, for Windows see &lt;A href="https://social.technet.microsoft.com/wiki/contents/articles/38433.windows-10-enabling-telnet-client.aspx" target="_blank"&gt;enabling TELNET&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;A code64 encoder / decoder such as &lt;A href="https://www.base64encode.org/" target="_blank"&gt;this&lt;/A&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;You can use TELNET to communicate direct with the SMTP server as follows...&lt;/P&gt;
&lt;P&gt;Open the code64 encoder in a web browser and leave ready for use in the following steps.&lt;/P&gt;
&lt;P&gt;Launch a windows command line window (DOS window) - press windows-key+R - type CMD into the run box - click OK&lt;/P&gt;
&lt;P&gt;Enter...&lt;/P&gt;
&lt;PRE&gt;telnet relay.plus.net 587&lt;/PRE&gt;
&lt;P&gt;Press enter. Note if you use one of the other brand email services, use the appropriate SMTP server name for that brand. In response to SMTP server I'm here message, say 'HELLO'...&lt;/P&gt;
&lt;PRE&gt;EHLO relay.plus.net&lt;/PRE&gt;
&lt;P&gt;The SMTP server will then report what it can do after which tell the server you wish to authenticate...&lt;/P&gt;
&lt;PRE&gt;AUTH login&lt;/PRE&gt;
&lt;P&gt;The server should return the following, which is a base64 encoded string that requires your username:&lt;/P&gt;
&lt;PRE&gt;334 VXNlcm5hbWU6&lt;/PRE&gt;
&lt;P&gt;Use the code64 encoder to encode your username and paste it into the telnet window and press enter. For example:&lt;/P&gt;
&lt;PRE&gt;bXl1c2VybmFtZQ==&lt;/PRE&gt;
&lt;P&gt;The server should return the following, which is a base64 encoded string that requires your password:&lt;/P&gt;
&lt;PRE&gt;334 UGFzc3dvcmQ6&lt;/PRE&gt;
&lt;P&gt;Paste the base64 encoded password for the username. For example:&lt;/P&gt;
&lt;PRE&gt;bXlwYXNzd29yZA==&lt;/PRE&gt;
&lt;P&gt;The server will then report success or failure, any failure message should clearly indicate the reason for the failure. If the reason for the failure is not clear, please report back the message.&lt;/P&gt;
&lt;P&gt;Close the SMTP / TELNET session by entering&lt;/P&gt;
&lt;PRE&gt;quit&lt;/PRE&gt;
&lt;P&gt;The session should look something similar to the below wherein your input is in bold...&lt;/P&gt;
&lt;BLOCKQUOTE&gt;220 avasout03 smtp relay.plus.net&lt;BR /&gt;&lt;STRONG&gt;EHLO relay.plus.net&lt;/STRONG&gt;&lt;BR /&gt;250-avasout03 hello [&lt;I&gt;your IP address&lt;/I&gt;], pleased to meet you&lt;BR /&gt;250-HELP&lt;BR /&gt;250-AUTH LOGIN PLAIN&lt;BR /&gt;250-SIZE 104857600&lt;BR /&gt;250-PIPELINING&lt;BR /&gt;250-8BITMIME&lt;BR /&gt;250-STARTTLS&lt;BR /&gt;250 OK&lt;BR /&gt;&lt;STRONG&gt;AUTH LOGIN&lt;/STRONG&gt;&lt;BR /&gt;334 VXNlcm5hbWU6&lt;BR /&gt;&lt;STRONG&gt;bXl1c2VybmFtZQ==&lt;/STRONG&gt;&lt;BR /&gt;334 UGFzc3dvcmQ6&lt;BR /&gt;&lt;STRONG&gt;bXlwYXNzd29yZA==&lt;/STRONG&gt;&lt;BR /&gt;235 ... authentication succeeded&lt;BR /&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;&lt;BR /&gt;221 avasout03 smtp closing connection&lt;BR /&gt;Connection to host lost.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here are some examples of failure responses...&lt;/P&gt;
&lt;PRE&gt;535 ...authentication rejected [as username / password is wrong]&lt;BR /&gt;535 ...authentication rejected as source IP has a poor reputation&lt;BR /&gt;535 Too many SMTP auth failures. Please try again later.&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 12:50:28 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997203#M48251</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2025-01-29T12:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997225#M48253</link>
      <description>&lt;P&gt;thanks for coming back to me , i used my VPN and it worked , I assume my IP is blacklisted how do I go about sorting it I use BT broadband at the mo&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 16:05:13 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997225#M48253</guid>
      <dc:creator>to666ny</dc:creator>
      <dc:date>2025-01-29T16:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997232#M48254</link>
      <description>&lt;P&gt;That's difficult!&lt;/P&gt;
&lt;P&gt;Take a look here:&amp;nbsp;&lt;A href="https://mxtoolbox.com/" target="_blank"&gt;https://mxtoolbox.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Who is black listing it and why?&lt;/P&gt;
&lt;P&gt;Some of the black listings last only 24-48 hours and it might resolve itself.&amp;nbsp; Some black listings need proactive removal - you might be able to make the request, some circumstances require the ISP to make the request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Potentially the easiest approach would be to switch the router off for 2 hours and hope when you switch it back on, you are allocated a different IP address.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 16:38:59 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997232#M48254</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2025-01-29T16:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997237#M48255</link>
      <description>&lt;P&gt;ideal , I'll turn the router off and keep my fingers crossed&lt;/P&gt;
&lt;P&gt;thanks for your help&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 17:34:53 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997237#M48255</guid>
      <dc:creator>to666ny</dc:creator>
      <dc:date>2025-01-29T17:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: problems sending email , receives ok</title>
      <link>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997415#M48272</link>
      <description>&lt;P&gt;turned router off for 2 hours and all sorted , thanks for your help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 17:49:14 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/problems-sending-email-receives-ok/m-p/1997415#M48272</guid>
      <dc:creator>to666ny</dc:creator>
      <dc:date>2025-01-31T17:49:14Z</dc:date>
    </item>
  </channel>
</rss>

