1 ;;; url-mail.el --- Mail Uniform Resource Locator retrieval code
3 ;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
4 ;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
6 ;; Keywords: comm, data, processes
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
29 (eval-when-compile (require 'cl
))
35 (defun url-mail (&rest args
)
37 (if (fboundp 'message-mail
)
38 (apply 'message-mail args
)
39 (or (apply 'mail args
)
40 (error "Mail aborted"))))
42 (defun url-mail-goto-field (field)
44 (goto-char (point-max))
49 (goto-char (point-min))
50 (if (re-search-forward (regexp-quote mail-header-separator
) nil t
)
51 (setq lim
(match-beginning 0)))
52 (goto-char (point-min))
53 (if (re-search-forward (concat "^" (regexp-quote field
) ":") lim t
)
54 (setq dest
(match-beginning 0))))
60 (insert (capitalize field
) ": ")
65 (defun url-mailto (url)
66 "Handle the mailto: URL syntax."
68 ;; malformed mailto URL (mailto://wmperry@gnu.org instead of
69 ;; mailto:wmperry@gnu.org
70 (url-set-filename url
(concat (url-user url
) "@" (url-filename url
))))
71 (setq url
(url-filename url
))
72 (let (to args source-url subject func headers-start
)
73 (if (string-match (regexp-quote "?") url
)
74 (setq headers-start
(match-end 0)
75 to
(url-unhex-string (substring url
0 (match-beginning 0)))
76 args
(url-parse-query-string
77 (substring url headers-start nil
) t
))
78 (setq to
(url-unhex-string url
)))
79 (setq source-url
(url-view-url t
))
80 (if (and url-request-data
(not (assoc "subject" args
)))
81 (setq args
(cons (list "subject"
82 (concat "Automatic submission from "
84 url-package-version
)) args
)))
85 (if (and source-url
(not (assoc "x-url-from" args
)))
86 (setq args
(cons (list "x-url-from" source-url
) args
)))
89 (push to
(cdr (assoc "to" args
)))
90 (setq args
(cons (list "to" to
) args
)))
91 (setq subject
(cdr-safe (assoc "subject" args
)))
92 (if (fboundp url-mail-command
) (funcall url-mail-command
) (mail))
94 (if (string= (caar args
) "body")
96 (goto-char (point-max))
97 (insert (mapconcat 'identity
(cdar args
) "\n")))
98 (url-mail-goto-field (caar args
))
99 (setq func
(intern-soft (concat "mail-" (caar args
))))
100 (insert (mapconcat 'identity
(cdar args
) ", ")))
101 (setq args
(cdr args
)))
102 ;; (url-mail-goto-field "User-Agent")
103 ;; (insert url-package-name "/" url-package-version " URL/" url-version)
104 (if (not url-request-data
)
106 (set-buffer-modified-p nil
)
108 (url-mail-goto-field nil
)
109 (url-mail-goto-field "subject")))
110 (if url-request-extra-headers
113 (url-mail-goto-field (car x
))
115 url-request-extra-headers
""))
116 (goto-char (point-max))
117 (insert url-request-data
)
118 ;; It seems Microsoft-ish to send without warning.
119 ;; Fixme: presumably this should depend on a privacy setting.
120 (if (y-or-n-p "Send this auto-generated mail? ")
121 (cond ((eq url-mail-command
'compose-mail
)
122 (funcall (get mail-user-agent
'sendfunc
) nil
))
123 ;; otherwise, we can't be sure
124 ((fboundp 'message-send-and-exit
)
125 (message-send-and-exit))
126 (t (mail-send-and-exit nil
)))))
129 (provide 'url-mailto
)
131 ;; arch-tag: 7b7ad52e-8760-497b-9444-75fae14e34c5
132 ;;; url-mailto.el ends here