Author |
|
davidemg42 Newbie
Joined: 29 December 2011
Online Status: Offline Posts: 2
|
Posted: 29 December 2011 at 9:44am | IP Logged
|
|
|
Hi everybody,
I'm using Webmail Lite ver. 6.3.6 on a Debian Server with PHP 5.3.
Does anybody know if it's possible save credentials when the user sign-in ? I tried checking on "Automatically Sign In" check-box without result.
I will appreciate any feedback.
Thank you very much.
Davide.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 29 December 2011 at 11:29pm | IP Logged
|
|
|
Out-of-box, WebMail has autocompletion/autofill disabled at login screen, but it's easy to turn it on. In index.php file, locate the following code:
Code:
<div id="login_screen">
<form action="index.php?mode=submit" method="post" id="login_form" name="login_form" onsubmit="NeedToSubmit = true; return false;" autocomplete="off"> |
|
|
Modify that code so that autocomplete is set to "on"; or, remove that attribute at all.
As for "Sign me in automatically" box, its job is a bit different. When you log in with that box ticked, next time you enter WebMail URL you'll get into your mailbox with no need to log in. For that to work, make sure you don't click "Logout" link.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
davidemg42 Newbie
Joined: 29 December 2011
Online Status: Offline Posts: 2
|
Posted: 31 December 2011 at 5:30am | IP Logged
|
|
|
Hi Igor,
Thanks for responding.
Setting autocomplete to off or removing the attribute at all seem to work only with Firefox either on Windows or MacOSX.
Can this be possible ?
Thanks
Davide.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 01 January 2012 at 11:52pm | IP Logged
|
|
|
Just tried that in Opera, works fine; in Internet Explorer, however, it doesn't. Anyway, trapping a password request in such cases is a web browser's responsibility, and they might fail since there's an immediate redirect to another page. Different browsers use different logic in this situation, it's unlikely we can do anything about it.
And by the way, you can implement your own login forms using WebMail API.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|