[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: SMTP-AUTH and TLS
From: |
Tobias Brink |
Subject: |
Re: SMTP-AUTH and TLS |
Date: |
Mon, 08 Oct 2007 20:40:43 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) |
someusernamehere <someusernamehere@gmail.com> writes:
> i have tried this and doesnt work, I have the same problem, can you
> paste your final work code here please?
Here you go:
,----[ ~/.gnus.el ]
| (require 'smtpmail)
| (setq send-mail-function 'smtpmail-send-it)
| (setq message-send-mail-function 'smtpmail-send-it)
| (setq smtpmail-starttls-credentials
| '(("YOURSMTP.TLD" 25 nil nil)))
| (setq smtpmail-smtp-server "YOURSMTP.TLD")
| (setq smtpmail-default-smtp-server "YOURSMTP.TLD") ; This is probably
| ; not needed.
`----
,----[ ~/.authinfo ]
| machine YOURSMTP.TLD login YOURUSERNAME password YOURPASSWORD
`----
Replace the strings in capital letters.
Hope that helps,
Tobias