mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
19 lines
330 B
Plaintext
19 lines
330 B
Plaintext
|
#! /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
|