9468f9b060
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
16 lines
247 B
Bash
Executable file
16 lines
247 B
Bash
Executable file
#!/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)"
|
|
sleep $SLEEP;
|
|
done
|