diff options
Diffstat (limited to 'execute')
-rwxr-xr-x | execute/mail.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/execute/mail.sh b/execute/mail.sh index 2d757db..3b797c1 100755 --- a/execute/mail.sh +++ b/execute/mail.sh @@ -19,6 +19,9 @@ while getopts "i:p:m:" opt; do esac done +# WARNING: Do NOT use this unmodified! +# Please replace mail address with your own. + mail -s "[${PRIORITY}] ${IDENTIFIER}" mail@example.com <<< "${MESSAGE}" exit 0 |