- Joined
- Feb 27, 2003
- Messages
- 8,500
Hello,
Dovecot 2.3.0 is available for download/update:
https://dovecot.org/list/dovecot-news/2017-December/000366.html
You can use both CustomBuild 2.0 and 1.2 for this update (not CB 1.1, which is end-of-life)
To Update
Important changes are
has been replaced with the single minimum protocol:
Also, the /etc/dovecot/dh.pem is generated, and included in the config with
I'm not entirely sure why, but they've chagned the directory naming format within the tar.gz from dovecot-2.3.0 to dovecot-ce-2.3.0, so that also had to be handled.
For CustomBuild 2.0 with the modern dovecot config, the above 2 changes are done in:
but CB1.2, that file does not exist, so modifies
At the moment, the configure/dovecot/conf/ssl.conf still uses the old values, but any ./build dovecot or ./build dovecot_conf will check to ensure things are set correctly for 2.3.0.
As before, you can no longer compile dovecot on CentOS 5 or older OSs with older openssl versions. You'll get this error
John
Dovecot 2.3.0 is available for download/update:
https://dovecot.org/list/dovecot-news/2017-December/000366.html
You can use both CustomBuild 2.0 and 1.2 for this update (not CB 1.1, which is end-of-life)
To Update
Code:
cd /usr/local/directadmin/custombuild
./build update
./build dovecot
Important changes are
Code:
ssl_protocols = !SSLv2 !SSLv3
Code:
ssl_min_protocol = TLSv1
Code:
ssl_dh=</etc/dovecot/dh.pem
For CustomBuild 2.0 with the modern dovecot config, the above 2 changes are done in:
Code:
/etc/dovecot/conf/ssl.conf
Code:
/etc/dovecot/dovecot.conf
At the moment, the configure/dovecot/conf/ssl.conf still uses the old values, but any ./build dovecot or ./build dovecot_conf will check to ensure things are set correctly for 2.3.0.
As before, you can no longer compile dovecot on CentOS 5 or older OSs with older openssl versions. You'll get this error
Code:
checking if OpenSSL version is 1.0.1 or newer... false
configure: error: Found deprecated OpenSSL version, use 1.0.1 or newer
John