1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-06-30 21:21:31 +02:00
docker-mailserver/target/bin/setup-fetchmail

14 lines
224 B
Bash
Executable File

#! /bin/sh
CONF=/tmp/docker-mailserver/fetchmail.cf
RC=/etc/fetchmailrc
if [ -f "$CONF" ]; then
cat /etc/fetchmailrc_general $CONF > $RC
else
cat /etc/fetchmailrc_general > $RC
fi
chmod 700 $RC
chown fetchmail:root $RC