iredmail-doc/en_US/howto/upgrade.debian.9-10.md

2.3 KiB

Fixes you need after upgrading Debian from 9 to 10

[TOC]

!!! warning

This is still a DRAFT document, it may miss some other important changes.

Postfix

  • If you're running MySQL/MariaDB or PostgreSQL backend, you need to remove parameter port = in /etc/postfix/mysql/*.cf (MySQL/MariaDB backend) or /etc/postfix/pgsql/*.cf (PostgreSQL backend).

Dovecot

Changes required to be made in Dovecot main config file /etc/dovecot/dovecot.conf:

  • Remove all postmaster_address =.
  • Remove parameter ssl_protocols =.
  • Add new parameter ssl_min_protocol like this:
ssl_min_protocol = TLSv1.2

Note: If your end users run old mail client applications, it may not support TLSv1.2, you may want to use weaker one like TLSv1.1, TLSv1 instead.

  • Add new parameter ssl_dh and load existing file:
    • on CentOS, it's /etc/pki/tls/dh2048_param.pem
    • on Debian/Ubuntu, FreeBSD, OpenBSD, it's /etc/ssl/dh2048_param.pem
ssl_dh = </etc/ssl/dh2048_param.pem
  • If you have plugin stats enabled, you need to rename it:
Old New
mail_plugins = ... stats mail_plugins = ... old_stats
protocol imap { mail_plugins = ... imap_stats } protocol imap { mail_plugins = ... imap_old_stats}
service stats {} service old-stats {}
Warning: It's a dash (-), not underscore (_).
fifo_listener stats-mail fifo_listener old-stats-mail
Warning: It's a dash (-), not underscore (_).
fifo_listener stats-user fifo_listener old-stats-user
Warning: It's a dash (-), not underscore (_).
unix_listener stats unix_listener old-stats
Warning: It's a dash (-), not underscore (_).
plugin { stats_refresh = ... } plugin { old_stats_refresh = ...}
plugin { stats_track_cmds = ...} plugin { old_stats_track_cmds = ...}

Inside service old-status {} block, please add new content:

    unix_listener old-stats-reader {
        user = vmail
        group = vmail
        mode = 0660
    }
    unix_listener old-stats-writer {
        user = vmail
        group = vmail
        mode = 0660
    }

Restart Dovecot service is required.

PHP

Debian 9 offers PHP-5, but Debian 10 offers PHP-7.3, you have to upgrade php manually.

SOGo Groupware

Please replace stretch by buster in file /etc/apt/sources.list.d/sogo-nightly.repo, then upgrade sogo packages.