Mercurial > emacs
annotate lisp/gnus/auth-source.el @ 109769:fe81389a263d
Optimizations for gnus-sync.el.
From Ted Zlatanov <tzz@lifelogs.com>.
* gnus-sync.el: Add docs about gnus-sync-backend
possibilities.
(gnus-sync-save): Remove unnecessary message.
(gnus-sync-read): Optimize and show what groups were skipped.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 13 Aug 2010 11:03:19 +0000 |
parents | cf7a433d2eb6 |
children | 8d09094063d0 |
rev | line source |
---|---|
92694 | 1 ;;; auth-source.el --- authentication sources for Gnus and Emacs |
2 | |
106815 | 3 ;; Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. |
92694 | 4 |
5 ;; Author: Ted Zlatanov <tzz@lifelogs.com> | |
6 ;; Keywords: news | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94369
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
92694 | 11 ;; it under the terms of the GNU General Public License as published by |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94369
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94369
diff
changeset
|
13 ;; (at your option) any later version. |
92694 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94369
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
92694 | 18 ;; GNU General Public License for more details. |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94369
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
92694 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; This is the auth-source.el package. It lets users tell Gnus how to | |
26 ;; authenticate in a single place. Simplicity is the goal. Instead | |
27 ;; of providing 5000 options, we'll stick to simple, easy to | |
28 ;; understand options. | |
94209 | 29 |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
30 ;; See the auth.info Info documentation for details. |
94980 | 31 |
92694 | 32 ;;; Code: |
33 | |
94837 | 34 (require 'gnus-util) |
35 | |
92694 | 36 (eval-when-compile (require 'cl)) |
107433
02eb32da1fbb
* auth-source.el (netrc-machine-user-or-password): Autoload.
Michael Albinus <michael.albinus@gmx.de>
parents:
106815
diff
changeset
|
37 (autoload 'netrc-machine-user-or-password "netrc") |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
38 (autoload 'secrets-create-item "secrets") |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
39 (autoload 'secrets-delete-item "secrets") |
107473 | 40 (autoload 'secrets-get-alias "secrets") |
41 (autoload 'secrets-get-attribute "secrets") | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
42 (autoload 'secrets-get-secret "secrets") |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
43 (autoload 'secrets-list-collections "secrets") |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
44 (autoload 'secrets-search-items "secrets") |
92694 | 45 |
46 (defgroup auth-source nil | |
47 "Authentication sources." | |
93386 | 48 :version "23.1" ;; No Gnus |
92694 | 49 :group 'gnus) |
50 | |
93386 | 51 (defcustom auth-source-protocols '((imap "imap" "imaps" "143" "993") |
52 (pop3 "pop3" "pop" "pop3s" "110" "995") | |
53 (ssh "ssh" "22") | |
54 (sftp "sftp" "115") | |
55 (smtp "smtp" "25")) | |
56 "List of authentication protocols and their names" | |
57 | |
58 :group 'auth-source | |
107473 | 59 :version "23.2" ;; No Gnus |
93386 | 60 :type '(repeat :tag "Authentication Protocols" |
61 (cons :tag "Protocol Entry" | |
62 (symbol :tag "Protocol") | |
63 (repeat :tag "Names" | |
64 (string :tag "Name"))))) | |
65 | |
66 ;;; generate all the protocols in a format Customize can use | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
67 ;;; TODO: generate on the fly from auth-source-protocols |
93386 | 68 (defconst auth-source-protocols-customize |
69 (mapcar (lambda (a) | |
70 (let ((p (car-safe a))) | |
95665
20496e1c594a
* auth-source.el: Precise Tramp doc.
Michael Albinus <michael.albinus@gmx.de>
parents:
95193
diff
changeset
|
71 (list 'const |
93386 | 72 :tag (upcase (symbol-name p)) |
73 p))) | |
74 auth-source-protocols)) | |
75 | |
99402 | 76 (defvar auth-source-cache (make-hash-table :test 'equal) |
77 "Cache for auth-source data") | |
78 | |
79 (defcustom auth-source-do-cache t | |
80 "Whether auth-source should cache information." | |
81 :group 'auth-source | |
107473 | 82 :version "23.2" ;; No Gnus |
99402 | 83 :type `boolean) |
84 | |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
85 (defcustom auth-source-debug nil |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
86 "Whether auth-source should log debug messages. |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
87 Also see `auth-source-hide-passwords'. |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
88 |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
89 If the value is nil, debug messages are not logged. |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
90 If the value is t, debug messages are logged with `message'. |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
91 In that case, your authentication data will be in the |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
92 clear (except for passwords, which are always stripped out). |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
93 If the value is a function, debug messages are logged by calling |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
94 that function using the same arguments as `message'." |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
95 :group 'auth-source |
107473 | 96 :version "23.2" ;; No Gnus |
107433
02eb32da1fbb
* auth-source.el (netrc-machine-user-or-password): Autoload.
Michael Albinus <michael.albinus@gmx.de>
parents:
106815
diff
changeset
|
97 :type `(choice |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
98 :tag "auth-source debugging mode" |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
99 (const :tag "Log using `message' to the *Messages* buffer" t) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
100 (function :tag "Function that takes arguments like `message'") |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
101 (const :tag "Don't log anything" nil))) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
102 |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
103 (defcustom auth-source-hide-passwords t |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
104 "Whether auth-source should hide passwords in log messages. |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
105 Only relevant if `auth-source-debug' is not nil." |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
106 :group 'auth-source |
107473 | 107 :version "23.2" ;; No Gnus |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
108 :type `boolean) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
109 |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
110 (defcustom auth-sources '((:source "~/.authinfo.gpg")) |
92694 | 111 "List of authentication sources. |
112 | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
113 The default will get login and password information from a .gpg |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
114 file, which you should set up with the EPA/EPG packages to be |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
115 encrypted. See the auth.info manual for details. |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
116 |
107473 | 117 Each entry is the authentication type with optional properties. |
118 | |
119 It's best to customize this with `M-x customize-variable' because the choices | |
120 can get pretty complex." | |
92694 | 121 :group 'auth-source |
107473 | 122 :version "23.2" ;; No Gnus |
93386 | 123 :type `(repeat :tag "Authentication Sources" |
124 (list :tag "Source definition" | |
125 (const :format "" :value :source) | |
107473 | 126 (choice :tag "Authentication backend choice" |
127 (string :tag "Authentication Source (file)") | |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
128 (list :tag "secrets.el (Secret Service API/KWallet/GNOME Keyring)" |
107473 | 129 (const :format "" :value :secrets) |
130 (choice :tag "Collection to use" | |
131 (string :tag "Collection name") | |
132 (const :tag "Default" 'default) | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
133 (const :tag "Login" "login") |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
134 (const :tag "Temporary" "session")))) |
107473 | 135 (repeat :tag "Extra Parameters" :inline t |
136 (choice :tag "Extra parameter" | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
137 (list :tag "Host (omit to match as a fallback)" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
138 (const :format "" :value :host) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
139 (choice :tag "Host (machine) choice" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
140 (const :tag "Any" t) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
141 (regexp :tag "Host (machine) regular expression"))) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
142 (list :tag "Protocol (omit to match as a fallback)" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
143 (const :format "" :value :protocol) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
144 (choice :tag "Protocol" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
145 (const :tag "Any" t) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
146 ,@auth-source-protocols-customize)) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
147 (list :tag "User (omit to match as a fallback)" :inline t |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
148 (const :format "" :value :user) |
107473 | 149 (choice :tag "Personality or username" |
150 (const :tag "Any" t) | |
151 (string :tag "Specific user name")))))))) | |
92694 | 152 |
153 ;; temp for debugging | |
93386 | 154 ;; (unintern 'auth-source-protocols) |
155 ;; (unintern 'auth-sources) | |
156 ;; (customize-variable 'auth-sources) | |
157 ;; (setq auth-sources nil) | |
158 ;; (format "%S" auth-sources) | |
159 ;; (customize-variable 'auth-source-protocols) | |
160 ;; (setq auth-source-protocols nil) | |
161 ;; (format "%S" auth-source-protocols) | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
162 ;; (auth-source-pick nil :host "a" :port 'imap) |
93386 | 163 ;; (auth-source-user-or-password "login" "imap.myhost.com" 'imap) |
164 ;; (auth-source-user-or-password "password" "imap.myhost.com" 'imap) | |
165 ;; (auth-source-user-or-password-imap "login" "imap.myhost.com") | |
166 ;; (auth-source-user-or-password-imap "password" "imap.myhost.com") | |
167 ;; (auth-source-protocol-defaults 'imap) | |
168 | |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
169 ;; (let ((auth-source-debug 'debug)) (auth-source-debug "hello")) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
170 ;; (let ((auth-source-debug t)) (auth-source-debug "hello")) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
171 ;; (let ((auth-source-debug nil)) (auth-source-debug "hello")) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
172 (defun auth-source-do-debug (&rest msg) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
173 ;; set logger to either the function in auth-source-debug or 'message |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
174 ;; note that it will be 'message if auth-source-debug is nil, so |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
175 ;; we also check the value |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
176 (when auth-source-debug |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
177 (let ((logger (if (functionp auth-source-debug) |
107433
02eb32da1fbb
* auth-source.el (netrc-machine-user-or-password): Autoload.
Michael Albinus <michael.albinus@gmx.de>
parents:
106815
diff
changeset
|
178 auth-source-debug |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
179 'message))) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
180 (apply logger msg)))) |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
181 |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
182 ;; (auth-source-pick nil :host "any" :protocol 'imap :user "joe") |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
183 ;; (auth-source-pick t :host "any" :protocol 'imap :user "joe") |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
184 ;; (setq auth-sources '((:source (:secrets default) :host t :protocol t :user "joe") |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
185 ;; (:source (:secrets "session") :host t :protocol t :user "joe") |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
186 ;; (:source (:secrets "login") :host t :protocol t) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
187 ;; (:source "~/.authinfo.gpg" :host t :protocol t))) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
188 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
189 ;; (setq auth-sources '((:source (:secrets default) :host t :protocol t :user "joe") |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
190 ;; (:source (:secrets "session") :host t :protocol t :user "joe") |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
191 ;; (:source (:secrets "login") :host t :protocol t) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
192 ;; )) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
193 |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
194 ;; (setq auth-sources '((:source "~/.authinfo.gpg" :host t :protocol t))) |
93386 | 195 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
196 (defun auth-get-source (entry) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
197 "Return the source string of ENTRY, which is one entry in `auth-sources'. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
198 If it is a Secret Service API, return the collection name, otherwise |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
199 the file name." |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
200 (let ((source (plist-get entry :source))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
201 (if (stringp source) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
202 source |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
203 ;; Secret Service API. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
204 (setq source (plist-get source :secrets)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
205 (when (eq source 'default) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
206 (setq source (or (secrets-get-alias "default") "login"))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
207 (or source "session")))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
208 |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
209 (defun auth-source-pick (&rest spec) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
210 "Parse `auth-sources' for matches of the SPEC plist. |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
211 |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
212 Common keys are :host, :protocol, and :user. A value of t in |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
213 SPEC means to always succeed in the match. A string value is |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
214 matched as a regex." |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
215 (let ((keys (loop for i below (length spec) by 2 collect (nth i spec))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
216 choices) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
217 (dolist (choice (copy-tree auth-sources) choices) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
218 (let ((source (plist-get choice :source)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
219 (match t)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
220 (when |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
221 (and |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
222 ;; Check existence of source. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
223 (if (consp source) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
224 ;; Secret Service API. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
225 (member (auth-get-source choice) (secrets-list-collections)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
226 ;; authinfo file. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
227 (file-exists-p source)) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
228 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
229 ;; Check keywords. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
230 (dolist (k keys match) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
231 (let* ((v (plist-get spec k)) |
108993
cf7a433d2eb6
* auth-source.el (auth-source-pick): If choice does not contain a
Michael Albinus <albinus@detlef>
parents:
108911
diff
changeset
|
232 (choicev (if (plist-member choice k) |
cf7a433d2eb6
* auth-source.el (auth-source-pick): If choice does not contain a
Michael Albinus <albinus@detlef>
parents:
108911
diff
changeset
|
233 (plist-get choice k) t))) |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
234 (setq match |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
235 (and match |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
236 (or |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
237 ;; source always matches spec key |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
238 (eq t choicev) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
239 ;; source key gives regex to match against spec |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
240 (and (stringp choicev) (string-match choicev v)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
241 ;; source key gives symbol to match against spec |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
242 (and (symbolp choicev) (eq choicev v)))))))) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
243 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
244 (add-to-list 'choices choice 'append)))))) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
245 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
246 (defun auth-source-retrieve (mode entry &rest spec) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
247 "Retrieve MODE credentials according to SPEC from ENTRY." |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
248 (catch 'no-password |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
249 (let ((host (plist-get spec :host)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
250 (user (plist-get spec :user)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
251 (prot (plist-get spec :protocol)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
252 (source (plist-get entry :source)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
253 result) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
254 (cond |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
255 ;; Secret Service API. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
256 ((consp source) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
257 (let ((coll (auth-get-source entry)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
258 item) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
259 ;; Loop over candidates with a matching host attribute. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
260 (dolist (elt (secrets-search-items coll :host host) item) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
261 (when (and (or (not user) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
262 (string-equal |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
263 user (secrets-get-attribute coll elt :user))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
264 (or (not prot) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
265 (string-equal |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
266 prot (secrets-get-attribute coll elt :protocol)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
267 (setq item elt) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
268 (return elt))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
269 ;; Compose result. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
270 (when item |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
271 (setq result |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
272 (mapcar (lambda (m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
273 (if (string-equal "password" m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
274 (or (secrets-get-secret coll item) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
275 ;; When we do not find a password, |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
276 ;; we return nil anyway. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
277 (throw 'no-password nil)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
278 (or (secrets-get-attribute coll item :user) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
279 user))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
280 (if (consp mode) mode (list mode))))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
281 (if (consp mode) result (car result)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
282 ;; Anything else is netrc. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
283 (t |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
284 (let ((search (list source (list host) (list (format "%s" prot)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
285 (auth-source-protocol-defaults prot)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
286 (setq result |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
287 (mapcar (lambda (m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
288 (if (string-equal "password" m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
289 (or (apply |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
290 'netrc-machine-user-or-password m search) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
291 ;; When we do not find a password, we |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
292 ;; return nil anyway. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
293 (throw 'no-password nil)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
294 (or (apply |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
295 'netrc-machine-user-or-password m search) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
296 user))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
297 (if (consp mode) mode (list mode))))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
298 (if (consp mode) result (car result))))))) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
299 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
300 (defun auth-source-create (mode entry &rest spec) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
301 "Create interactively credentials according to SPEC in ENTRY. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
302 Return structure as specified by MODE." |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
303 (let* ((host (plist-get spec :host)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
304 (user (plist-get spec :user)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
305 (prot (plist-get spec :protocol)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
306 (source (plist-get entry :source)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
307 (name (concat (if user (format "%s@" user)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
308 host |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
309 (if prot (format ":%s" prot)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
310 result) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
311 (setq result |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
312 (mapcar |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
313 (lambda (m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
314 (if (equal "password" m) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
315 (let ((passwd (read-passwd "Password: "))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
316 (cond |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
317 ;; Secret Service API. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
318 ((consp source) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
319 (apply |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
320 'secrets-create-item |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
321 (auth-get-source entry) name passwd spec)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
322 (t)) ;; netrc not implemented yes. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
323 passwd) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
324 (or |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
325 ;; the originally requested :user |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
326 user |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
327 "unknown-user"))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
328 (if (consp mode) mode (list mode)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
329 (if (consp mode) result (car result)))) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
330 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
331 (defun auth-source-delete (entry &rest spec) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
332 "Delete credentials according to SPEC in ENTRY." |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
333 (let ((host (plist-get spec :host)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
334 (user (plist-get spec :user)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
335 (prot (plist-get spec :protocol)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
336 (source (plist-get entry :source))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
337 (cond |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
338 ;; Secret Service API. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
339 ((consp source) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
340 (let ((coll (auth-get-source entry))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
341 ;; Loop over candidates with a matching host attribute. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
342 (dolist (elt (secrets-search-items coll :host host)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
343 (when (and (or (not user) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
344 (string-equal |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
345 user (secrets-get-attribute coll elt :user))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
346 (or (not prot) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
347 (string-equal |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
348 prot (secrets-get-attribute coll elt :protocol)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
349 (secrets-delete-item coll elt))))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
350 (t)))) ;; netrc not implemented yes. |
93386 | 351 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
352 (defun auth-source-forget-user-or-password |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
353 (mode host protocol &optional username) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
354 "Remove cached authentication token." |
99402 | 355 (interactive "slogin/password: \nsHost: \nsProtocol: \n") ;for testing |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
356 (remhash |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
357 (if username |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
358 (format "%s %s:%s %s" mode host protocol username) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
359 (format "%s %s:%s" mode host protocol)) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
360 auth-source-cache)) |
99402 | 361 |
101804 | 362 (defun auth-source-forget-all-cached () |
363 "Forget all cached auth-source authentication tokens." | |
364 (interactive) | |
365 (setq auth-source-cache (make-hash-table :test 'equal))) | |
366 | |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
367 ;; (progn |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
368 ;; (auth-source-forget-all-cached) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
369 ;; (list |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
370 ;; (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other") |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
371 ;; (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other" "tzz") |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
372 ;; (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other" "joe"))) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
373 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
374 (defun auth-source-user-or-password |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
375 (mode host protocol &optional username create-missing delete-existing) |
101804 | 376 "Find MODE (string or list of strings) matching HOST and PROTOCOL. |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
377 |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
378 USERNAME is optional and will be used as \"login\" in a search |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
379 across the Secret Service API (see secrets.el) if the resulting |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
380 items don't have a username. This means that if you search for |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
381 username \"joe\" and it matches an item but the item doesn't have |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
382 a :user attribute, the username \"joe\" will be returned. |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
383 |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
384 A non nil DELETE-EXISTING means deleting any matching password |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
385 entry in the respective sources. This is useful only when |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
386 CREATE-MISSING is non nil as well; the intended use case is to |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
387 remove wrong password entries. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
388 |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
389 If no matching entry is found, and CREATE-MISSING is non nil, |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
390 the password will be retrieved interactively, and it will be |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
391 stored in the password database which matches best (see |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
392 `auth-sources'). |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
393 |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
394 MODE can be \"login\" or \"password\"." |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
395 (auth-source-do-debug |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
396 "auth-source-user-or-password: get %s for %s (%s) + user=%s" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
397 mode host protocol username) |
101804 | 398 (let* ((listy (listp mode)) |
399 (mode (if listy mode (list mode))) | |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
400 (cname (if username |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
401 (format "%s %s:%s %s" mode host protocol username) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
402 (format "%s %s:%s" mode host protocol))) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
403 (search (list :host host :protocol protocol)) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
404 (search (if username (append search (list :user username)) search)) |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
405 (found (if (not delete-existing) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
406 (gethash cname auth-source-cache) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
407 (remhash cname auth-source-cache) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
408 nil))) |
99402 | 409 (if found |
410 (progn | |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
411 (auth-source-do-debug |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
412 "auth-source-user-or-password: cached %s=%s for %s (%s) + %s" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
413 mode |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
414 ;; don't show the password |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
415 (if (and (member "password" mode) auth-source-hide-passwords) |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
416 "SECRET" |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
417 found) |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
418 host protocol username) |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
419 found) ; return the found data |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
420 ;; else, if not found |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
421 (let ((choices (apply 'auth-source-pick search))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
422 (dolist (choice choices) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
423 (if delete-existing |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
424 (apply 'auth-source-delete choice search) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
425 (setq found (apply 'auth-source-retrieve mode choice search))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
426 (and found (return found))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
427 |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
428 ;; We haven't found something, so we will create it interactively. |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
429 (when (and (not found) choices create-missing) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
430 (setq found (apply 'auth-source-create mode (car choices) search))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
431 |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
432 ;; Cache the result. |
107563
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
433 (when found |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
434 (auth-source-do-debug |
95c2fdf14356
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
107473
diff
changeset
|
435 "auth-source-user-or-password: found %s=%s for %s (%s) + %s" |
103944
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
436 mode |
aa77db41a051
Synch with Gnus trunk:
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
101804
diff
changeset
|
437 ;; don't show the password |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
438 (if (and (member "password" mode) auth-source-hide-passwords) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
439 "SECRET" found) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
440 host protocol username) |
101804 | 441 (setq found (if listy found (car-safe found))) |
99402 | 442 (when auth-source-do-cache |
443 (puthash cname found auth-source-cache))) | |
108911
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
444 |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
445 found)))) |
a7f706d2c627
* auth-source.el (top): Autoload `secrets-list-collections',
Michael Albinus <michael.albinus@gmx.de>
parents:
107568
diff
changeset
|
446 |
93386 | 447 (defun auth-source-protocol-defaults (protocol) |
448 "Return a list of default ports and names for PROTOCOL." | |
449 (cdr-safe (assoc protocol auth-source-protocols))) | |
450 | |
94369 | 451 (defun auth-source-user-or-password-imap (mode host) |
452 (auth-source-user-or-password mode host 'imap)) | |
93386 | 453 |
94369 | 454 (defun auth-source-user-or-password-pop3 (mode host) |
455 (auth-source-user-or-password mode host 'pop3)) | |
93386 | 456 |
94369 | 457 (defun auth-source-user-or-password-ssh (mode host) |
458 (auth-source-user-or-password mode host 'ssh)) | |
93386 | 459 |
94369 | 460 (defun auth-source-user-or-password-sftp (mode host) |
461 (auth-source-user-or-password mode host 'sftp)) | |
93386 | 462 |
94369 | 463 (defun auth-source-user-or-password-smtp (mode host) |
464 (auth-source-user-or-password mode host 'smtp)) | |
92694 | 465 |
466 (provide 'auth-source) | |
467 | |
468 ;; arch-tag: ff1afe78-06e9-42c2-b693-e9f922cbe4ab | |
469 ;;; auth-source.el ends here |