Upgrade/iRedMail/0.7.4-0.8.0

From iRedMail

(Difference between revisions)
Jump to: navigation, search
(OpenLDAP backend special)
(Add internal service required by Doveadm)
Line 113: Line 113:
It will print progress message in the terminal, just wait until completed.
It will print progress message in the terminal, just wait until completed.
 +
 +
If you're running Dovecot-2, please add below lines in '''dovecot-ldap.conf''' to make command 'doveadm mailbox' work as expected:
 +
{{cfg|dovecot-ldap.conf|<pre>
 +
iterate_attrs  = mail=user
 +
iterate_filter  = (&(objectClass=mailUser)(accountStatus=active)(enabledService=mail))
 +
</pre>}}
= MySQL backend special =
= MySQL backend special =

Revision as of 15:58, 19 April 2012

Contents


THIS UPGRADE TUTORIAL IS A DRAFT, DO NOT APPLY IT.

General (All backends should apply these upgrade steps)

Set strict file permission for Dovecot config files

There're two Dovecot config files are world-readable, we should set strict file owner and permission on them so that it won't leak SQL server infomation.

Please execute below command to fix it, then restart Dovecot service:

  • On RHEL/CentOS/Scientific Linux 5.x:
Terminal:
# chown dovecot:dovecot /etc/dovecot-used-quota.conf /etc/dovecot-share-folder.conf
# chmod 0500 /etc/dovecot-used-quota.conf /etc/dovecot-share-folder.conf
  • On RHEL/CentOS/Scientific Linux 6.x, Debian, Ubuntu, openSUSE:
Terminal:
# chown dovecot:dovecot /etc/dovecot/dovecot-used-quota.conf /etc/dovecot/dovecot-share-folder.conf
# chmod 0500 /etc/dovecot/dovecot-used-quota.conf /etc/dovecot/dovecot-share-folder.conf
  • On FreeBSD:
Terminal:
# chown dovecot:dovecot /usr/local/etc/dovecot-used-quota.conf /usr/local/etc/dovecot-share-folder.conf
# chmod 0500 /usr/local/etc/dovecot-used-quota.conf /usr/local/etc/dovecot-share-folder.conf

Enable greylist opt in and opt out in Policyd

Some people are fairly irate when it comes to mail and refuse wanting to have any type of delay. this feature enables each and every person the ability to not subject themselves to greylisting. this feature is also VERY usefull when you dont want to subject EVERY person to greylisting at once but instead allows you to enable it in batches/groups of users so you get a feel on the type of complaints or praise from your users.

Please update Policyd setting OPTINOUT to 1 to enable greylist opt in / opt out:

  • On RHEL/CentOS/Scientific Linux, it's set in file /etc/policyd.conf.
  • On Debian/Ubuntu, it's set in file /etc/postfix-policyd.conf.
  • On openSUSE, it's set in file /etc/policyd.conf.
  • On FreeBSD, it's set in file /usr/local/etc/postfix-policyd-sf.conf.
File: policyd.conf
OPTINOUT=1

Restarting Policyd service is required to make it work.

Notes:

  • iRedAdmin-Pro customers can manage greylist opt-in with one lick with the latest iRedAdmin-Pro releases, in domain profile page or user profile page, under tab Advanced.
  • For more details about how to set greylist opt-in manually with MySQL command line or phpMyAdmin, please refer to Policyd official document: http://policyd.sourceforge.net/readme.html (Section "Greylist Opt-in / Opt-out")

Enable case insensitive 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;

Fix logrotate setting of Dovecot log files

Open /etc/logrotate.d/dovecot and /etc/logrotate.d/sieve, update postrotate commands:

  • If you're running Dovecot-1.x, please update postrotate command with below value:
File: /etc/logrotate.d/dovecot, /etc/logrotate.d/sieve
postrotate
    /bin/kill -USR1 `cat /var/run/dovecot/master.pid 2>/dev/null` 2> /dev/null || true
endscript
  • If you're running Dovecot-2.x, please update postrotate command with below value:
File: /etc/logrotate.d/dovecot, /etc/logrotate.d/sieve
postrotate
    doveadm log reopen
endscript

OpenLDAP backend special

Add internal service required by Doveadm

To use doveadm command provided by Dovecot-2, please add one more value of attribute 'enabledService' for mail user.

Steps:

  • Download python script used to adding missing values.
Terminal:
# cd /root/
# wget https://bitbucket.org/zhb/iredmail/raw/f0e7e84c4b8a/extra/update/updateLDAPValues_074_to_080.py
  • Open updateLDAPValues_074_to_080.py, config LDAP server related settings in file head. e.g.
File: updateLDAPValues_074_to_080.py
uri = 'ldap://127.0.0.1:389'
basedn = 'o=domains,dc=example,dc=com'
bind_dn = 'cn=vmailadmin,dc=example,dc=com'
bind_pw = 'passwd'

Tip:

    • You can find them in iRedAdmin config file or iRedMail.tips file under your iRedMail installation directory.
    • Use 'cn=Manager' instead of 'cn=vmailadmin' here is ok too.
  • Execute this script, it will add missing values for mail accounts:
Terminal:
# python updateLDAPValues_074_to_080.py

It will print progress message in the terminal, just wait until completed.

If you're running Dovecot-2, please add below lines in dovecot-ldap.conf to make command 'doveadm mailbox' work as expected:

File: dovecot-ldap.conf
iterate_attrs   = mail=user
iterate_filter  = (&(objectClass=mailUser)(accountStatus=active)(enabledService=mail))

MySQL backend special

Add internal service required by Doveadm

To use doveadm command provided by Dovecot-2, please add one more column in MySQL table vmail.mailbox with below command:

Terminal:
# mysql -uroot -p
mysql> USE vmail;
mysql> ALTER TABLE mailbox ADD COLUMN enabledoveadm TINYINT(1) NOT NULL DEFAULT 1;
Personal tools