SMTP 서버를 통해 메일을 보내도록 emacs를 구성하려고했지만 지금까지는 성공하지 못했습니다. 내가 얻는 결과는 다음과 같습니다.
220 __SMTP.SERVER__ ESMTP Sendmail 8.14.4+UW11.03/8.14.4+UW13.09; Wed, 15 Jan 2014 13:16:39 -0800
250-__SMTP.SERVER__ Hello __LOCAL.DOMAIN__ [__IP.ADDRESS__], pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-EXPN
250-VERB
250-8BITMIME
250-SIZE 60000000
250-DSN
250-AUTH GSSAPI
250-STARTTLS
250-DELIVERBY
250 HELP
250 2.0.0 Verbose mode
250 2.1.0 <__USER@DOMAIN__>... Sender ok
530 5.7.1 Relaying denied. Proper authentication required.
smtpmail-send-it: Sending failed; SMTP protocol error
관련 init.el 은 다음과 같이 설정됩니다.
(setq send-mail-function 'smtpmail-send-it)
(setq smtpmail-smtp-server "__SMTP.SERVER__")
(setq smtpmail-smtp-service 587)
(setq smtpmail-stream-type 'ssl)
(setq smtpmail-debug-info t)
(setq smtpmail-debug-verb t)
다음과 같은 .authinfo 파일 도 있습니다 .
machine __SMTP.SERVER__ port 587 login __USER__ password *
내가 놓쳤거나 잘못한 것에 대한 생각이 있습니까?
편집 1
@ techie007 서버 관리자와 이야기를 나 he으며, 서버가 인증 후 릴레이를 허용한다고 가정했습니다. 이제 인증을 잘못 설정했는지 궁금합니다. 나는 서버가 TLS 암호화를 사용한다는 것을 알고 있으며 smtpmail-stream-type 'ssl
대신 대신 구성했다는 것을 알고 'tls
있지만 emacs 설명서는 'ssl
SSL과 TLS 연결 모두에 사용될 것이라고 믿었습니다 ( http://www.gnu.org/ software / emacs / manual / html_mono / smtpmail.html # Encryption ). 이것이 잘못 되었습니까?
또한 SMTP 서버는 실제로 다른 클라이언트와 작동합니다. 내가 만드는 데 어려움이있는 것은이 특별한 연결입니다.
편집 2
init.el 의 retooling은 다음과 같습니다 :
(setq message-send-mail-function 'smtpmail-send-it
smtpmail-starttls-credentials '(("__SMPT.SERVER__" 587 nil nil))
smtpmail-auth-credentials '(("__SMTP.SERVER" 587 "__USER__" nil))
smtpmail-default-smtp-server "__SMTP_SERVER__"
smtpmail-smtp-server "__SMTP.SERVER__"
smtpmail-smtp-service 587
smtpmail-local-domain "__LOCAL.DOMAIN__")
.authinfo 파일 이 필요 없습니다 . 메일 발송 시도를 포함한 전체 로그 :
Loading 00debian-vars...done
Loading /etc/emacs/site-start.d/50autoconf.el (source)...done
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...done
Loading debian-ispell...done
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...done
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...done
Loading /etc/emacs/site-start.d/50psvn.el (source)...done
Loading /etc/emacs23/site-start.d/50vm-init.el (source)...done
For information about GNU Emacs and the GNU system, type C-h C-a.
goto-history-element: Beginning of history; no preceding item
Quit
Loading /home/__USER__/.xemacs/init.el (source)...done
Loading /home/__USER__/.xemacs/custom.el (source)...done
/usr/bin/mail is not an executable. Setting mail-interactive to t.
Adding vm-rfaddons-option `check-recipients'.
Adding vm-rfaddons-option `check-for-empty-subject'.
Adding vm-rfaddons-option `encode-headers'.
VM-RFADDONS: VM is now infected.
ispell.el is already loaded
Sending...
Added to /home/__USER__/vm-folders/SentMail
sendmail-send-it: Sending...failed with exit value 1
편집 3
나는 약간의 발전을 이루었습니다! Emacs를 처음 시작할 때로 VM을 시작 C-x m
하고 메시지를 보내려고하면 첫 번째 출력에서 오류가 발생합니다 smtpmail-send-it: Sending failed; SMTP protocol error
. 그러나 C-x C-f ~/.emacs
파일을 열고을 입력 M-x eval-buffer
하면 VM으로 돌아가 메시지를 완벽하게 보낼 수 있습니다. 따라서 .emacs 구성은 다음과 같습니다.
(setq message-send-mail-function 'smtpmail-send-it
send-mail-function 'smtpmail-send-it
smtpmail-default-smtp-server "__SMTP.SERVER__"
smtpmail-smtp-server "__SMTP.SERVER__"
smtpmail-smtp-service 587
smtpmail-stream-type 'ssl
smtpmail-auth-credentials '(("__SMTP.SERVER__" 587 "__USER__" "__PASSWORD__"))
)
.emacs
모든 Emacs 세션이 시작될 때 평가할 필요가없는 방법을 아는 사람이 있습니까?
최종 편집
효과가있다! 폐쇄를 위해 최종 작업 구성을 여기에 게시하겠습니다.
(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/vm/")
(require 'vm-autoloads)
(load "/usr/local/share/emacs/site-lisp/vm/vm-reply")
(setq message-send-mail-function 'smtpmail-send-it
send-mail-function 'smtpmail-send-it
user-mail-address "__USER.MAIL.ADDRESS__"
smtpmail-default-smtp-server "__SMTP.SERVER__"
smtpmail-smtp-server "__SMTP.SERVER__"
smtpmail-smtp-service 587
smtpmail-stream-type 'ssl
smtpmail-smtp-user "__USER__"
smtpmail-starttls-credentials '(("__SMTP.SERVER__" 587 "__USER__" nil)))
starttls-use-gnutls t
starttls-gnutls-program "gnutls-cli"
starttls-extra-arguments nil
)
에서 퍼팅 'load-path
과하는 'vm-autoloads
몇 가지 도움 듯 오류 "함수 정의 무효이다", 그리고 수동 부하가 vm-reply
누락 된 자동로드로 구성된 VM의 8.2.0b에서 발견 된 버그의 해결 방법입니다; 그렇지 않으면의 정의가 무효화되었습니다 vm-select-recipient-from-sender
. 또한 .authinfo 파일을 사용하여 smtpmail-auth-credentials
변수 와 충돌하고 있음을 확인한 후에 다시 인증했습니다 . netawater 의 제안에 smtpmail-smtp-user
따라 .authinfo 와 함께 사용됩니다 . user-mail-address
내가 가진 나머지 인증 오류를 해결했습니다.
모든 도움과 제안에 감사합니다.