iredmail-doc/en_US/upgrade/0-upgrade.ubuntu.14.04-16.0...

24 lines
635 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Fixes you need after upgrading Ubuntu to 16.04 from 14.04
[TOC]
## Postfix
```
postconf -e daemon_directory='/usr/lib/postfix/sbin
postconf -e shlib_directory='/usr/lib/postfix'
```
* Incorrect `daemon_directory` causes Postfix cannot start.
* Incorrect `shlib_directory` causes Postfix cannot find pcre/mysql/pgsql/ldap modules.
## PHP [OPTIONAL]
> NOTE: This step is toally optional if you're fine with old PHP release.
php was not upgraded to 7.0 automatically, have to install them manually:
```
apt-get install php-json php-gd php-mcrypt php-curl mcrypt php-intl php-xml php-mbstring php-mysql libapache2-mod-php
```