mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
81f42d096a
The option '--check' checks for new mails without actually fetching or deleting mail. Without '--check' 'debug-fetchmail' throws errors if the external mail accout has new mails and the smtp daemon is not running.
12 lines
190 B
Bash
Executable file
12 lines
190 B
Bash
Executable file
#! /bin/sh
|
|
|
|
/usr/local/bin/setup-fetchmail
|
|
|
|
su -s /bin/sh -c "/usr/bin/fetchmail \
|
|
--verbose \
|
|
--daemon 0 \
|
|
--check \
|
|
--nosyslog \
|
|
--nodetach \
|
|
-f /etc/fetchmailrc" fetchmail <&- 2>&1
|