From b503ea1cf7b080589cb2ce2400ea77e2482b3cff Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Fri, 3 Jul 2015 14:31:44 +0000 Subject: [PATCH] v0.12 -------------------- This is a minor update to v0.11, which was a major update. Please read v0.11's advisories. * The administrator@ alias was incorrectly created starting with v0.11. If your first install was v0.11, check that the administrator@ alias forwards mail to you. * Intrusion detection rules (fail2ban) are relaxed (i.e. less is blocked). * SSL certificates could not be installed for the new automatic 'www.' redirect domains. * PHP's default character encoding is changed from no default to UTF8. The effect of this change is unclear but should prevent possible future text conversion issues. * User-installed SSL private keys in the BEGIN PRIVATE KEY format were not accepted. * SSL certificates with SAN domains with IDNA encoding were broken in v0.11. * Some IDNA functionality was using IDNA 2003 rather than IDNA 2008. --- CHANGELOG.md | 6 +++--- README.md | 5 ++++- setup/bootstrap.sh | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97aa3aea..4428120a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ CHANGELOG ========= -In Development --------------- +v0.12 (July 3, 2015) +-------------------- This is a minor update to v0.11, which was a major update. Please read v0.11's advisories. -* The administrator@ alias was incorrectly created starting with v0.11. +* The administrator@ alias was incorrectly created starting with v0.11. If your first install was v0.11, check that the administrator@ alias forwards mail to you. * Intrusion detection rules (fail2ban) are relaxed (i.e. less is blocked). * SSL certificates could not be installed for the new automatic 'www.' redirect domains. * PHP's default character encoding is changed from no default to UTF8. The effect of this change is unclear but should prevent possible future text conversion issues. diff --git a/README.md b/README.md index b7a84e78..4c231d24 100644 --- a/README.md +++ b/README.md @@ -57,13 +57,16 @@ I sign the release tags on git. To verify that a tag is signed by me, you can pe $ cd mailinabox # Verify the tag. - $ git verify-tag v0.11 + $ git verify-tag v0.12 gpg: Signature made ..... using RSA key ID C10BDD81 gpg: Good signature from "Joshua Tauberer " gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 5F4C 0E73 13CC D744 693B 2AEA B920 41F4 C10B DD81 + # Check out the tag. + $ git checkout v0.12 + The key ID and fingerprint above should match my [Keybase.io key](https://keybase.io/joshdata) and the fingerprint I publish on [my homepage](https://razor.occams.info/). The Acknowledgements diff --git a/setup/bootstrap.sh b/setup/bootstrap.sh index 66cedb9e..b75cb221 100644 --- a/setup/bootstrap.sh +++ b/setup/bootstrap.sh @@ -7,7 +7,7 @@ ######################################################### if [ -z "$TAG" ]; then - TAG=v0.11b + TAG=v0.12 fi # Are we running as root?