1 ;;; mh-identity.el --- multiple identify support for MH-E
3 ;; Copyright (C) 2002-2013 Free Software Foundation, Inc.
5 ;; Author: Peter S. Galbraith <psg@debian.org>
6 ;; Maintainer: Bill Wohler <wohler@newt.com>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Multiple identity support for MH-E.
29 ;; Used to easily set different fields such as From and Organization,
30 ;; as well as different signature files.
32 ;; Customize the variable `mh-identity-list' and see the Identity menu
33 ;; in MH-Letter mode. The command `mh-insert-identity' can be used
34 ;; to manually insert an identity.
42 (autoload 'mml-insert-tag
"mml")
44 (defvar mh-identity-pgg-default-user-id nil
45 "Holds the GPG key ID to be used by pgg.el.
46 This is normally set as part of an Identity in
48 (make-variable-buffer-local 'mh-identity-pgg-default-user-id
)
50 (defvar mh-identity-menu nil
53 (defalias 'mh-identity-make-menu-no-autoload
'mh-identity-make-menu
)
56 (defun mh-identity-make-menu ()
57 "Build the Identity menu.
58 This should be called any time `mh-identity-list' or
59 `mh-auto-fields-list' change.
60 See `mh-identity-add-menu'."
61 (easy-menu-define mh-identity-menu mh-letter-mode-map
65 ;; Dynamically render :type corresponding to `mh-identity-list'
67 ;; ["Home" (mh-insert-identity "Home")
68 ;; :style radio :active (not (equal mh-identity-local "Home"))
69 ;; :selected (equal mh-identity-local "Home")]
70 '(["Insert Auto Fields"
71 (mh-insert-auto-fields) mh-auto-fields-list
]
76 `[,arg
(mh-insert-identity ,arg
) :style radio
77 :selected
(equal mh-identity-local
,arg
)]))
78 (mapcar 'car mh-identity-list
))
80 (mh-insert-identity "None") :style radio
81 :selected
(not mh-identity-local
)]
83 ["Set Default for Session"
84 (setq mh-identity-default mh-identity-local
) t
]
86 (customize-save-variable 'mh-identity-default mh-identity-local
) t
]
87 ["Customize Identities" (customize-variable 'mh-identity-list
) t
]
91 (defun mh-identity-add-menu ()
92 "Add the current Identity menu.
93 See `mh-identity-make-menu'."
95 (easy-menu-add mh-identity-menu
)))
97 (defvar mh-identity-local nil
98 "Buffer-local variable that holds the identity currently in use.")
99 (make-variable-buffer-local 'mh-identity-local
)
101 (defun mh-header-field-delete (field value-only
)
102 "Delete header FIELD, or only its value if VALUE-ONLY is t.
103 Return t if anything is deleted."
104 (let ((field-colon (if (string-match "^.*:$" field
)
106 (concat field
":"))))
107 (when (mh-goto-header-field field-colon
)
111 (delete-region (point)
112 (progn (mh-header-field-end)
113 (if (not value-only
) (forward-char 1))
117 (defvar mh-identity-signature-start nil
118 "Marker for the beginning of a signature inserted by `mh-insert-identity'.")
119 (defvar mh-identity-signature-end nil
120 "Marker for the end of a signature inserted by `mh-insert-identity'.")
122 (defun mh-identity-field-handler (field)
123 "Return the handler for header FIELD or nil if none set.
124 The field name is downcased. If the FIELD begins with the
125 character \":\", then it must have a special handler defined in
126 `mh-identity-handlers', else return an error since it is not a
128 (or (cdr (mh-assoc-string field mh-identity-handlers t
))
129 (and (eq (aref field
0) ?
:)
130 (error "Field %s not found in `mh-identity-handlers'" field
))
131 (cdr (assoc ":default" mh-identity-handlers
))
132 'mh-identity-handler-default
))
135 (defun mh-insert-identity (identity &optional maybe-insert
)
136 "Insert fields specified by given IDENTITY.
138 In a program, do not insert fields if MAYBE-INSERT is non-nil,
139 `mh-identity-default' is non-nil, and fields have already been
142 See `mh-identity-list'."
144 (list (completing-read
146 (if mh-identity-local
148 (mapcar 'list
(mapcar 'car mh-identity-list
)))
149 (mapcar 'list
(mapcar 'car mh-identity-list
)))
153 (when (or (not maybe-insert
)
154 (and (boundp 'mh-identity-default
)
156 (not mh-identity-local
)))
158 ;;First remove old settings, if any.
159 (when mh-identity-local
160 (let ((pers-list (cadr (assoc mh-identity-local mh-identity-list
))))
162 (let* ((field (caar pers-list
))
163 (handler (mh-identity-field-handler field
)))
164 (funcall handler field
'remove
))
165 (setq pers-list
(cdr pers-list
)))))
166 ;; Then insert the replacement
167 (when (not (equal "None" identity
))
168 (let ((pers-list (cadr (assoc identity mh-identity-list
))))
170 (let* ((field (caar pers-list
))
171 (value (cdar pers-list
))
172 (handler (mh-identity-field-handler field
)))
173 (funcall handler field
'add value
))
174 (setq pers-list
(cdr pers-list
))))))
175 ;; Remember what is in use in this buffer
176 (if (equal "None" identity
)
177 (setq mh-identity-local nil
)
178 (setq mh-identity-local identity
))))
181 (defun mh-identity-handler-gpg-identity (field action
&optional value
)
182 "Process header FIELD \":pgg-default-user-id\".
183 The ACTION is one of 'remove or 'add. If 'add, the VALUE is added.
184 The buffer-local variable `mh-identity-pgg-default-user-id' is set to
185 VALUE when action 'add is selected."
187 ((or (equal action
'remove
)
190 (setq mh-identity-pgg-default-user-id nil
))
192 (setq mh-identity-pgg-default-user-id value
))))
195 (defun mh-identity-handler-signature (field action
&optional value
)
196 "Process header FIELD \":signature\".
197 The ACTION is one of 'remove or 'add. If 'add, the VALUE is
200 ((equal action
'remove
)
201 (when (and (markerp mh-identity-signature-start
)
202 (markerp mh-identity-signature-end
))
203 (delete-region mh-identity-signature-start
204 mh-identity-signature-end
)))
206 ;; Insert "signature". Nil value means to use `mh-signature-file-name'.
207 (when (not (mh-signature-separator-p)) ;...unless already present
208 (goto-char (point-max))
210 (narrow-to-region (point) (point))
212 (mh-insert-signature)
213 (mh-insert-signature value
))
214 (set (make-local-variable 'mh-identity-signature-start
)
216 (set-marker-insertion-type mh-identity-signature-start t
)
217 (set (make-local-variable 'mh-identity-signature-end
)
218 (point-max-marker)))))))
220 (defvar mh-identity-attribution-verb-start nil
221 "Marker for the beginning of the attribution verb.")
222 (defvar mh-identity-attribution-verb-end nil
223 "Marker for the end of the attribution verb.")
226 (defun mh-identity-handler-attribution-verb (field action
&optional value
)
227 "Process header FIELD \":attribution-verb\".
228 The ACTION is one of 'remove or 'add. If 'add, the VALUE is
230 (when (and (markerp mh-identity-attribution-verb-start
)
231 (markerp mh-identity-attribution-verb-end
))
232 (delete-region mh-identity-attribution-verb-start
233 mh-identity-attribution-verb-end
)
234 (goto-char mh-identity-attribution-verb-start
)
236 ((equal action
'remove
) ; Replace with default
237 (mh-identity-insert-attribution-verb nil
))
238 (t ; Insert attribution verb.
239 (mh-identity-insert-attribution-verb value
)))))
242 (defun mh-identity-insert-attribution-verb (value)
243 "Insert VALUE as attribution verb, setting up delimiting markers.
244 If VALUE is nil, use `mh-extract-from-attribution-verb'."
246 (narrow-to-region (point) (point))
248 (insert mh-extract-from-attribution-verb
)
250 (set (make-local-variable 'mh-identity-attribution-verb-start
)
252 (set-marker-insertion-type mh-identity-attribution-verb-start t
)
253 (set (make-local-variable 'mh-identity-attribution-verb-end
)
254 (point-max-marker))))
256 (defun mh-identity-handler-default (field action top
&optional value
)
257 "Process header FIELD.
258 The ACTION is one of 'remove or 'add. If TOP is non-nil, add the
259 field and its VALUE at the top of the header, else add it at the
260 bottom of the header. If action is 'add, the VALUE is added."
261 (let ((field-colon (if (string-match "^.*:$" field
)
263 (concat field
":"))))
265 ((equal action
'remove
)
266 (mh-header-field-delete field-colon nil
))
269 ;; No value, remove field
272 (mh-header-field-delete field-colon nil
))
273 ;; Existing field, replace
274 ((mh-header-field-delete field-colon t
)
276 ;; Other field, add at end or top
278 (goto-char (point-min))
280 (mh-goto-header-end 0))
281 (insert field-colon
" " value
"\n")))))))
284 (defun mh-identity-handler-top (field action
&optional value
)
285 "Process header FIELD.
286 The ACTION is one of 'remove or 'add. If 'add, the VALUE is
287 added. If the field wasn't present, it is added to the top of the
289 (mh-identity-handler-default field action t value
))
292 (defun mh-identity-handler-bottom (field action
&optional value
)
293 "Process header FIELD.
294 The ACTION is one of 'remove or 'add. If 'add, the VALUE is
295 added. If the field wasn't present, it is added to the bottom of
297 (mh-identity-handler-default field action nil value
))
299 (provide 'mh-identity
)
302 ;; indent-tabs-mode: nil
303 ;; sentence-end-double-space: nil
306 ;;; mh-identity.el ends here