Is it common for RoundCube not to save login information for my mail login page? All other websites save my form information except for Roundcube.
Yes, it's common. But you can change it, if you have access to the code in ./skins/default/templates/login.html
<form name="form" action="./" method="post">
<roundcube:object name="loginform" form="form" autocomplete="off" />
<p style="text-align:center;"><input type="submit" class="button mainaction" value="<roundcube:label name='login' />" /></p>
</form>
Change it to:
Thank you, that worked wonderfully!
Quote from: mytechassistant;19642Is it common for RoundCube not to save login information for my mail login page? All other websites save my form information except for Roundcube.
Not to be mean or anything but I had the same question and I did a forum search (http://www.roundcubeforum.net/search.php) and found the answer at http://www.roundcubeforum.net/general-discussion/3834-remember-password-login.html
I think you should try that ever now and then. Again, do not get offended. :)
Hello,
In 0.2.1 You must alter 2 files :
program/include/rcube_template.php :
$input_user = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser', 'size' => 30, 'autocomplete' => 'off'));
to
$input_user = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser', 'size' => 30, 'autocomplete' => 'on'));
and :
program/js/app.js :
obj.setAttribute('autocomplete', 'off');
to
obj.setAttribute('autocomplete', 'on');
That was worked for me
How does one get access to code to make these changes?
Where to start and go?
Would like to turn on username and password memory and also would like to try and get rid of those signature seperators.
Thank you,
Quote from: akelly;20248How does one get access to code to make these changes?
Where to start and go?
Depends. If the software is not hosted by you, you'll have to contact your hoster to make the changes (but he will probable not wish to do that)
If you want to host it yourself you can just donwload it from the RC website (http://www.roundcube.net/downloads).
Thank you Julius,
My host company is BlueHost, I'll give them a call and see if I can get them to accomodate.
Do you have any suggestions on how to code our those Signature Seperators? the two hyphens -- just above my signature on e-mails?