<?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 Outgoing Mail Failure After Password Changed in Email</title>
    <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1907099#M41984</link>
    <description>&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/96057"&gt;@willcutforth&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/17607"&gt;@MatthewWheeler&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gents stripping this one to the bones...&lt;/P&gt;
&lt;P&gt;This is a no-longer a Plusnet customer, but an established user of free email scenario.&amp;nbsp; Is there any possibility that through the need to change the account password, that the account profile has change to (whatever its is called) "free email - receive only"?&lt;/P&gt;
&lt;P&gt;Such would fit the profile of not being able to access the SMTP server.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/117454"&gt;@DLeiper&lt;/a&gt;&amp;nbsp;- try this...&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;It might give you a clearer error status ... it&amp;nbsp;&lt;EM&gt;might&lt;/EM&gt; not be a password error!&lt;/P&gt;</description>
    <pubDate>Wed, 25 Jan 2023 15:52:12 GMT</pubDate>
    <dc:creator>Townman</dc:creator>
    <dc:date>2023-01-25T15:52:12Z</dc:date>
    <item>
      <title>SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903800#M41620</link>
      <description>&lt;P&gt;I had to change my password several weeks ago after my email was hacked and ever since I have not been able to send emails from my plusnet email addresses on my laptop using Outlook, or phone, but &lt;SPAN&gt;Webmail works fine&lt;/SPAN&gt;. I think the problem is very similar to the following thread, as I am also no longer a plusnet broadband customer, but I can't post to it now. In Manage My Mail, Select Email delivery Method it says "&lt;SPAN&gt;This feature is not available for your account type."&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Cancelling-Broadband-Email/m-p/1851584" target="_blank"&gt;https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Cancelling-Broadband-Email/m-p/1851584&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help greatly appreciated, thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 08:32:19 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903800#M41620</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-02T08:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903814#M41622</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/117454"&gt;@DLeiper&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... as I am also no longer a plusnet broadband customer, but I can't post to it now. In Manage My Mail, Select Email delivery Method it says "&lt;SPAN&gt;This feature is not available for your account type."&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;When did you become "not a Plusnet customer"?&lt;/P&gt;
&lt;P&gt;Plusnet withdrew the ability for no longer a customer to continue to use their email service a short while after the post you linked to.&amp;nbsp; If you ceased to be a customer BEFORE that date and you requested the retention of email, then things should still work.&amp;nbsp; There has bee the odd case where access to the email component has been problematic.&lt;/P&gt;
&lt;P&gt;Your description implies that this is a secondary mail box (accountname+mailboxname) in which case you could try setting the SMTP authentication details to be different to the inbound server settings.&amp;nbsp; Your problem description suggests that you can still log into the user portal, so for the SMTP try using different authentication credentials - accountname and accountpassword.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 10:43:35 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903814#M41622</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2023-01-02T10:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903889#M41633</link>
      <description>&lt;P&gt;Thanks for your reply&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/5145"&gt;@Townman&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;I first left Plusnet around 10 years ago, but kept the accountname which has been used for secondary mail boxes since. I rejoined in 2016 and had a different accountname, then left again Aug-21. I couldn't send emails until I changed my outgoing server to require authentication and port number from 25 to 587. It was all working fine until I had to change my password, after which I have only been able to send using webmail.&lt;/P&gt;&lt;P&gt;I have tried&amp;nbsp;&lt;SPAN&gt;accountname (only) and accountpassword for SMTP for my secondary mail box and also tried same for my primary mailbox, but Outlook responds with "Your email server rejected your login", even though it works on webmail.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I seem to think, like TootieFrootie on the other thread, my account type needs to be changed to "Plusnet Mail" ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 20:20:46 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1903889#M41633</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-02T20:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904124#M41653</link>
      <description>&lt;P&gt;Hi, I'm keen to get this resolved and wondering if there are any Plusnet staff on this forum who can&amp;nbsp;&lt;SPAN&gt;change&amp;nbsp;my&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;account type to "Plusnet Mail" ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thankyou&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 11:48:50 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904124#M41653</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-04T11:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904174#M41659</link>
      <description>&lt;P&gt;Hi DLeiper, sorry to disappoint but that isn't something we provide any more as we've moved away from mail-only services some time ago.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 16:56:52 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904174#M41659</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-04T16:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904179#M41661</link>
      <description>&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I have understood all that the user has stated, I think this case is one of EXISTING free email which was working for this user (who departed before the rules changed) but it has become broken subsequent to the password being changed to address a security breach.&lt;/P&gt;
