2011-11-30 43 views
2

我是一位新的emacs用户,我正在尝试让gnus与Aquamacs的mi gmail帐户一起工作。在Aquamacs的gnus中配置Gmail

到目前为止,我已经能够设置它来接收我的邮件。问题是当我尝试发送电子邮件时。我得到这个错误:

No Gnus is good news 
No more unread newsgroups 
Mark set 
Sending... 
Sending via mail... 
No STARTTLS program was available (tried 'gnutls-cli') 
ad-Orig-error: Sending failed; SMTP protocol error 

我知道'gnutls-cli'是必要的,它不包含在Aquamacs中。我发现这个指南安装它http://www.gnu.org/s/gnutls/manual/gnutls.html,但我不知道我要如何继续,因为我使用MacOs而不是Linux(虽然都是UNIX操作系统)

我的问题是:我该怎么办究竟要做些什么才能发送电子邮件?

回答

0

你可以安装opensll并配置Gnus来使用它,而不是 gnus-tls。

从手动Gnus的:

所有的

`nntp-open-ssl-stream' Opens a connection to a server over a "secure" channel. To use this you must have OpenSSL (http://www.openssl.org) or SSLeay (ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL) installed. You then define a server as follows:

 ;; "snews" is port 563 and is predefined in our `/etc/services' 
     ;; however, `openssl s_client -port' doesn't like named ports. 
     ;; 
     (nntp "snews.bar.com" 
      (nntp-open-connection-function nntp-open-ssl-stream) 
      (nntp-port-number 563) 
      (nntp-address "snews.bar.com")) 
+1

杉杉,感谢您的回答。 最后,我想出了如何安装gnutls。我安装了macports,所以我只是尝试了 'sudo ports install gnutls'并且它工作正常! 无论如何,正如我所说,感谢您花时间回答。 – Fackelmann

+0

你的意思是'sudo port install gnutls'? – jurassic