Browse Source
remove unsupported options from mail and mutt command
pull/2259/head
Honza Hommer
6 years ago
No known key found for this signature in database
GPG Key ID: 5EBDE8E7E1A00ACA
1 changed files with
2 additions and
5 deletions
-
notify/mail.sh
|
@ -57,11 +57,8 @@ _mail_send() { |
|
|
sendmail) |
|
|
sendmail) |
|
|
"$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO" |
|
|
"$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO" |
|
|
;; |
|
|
;; |
|
|
mutt) |
|
|
|
|
|
"$_MAIL_BIN" -s "$subject" -e "my_hdr From:$MAIL_FROM" -e "my_hdr Content-Type:$contenttype" "$MAIL_TO" |
|
|
|
|
|
;; |
|
|
|
|
|
mail) |
|
|
|
|
|
"$_MAIL_BIN" -s "$subject" -a "From:$MAIL_FROM" -a "Content-Type:$contenttype" "$MAIL_TO" |
|
|
|
|
|
|
|
|
mutt|mail) |
|
|
|
|
|
"$_MAIL_BIN" -s "$_subject" "$MAIL_TO" |
|
|
;; |
|
|
;; |
|
|
esac |
|
|
esac |
|
|
} |
|
|
} |
|
|