#! /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