1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# Defaults for fetchmail initscript
# sourced by /etc/init.d/fetchmail
# installed at /etc/default/fetchmail by the maintainer scripts
# $Id: init.defaults,v 1.8 2001/06/18 04:33:42 hmh Exp $
#
# This is a POSIX shell fragment
#
# Master system-wide fetchmail switch. The initscript will not run if it is not
# set to true. STOP THE SERVICE BEFORE DISABLING IT!
#
# Unless you have the fetchmail user properly setup on your system or will set
# RUNASROOT below to true, you'd better use dpkg-reconfigure to change this.
#
# [automatically edited by postinst, do not change line format or set it to
# anything but false or true ]
SERVICE=true
# System-wide fetchmail conffile. The initscripts are triggered by the presence
# of this file.
CONFFILE=/etc/fetchmailrc
# Default options. These take precedence over anything configured by CONFFILE
# above, so if you like to have any of them specified in CONFFILE, remove them
# from the line below.
OPTIONS="--daemon 300 --syslog"
# Whether to run the systemwide fetchmail daemon as root (can deliver to a MDA
# and create BSMTP files as root); or as user fetchmail (much safer, and works
# just as well as long as you deliver to SMTP or to a non-cretin /sbin/sendmail
# MTA, such as postfix).
#
# RUN /etc/init.d/fetchmail stop BEFORE YOU CHANGE "RUNASROOT"
#
# set to "true" if you want to run fetchmail as root (and risk remote root
# exploits), or to "false" otherwise.
#
# [automatically edited by postinst, do not change line format or set it to
# anything but false or true ]
RUNASROOT=false
|