Seperated Postfix into submodule

This commit is contained in:
2020-10-14 15:04:50 +02:00
parent 0cb3113ede
commit b475a7f365
8 changed files with 25 additions and 21 deletions

View File

@@ -15,12 +15,14 @@ nginxCMSL+=("Wordpress:" "WordPress is a content management system based on PHP.
nginxCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF)
#Options
nginxOptions=("Redis:" "Redis caching" OFF)
nginxOptions+=("Postfix:" "Mail MTA" OFF)
##Nginx
#CMSList
nginx_nonphpCMSL=("None:" "A plain webserver will be setup." OFF)
#Options
nginx_nonphpOptions=("Redis:" "Redis caching" OFF)
nginx_nonphpOptions+=("Postfix:" "Mail MTA" OFF)
##Apache
#CMSList
@@ -29,6 +31,7 @@ apacheCMSL+=("Wordpress:" "WordPress is a content management system based on PHP
apacheCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF)
#Options
apacheOptions=("Redis:" "Redis caching" OFF)
apacheOptions+=("Postfix:" "Mail MTA" OFF)
fi
if [ $IMODE = l ]; then
@@ -39,18 +42,18 @@ webservers=("Nginx" "Nginx_nonphp" "Apache" "Quit")
#CMSList
nginxCMSL=("None" "Wordpress" "Nextcloud")
#Options
nginxOptions=("Redis:")
nginxOptions=("Redis:" "Postfix:")
##Nginx-nonphp
#CMSList
nginx_nonphpCMSL=("None")
#Options
nginx_nonphpOptions=("Redis:")
nginx_nonphpOptions=("Redis:" "Postfix:")
##Apache
#CMSList
apacheCMSL=("None" "Wordpress" "Nextcloud")
#Options
apacheOptions=("Redis:")
apacheOptions=("Redis:" "Postfix:")
fi