On 19.02.03 Hilmar Preusse (hille42@web.de) wrote:
Moin,
/etc/ppp/ip-up.d/fetchmail_local
#!/bin/bash -- # sleep 15 sec before starting, so that postfix is forced to use # SMTP AUTH, instead of SMTP after POP. #sleep 15 # for HOMEDIR in /home/*; do if [ -e ${HOMEDIR}/.fetchmailrc ]; then su - ${HOMEDIR#/home/} -c "/usr/bin/fetchmail -d 240" fi done
Achso: nach /etc/ppp/ip-down.d/fetchmail muß dann natürlich noch ein "killall fetchmail".
H.