mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-14 19:34:50 +02:00
chore: Remove delay starting the change detection service (#3064)
* chore: Only replace `CHKSUM_FILE` when a change has been processed * chore: Change Detection service should be the last daemon started * chore: Remove 10 second startup delay for change detector There should be no concern with conflicts as any writes should have already been done by the time this daemon service is started. * tests(fix): `smtp_delivery.bats` must wait for Amavis The change event for adding a user can be processed much sooner now, which means Amavis may not yet be ready. Added extra condition to wait on at least the Amavis port being reachable, and some failure asserts with the mail queue to better catch / debug when this problem occurs. * chore: Add some minor delay to avoid Amavis failing to connect
This commit is contained in:
parent
16f46c1e14
commit
1c8a160621
4 changed files with 23 additions and 12 deletions
|
@ -29,9 +29,6 @@ fi
|
|||
|
||||
_log_with_date 'trace' "Using postmaster address '${POSTMASTER_ADDRESS}'"
|
||||
|
||||
# Change detection delayed during startup to avoid conflicting writes
|
||||
sleep 10
|
||||
|
||||
_log_with_date 'debug' "Changedetector is ready"
|
||||
|
||||
function _check_for_changes
|
||||
|
@ -64,10 +61,10 @@ function _check_for_changes
|
|||
|
||||
_remove_lock
|
||||
_log_with_date 'debug' 'Completed handling of detected change'
|
||||
fi
|
||||
|
||||
# mark changes as applied
|
||||
mv "${CHKSUM_FILE}.new" "${CHKSUM_FILE}"
|
||||
# mark changes as applied
|
||||
mv "${CHKSUM_FILE}.new" "${CHKSUM_FILE}"
|
||||
fi
|
||||
}
|
||||
|
||||
function _get_changed_files
|
||||
|
|
|
@ -185,8 +185,8 @@ function _register_functions
|
|||
[[ ${ENABLE_FAIL2BAN} -eq 1 ]] && _register_start_daemon '_start_daemon_fail2ban'
|
||||
[[ ${ENABLE_FETCHMAIL} -eq 1 ]] && _register_start_daemon '_start_daemon_fetchmail'
|
||||
[[ ${ENABLE_CLAMAV} -eq 1 ]] && _register_start_daemon '_start_daemon_clamav'
|
||||
[[ ${ACCOUNT_PROVISIONER} == 'FILE' ]] && _register_start_daemon '_start_daemon_changedetector'
|
||||
[[ ${ENABLE_AMAVIS} -eq 1 ]] && _register_start_daemon '_start_daemon_amavis'
|
||||
[[ ${ACCOUNT_PROVISIONER} == 'FILE' ]] && _register_start_daemon '_start_daemon_changedetector'
|
||||
}
|
||||
|
||||
function _register_start_daemon
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue