* Windows email error
@ 2005-06-22 5:25 Raymond
2005-06-22 10:54 ` It's me FKtPp ;)
2005-06-23 8:34 ` Kyle Lee
0 siblings, 2 replies; 3+ messages in thread
From: Raymond @ 2005-06-22 5:25 UTC (permalink / raw)
I have add following into my emacs. Why I can't use smtp mail still?
When I send email. The error message is "SMTP protocol error!".
;; If you use the default mail user agent.
(setq send-mail-function 'smtpmail-send-it)
;; If you use Message or Gnus.
(setq message-send-mail-function 'smtpmail-send-it)
(setq user-full-name "Raymond Shen")
(setq user-mail-address "shen_yong_cn@163.com")
(setq smtpmail-smtp-server "smtp.163.com")
(setq smtpmail-auth-credentials
'(("smtp.163.com" 25 "shen_yong_cn" "passwd")))
(setenv "MAILHOST" "pop3.163.com")
(setq rmail-primary-inbox-list
'("po:shen_yong_cn") rmail-pop-password-required t)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Windows email error
2005-06-22 5:25 Windows email error Raymond
@ 2005-06-22 10:54 ` It's me FKtPp ;)
2005-06-23 8:34 ` Kyle Lee
1 sibling, 0 replies; 3+ messages in thread
From: It's me FKtPp ;) @ 2005-06-22 10:54 UTC (permalink / raw)
Raymond <shen_yong_cn@163.com> writes:
> I have add following into my emacs. Why I can't use smtp mail still?
> When I send email. The error message is "SMTP protocol error!".
I think, you should set `smtpmail-debug-info' to t to see what was
failed during the sending process.
--
To reply, remove string `ccol' from the email address.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Windows email error
2005-06-22 5:25 Windows email error Raymond
2005-06-22 10:54 ` It's me FKtPp ;)
@ 2005-06-23 8:34 ` Kyle Lee
1 sibling, 0 replies; 3+ messages in thread
From: Kyle Lee @ 2005-06-23 8:34 UTC (permalink / raw)
u can try this:
(require 'smtpmail)
(setq smtpmail-debug-info t)
(setq send-mail-function 'smtpmail-send-it)
(setq message-send-mail-function 'smtpmail-send-it)
(setq smtpmail-default-smtp-server "smtp.163.com")
(setq smtpmail-smtp-server "smtp.163.com")
(setq smtpmail-local-domain "163.com") ;; <<-
(setq smtpmail-sendto-domain "163.com") ;; <<-
(setq smtpmail-auth-credentials ; or use ~/.authinfo
'(("smtp.163.com" 25 "usr" "pwd")))
--
Kyle
非淡泊无以明志,非宁静无以致远
More info about Kyle , [http://kyle.bloghome.cn]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-06-23 8:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-22 5:25 Windows email error Raymond
2005-06-22 10:54 ` It's me FKtPp ;)
2005-06-23 8:34 ` Kyle Lee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).