From 6764855414c4152910e6b76f06b44958f02ce35e Mon Sep 17 00:00:00 2001 From: Christoph Date: Sun, 22 Aug 2021 18:08:17 +0200 Subject: [PATCH] install_update_dovecot.sh: minor change on script output: shows now also setting for postfix configuration file (variable: postfix_main_cf). --- install_update_dovecot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_update_dovecot.sh b/install_update_dovecot.sh index d8a2793..62dd3b3 100755 --- a/install_update_dovecot.sh +++ b/install_update_dovecot.sh @@ -140,8 +140,6 @@ fi [[ -n "$ipv4" ]] || fatal "Missing value for parameter 'ipv4'." [[ -n "$ipv6" ]] || warn "Missing value for parameter 'ipv6'." -[[ -n "$postfix_main_cf" ]] || postfix_main_cf="/etc/postfix/main.cf" - [[ -n "$database" ]] || fatal "Parameter "database" not set." if [[ "$database" != "postgres" ]] && [[ "$database" != "mysql" ]] ; then @@ -374,6 +372,8 @@ echo "" echo -e "\tPOP3 listener addresses.......: $pop_listener_adresses" echo -e "\tPOP3S listener addresses......: $pops_listener_adresses" echo "" +echo -e "\tPostfix Configuration File....: $postfix_main_cf" +echo "" echo -e "\tDatenbank.....................: $database" echo "" echo -e "\tPostfix database host.........: $dbhost"