mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-28 13:58:22 +02:00
Fixes an issue with the Getmail service, view PR thread for additional details. - Log an error when the expected service state directory doesn't exist. - The location `/var/lib/getmail/` doesn't seem like it should have been introduced. Drop it in favor of `/tmp/docker-mailserver/getmail`. It appears to be for storing remote mail that was retrieved if not configured to send to Dovecot like our docs advise. This location was never valid anyway (_as referenced issue covers_).
13 lines
378 B
Bash
13 lines
378 B
Bash
#! /bin/bash
|
|
|
|
# shellcheck source=../scripts/helpers/log.sh
|
|
source /usr/local/bin/helpers/log.sh
|
|
# shellcheck source=../scripts/startup/setup-stack.sh
|
|
source /usr/local/bin/setup.d/getmail.sh
|
|
|
|
_setup_getmail
|
|
|
|
GETMAILDIR=/tmp/docker-mailserver/getmail
|
|
for FILE in /etc/getmailrc.d/getmailrc*; do
|
|
getmail --getmaildir "${GETMAILDIR}" --rcfile "${FILE}" --dump | tail -n +6
|
|
done
|