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

15 lines
247 B
Plaintext
Raw Normal View History

#! /bin/bash
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}"