docker-mailserver/target/bin/setup-fetchmail
Josef Friedrich 6c9901e260 Improve fetchmail support (#289)
Fetchmail is now configured by a script called 'setup-fetchmail'.
The script 'debug-fetchmail' is used inside the 'setup.sh' script.
2016-08-29 19:03:45 +02:00

19 lines
330 B
Bash
Executable file

#! /bin/sh
CONF=/tmp/docker-mailserver/fetchmail.cf
RC=/etc/fetchmailrc
if [ -f "$RC" ]; then
echo "The Fetchmail configuration is file '$RC' is already generated."
exit 0
fi
if [ -f "$CONF" ]; then
cat /etc/fetchmailrc_general $CONF > $RC
else
cat /etc/fetchmailrc_general > $RC
fi
chmod 700 $RC
chown fetchmail:root $RC