nsbin/hole_mails

17 lines
247 B
Plaintext
Raw Normal View History

2006-07-20 07:54:37 +00:00
#!/bin/sh
SLEEP=$1
if [ -z "$SLEEP" ]; then
echo "$0 Zeit zum Schlafen"
exit 1
fi
while true; do
fetchmail >/dev/null
offlineimap
fetchmail >/dev/null
echo "Mails abgeholt, schlafe nun $SLEEP Sekunde(n)"
2006-07-20 07:54:37 +00:00
sleep $SLEEP;
done