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: Next XOAUTH2 patch: nnimap-login
Date: Fri, 12 Jan 2018 21:59:01 -0800	[thread overview]
Message-ID: <87wp0m1eqi.fsf@gmail.com> (raw)

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

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  5:59 UTC|newest]

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

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=87wp0m1eqi.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.