Redirect http to https

Modify the file: /opt/zimbra/tomcat/webapps/zimbra/public/Login.jsp
so that you change all occurrences of:

initMode=" + currentProto
to
initMode=https"

Only 3-5 lines will need to be changed in all. Below is an example of 3 lines (112, 113, 123) you will need to change


org line 112> qs = emptyQs? "?initMode=" + currentProto: qs + "&initMode=" +
org line 113> currentProto;
new line 112> qs = emptyQs? "?initMode=https": qs + "&initMode=https";
new line 113>

org line 123> qs = emptyQs? "?initMode=" + currentProto: qs + "&initMode=" + currentProto;
new line 123> qs = emptyQs? "?initMode=https": qs + "&initMode=https";


Jump to: navigation, search