<?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: SMTP authentication error on plusnet webmail client in Email</title>
    <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1858794#M38917</link>
    <description>&lt;P&gt;This has the hallmarks of bi-polar permissions - access to the IMAP server is OK, access to the SMTP server is not OK.&amp;nbsp; Therefore in spite of what the error messages might say, this is not a username / password issue.&lt;/P&gt;
&lt;P&gt;With PC / device based email applications connecting via 3rd party ISP networks, the usual culprit is a black listed IP address.&amp;nbsp; The fact that the webmail platform cannot access SMTP points to "the wrong kind of free legacy email account configuration".&lt;/P&gt;
&lt;P&gt;There used to be read-only free legacy email accounts and there have recently been examples of agents applying the wrong kind of free email account status to retain email accounts.&amp;nbsp; Whilst the symptoms sound very similar, given that this is an established account, such should be be applicable ... unless something is refreshing the account status.&amp;nbsp; There have been occasions where automated revenue protection activity has made&amp;nbsp;&lt;EM&gt;interesting&lt;/EM&gt; changes to account statuses.&lt;/P&gt;
&lt;P&gt;You might care to run the SMTP connectivity diagnostics below from your PC to obtain a detailed connection refused error status.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/96188"&gt;@adam945&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/51902"&gt;@LaurenB&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/54640"&gt;@TheMightyAJ&lt;/a&gt;&amp;nbsp; what was the history here which "fixed" this last time?&amp;nbsp;&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>Fri, 25 Feb 2022 13:11:00 GMT</pubDate>
    <dc:creator>Townman</dc:creator>
    <dc:date>2022-02-25T13:11:00Z</dc:date>
    <item>
      <title>SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840456#M37551</link>
      <description>&lt;P&gt;Since email started working again Im getting the SMTP authentication error in the plusnet webmail client. Cant send emails.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have reset my password this morning and that didnt make any difference&lt;/P&gt;
&lt;P&gt;Im on a totalise email address&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can send email using the client on my Samsung android phone which is using plusnet IMAP.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;The webmail is not working&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can Any of the plusnet team help with this ?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 10:49:46 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840456#M37551</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-16T10:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840488#M37554</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When there is a notable issue, there is a real danger of presuming that must be the cause of all issues being encountered in the time time frame.&amp;nbsp; However in this case, the issue sounds as though it is something quite different.&amp;nbsp; Reading the very helpful details you've provided...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;This is NOT a *.plus.com email account but an old brand mail address&lt;/LI&gt;
&lt;LI&gt;That suggests the possibility that you are not connecting over a Plusnet ISP network connection&lt;/LI&gt;
&lt;LI&gt;You have reset the password, so presuming you changed the settings correctly, you do not have a password issue&lt;/LI&gt;
&lt;LI&gt;Sending from the phone works, so you have the account details correct (on at least that device) and the account is operative - not that is using SMTP to send (IMAP is the receiving side)&lt;/LI&gt;
&lt;LI&gt;Is that device connecting over the same network as the PC using webmail ... or is it connecting over 3/4/5G&lt;/LI&gt;
&lt;LI&gt;If over a different network, have you tried access webmail using a browser on the phone&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To be totally clear when you say "webmail" do you mean using a web browser pointed at &lt;A href="https://webmail.plus.net" target="_blank"&gt;https://webmail.plus.net&lt;/A&gt; ?&amp;nbsp; Many people incorrectly use "webmail" to describe the mail service in general, even when accessing via a PC email client.&amp;nbsp; We've seen staff do that in the past!!!&lt;/P&gt;
&lt;P&gt;If you can answer the above, it will clarify what to consider next.&amp;nbsp; This reads like a connectivity issue (not a password issue).&amp;nbsp; If you can connect to webmail to read emails, then you ought to be able to send, as the webmail to server connection is within Plusnet's data centres.&lt;/P&gt;
&lt;P&gt;If however, you have used "webmail" to describe a PC client based connection and you are not using a Plusnet ISP connection ... then the issue points to your ISP's IP address being marked as suspect.&amp;nbsp; We can look at that after confirming the above understanding.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 11:58:23 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840488#M37554</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-16T11:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840509#M37558</link>
      <description>&lt;P&gt;Hi Townman&lt;/P&gt;
