On 17 Nov 2006, [EMAIL PROTECTED] wrote:

>> You need ssl.el and set up like this:
>>
>> http://www.pvv.ntnu.no/~terjeros/wiki/GnusGmail
>>
>
> So I installed latest smtpmail.el, starttls.el and pop3.el. Also GnuTLS
> 1.5.5.
>
> But ended up with
>
> 530 5.7.0 Must issue a STARTTLS command firsty1sm3558462uge
>
> when trying to send a message via gmail. Appears, TLS negotiation didn't
> start.
>
> Could somenone direct me what to examine first?

Did you follow the instructions?

Post your setup.  You don't need the full setup if you only expect to
send mail from your Gmail account.  Just the following lines.

(setq message-send-mail-function 'smtpmail-send-it)
(setq smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil)))
(setq smtpmail-auth-credentials '(("smtp.gmail.com" 587 "joeuser" nil)))
(setq smtpmail-default-smtp-server "smtp.gmail.com")
(setq smtpmail-smtp-server "smtp.gmail.com")
(setq smtpmail-smtp-service 587))

If it's still not working, make sure starttls.el can find the
necessary software.  The following:

(executable-find starttls-program)

should return something other than nil.  If not, adjust the value of
starttls-program accordingly with customize-variable.

Ted
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to