/usr/sbin/vboxmail is in isdnvboxserver 1:3.25+dfsg1-3.3ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #! /bin/sh
##
## vboxmail v2.0.0BETA5 (17-NOV-98)
#----------------------------------------------------------------------------#
# Script to notify a user about new incoming voice message. This is only a #
# *example* - you can modify it if you like! If you do, copy it to #
# /etc/isdn/vboxmail and edit it there. #
# #
# Usage: vboxmail MESSAGENAME CALLERNAME CALLERID MAIL-TO-ADDRESS #
#----------------------------------------------------------------------------#
if [ "$0" != /etc/isdn/vboxmail -a -x /etc/isdn/vboxmail ]; then
exec /etc/isdn/vboxmail "$@"
echo "Can't execute /etc/isdn/vboxmail"
fi
MSNAME="${1}"
CALLER="${2}"
CALLID="${3}"
MAILTO="${4}"
if (test -f "${MSNAME}")
then
(
echo "From: vboxmail <`/usr/bin/id -un`>"
echo "To: ${MAILTO}"
echo "Subject: New message from ${CALLER} (${CALLID})"
echo ""
/usr/bin/vboxmode $MSNAME
) | /usr/sbin/sendmail -oi -t
fi
|