Upgrade/iRedMail/0.7.4-0.8.0
From iRedMail
(Difference between revisions)
(→Disable case sensitive user authentication in Roundcube webmail) |
|||
| Line 6: | Line 6: | ||
== Disable case sensitive user authentication in Roundcube webmail == | == Disable case sensitive user authentication in Roundcube webmail == | ||
| - | Please change below setting to '''true''' in Roundcube webmail config file 'config/main.inc.php' to enable case insensitive user authentication: | + | Please change below setting to '''true''' in Roundcube webmail config file 'config/main.inc.php' to enable case insensitive user authentication. The config file should be: |
| + | * /var/www/roundcubemail/config/main.inc.php on RHEL/CentOS/Scientific Linux | ||
| + | * /usr/share/apache2/roundcubemail/config.inc.php on Debian/Ubuntu | ||
| + | * /srv/www/roundcubemail/config/main.inc.php on openSUSE | ||
| + | * /usr/local/www/roundcubemail/config/main.inc.php on FreeBSD | ||
{{cfg|config/main.inc.php|<pre> | {{cfg|config/main.inc.php|<pre> | ||
$rcmail_config['login_lc'] = false; | $rcmail_config['login_lc'] = false; | ||
</pre>}} | </pre>}} | ||
Revision as of 06:59, 9 February 2012
Contents |
THIS UPGRADE TUTORIAL IS A DRAFT, DO NOT APPLY IT.
General
Disable case sensitive user authentication in Roundcube webmail
Please change below setting to true in Roundcube webmail config file 'config/main.inc.php' to enable case insensitive user authentication. The config file should be:
- /var/www/roundcubemail/config/main.inc.php on RHEL/CentOS/Scientific Linux
- /usr/share/apache2/roundcubemail/config.inc.php on Debian/Ubuntu
- /srv/www/roundcubemail/config/main.inc.php on openSUSE
- /usr/local/www/roundcubemail/config/main.inc.php on FreeBSD
| File: config/main.inc.php |
$rcmail_config['login_lc'] = false; |
