unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Q1999 <henri.fischer@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: sending mail using tls using Emacs under Windows
Date: Thu, 26 Mar 2015 00:46:06 -0700 (PDT)	[thread overview]
Message-ID: <1c3a03ee-901d-463c-98e1-3dd3e7ba51f9@googlegroups.com> (raw)
In-Reply-To: <slrnmh12v8.1ofb.varro@anukis.local>

On Monday, March 23, 2015 at 10:55:55 PM UTC+1, Will Parsons wrote:
> I'd like to be able to send mail using Emacs 24.2.1 under Windows and
> am having difficulties.  With the following in my .emacs file:
> 
> (setq
>  send-mail-function 'smtpmail-send-it
>  smtpmail-smtp-server "smtp.gmail.com"
>  smtpmail-smtp-service 587)
> 
> and a suitable entry in .authinfo:
> 
>  machine smtp.gmail.com login xxxx@gmail.com port 587 password xxxxx
> 
> attempting to send a message using the default method "Gnus Message"
> results in:
> 
>  smtpmail-send-it: Sending failed: 530 5.7.0 Must issue a STARTTLS
>  command first. y142sm1414876iod.25 - gsmtp
> 
> Looking under Options => Packages, I see that gnutls is built-in, but
> running gnutls-available-p returns nil.
> 
> Am I missing something?
> 
> -- 
> Will

for imap I have the following in my .emacs which seems to work. However it does not work until you tell google not to block less secure log in attempts. First time use, you get a gmail from google with instructions on how to do that.

;; Start GNUS
    (require 'gnus)
    (add-to-list 'load-path
                  "~/starttls-0.10")
(require 'starttls)
(add-to-list 'gnus-secondary-select-methods '(nnimap "gmail"
                                  (nnimap-address "imap.gmail.com")
                                  (nnimap-server-port 993)
                                  (nnimap-stream ssl)))

(setq message-send-mail-function 'smtpmail-send-it
      smtpmail-starttls-credentials '(("smtp.gmail.com" 25 nil nil))
      smtpmail-auth-credentials '(("smtp.gmail.com" 25 "yourEmailAddress@gmail.com" nil))
      smtpmail-default-smtp-server "smtp.gmail.com"
      smtpmail-smtp-server "smtp.gmail.com"
      smtpmail-smtp-service 25
      smtpmail-local-domain "yourcompany.com")
;; End GNUS


      parent reply	other threads:[~2015-03-26  7:46 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-23 21:55 sending mail using tls using Emacs under Windows Will Parsons
2015-03-24  3:38 ` Eli Zaretskii
     [not found] ` <mailman.2653.1427168330.31049.help-gnu-emacs@gnu.org>
2015-03-24 18:42   ` Will Parsons
2015-03-24 19:11     ` Eli Zaretskii
     [not found]     ` <mailman.2698.1427224337.31049.help-gnu-emacs@gnu.org>
2015-03-24 19:45       ` Will Parsons
2015-03-24 20:19         ` Eli Zaretskii
2015-03-25 17:43         ` Sivaram Neelakantan
     [not found]         ` <mailman.2755.1427305460.31049.help-gnu-emacs@gnu.org>
2015-03-25 21:12           ` Will Parsons
2015-03-26  3:36             ` Eli Zaretskii
     [not found]             ` <mailman.2789.1427341026.31049.help-gnu-emacs@gnu.org>
2015-03-26 20:57               ` Will Parsons
2015-03-27  6:55                 ` Sivaram Neelakantan
2015-03-27  7:20                 ` Eli Zaretskii
     [not found]                 ` <mailman.2851.1427439324.31049.help-gnu-emacs@gnu.org>
2015-03-27 17:30                   ` Will Parsons
     [not found]                 ` <mailman.2852.1427440848.31049.help-gnu-emacs@gnu.org>
2015-03-27 17:40                   ` Will Parsons
2015-03-27 19:02                     ` Eli Zaretskii
     [not found]                     ` <mailman.2897.1427482933.31049.help-gnu-emacs@gnu.org>
2015-03-27 19:37                       ` Will Parsons
2015-03-27 19:52                         ` Eli Zaretskii
2015-03-26  7:46 ` Q1999 [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1c3a03ee-901d-463c-98e1-3dd3e7ba51f9@googlegroups.com \
    --to=henri.fischer@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).