Mailcmd.sh
Aus VDR Wiki
(Unterschied zwischen Versionen)
(offline fix) |
|||
| Zeile 23: | Zeile 23: | ||
PATH=$PREFIX/bin:$PREFIX/sbin:$PATH | PATH=$PREFIX/bin:$PREFIX/sbin:$PATH | ||
| − | if [ "$5" -ne 0 ] ; then | + | if [ "$5" -ne 0 -a "$5" -ne -1 ] ; then |
if [ "$LOGGER" = true ] ; then | if [ "$LOGGER" = true ] ; then | ||
logger -t ${0##*/} "========================================================" | logger -t ${0##*/} "========================================================" | ||
Version vom 2. November 2005, 15:56 Uhr
Script vom mailbox-plugin.
#!/bin/sh
#
# mailcmd.sh
#
# source: vdr-plugin mailbox
#
# $1: name of the account
# $2: user name
# $3: is a dummy (will eventually become host-name)
# $4: is a dummy (will eventually become "POP3" | "IMAP")
# $5: number of new mails in the account
# $6: total-number of mails in the account
# CONFIG START
LOGGER="true"
INTERVAL="3"
# CONFIG END
PATH=$PREFIX/bin:$PREFIX/sbin:$PATH
if [ "$5" -ne 0 -a "$5" -ne -1 ] ; then
if [ "$LOGGER" = true ] ; then
logger -t ${0##*/} "========================================================"
logger -t ${0##*/} "AccountName : '$1'"
logger -t ${0##*/} "UserName : '$2'"
logger -t ${0##*/} "New / Total : '$5 / $6'"
logger -t ${0##*/} "========================================================"
fi
until [ ${c:-0} -eq ${INTERVAL:-1} ] ; do
svdrpsend.pl -p ${VDR_PORT:-2001} MESG "New mail in $1"
c=$((c+1))
sleep 5s
done
fi
exit $?