2020-10-21 16:16:32 +00:00
|
|
|
|
#! /bin/bash
|
2021-11-20 20:33:49 +00:00
|
|
|
|
# TODO: Adapt for compatibility with LDAP
|
|
|
|
|
# Only the cert renewal change detection may be relevant for LDAP?
|
2017-10-10 06:15:18 +00:00
|
|
|
|
|
2020-10-21 16:16:32 +00:00
|
|
|
|
# shellcheck source=./helper-functions.sh
|
|
|
|
|
. /usr/local/bin/helper-functions.sh
|
2020-06-30 20:43:22 +00:00
|
|
|
|
|
2021-11-03 20:28:40 +00:00
|
|
|
|
function _log_date
|
|
|
|
|
{
|
|
|
|
|
date +"%Y-%m-%d %H:%M:%S"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG_DATE=$(_log_date)
|
2021-02-24 16:28:59 +00:00
|
|
|
|
_notify 'task' "${LOG_DATE} Start check-for-changes script."
|
2020-09-05 14:19:12 +00:00
|
|
|
|
|
2021-09-22 06:41:32 +00:00
|
|
|
|
# ? --------------------------------------------- Checks
|
2017-10-10 06:15:18 +00:00
|
|
|
|
|
2020-09-05 14:19:12 +00:00
|
|
|
|
cd /tmp/docker-mailserver || exit 1
|
2017-10-10 06:15:18 +00:00
|
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
|
# check postfix-accounts.cf exist else break
|
2020-09-05 14:19:12 +00:00
|
|
|
|
if [[ ! -f postfix-accounts.cf ]]
|
|
|
|
|
then
|
2021-02-24 16:28:59 +00:00
|
|
|
|
_notify 'inf' "${LOG_DATE} postfix-accounts.cf is missing! This should not run! Exit!"
|
2021-01-16 09:16:05 +00:00
|
|
|
|
exit 0
|
2019-08-01 07:58:22 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
|
# verify checksum file exists; must be prepared by start-mailserver.sh
|
2020-09-06 10:27:40 +00:00
|
|
|
|
if [[ ! -f ${CHKSUM_FILE} ]]
|
2020-09-05 14:19:12 +00:00
|
|
|
|
then
|
2021-02-24 16:28:59 +00:00
|
|
|
|
_notify 'err' "${LOG_DATE} ${CHKSUM_FILE} is missing! Start script failed? Exit!"
|
2021-01-16 09:16:05 +00:00
|
|
|
|
exit 0
|
2019-08-01 07:58:22 +00:00
|
|
|
|
fi
|
2017-10-10 06:15:18 +00:00
|
|
|
|
|
2021-06-08 01:20:20 +00:00
|
|
|
|
# ? --------------------------------------------- Actual script begins
|
2020-09-05 14:19:12 +00:00
|
|
|
|
|
2021-01-16 09:16:05 +00:00
|
|
|
|
# determine postmaster address, duplicated from start-mailserver.sh
|
|
|
|
|
# this script previously didn't work when POSTMASTER_ADDRESS was empty
|
2021-09-11 14:20:16 +00:00
|
|
|
|
_obtain_hostname_and_domainname
|
2021-01-16 09:16:05 +00:00
|
|
|
|
|
2019-07-23 14:12:12 +00:00
|
|
|
|
PM_ADDRESS="${POSTMASTER_ADDRESS:=postmaster@${DOMAINNAME}}"
|
2021-02-24 16:28:59 +00:00
|
|
|
|
_notify 'inf' "${LOG_DATE} Using postmaster address ${PM_ADDRESS}"
|
2021-11-03 20:28:40 +00:00
|
|
|
|
|
|
|
|
|
# Change detection delayed during startup to avoid conflicting writes
|
2019-08-01 17:39:25 +00:00
|
|
|
|
sleep 10
|
2018-11-01 19:17:07 +00:00
|
|
|
|
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "$(_log_date) check-for-changes is ready"
|
|
|
|
|
|
2020-09-05 14:19:12 +00:00
|
|
|
|
while true
|
|
|
|
|
do
|
|
|
|
|
# get chksum and check it, no need to lock config yet
|
|
|
|
|
_monitored_files_checksums >"${CHKSUM_FILE}.new"
|
2021-08-28 23:16:34 +00:00
|
|
|
|
cmp --silent -- "${CHKSUM_FILE}" "${CHKSUM_FILE}.new"
|
|
|
|
|
# cmp return codes
|
|
|
|
|
# 0 – files are identical
|
|
|
|
|
# 1 – files differ
|
|
|
|
|
# 2 – inaccessible or missing argument
|
|
|
|
|
if [ $? -eq 1 ]
|
2020-09-05 14:19:12 +00:00
|
|
|
|
then
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "$(_log_date) Change detected"
|
2021-09-13 08:09:01 +00:00
|
|
|
|
create_lock # Shared config safety lock
|
2021-08-28 23:16:34 +00:00
|
|
|
|
CHANGED=$(grep -Fxvf "${CHKSUM_FILE}" "${CHKSUM_FILE}.new" | sed 's/^[^ ]\+ //')
|
|
|
|
|
|
|
|
|
|
# Bug alert! This overwrites the alias set by start-mailserver.sh
|
|
|
|
|
# Take care that changes in one script are propagated to the other
|
|
|
|
|
|
|
|
|
|
# ! NEEDS FIX -----------------------------------------
|
|
|
|
|
# TODO FIX --------------------------------------------
|
|
|
|
|
# ! NEEDS EXTENSIONS ----------------------------------
|
|
|
|
|
# TODO Perform updates below conditionally too --------
|
|
|
|
|
# Also note that changes are performed in place and are not atomic
|
|
|
|
|
# We should fix that and write to temporary files, stop, swap and start
|
|
|
|
|
|
2021-11-03 20:28:40 +00:00
|
|
|
|
# TODO: Consider refactoring this:
|
2021-08-28 23:16:34 +00:00
|
|
|
|
for FILE in ${CHANGED}
|
|
|
|
|
do
|
|
|
|
|
case "${FILE}" in
|
2021-11-03 20:28:40 +00:00
|
|
|
|
# This file is only relevant to Traefik, and is where it stores the certificates
|
|
|
|
|
# it manages. When a change is detected it's assumed to be a possible cert renewal
|
|
|
|
|
# that needs to be extracted for `docker-mailserver` to switch to.
|
2021-08-28 23:16:34 +00:00
|
|
|
|
"/etc/letsencrypt/acme.json" )
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "'/etc/letsencrypt/acme.json' has changed, extracting certs.."
|
|
|
|
|
# This breaks early as we only need the first successful extraction. For more details see `setup-stack.sh` `SSL_TYPE=letsencrypt` case handling.
|
|
|
|
|
# NOTE: HOSTNAME is set via `helper-functions.sh`, it is not the original system HOSTNAME ENV anymore.
|
|
|
|
|
# TODO: SSL_DOMAIN is Traefik specific, it no longer seems relevant and should be considered for removal.
|
|
|
|
|
FQDN_LIST=("${SSL_DOMAIN}" "${HOSTNAME}" "${DOMAINNAME}")
|
|
|
|
|
for CERT_DOMAIN in "${FQDN_LIST[@]}"
|
2021-08-28 23:16:34 +00:00
|
|
|
|
do
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "Attempting to extract for '${CERT_DOMAIN}'"
|
|
|
|
|
_extract_certs_from_acme "${CERT_DOMAIN}" && break
|
2021-08-28 23:16:34 +00:00
|
|
|
|
done
|
|
|
|
|
;;
|
|
|
|
|
|
2021-11-03 20:28:40 +00:00
|
|
|
|
# This seems like an invalid warning, as if the whole loop and case statement
|
|
|
|
|
# are only intended for the `acme.json` file..?
|
2021-08-28 23:16:34 +00:00
|
|
|
|
* )
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'warn' "No certificate found in '${FILE}'"
|
2021-08-28 23:16:34 +00:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# regenerate postfix accounts
|
2021-11-20 20:33:49 +00:00
|
|
|
|
[[ ${SMTP_ONLY} -ne 1 ]] && _create_accounts
|
2021-08-28 23:16:34 +00:00
|
|
|
|
|
2021-11-20 20:33:49 +00:00
|
|
|
|
_rebuild_relayhost
|
2021-06-15 12:03:41 +00:00
|
|
|
|
|
2021-11-20 20:33:49 +00:00
|
|
|
|
# regenerate postix aliases
|
|
|
|
|
_create_aliases
|
2019-08-01 17:39:25 +00:00
|
|
|
|
|
2021-11-20 20:33:49 +00:00
|
|
|
|
# regenerate /etc/postfix/vhost
|
|
|
|
|
# NOTE: If later adding support for LDAP with change detection and this method is called,
|
|
|
|
|
# be sure to mimic `setup-stack.sh:_setup_ldap` which appends to `/tmp/vhost.tmp`.
|
|
|
|
|
_create_postfix_vhost
|
2020-10-01 23:19:41 +00:00
|
|
|
|
|
2021-08-28 23:16:34 +00:00
|
|
|
|
if find /var/mail -maxdepth 3 -a \( \! -user 5000 -o \! -group 5000 \) | read -r
|
|
|
|
|
then
|
|
|
|
|
chown -R 5000:5000 /var/mail
|
2021-08-16 07:21:29 +00:00
|
|
|
|
fi
|
2021-06-15 12:03:41 +00:00
|
|
|
|
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "Restarting services due to detected changes.."
|
|
|
|
|
|
2021-08-28 23:16:34 +00:00
|
|
|
|
supervisorctl restart postfix
|
|
|
|
|
|
|
|
|
|
# prevent restart of dovecot when smtp_only=1
|
|
|
|
|
[[ ${SMTP_ONLY} -ne 1 ]] && supervisorctl restart dovecot
|
2021-09-13 08:09:01 +00:00
|
|
|
|
|
|
|
|
|
remove_lock
|
2021-11-03 20:28:40 +00:00
|
|
|
|
_notify 'inf' "$(_log_date) Completed handling of detected change"
|
2020-09-05 14:19:12 +00:00
|
|
|
|
fi
|
2017-10-10 06:15:18 +00:00
|
|
|
|
|
2021-08-28 23:16:34 +00:00
|
|
|
|
# mark changes as applied
|
|
|
|
|
mv "${CHKSUM_FILE}.new" "${CHKSUM_FILE}"
|
2021-06-15 12:03:41 +00:00
|
|
|
|
|
2021-08-28 23:16:34 +00:00
|
|
|
|
sleep 1
|
2017-10-10 06:15:18 +00:00
|
|
|
|
done
|
2021-02-24 16:28:59 +00:00
|
|
|
|
|
|
|
|
|
exit 0
|