File: README.org

package info (click to toggle)
emacs-auth-source-xoauth2-plugin 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: lisp: 162; makefile: 2
file content (205 lines) | stat: -rw-r--r-- 7,813 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#+TITLE: Auth-source xoauth2 plugin
#+DATE: 2024-11-08

#+html: <a href="https://elpa.gnu.org/packages/auth-source-xoauth2-plugin.html"><img alt="GNU ELPA" src="https://elpa.gnu.org/packages/auth-source-xoauth2-plugin.svg"/></a>

* Introduction

This package provides a global minor mode for enabling support for
xoauth2 authentication with auth-source.  OAuth 2.0, which stands for
“Open Authorization”, is a standard designed to allow a website or
application to access resources hosted by other web apps on behalf of
a user.  The OAuth 2.0 Authorization Protocol Extensions (xoauth2)
extend the OAuth 2.0 Authentication Protocol and the JSON Web Token
(JWT) to enable server-to-server authentication.  More info please
check out [[https://stackoverflow.com/a/76389679/2337550][this stackoverflow answer]].

* Installation

`auth-source-xoauth2-plugin' is on [[https://elpa.gnu.org/packages/auth-source-xoauth2-plugin.html][GNU ELPA]], and you can install it
with `package-install' (see also [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Package-Installation.html][the Emacs document on how to use
package-install]]).  Or you can clone the repository from [[https://gitlab.com/manphiz/auth-source-xoauth2-plugin/][GitLab]], or
simply download the ~auth-source-xoauth2-plugin.el~ file and put it
anywhere in your Emacs' `load-path'.

Then add the following lines in your Emacs configuration:

#+BEGIN_SRC emacs-lisp
  (require 'auth-source-xoauth2-plugin)
  (auth-source-xoauth2-plugin-mode t)
#+END_SRC

or with use-package:

#+BEGIN_SRC emacs-lisp
  (use-package auth-source-xoauth2-plugin
    :custom
    (auth-source-xoauth2-plugin-mode t))
#+END_SRC

After enabling, smtpmail should be supported.  To enable this in Gnus
nnimap, you should also set `(nnimap-authenticator xoauth2)' in the
corresponding account settings in `gnus-secondary-select-methods' as
the following:

#+BEGIN_SRC emacs-lisp
  (nnimap "account_name"
          ...
          (nnimap-authenticator xoauth2)
          ...
          )
#+END_SRC

To disable, just toggle the minor mode off by calling `M-x
auth-source-xoauth2-plugin-mode' again.

* auth-source settings

When xoauth2 authentication is enabled, it will try to get the
following data from the auth-source entry: `auth-url', `token-url',
`scope', `client-id', `client-secret', `redirect-uri', and optionally
`state'.

There are two ways to set those info:
1. Use a predefined source which has already registered their app to
   the service (e.g. thunderbird) and you can just use their public
   authentication info, such as `client_id', `client_secret', etc.
2. Register your own app for oauth2 authentication and set those info
   yourself.

** Use predefined services

Using a predefined service is very easy.  An example `authinfo' entry
(in JSON format as `~/.authinfo.json.gpg') for Gmail will look like
below (you need to fill in the info of your account between "<" and
">"):

#+BEGIN_SRC js
  [
    ...
    {
      "machine": "<your_imap_address_or_email>",
      "login": "<your_email>",
      "port": "imaps",
      "auth": "xoauth2",
      "auth-source-xoauth2-predefined-service": "google"
    },
    ...
  ]
#+END_SRC

This will then use the OAuth2 credentials from Thunderbird for
authentication.  Currently `google' and `microsoft' are supported from
Thunderbird for use with Gmail and Outlook which the author has
tested.  It is possible to add support for more services (e.g. yahoo)
and other sources (e.g. Evolution).  Suggestions and patches are
welcome.

Once correctly set up, the plugin will then use `oauth2.el' to
retrieve the access-token with those information, use it to construct
the oauth2 authentication string, and let `auth-source' do the rest.

** Use your own registered app

If you would like more control over your authentication credentials,
you can register your own app on your email service provider for
OAuth2 authentication.  The registration process is outside the scope
of this document, but the gist is to make sure that you set the access
control of your app (also `scope') to enable using IMAP and SMTP for
email.

Once that's done, you can fill in the credentials from your app to
achieve the same.  For an Gmail account it may look like below:

#+BEGIN_SRC js
  [
    ...
    {
      "machine": "<your_imap_address_or_email>",
      "login": "<your_email>",
      "port": "imaps",
      "auth": "xoauth2",
      "auth-url": "https://accounts.google.com/o/oauth2/auth",
      "token-url": "https://accounts.google.com/o/oauth2/token",
      "client-id": "<the_client_id_from_your_app>",
      "client-secret": "<the_client_secret_from_your_app>",
      "redirect-uri": "https://oauth2.dance/",
      "scope": "https://mail.google.com"
    },
    ...
  ]
#+END_SRC

The rest will work in the same way.

*** Initial set up

Once auth-source is configured correctly, you can proceed to initiate
the connections.  Please check out [[file:docs/oauth2-initial-set-up.org][the steps for initial set up]].  Once
everything goes through the plugin will handle the future
authentication automatically.

* Comparison with other xoauth2 implementations

** auth-source-xoauth2

This plugin takes inspirations from [[https://github.com/ccrusius/auth-source-xoauth2][auth-source-xoauth2]] to advice the
auth-source-search backends to add xoauth2 access-token for
authentication.  The implementation is independent and reuses many
existing facilities in `auth-source.el', where auth-source-xoauth2
reimplemented most of the required functions itself.

`auth-source-xoauth2-plugin' also makes use of `oauth2.el' and its
storage for storing temporary/ephemeral data tokens, where
`auth-source-xoauth2' implemented its own storage.

* Debugging

In case you encounter any issues, you may consider enabling verbose
messages to help debugging.  `auth-source-xoauth2-plugin' uses the
same convention as `auth-source' for outputing verbose messages.  You
may do the following:

#+BEGIN_SRC emacs-lisp
  (setq auth-source-debug t)
#+END_SRC

and check the =*Message*= buffer for logs.  You can enable even more
verbose log by the following:

#+BEGIN_SRC emacs-lisp
  (setq auth-source-debug 'trivia)
#+END_SRC

NOTE: \'trivia will include your tokens for authentication in your
=*Message*= buffer so be careful not to share the log with untrusted
entities.

* Bug reporting

Please use `M-x report-emacs-bug' or open an issue on [[https://gitlab.com/manphiz/auth-source-xoauth2-plugin/-/issues][GitLab]] and
include debug info collected following section [[file:README.org::*Debugging][Debugging]].

* Notes on Implementation

`auth-source' uses the `secret' field in auth-source file as password
for authentication, including xoauth2.  To decide which authentication
method to use (e.g. plain password vs xoauth2), this plugin inspects
the `auth' field from the auth-source entry, and if the value is
`xoauth2', it will try to gather data and get the access token for use
of xoauth2 authentication; otherwise, it will fallback to the default
authentication method.

This package uses an advice to switch the auth-source search result
from the `password' to the `access-token' it got, which in turn will
be used to construct the xoauth2 authentication string, currently in
nnimap-login and smtpmail-try-auth-method.  To enable xoauth2 support
in smtpmail, it adds \'xoauth2 to \'smtpmail-auth-supported (if it is
not already in the list) using `add-to-list' so that xoauth2 is tried
first.

Note that currently `auth-source' requires the searched entry must
have `secret' field set in the entry, which is not necessarily true
when using xoauth2.  Therefore in the advice it temporarily disables
checking for `:secret' perform the search in the backend, and ensure
that `secret' contains the generated access-token before returning.