Unverified Commit ec0538d2 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #3455 from ecm75/notify_fix

fix _exists error message if MAIL_BIN env variable is not set
parents 509d3f6d eb0c629f
...@@ -79,7 +79,7 @@ mail_send() { ...@@ -79,7 +79,7 @@ mail_send() {
_mail_bin() { _mail_bin() {
_MAIL_BIN="" _MAIL_BIN=""
for b in "$MAIL_BIN" sendmail ssmtp mutt mail msmtp; do for b in $MAIL_BIN sendmail ssmtp mutt mail msmtp; do
if _exists "$b"; then if _exists "$b"; then
_MAIL_BIN="$b" _MAIL_BIN="$b"
break break
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment