diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d86ce6..dddbb546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +Version 61.1 (January 28, 2022) +------------------------------- + +* Fixed rsync backups not working with the default port. +* Reverted "Improve error messages in the management tools when external command-line tools are run." because of the possibility of user secrets being included in error messages. +* Fix for TLS certificate SHA fingerprint not being displayed during setup. + Version 61 (January 21, 2023) ----------------------------- diff --git a/README.md b/README.md index 1f423011..435530ce 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Clone this repository and checkout the tag corresponding to the most recent rele $ git clone https://github.com/mail-in-a-box/mailinabox $ cd mailinabox - $ git checkout v61 + $ git checkout v61.1 Begin the installation. diff --git a/management/backup.py b/management/backup.py old mode 100755 new mode 100644 index 2f63bcd0..15993ab2 --- a/management/backup.py +++ b/management/backup.py @@ -216,6 +216,8 @@ def get_duplicity_additional_args(env): port = urlsplit(config["target_url"]).port except ValueError: port = 22 + if port is None: + port = 22 return [ f"--ssh-options= -i /root/.ssh/id_rsa_miab -p {port}", @@ -423,6 +425,8 @@ def list_target_files(config): port = url.port except ValueError: port = 22 + if port is None: + port = 22 url_path = url.path if not url_path.endswith('/'): diff --git a/management/templates/system-status.html b/management/templates/system-status.html index dc9233a5..12c8aa0b 100644 --- a/management/templates/system-status.html +++ b/management/templates/system-status.html @@ -10,13 +10,13 @@ border-top: none; padding-top: 0; } -#system-checks .status-error td { +#system-checks .status-error td, .summary-error { color: #733; } -#system-checks .status-warning td { +#system-checks .status-warning td, .summary-warning { color: #770; } -#system-checks .status-ok td { +#system-checks .status-ok td, .summary-ok { color: #040; } #system-checks div.extra { @@ -52,6 +52,9 @@
+
+
+ @@ -64,6 +67,9 @@