&lt;P&gt;thanks for the response.&amp;nbsp; Some more information:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I have a legacy *.totalise email address from 1999 &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@104CD63F9302A50EF5EC70FE32BB8AA1/images/emoticons/smiley.gif" alt="Smiley" title="Smiley" /&gt;&lt;/LI&gt;
&lt;LI&gt;not connected via plusnet broadband, im on BT consumer broadband&lt;/LI&gt;
&lt;LI&gt;my phone email client is working and on the same residential wi-fi connection as my desktop PC&lt;/LI&gt;
&lt;LI&gt;oh my desktop PC I use&amp;nbsp;&lt;A href="https://webmail.plus.net/" target="_blank"&gt;https://webmail.plus.net/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;I just tried using plusnet webmail on my phone to send mail and get the same result "SMTP error 535:authentication failed"&lt;/LI&gt;
&lt;LI&gt;I can receive email on phone client and plusnet webmail, its just sending email via the plusnet web client that is not working&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 12:29:03 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840509#M37558</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-16T12:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840737#M37570</link>
      <description>&lt;P&gt;Still the same today,&amp;nbsp; cant send mail using the Plusnet webmail site on any platform; PC, phone, tablet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very strange, not a password issue as Ive changed that. Not a configuration issue on my side as you cant configure any server settings in the webmail client.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Must be something internal in Plusnets mail server configs&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 08:36:33 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840737#M37570</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-17T08:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840777#M37576</link>
      <description>&lt;P&gt;As of 10am today, Plusnet has reported that all problems are now resolved.&amp;nbsp; Can you please retest.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 10:22:05 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840777#M37576</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-17T10:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840783#M37578</link>
      <description>&lt;P&gt;thanks, I just retested sending mail from webmail at 10:27 and still the same "SMTP error 535: authentication error"&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 10:28:03 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840783#M37578</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-17T10:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840805#M37580</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Superuser escalation&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 style="font-size: 10pt;"&gt;This topic has been escalated by one of the Superusers; please allow time for Plusnet to respond before commenting further.&lt;/P&gt;
&lt;P style="font-size: 10pt;"&gt;Escalation does not imply progressing this matter will be given priority, nor that a different outcome will result.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Reason for escalation:&lt;/STRONG&gt; &amp;nbsp;Chase status&lt;/P&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 10:58:02 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1840805#M37580</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-17T10:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841028#M37614</link>
      <description>&lt;P&gt;I tried again this morning with webmail. It sent 1 mail and I thought the issue was fixed so tried again, and then the SMTP error came back and it hasnt worked since. Very strange.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tried logging out and back into webmail, no change, still the SMTP authentication error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 08:14:49 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841028#M37614</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-18T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841068#M37617</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;,&lt;/P&gt;

&lt;P&gt;Do you know what time it was this morning when the first email went through? Was it straight away after sending the first email that you'd tried again only for the system to fail?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 10:55:48 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841068#M37617</guid>
      <dc:creator>TheMightyAJ</dc:creator>
      <dc:date>2021-11-18T10:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841114#M37621</link>
      <description>&lt;P&gt;Hi Alex&lt;/P&gt;
&lt;P&gt;yes, first email of the day outbound was sent at 7:47 via plusnet webmail client on my desktop PC and then its failed to send any more since that time.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My android phone email client is using imap.plus.net and mail.totalise.co.uk successfully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 12:43:55 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841114#M37621</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-18T12:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841177#M37626</link>
      <description>&lt;P&gt;Thanks for getting back to us &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;. Are you able to try setting up the mailbox via a mail client on the PC to see if this will also work?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 16:31:30 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841177#M37626</guid>
      <dc:creator>TheMightyAJ</dc:creator>
      <dc:date>2021-11-18T16:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841220#M37634</link>
      <description>&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/54640"&gt;@TheMightyAJ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that is issue here is that WEBMAIL appears to be bi-polar - it logs on to the IMAP server OK but throws a password error when attempting to send.&amp;nbsp; This really ought never to happen ... though we have seen this before**.&amp;nbsp; If the user can get their password right to logon to webmail and read their emails (IMAP server), the webmail should also be able to log on to the SMTP server to send emails.&lt;/P&gt;
