1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-07-05 15:41:24 +02:00
docker-mailserver/target/bin/getmail-cron
2023-05-24 09:06:59 +02:00

9 lines
188 B
Bash

#! /bin/bash
for FILE in /etc/getmailrc.d/getmailrc*
do
if ! pgrep -f "${FILE}$" &>/dev/null; then
/usr/local/bin/getmail --getmaildir /var/lib/getmail --rcfile "${FILE}"
fi
done