Difference between revisions of "Mgolfieri Disable password autocompletion"
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | {{Article Infobox|{{admin}}|{{ZCS 7.0}}|{{ZCS 6.0}}||}}=Disclaimer= | + | {{Archive}}{{Unsupported}}{{Article Infobox|{{admin}}|{{ZCS 7.0}}|{{ZCS 6.0}}||}}=Disclaimer= |
'''The following steps are NOT supported, this is a community contributed workaround. | '''The following steps are NOT supported, this is a community contributed workaround. | ||
''' | ''' | ||
=Description= | =Description= | ||
− | This article describes how to disable password autocompletion in Zimbra Webclient. This is now fixed and | + | This article describes how to disable password autocompletion in Zimbra Webclient. This is now fixed and being set as mandatory in ZCS 8.x. See [http://bugzilla.zimbra.com/show_bug.cgi?id=58892 Bug 58892: AutoComplete Attribute Not Disabled for Password in Form Based Authentication] |
=Steps= | =Steps= |
Latest revision as of 11:15, 30 March 2015
Article Information |
---|
This article applies to the following ZCS versions. |
Disclaimer
The following steps are NOT supported, this is a community contributed workaround.
Description
This article describes how to disable password autocompletion in Zimbra Webclient. This is now fixed and being set as mandatory in ZCS 8.x. See Bug 58892: AutoComplete Attribute Not Disabled for Password in Form Based Authentication
Steps
1) Open /opt/zimbra/jetty/webapps/zimbra/public/login.jsp on all your store nodes with your favorite CLI editor.
2) Locate the following line:
<td><input id="password" class="zLoginField" name="password" type="password" value="" size="40"/></td>
3) Add the attribute autocomplete="off" between id="password" and class="zLoginField"
<td><input id="password" autocomplete="off" class="zLoginField" name="password" type="password" value="" size="40"/></td>
4) Restart mailboxd to apply:
su - zimbra zmmailboxdctl restart