mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
function _apply_fixes
|
|
{
|
|
_log 'info' 'Post-configuration checks'
|
|
for FUNC in "${FUNCS_FIX[@]}"
|
|
do
|
|
${FUNC}
|
|
done
|
|
|
|
_log 'trace' 'Removing leftover PID files from a stop/start'
|
|
find /var/run/ -not -name 'supervisord.pid' -name '*.pid' -delete
|
|
touch /dev/shm/supervisor.sock
|
|
}
|
|
|
|
function _fix_var_mail_permissions
|
|
{
|
|
_log 'debug' 'Checking /var/mail permissions'
|
|
|
|
_chown_var_mail_if_necessary || _shutdown 'Failed to fix /var/mail permissions'
|
|
_log 'trace' 'Permissions in /var/mail look OK'
|
|
}
|
|
|
|
function _fix_var_amavis_permissions
|
|
{
|
|
local AMAVIS_STATE_DIR='/var/mail-state/lib-amavis'
|
|
[[ ${ONE_DIR} -eq 0 ]] && AMAVIS_STATE_DIR="/var/lib/amavis"
|
|
[[ ! -e ${AMAVIS_STATE_DIR} ]] && return 0
|
|
|
|
_log 'trace' 'Fixing Amavis permissions'
|
|
chown -hR amavis:amavis "${AMAVIS_STATE_DIR}" || _shutdown 'Failed to fix Amavis permissions'
|
|
}
|
|
|
|
function _fix_cleanup_clamav
|
|
{
|
|
_log 'trace' 'Cleaning up disabled ClamAV'
|
|
rm /etc/logrotate.d/clamav-* /etc/cron.d/clamav-freshclam 2>/dev/null || {
|
|
# show warning only on first container start
|
|
[[ ! -f /CONTAINER_START ]] && _log 'warn' 'Failed to remove ClamAV configuration'
|
|
}
|
|
}
|
|
|
|
function _fix_cleanup_spamassassin
|
|
{
|
|
_log 'trace' 'Cleaning up disabled SpamAssassin'
|
|
rm /etc/cron.daily/spamassassin 2>/dev/null || {
|
|
# show warning only on first container start
|
|
[[ ! -f /CONTAINER_START ]] && _log 'warn' 'Failed to remove SpamAssassin configuration'
|
|
}
|
|
}
|