all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Cesar Crusius <cesar.crusius@gmail.com>
To: "emacs-devel\@gnu.org" <emacs-devel@gnu.org>
Subject: Re: Next XOAUTH2 patch: nnimap-login
Date: Sat, 13 Jan 2018 10:17:48 -0800	[thread overview]
Message-ID: <87zi5hfws3.fsf@gmail.com> (raw)
In-Reply-To: <87wp0m1eqi.fsf@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1744 bytes --]

Let me reply to my own question:

Better not to do anything: not only the smtpmail patch is probably a year away
from deployment, but there are changes in auth-pass in Emacs 26 that
make dealing with all the possible combinations awkward.

What I'm going to do is to get the auth-source-xoauth2 package ready and
working, at this point, strictly through advises, and using the MELPA
auth-password-store package instead of the one included in Emacs
26.

Once things settle down we can talk more patches.

On Sat 13 Jan 2018 at 05:59, Cesar Crusius wrote:

> Hi all,
>
> Now that the patch is in for smtpmail-try-auth-method, my (yet not
> submitted) auth-source-xoauth2 package allows me to send e-mail through
> Gmail using XOAuth2. The next piece of the puzzle is reading e-mail, and
> the needed patch is now in nnimap-login. I have it working by advising
> it, but I am thinking that nnimap-login maybe should have the same
> extensibility as its "mirror" smtpmail.
>
> This function seems harder to generalize - one of the ways would be to
> make the entire `cond' body a list that can be added to, and then turn
> it into
>
> (defmacro nnimap-login (user password)
>   `(cond ,@nnimap-login-methods))
>
> or something like that. With that, adding support for a protocol could
> be done with
>
> (add-to-list 'nnimap-login-methods
>   '((and (eq nnimap-authenticator 'xoauth2)
>          (nnimap-capability "AUTH=XOAUTH2")
>          (nnimap-capability "SASL-IR"))
>     (nnimap-command
>      (concat "AUTHENTICATE XOAUTH2 "
>              (base64-encode-string
>               (concat "user=" user "\1auth=Bearer " password "\1\1")
>               t)))))
>
> Opinions?


-- 
Cesar Crusius

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 658 bytes --]

      reply	other threads:[~2018-01-13 18:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-13  5:59 Next XOAUTH2 patch: nnimap-login Cesar Crusius
2018-01-13 18:17 ` Cesar Crusius [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

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

  git send-email \
    --in-reply-to=87zi5hfws3.fsf@gmail.com \
    --to=cesar.crusius@gmail.com \
    --cc=emacs-devel@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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.