Author |
|
bravedave Newbie
Joined: 05 September 2014 Location: Australia
Online Status: Offline Posts: 35
|
Posted: 22 July 2015 at 10:21pm | IP Logged
|
|
|
change-login-details
I'm using the Change email-to-username mapping on login (WebMail Plugin)
I can't login after the update (and had to revert) :(
Are there changes to that plugin to be aware of in latest update.
the mail server I use requires the plain username - so I strip the domain
that's the only thing I can think which would stop login working, reverting to previous version worked straight away.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 23 July 2015 at 7:49am | IP Logged
|
|
|
Hello,
To let us try and answer this, can you please show your exact code found within PluginIntegratorLoginToAccount method of the plugin? Thank you.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 23 July 2015 at 7:53am | IP Logged
|
|
|
Also, is there any reason why you use that plugin rather than set UseLoginWithoutDomain to On in data/settings/settings.xml file as explained here?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
bravedave Newbie
Joined: 05 September 2014 Location: Australia
Online Status: Offline Posts: 35
|
Posted: 23 July 2015 at 2:26pm | IP Logged
|
|
|
Thanks Igor - the reason would be - I did know about that
I also had to set <LoginAtDomainValue />
Thanks Igor - always useful info from you
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 July 2015 at 6:58am | IP Logged
|
|
|
Thanks for the update.
It appears there is indeed a problem with the case when login differs from email address, and the developers will be investigating it.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
bravedave Newbie
Joined: 05 September 2014 Location: Australia
Online Status: Offline Posts: 35
|
Posted: 28 July 2015 at 11:24pm | IP Logged
|
|
|
Thanks Igor
Further to this, I've had to revert to 7.5
The sending is also a problem now. In 7.5, using the plugin worked seamless through several versions and I was able to customize to suit - this version seems to have broken that
this is my code for PluginIntegratorLoginToAccount
public function PluginIntegratorLoginToAccount(&$sEmail, &$sPassword, &$sLogin, &$sLanguage, &$bAuthResult)
{
if (empty($sIncLogin)) {
$sLogin = $sEmail;
if ( preg_match( '@\@mydomain.dom$@', $sLogin )) {
$sLogin = preg_replace( '@\@mydomain.dom$@', '', $sLogin );
}
}
else
{
$sIncLogin = str_replace('@', '.', $sLogin);
}
}
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 03 August 2015 at 6:47am | IP Logged
|
|
|
We have just released WebMail Pro 7.6.1, upgrading to it should fix the problem.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
bravedave Newbie
Joined: 05 September 2014 Location: Australia
Online Status: Offline Posts: 35
|
Posted: 03 August 2015 at 2:53pm | IP Logged
|
|
|
Yes ! working
Thanks Igor
Good work team for prompt attention to issue
|
Back to Top |
|
|