Mgolfieri Disable password autocompletion: Difference between revisions

(Created page with "{{Article Infobox|{{admin}}|{{ZCS 7.0}}|{{ZCS 6.0}}||}}=Disclaimer= '''The following steps are NOT supported, this is a community contributed workaround. ''' =Description= Thi...")
 
No edit summary
Line 3: Line 3:
'''
'''
=Description=
=Description=
This article describes how to disable password autocompletion in Zimbra Webclient. This is now fixed and made optional in ZCS 8.x. See:
This article describes how to disable password autocompletion in Zimbra Webclient. This is now fixed and made optional 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]
 
[http://bugzilla.zimbra.com/show_bug.cgi?id=58892
Bug 58892: AutoComplete Attribute Not Disabled for Password in Form Based Authentication]


=Steps=
=Steps=

Revision as of 14:30, 1 December 2012

Admin Article

Article Information

This article applies to the following ZCS versions.

ZCS 7.0 Article ZCS 7.0 ZCS 6.0 Article ZCS 6.0

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 made optional 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:

<input id="password" class="zLoginField" name="password" type="password" value="" size="40"/>

3) Add the attribute autocomplete="off" between id="password" and class="zLoginField"

<input id="password" autocomplete="off" class="zLoginField" name="password" type="password" value="" size="40"/>

4) Restart mailboxd to apply:

su - zimbra
zmmailboxdctl restart
Jump to: navigation, search