blob: 69e8ad500b6417eb50228d94e80078e56c33d533 (
plain)
- #!/bin/sh
- # if an error occurs, break immediately
- set -e
- # Variables from Kannel sms gateway
- sms_phone="$SMS_PHONE"
- sms_fromphone="$1"
- app="$2"
- shift 2
- msg="$*"
- # Settings for the "mail" outgoing email command
- export smtp=mail.bitbase.dk
- export from=hp@fossasia.org
- export sender="$from"
- # Check keyword and break after processing if it matches
- case "$app" in
- phone)
- cat <<EOF | mail -s "[sms] phone $sms_fromphone" hp@fossasia.org mb@fossasia.org
- Someone at $sms_fromphone sent an sms to $sms_phone with keyword phone
- and this message (supposedly his/her name):
- $msg
- EOF
- exit 1
- ;;
- esac
|