[DOCKER][MAIL] Temporarily disable mail container

This commit is contained in:
Hugo Sales 2021-03-25 22:02:41 +00:00
parent 1773ab7af2
commit 2e490756b9
Signed by untrusted user: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
2 changed files with 70 additions and 59 deletions

15
.gitignore vendored
View File

@ -29,10 +29,19 @@
DOCUMENTATION/database/*
!DOCUMENTATION/database/database.pdf
docker/certbot/*
!docker/certbot/docker-compose.fragment.sh
docker/certbot/.files
docker/certbot/www
docker/*/*.env
docker/mail/config/*
docker/mail/etc/hostname
docker/mail/etc/hosts
docker/mail/etc/resolv.conf
docker/mail/config/aliases.db
docker/mail/config/domains.db
docker/mail/config/mailboxes.db
docker/mail/config/passwd.db
docker/mail/etc/service/*
!docker/mail/etc/service/*/run
docker-compose.yaml
composer.local.json

4
bin/configure vendored
View File

@ -47,7 +47,7 @@ Choose whether you prefer social to handle all the services it needs though dock
3>&1 1>&2 2>&3)
validate_exit $?
case ${SERVICES} in
'docker') DOCKER='"nginx" "certbot" "php" "db" "redis" "mail"' ;;
'docker') DOCKER='"nginx" "certbot" "php" "db" "redis"' ;; # TODO enable and configure "mail"
'mixed')
DOCKER=$(${WHIPTAIL} --title 'GNU social Docker services' --clear --backtitle 'GNU social' \
--checklist "\nPick which of the following services you'd like to add to docker-compose.\n* indicates a service that has extra configuration" 0 0 0 \
@ -226,6 +226,7 @@ validate_exit $?
# ------------ Mail server --------------
MAILER_DSN='sendmail://localhost'
if false; then
if echo "${DOCKER}" | grep -Fvq '"mail"'; then
while true; do
MAILER_DSN=$(${WHIPTAIL} --title 'GNU social mail server DSN' --clear --backtitle 'GNU social' \
@ -287,6 +288,7 @@ if echo "${DOCKER}" | grep -Fq '"mail"'; then
if [ -n "${MAIL_PASSWORD}" ]; then break; fi
done
fi
fi
# --------------------------------------------------------------------------