1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

Merge branch 'main' of https://github.com/mail-in-a-box/mailinabox into jammyjellyfish2204

This commit is contained in:
downtownallday 2022-10-12 06:57:37 -04:00
commit ec2c878360
2 changed files with 8 additions and 6 deletions

View File

@ -1,8 +1,8 @@
CHANGELOG CHANGELOG
========= =========
Version 60 (date TBD) Version 60 (October 11, 2022)
--------------------- -----------------------------
This is the first release for Ubuntu 22.04. This is the first release for Ubuntu 22.04.
@ -10,9 +10,11 @@ This is the first release for Ubuntu 22.04.
For complete upgrade instructions, see: For complete upgrade instructions, see:
LINK TBD https://discourse.mailinabox.email/t/version-60-for-ubuntu-22-04-is-about-to-be-released/9558
No features of Mail-in-a-Box have changed in this release, but with the newer version of Ubuntu the following software packages we use are updated: No major features of Mail-in-a-Box have changed in this release, although some minor fixes were made.
With the newer version of Ubuntu the following software packages we use are updated:
* dovecot is upgraded to 2.3.16, postfix to 3.6.4, opendmark to 1.4 (which adds ARC-Authentication-Results headers), and spampd to 2.53 (alleviating a mail delivery rate limiting bug). * dovecot is upgraded to 2.3.16, postfix to 3.6.4, opendmark to 1.4 (which adds ARC-Authentication-Results headers), and spampd to 2.53 (alleviating a mail delivery rate limiting bug).
* Nextcloud is upgraded to 23.0.4. * Nextcloud is upgraded to 23.0.4.
@ -25,7 +27,7 @@ No features of Mail-in-a-Box have changed in this release, but with the newer ve
Also: Also:
* Roundcube's login session cookie was tightened. Existing sessions may require a manual logout. * Roundcube's login session cookie was tightened. Existing sessions may require a manual logout.
* Move Postgrey's database under $STORAGE_ROOT * Moved Postgrey's database under $STORAGE_ROOT.
Version 57a (June 19, 2022) Version 57a (June 19, 2022)
--------------------------- ---------------------------

View File

@ -28,7 +28,7 @@ if [ -z "$TAG" ]; then
# want to display in status checks. # want to display in status checks.
# #
# Allow point-release versions of the major releases, e.g. 22.04.1 is OK. # Allow point-release versions of the major releases, e.g. 22.04.1 is OK.
UBUNTU_VERSION=$( lsb_release -d | sed 's/.*:\s*//' | sed 's/\([0-9]*\.[0-9]*\)\.[0-9]/\1/' )" UBUNTU_VERSION=$( lsb_release -d | sed 's/.*:\s*//' | sed 's/\([0-9]*\.[0-9]*\)\.[0-9]/\1/' )
if [ "$UBUNTU_VERSION" == "Ubuntu 22.04 LTS" ]; then if [ "$UBUNTU_VERSION" == "Ubuntu 22.04 LTS" ]; then
# This machine is running Ubuntu 22.04, which is supported by # This machine is running Ubuntu 22.04, which is supported by
# Mail-in-a-Box versions 60 and later. # Mail-in-a-Box versions 60 and later.