Felix Natter <[EMAIL PROTECTED]> writes:
> but I still get this when I send mail to accounts not on the university:
[...]
> 550 5.7.1 <[EMAIL PROTECTED]>... 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 "[EMAIL PROTECTED]")
(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
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english