info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mail (POP3/IMAP) using STARTTLS


From: David
Subject: Re: Mail (POP3/IMAP) using STARTTLS
Date: Sun, 25 May 2008 14:30:33 +0200
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.2 (gnu/linux)

Felix Natter <felix.natter@smail.inf.fh-brs.de> writes:
> but I still get this when I send mail to accounts not on the university:
[...]
> 550 5.7.1 <fnatter@gmx.net>... Relaying denied. Proper authentication 
> required.
> 221 2.0.0 ux-2s11.inf.fh-bonn-rhein-sieg.de closing connection

Hmm. For some reason the TLS connection is not established. Maybe you
should try to use gnutls (must be installed, of course). This is the
smtpmail section from my .gnus:

;; server and port
(setq smtpmail-default-smtp-server "my.mailserver.com") 
(setq smtpmail-smtp-service 25)
(require 'smtpmail)
;; mail address used in the envelope header
(setq smtpmail-mail-address "mymailadress@invalid.com")
(setq send-mail-function 'smtpmail-send-it)
(setq message-send-mail-function 'smtpmail-send-it)
(setq smtpmail-debug-info t)
(setq smtpmail-auth-credentials
      '(("my.mailserver.com" 25 "login" "password")))
(setq smtpmail-starttls-credentials
      '(("my.mailserver.com" 25 nil nil))) 
;; TLS stuff
(setq starttls-use-gnutls t) 
(setq starttls-gnutls-program "gnutls-cli")
(setq starttls-extra-arguments nil)
(setq smtpmail-debug-info t)

-David





reply via email to

[Prev in Thread] Current Thread [Next in Thread]