From 1d4d03637f2cba4da6a5c59544d92699b8ca5f55 Mon Sep 17 00:00:00 2001 From: David Duque Date: Mon, 29 Jun 2020 09:47:38 +0100 Subject: [PATCH] Version bump --- README.md | 19 +++++++++++++++++-- setup/bootstrap.sh | 2 +- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0e0644df..76415ca0 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ sudo apt update sudo apt full-upgrade ``` -Make sure that the `en_US.UTF-8` locale exists and is set as primary +Make sure that the `en_US.UTF-8` locale exists and is set as primary (this depends on the image you use) ```sh sudo apt install locales sudo dpkg-reconfigure locales @@ -22,7 +22,12 @@ Install Power-Mail-in-a-Box (short link) curl -L https://dvn.pt/powermiab | sudo bash ``` -## Current Version: v0.46.POWER.2 (Tracking v0.46) +If that doesn't work: +```sh +curl https://raw.githubusercontent.com/ddavness/power-mailinabox/master/setup/bootstrap.sh | sudo bash +``` + +## Current Version: v0.46.POWER.3 (Tracking v0.46) This is a fork of MiaB (duh), hacked and tuned to my needs: @@ -48,6 +53,16 @@ This is a fork of MiaB (duh), hacked and tuned to my needs: - 💤 Possibility of disabling some services (\*cough\* NextCloud \*cough\*); +### Ideas section: + +- 💤 AXFR Transfers using TSIG? + +- 💤 Expand DNS options? + +- 💤 More complete webmail configuration via the admin panel? + +- 💤 Encrypting backups using user-provided PGP keys? + - 💤 Anything else I might need to use; All in all, I think I should rename this to something like "Central [Clown Computing](https://www.urbandictionary.com/define.php?term=clown%20computing)", since I'm trying to cram as many services as possible into that poor machine (Spending 5$ is better than spending 10$) diff --git a/setup/bootstrap.sh b/setup/bootstrap.sh index cbe5a33a..1f76258c 100644 --- a/setup/bootstrap.sh +++ b/setup/bootstrap.sh @@ -10,7 +10,7 @@ if [ -z "$TAG" ]; then # Make s OS=`lsb_release -d | sed 's/.*:\s*//'` if [ "$OS" == "Debian GNU/Linux 10 (buster)" -o "$OS" == "Ubuntu 20.04 LTS" ]; then - TAG=v0.46.POWER.2 + TAG=v0.46.POWER.3 else echo "This script must be run on a system running Debian 10 OR Ubuntu 20.04 LTS." exit 1