Fixed fetchmail startup problems with non root accounts

This commit is contained in:
maniacikarus
2009-05-09 10:34:32 +02:00
parent ee4b622369
commit ea4d2584fb
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = fetchmail
PAK_VER = 2
PAK_VER = 3
DEPS = ""

View File

@@ -18,7 +18,7 @@
case "${1}" in
start)
boot_mesg "Starting fetchmail daemon..."
/usr/bin/fetchmail --daemon 300 >/dev/null 2>&1
/usr/bin/fetchmail --daemon 300 -f '/root/.fetchmailrc' >/dev/null 2>&1
evaluate_retval
;;