&lt;P&gt;If I have understood the user correctly, their device email clients work OK.&amp;nbsp; Whatever, trying on a different client is not going to fix webmail.&lt;/P&gt;
&lt;P&gt;**There are hints of a pattern of legacy email accounts not being able to send email via webmail.&amp;nbsp; In other circumstances one might conclude that their accounts are not able to access the SMTP servers at all ... the comments from the user suggest that is not the case - works OK from the phone.&lt;/P&gt;
&lt;P&gt;"&amp;nbsp;Im on a totalise email address -&amp;nbsp;I can send email using the client on my Samsung android phone which is using plusnet IMAP. [SMTP ?]"&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 19:59:19 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841220#M37634</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-18T19:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841282#M37641</link>
      <description>&lt;P&gt;Ok some more tests this morning:&lt;/P&gt;
&lt;P&gt;plusnet webmail from desktop PC on Win10 = SMTP authentication error&lt;/P&gt;
&lt;P&gt;Samsung email client on android phone, using imap.plus.net and mail.totalise.co.uk = can send email&lt;/P&gt;
&lt;P&gt;Outlook10 email client on laptop using mail.plust.net and mail.totalise.co.uk = can send mail&lt;/P&gt;
&lt;P&gt;plusnet webmail from laptop on Win8 = SMTP authentication error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seems like something to do with the webmail client and how its authenticating to the mail server ?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 08:28:18 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841282#M37641</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-19T08:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841303#M37644</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;Samsung email client on android phone, using imap.plus.net and mail.totalise.co.uk = can send email&lt;/P&gt;
&lt;P&gt;Outlook10 email client on laptop using mail.plust.net and mail.totalise.co.uk = can send mail&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Need to get some clarification here...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;imap.plus.net and mail.plus.net are not the same - they are IMAP and POP3 for both receiving.&lt;/P&gt;
&lt;P&gt;mail.totalise.co.uk is a completely different brand - what are you using that for - the SMTP server?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you log in to webmail, are you logging on with&amp;nbsp;&lt;SPAN&gt;[username]@&lt;/SPAN&gt;&lt;SPAN&gt;totalise.co.uk ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/54640"&gt;@TheMightyAJ&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Which is the correct webmail drop down option for totalise - Plusnet?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 09:22:51 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841303#M37644</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-19T09:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841322#M37654</link>
      <description>&lt;P&gt;Hiya &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;, I am sorry for the issues that you are having with sending mail from webmail.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have refreshed the mail on your account so after about 30 minutes, can you please try again to send an email and let us know how this goes?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 10:26:51 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841322#M37654</guid>
      <dc:creator>LaurenB</dc:creator>
      <dc:date>2021-11-19T10:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841371#M37657</link>
      <description>&lt;P&gt;Tested again just now, still the same on webmail "SMTP authentication error"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;im on a legacy .totalise.co.uk&amp;nbsp; mail address and account since 1999 &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@0FA1396AC0773F33E2DC472BB4F75D3C/images/emoticons/wink.gif" alt="Wink" title="Wink" /&gt;&lt;/P&gt;
&lt;P&gt;hence I used to use the totalise mail servers, then madasafish, now plusnet&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 12:17:56 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841371#M37657</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-19T12:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841375#M37659</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/5145"&gt;@Townman&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you log in to webmail, are you logging on with&amp;nbsp;&lt;SPAN&gt;[username]@&lt;/SPAN&gt;&lt;SPAN&gt;totalise.co.uk ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 12:24:37 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841375#M37659</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2021-11-19T12:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841379#M37660</link>
      <description>&lt;P&gt;yes&lt;/P&gt;
&lt;P&gt;username@totalise.co.uk is all I have to log into webmail and email client. Never had any other account.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 12:32:34 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841379#M37660</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-19T12:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841444#M37667</link>
      <description>&lt;P&gt;Thanks for the update &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/45834"&gt;@t72bogie&lt;/a&gt;, I am sorry that the issue is ongoing.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;We'll need to raise this further to our Net Ops Team, but to do so will need your permission to change the password to help diagnose the issue.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Can you please log in to your account and reply to Ticket:&amp;nbsp;219752924 if you are happy for us to do this, letting us know on here once done?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 15:21:13 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841444#M37667</guid>
      <dc:creator>LaurenB</dc:creator>
      <dc:date>2021-11-19T15:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP authentication error on plusnet webmail client</title>
      <link>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841446#M37668</link>
      <description>&lt;P&gt;thanks, I have responded to the ticket&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 15:33:25 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-authentication-error-on-plusnet-webmail-client/m-p/1841446#M37668</guid>
      <dc:creator>t72bogie</dc:creator>
      <dc:date>2021-11-19T15:33:25Z</dc:date>
    </item>
  </channel>
</rss>

