我是一个新的emacs用户,我正在尝试让gnus在Aquamacs上使用mi 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中。我找到了安装它的指南,但我不确定我必须如何继续,因为我使用的是MacOs而不是http://www.gnu.org/s/gnutls/manual/gnutls.html (尽管两者都是UNIX OS)
我的问题是:我到底要做什么才能发送电子邮件?
发布于 2011-12-01 20:50:07
您可以安装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/ s_client‘;;但是,’`openssl s_client -port‘不喜欢命名端口。;;(nntp "snews.bar.com“(nntp-open-connection-function nntp-open-ssl-stream) (nntp-端口号563) (nntp-address "snews.bar.com"))
https://stackoverflow.com/questions/8332221
复制相似问题