I have this installed and working on a fresh 3.6.2 installation. I, like others, ran into the 'adminhash mismatch' error -- so rather than commenting out code I decided to fix it. Took 5 seconds.
in
admincp/wmail_admin_global.php:
FIND:
PHP Code:
print_form_header( "wmail_admin_global", "save", false, false, "wmailglobalsettings", "90%", "", false, "POST" );
REPLACE WITH:
PHP Code:
print_form_header( "wmail_admin_global", "save", false, false, "wmailglobalsettings", "90%", "", false, "post" );
For those keeping score at home, the only change made was changing the case of
POST to
post. You now have a working adminhash.
Enjoy.
* Edit:
Another purely aesthetic (template) fix:
In
webmail_homepage:
FIND:
HTML Code:
<select name="book" size="10" id="book" onChange="SetValue('to', GetSelectedEmail());">
REPLACE WITH:
HTML Code:
<select name="book" size="10" id="book" style="width: 187px" onChange="SetValue('to', GetSelectedEmail());">
FIND and REMOVE:
HTML Code:
<option value="" title=""> </option>
Remember, CSS is your friend.