You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.7 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. #!/usr/bin/env sh
  2. #Support local mail app
  3. #MAIL_FROM="yyyy@gmail.com"
  4. #MAIL_TO="yyyy@gmail.com"
  5. mail_send() {
  6. _subject="$1"
  7. _content="$2"
  8. _statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
  9. _debug "_subject" "$_subject"
  10. _debug "_content" "$_content"
  11. _debug "_statusCode" "$_statusCode"
  12. if _exists "sendmail"; then
  13. _MAIL_BIN="sendmail"
  14. elif _exists "mutt"; then
  15. _MAIL_BIN="mutt"
  16. elif _exists "mail"; then
  17. _MAIL_BIN="mail"
  18. else
  19. _err "Please install sendmail or mail first."
  20. return 1
  21. fi
  22. MAIL_FROM="${MAIL_FROM:-$(_readaccountconf_mutable MAIL_FROM)}"
  23. if [ -z "$MAIL_FROM" ]; then
  24. MAIL_FROM="$USER@$(hostname -f)"
  25. _info "The MAIL_FROM is not set, so use the default value: $MAIL_FROM"
  26. fi
  27. _saveaccountconf_mutable MAIL_FROM "$MAIL_FROM"
  28. MAIL_TO="${MAIL_TO:-$(_readaccountconf_mutable MAIL_TO)}"
  29. if [ -z "$MAIL_TO" ]; then
  30. MAIL_TO="$(_readaccountconf ACCOUNT_EMAIL)"
  31. _info "The MAIL_TO is not set, so use the account email: $MAIL_TO"
  32. fi
  33. _saveaccountconf_mutable MAIL_TO "$MAIL_TO"
  34. contenttype="text/plain; charset=utf-8"
  35. subject="=?UTF-8?B?$(echo "$_subject" | _base64)?="
  36. result=$({ _mail_body | _mail_send; } 2>&1)
  37. if [ $? -ne 0 ]; then
  38. _debug "mail send error."
  39. _err "$result"
  40. return 1
  41. fi
  42. _debug "mail send success."
  43. return 0
  44. }
  45. _mail_send() {
  46. case "$_MAIL_BIN" in
  47. sendmail)
  48. "$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO"
  49. ;;
  50. mutt|mail)
  51. "$_MAIL_BIN" -s "$_subject" "$MAIL_TO"
  52. ;;
  53. esac
  54. }
  55. _mail_body() {
  56. if [ "$_MAIL_BIN" = "sendmail" ]; then
  57. echo "From: $MAIL_FROM"
  58. echo "To: $MAIL_TO"
  59. echo "Subject: $subject"
  60. echo "Content-Type: $contenttype"
  61. echo
  62. fi
  63. echo "$_content"
  64. }