From 4d5ff0210b3cbab5c74c160af0e706e161ede73d Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Tue, 11 Oct 2022 21:14:31 -0400 Subject: [PATCH 1/2] Version 60 --- CHANGELOG.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cad3dd21..4f454bbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ CHANGELOG ========= -Version 60 (date TBD) ---------------------- +Version 60 (October 11, 2022) +----------------------------- 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: -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). * 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: * 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) --------------------------- From 286a4bd9e744cba67fd5762ca1d92b229f29bc80 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Wed, 12 Oct 2022 06:11:02 -0400 Subject: [PATCH 2/2] Remove stray quote in bootstrap.sh Reported at https://discourse.mailinabox.email/t/version-60-for-ubuntu-22-04-is-released/9558/4. --- setup/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/bootstrap.sh b/setup/bootstrap.sh index cc4c060e..b700ee52 100644 --- a/setup/bootstrap.sh +++ b/setup/bootstrap.sh @@ -19,7 +19,7 @@ if [ -z "$TAG" ]; then # want to display in status checks. # # 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 # This machine is running Ubuntu 22.04, which is supported by # Mail-in-a-Box versions 60 and later.