&lt;P&gt;Is it the case that the user is mistaken (in that they have never been able to SEND mail via Plusnet's SMTP servers) ... or has the email component on their legacy account become broken?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 17:20:47 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904179#M41661</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2023-01-04T17:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904186#M41665</link>
      <description>&lt;P&gt;We don't have the option to change any account over to a mail only service unfortunately.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 18:50:07 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904186#M41665</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-04T18:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904189#M41667</link>
      <description>&lt;P&gt;... but is the account&amp;nbsp;&lt;EM&gt;already mail only&lt;/EM&gt; and (somehow) changing the password broke it ... ?&lt;/P&gt;
&lt;P&gt;Either this was not a &lt;U&gt;&lt;STRONG&gt;full&lt;/STRONG&gt; &lt;/U&gt;free email account (the user NEVER was able to use the relay.plus.net server) &lt;STRONG&gt;or&lt;/STRONG&gt; it has now become broken, having changed the password.&amp;nbsp; That is the user is mistaken about the prior status or something has changed alongside the changing of the password.&lt;/P&gt;
&lt;P&gt;Might it be the case that the means of&amp;nbsp;&lt;EM&gt;repairing&lt;/EM&gt; a free email service have been deprecated?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 19:01:42 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904189#M41667</guid>
      <dc:creator>Townman</dc:creator>
      <dc:date>2023-01-04T19:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904190#M41668</link>
      <description>&lt;P&gt;Sorry Townman, it would be down to the customer if they want to confirm which type of account they currently have.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 19:14:00 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904190#M41668</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-04T19:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904191#M41669</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/5145"&gt;@Townman&lt;/a&gt;&amp;nbsp;for your assistance.&lt;/P&gt;
&lt;P&gt;I can confirm this is a case of an EXISTING free email which was working for me (who departed before the rules changed) but it has become broken subsequent to the password being changed to address a security breach.&lt;/P&gt;
&lt;P&gt;And I can confirm I am not mistaken, I HAVE been able to SEND mail via Plusnet's SMTP servers until recently, which presumably implies the email component on my legacy account become broken ?&lt;/P&gt;
&lt;P&gt;As such,&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;,&amp;nbsp;as I seem to have a broken legacy account, can you please fix it ?&lt;/P&gt;
&lt;P&gt;Thankyou.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 19:34:16 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904191#M41669</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-04T19:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904286#M41673</link>
      <description>&lt;P&gt;Thanks for the clarification, I'm going to raise this issue with our net ops team to see if there's anything we can do. It will take a few days to get some feedback on that but bear with me and I'll keep you posted.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just before I could raise it I need to ask if it would be OK to change your password temporarily as that's sometimes necessary to try and replicate such things on our side, would that be OK?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:05:47 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904286#M41673</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-05T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904291#M41674</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;&amp;nbsp;thanks for progressing this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's fine to temporarily change my password - is this something I need to do, or will you do it ?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:35:13 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904291#M41674</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-05T17:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904292#M41675</link>
      <description>&lt;P&gt;No that's something we'd do if needed so thanks for confirming. I've documented everything on your account here and I'll be in touch as soon as we have an update: &lt;A href="https://www.plus.net/wizard/?p=view_question&amp;amp;id=230356566" target="_blank"&gt;https://www.plus.net/wizard/?p=view_question&amp;amp;id=230356566&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:53:47 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904292#M41675</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-05T17:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904931#M41737</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;,&amp;nbsp;just wondering how this is progressing, thanks ?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 13:35:47 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904931#M41737</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-11T13:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904938#M41738</link>
      <description>&lt;P&gt;Hi DLeiper, there's a task with our netops team which has been triaged to the right person so I'd expect us to see a response to that by tomorrow. I'll get an email notification through when that's been done so I'll let you know as soon as I see that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Adam&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 14:30:41 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1904938#M41738</guid>
      <dc:creator>adamwalker</dc:creator>
      <dc:date>2023-01-11T14:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1905708#M41771</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.plus.net/t5/user/viewprofilepage/user-id/277" target="_blank" rel="noopener" data-di-id="di-id-355ad88c-8765fc3b"&gt;@adamwalker&lt;/A&gt;&lt;SPAN&gt;,&amp;nbsp;just wondering if your netops team have managed to look at this ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks, Derek&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 20:34:39 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1905708#M41771</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-16T20:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1905735#M41774</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/117454"&gt;@DLeiper&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;We've had a update and I've sent some further info across on a PM&lt;/P&gt;
&lt;P&gt;If you can respond when you're able to that would be great&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 08:33:57 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1905735#M41774</guid>
      <dc:creator>MatthewWheeler</dc:creator>
      <dc:date>2023-01-17T08:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906816#M41940</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/277"&gt;@adamwalker&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I believe I've done what&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/17607"&gt;@MatthewWheeler&lt;/a&gt;&amp;nbsp;asked. Is there any further progress ?&lt;/P&gt;
&lt;P&gt;Thanks, Derek&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 20:07:26 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906816#M41940</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-23T20:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906902#M41952</link>
      <description>&lt;P&gt;Hey there &lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/117454"&gt;@DLeiper&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We got a reply back from our networks guys that they changed the pw and were able to log in. Can you try changing the pw and try and use the SMTP server now for me please?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 12:05:45 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906902#M41952</guid>
      <dc:creator>willcutforth</dc:creator>
      <dc:date>2023-01-24T12:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP Outgoing Mail Failure After Password Changed</title>
      <link>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906946#M41965</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/96057"&gt;@willcutforth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have reset my password. I note that in the "Manage My Account" section it says "Change Already In Progress. You are not currently allowed to make a change. There is already a change in progress. Please try again later. When I try to use the SMTP server, I get "Your e-mail server rejected your login. Verify your user name and password for this account in Account Settings."&lt;/P&gt;
&lt;P&gt;So still not working I'm afraid.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 15:07:34 GMT</pubDate>
      <guid>https://community.plus.net/t5/Email/SMTP-Outgoing-Mail-Failure-After-Password-Changed/m-p/1906946#M41965</guid>
      <dc:creator>DLeiper</dc:creator>
      <dc:date>2023-01-24T15:07:34Z</dc:date>
    </item>
  </channel>
</rss>

