mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-06-29 04:00:21 +02:00
Fetchmail is now configured by a script called 'setup-fetchmail'. The script 'debug-fetchmail' is used inside the 'setup.sh' script.
10 lines
179 B
Bash
Executable file
10 lines
179 B
Bash
Executable file
#! /bin/sh
|
|
|
|
/usr/local/bin/setup-fetchmail
|
|
|
|
su -s /bin/sh -c "/usr/bin/fetchmail \
|
|
--verbose \
|
|
--daemon 0 \
|
|
--nosyslog \
|
|
--nodetach \
|
|
-f /etc/fetchmailrc" fetchmail <&- 2>&1
|