Roundcube Community Forum

 

Login information

Started by mytechassistant, June 15, 2009, 04:58:00 PM

Previous topic - Next topic

mytechassistant

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.

Julius Caesar

Yes, it's common. But you can change it, if you have access to the code in ./skins/default/templates/login.html

<form name=&quot;form&quot; action=&quot;./&quot; method=&quot;post&quot;>
<roundcube:object name=&quot;loginform&quot; form=&quot;form&quot; autocomplete=&quot;off&quot; />

<p style=&quot;text-align:center;&quot;><input type=&quot;submit&quot; class=&quot;button mainaction&quot; value=&quot;<roundcube:label name='login' />&quot; /></p>

</form>


Change it to:




" />



Julius Caesar

You can download the Groupvice4 theme here.
Sie können Groupvice4 hier he

mytechassistant

Thank you, that worked wonderfully!

Blueracer66

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 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. :)
Join ResidentEvilFanboy version beta! Visit http://www.residentevilfanboy.com/ Thanks!:)

symio

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

akelly

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,

Julius Caesar

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.
Julius Caesar

You can download the Groupvice4 theme here.
Sie können Groupvice4 hier he

akelly

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?