From 7a61f1fb283a527a74c7ce223c031d143b542c7e Mon Sep 17 00:00:00 2001 From: Shane Hopcroft Date: Fri, 8 Jul 2016 21:16:50 +1000 Subject: [PATCH 1/2] Added script to install mailx MUA for testing purposes. --- mailx.sh | 8 ++++++++ super.sh | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 mailx.sh diff --git a/mailx.sh b/mailx.sh new file mode 100644 index 0000000..35cb321 --- /dev/null +++ b/mailx.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# +#-----------------------------------------# +###Welcome to the mailx setup script. Any variables that may need to be adjusted should be changed in the designated "variables" section in the main script, super.sh. +#-----------------------------------------# + +sudo $package_manager install mailx -y + diff --git a/super.sh b/super.sh index f49bfdc..5b69e25 100755 --- a/super.sh +++ b/super.sh @@ -205,6 +205,8 @@ fi sudo groupadd -g 12 mail sudo useradd -g mail -u 200 -d /mnt/vmail -s /sbin/nologin mailreader +./mailx.sh + ./dovecot.sh ./pgsql.sh From 4fa2b5bd018dc13a9d78ec62161eb7afe4e1c76b Mon Sep 17 00:00:00 2001 From: Shane Hopcroft Date: Wed, 27 Jul 2016 21:37:50 +1000 Subject: [PATCH 2/2] Made mailx.sh executable. --- mailx.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 mailx.sh diff --git a/mailx.sh b/mailx.sh old mode 100644 new mode 100755