emacs gnus 配置出错

Vim、Emacs配置和使用
回复
lispor
帖子: 2
注册时间: 2012-02-26 16:32

emacs gnus 配置出错

#1

帖子 lispor » 2012-04-15 23:13

参照网上的一些说明,我的 .gnus.el 内容如下:

代码: 全选

(setq gnus-select-method '(nntp "news.yaako.com"))

(setq mail-sources
      '((pop :user "xxxx"
             :password "xxxx"
             :server "pop.163.com"
             :port "pop3")
        ))

(setq gnus-secondary-select-methods '((nnfolder "")))

(setq user-full-name "xxxx")
(setq user-mail-address "xxxx")

(setq smtpmail-auth-credentials
    '(("smtp.163.com"
       25
       "xxxx"
       "xxxx")))
(setq smtpmail-default-smtp-server "smtp.163.com")
(setq smtpmail-smtp-server "smtp.163.com")
(setq message-send-mail-function 'smtpmail-send-it)
当运行 gnus 后,*Message* 中的显示信息为:

代码: 全选

nntp (news.yaako.com) open error: '>>> (error Process nntpd not running)'.  Continue? (y or n)  
我输入y
最后进入 *Group* Buffer 中,但在 echo buffer 中显示:

代码: 全选

Warning: Opening nntp server on news.yaako.com...failed: >>> (error Process nntpd not running); Server nntp+news.yaako.com previously determined to be down; not retrying; Opening nntp server on news.yaako.com...failed: >>> (error Process nntpd not running); Server nntp+news.yaako.com previously determined to be down; not retrying
Connecting to ...
此时,当我查看邮件时,发现已接收了邮件,但是不能发邮件,当发邮件时,提示信息如下:

代码: 全选

smtpmail-send-it: Sending failed: 553 authentication is required,smtp4,DtGowECZRGrB44pPa6J4Hg--.388S3 1334502338
哪位帮我看看我错在哪里了?
在此先谢了!
头像
tonghuix
帖子: 355
注册时间: 2010-10-08 0:55

Re: emacs gnus 配置出错

#2

帖子 tonghuix » 2012-04-16 0:45

这个yaako服务器貌似不能用了

另外发送出错是因为需要验证,发件的时候要验证发件人
/***
* @tonghuix 佟辉 Tong Hui
* @brief 启智开源 编码自由
* @brief Open Source Open Mind, Coding for free!
* @website: https://tonghuix.io
* @weibo http://weibo.com/234826309
* @Twitter http://twitter.com/tonghuix
* @G+ http://gplus.to/tonghuix
*/
lispor
帖子: 2
注册时间: 2012-02-26 16:32

Re: emacs gnus 配置出错

#3

帖子 lispor » 2012-04-16 8:25

tonghuix 写了: 另外发送出错是因为需要验证,发件的时候要验证发件人
请问一下,这个怎么来验证发件人?是需要要用到哪一个函数吗?
回复