View Single Post
  #6 (permalink)  
Old 12-01-2009, 08:22 AM
mmorse mmorse is offline
Moderator
 
Posts: 6,237
Default

As tiger2000 points out above: /opt/zimbra/mailboxd/webapps/zimbra/public/login.jsp
cp login.jsp login.jsp.backup
nano login.jsp
Where it says:
Quote:
<tr>
<td class="zLoginLabelContainer" ${smallScreen ? 'colspan=2' : ''}>${!smallScreen ? '</td><td>' : ''}
<table>
<tr>
<td><input id="remember" value="1" type="checkbox" name="zrememberme" /></td>
<td class="zLoginCheckboxLabelContainer" ${smallScreen?'style="white-space:normal;"':''}><label for="remember"><fmt:message
key="${smallScreen?'rememberMeMobile':'rememberMe' }"/></label></td>
</tr>
</table>
</td>
<td><input type="submit" class="zLoginButton"
value="<fmt:message key="login"/>"/></td>
</tr>
Change to:
Quote:
<tr>
<td class="zLoginLabelContainer" ${smallScreen ? 'colspan=2' : ''}>${!smallScreen ? '</td><td>' : ''}
<table>
<tr>
</tr>
</table>
</td>
<td><input type="submit" class="zLoginButton"
value="<fmt:message key="login"/>"/></td>
</tr>
zmmailboxdctl restart

Note there's some other places where zrememberme is called, if you decided to remove those and only partially do so or leave extraneous spaces etc you might end up with a 500 error, simply restore the backup copy and restart again.
Reply With Quote