I was hoping someone could tell me a method to change the URL that zimbra points to when a user clicks "Change Password"
It looks like this process is handled by the following:
Code:
// Popup the change password dialog.
ZmPreferencesPage.prototype._changePasswordListener =
function(ev) {
var url = appCtxt.get(ZmSetting.CHANGE_PASSWORD_URL);
if (!url) {
url = appCtxt.get(ZmSetting.PUBLIC_URL) + "/h/changepass";
}
if (!url) {
var isHttp = appCtxt.get(ZmSetting.PROTOCOL_MODE) == ZmSetting.PROTO_HTTP;
var proto = isHttp ? ZmSetting.PROTO_HTTP : ZmSetting.PROTO_HTTPS;
var port = appCtxt.get(isHttp ? ZmSetting.HTTP_PORT : ZmSetting.HTTPS_PORT);
url = AjxUtil.formatUrl({protocol:proto, port:port, path:"/zimbra/h/changepass", qsReset:true});
}
var args = "height=465,width=705,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no";
window.open(url, "_blank", args);
}; We have a web portal that enables our users to change passwords, reset locked accounts, etc. We would like to use this page to manage password changes, but I can't seem to figure out how to change ZmSetting.CHANGE_PASSWORD_URL.
Anyone have any advice?