<?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: Outgoing emails - unable to send in Email</title>
    <link>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/1999865#M48527</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/144791"&gt;@SGM&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;We have a plus net legacy email account we use with two secondary email accounts off it. &amp;nbsp;It has in past few days stopped sending outgoing emails from any of the three accounts, citing ‘user or password incorrect’ or authentication error. The accounts &amp;nbsp;receive incoming mails.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So are you connecting over a Plusnet broadband service?&lt;/P&gt;
&lt;P&gt;This has all the hallmarks of connecting over a third party internet connection using an IP address with a poor reputation.&amp;nbsp; Did the point of now not working, coincide with the router restarting?&lt;/P&gt;
&lt;P&gt;Few email clients provide clarity over why a connection is refused - they just report "password error" for everything.&amp;nbsp; You need a more detailed view of the issue and that requires a diagnostic test...&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;
&lt;P&gt;If you get "Source IP has a poor reputation" try finding out your current IP address, turn the router off for 2 hours then try again, checking to see if you have a different IP address.&lt;/P&gt;
&lt;P&gt;Google "Whatsmyipaddress".&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2025 18:20:08 GMT</pubDate>
    <dc:creator>Townman</dc:creator>
    <dc:date>2025-02-21T18:20:08Z</dc:date>
    <item>
      <title>Outgoing emails - unable to send</title>
      <link>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/1999861#M48526</link>
      <description>&lt;P&gt;Hi, wondering if anyone could point me to a resolution.(I’m not particularly technical so bear with me.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a plus net legacy email account we use with two secondary email accounts off it. &amp;nbsp;It has in past few days stopped sending outgoing emails from any of the three accounts, citing ‘user or password incorrect’ or authentication error. The accounts &amp;nbsp;receive incoming mails.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The devices we use are a windows pc, two iPhones, two iPads, and an android mobile. &amp;nbsp;All were okay sending and receiving up to a few days ago.&lt;/P&gt;&lt;P&gt;Due to the password error I changed / reset, via plus net, the main account password and then the &amp;nbsp;two sub accounts passwords. Still no luck. &amp;nbsp;&lt;SPAN&gt;(I must admit I have been going around in circles now with the different devices and trying to work out if I have amended to the new passwords.)&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;The accounts work via webmail, both sending and receiving.!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any advice (or further information required) to resolve it please.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 17:53:55 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/1999861#M48526</guid>
      <dc:creator>SGM</dc:creator>
      <dc:date>2025-02-21T17:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Outgoing emails - unable to send</title>
      <link>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/1999865#M48527</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/144791"&gt;@SGM&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;We have a plus net legacy email account we use with two secondary email accounts off it. &amp;nbsp;It has in past few days stopped sending outgoing emails from any of the three accounts, citing ‘user or password incorrect’ or authentication error. The accounts &amp;nbsp;receive incoming mails.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So are you connecting over a Plusnet broadband service?&lt;/P&gt;
&lt;P&gt;This has all the hallmarks of connecting over a third party internet connection using an IP address with a poor reputation.&amp;nbsp; Did the point of now not working, coincide with the router restarting?&lt;/P&gt;
&lt;P&gt;Few email clients provide clarity over why a connection is refused - they just report "password error" for everything.&amp;nbsp; You need a more detailed view of the issue and that requires a diagnostic test...&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;
&lt;P&gt;If you get "Source IP has a poor reputation" try finding out your current IP address, turn the router off for 2 hours then try again, checking to see if you have a different IP address.&lt;/P&gt;
&lt;P&gt;Google "Whatsmyipaddress".&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 18:20:08 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/1999865#M48527</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2025-02-21T18:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Outgoing emails - unable to send</title>
      <link>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/2000218#M48546</link>
      <description>&lt;P&gt;Many thanks for your input Townman.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;From what you said, &amp;nbsp;i presumed there was a chance it was connectivity through my router which is gigaclear fibre. Your detailed checking procedure seemed a bit technical for me, sorry! &amp;nbsp;Anyway so I tried &amp;nbsp;emails via mobile data (Which I know is a basic but I hadn’t done it) , they sent and received. &amp;nbsp;Thus more than likely router issue. Turned it off overnight and, voila, it all worked again next morning. &amp;nbsp;Thanks for your input and directing me. &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 12:17:56 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/Outgoing-emails-unable-to-send/m-p/2000218#M48546</guid>
      <dc:creator>SGM</dc:creator>
      <dc:date>2025-02-24T12:17:56Z</dc:date>
    </item>
  </channel>
</rss>

