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.

81 lines
1.8 KiB

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