2021-04-19 12:21:01 +02:00
|
|
|
;;; url-mailto.el --- Mail Uniform Resource Locator retrieval code -*- lexical-binding: t; -*-
|
2004-04-12 04:05:07 +00:00
|
|
|
|
2025-01-01 07:39:17 +00:00
|
|
|
;; Copyright (C) 1996-2025 Free Software Foundation, Inc.
|
2004-04-12 04:05:07 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;; Keywords: comm, data, processes
|
|
|
|
|
2004-04-12 04:05:07 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
2008-05-06 04:29:13 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2004-04-12 04:05:07 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
2004-04-12 04:05:07 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2008-05-06 04:29:13 +00:00
|
|
|
|
2004-04-12 04:05:07 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-04-12 04:05:07 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(require 'url-vars)
|
|
|
|
(require 'url-parse)
|
|
|
|
(require 'url-util)
|
|
|
|
|
|
|
|
;;;###autoload
|
2024-02-04 10:28:40 +01:00
|
|
|
(defalias 'url-mail #'message-mail)
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(defun url-mail-goto-field (field)
|
|
|
|
(if (not field)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(let ((dest nil)
|
|
|
|
(lim nil)
|
|
|
|
(case-fold-search t))
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward (regexp-quote mail-header-separator) nil t)
|
|
|
|
(setq lim (match-beginning 0)))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward (concat "^" (regexp-quote field) ":") lim t)
|
|
|
|
(setq dest (match-beginning 0))))
|
|
|
|
(if dest
|
|
|
|
(progn
|
|
|
|
(goto-char dest)
|
|
|
|
(end-of-line))
|
|
|
|
(goto-char lim)
|
|
|
|
(insert (capitalize field) ": ")
|
|
|
|
(save-excursion
|
|
|
|
(insert "\n"))))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun url-mailto (url)
|
|
|
|
"Handle the mailto: URL syntax."
|
|
|
|
(if (url-user url)
|
2004-11-11 18:03:41 +00:00
|
|
|
;; malformed mailto URL (mailto://wmperry@gnu.org) instead of
|
2004-04-04 01:21:46 +00:00
|
|
|
;; mailto:wmperry@gnu.org
|
2007-08-31 16:40:05 +00:00
|
|
|
(setf (url-filename url) (concat (url-user url) "@" (url-filename url))))
|
2004-04-04 01:21:46 +00:00
|
|
|
(setq url (url-filename url))
|
2021-01-26 18:17:00 -05:00
|
|
|
(let (to args source-url subject headers-start) ;; func
|
2004-04-04 01:21:46 +00:00
|
|
|
(if (string-match (regexp-quote "?") url)
|
|
|
|
(setq headers-start (match-end 0)
|
|
|
|
to (url-unhex-string (substring url 0 (match-beginning 0)))
|
|
|
|
args (url-parse-query-string
|
2005-09-01 16:38:39 +00:00
|
|
|
(substring url headers-start nil) t t))
|
2004-04-04 01:21:46 +00:00
|
|
|
(setq to (url-unhex-string url)))
|
|
|
|
(setq source-url (url-view-url t))
|
|
|
|
(if (and url-request-data (not (assoc "subject" args)))
|
2021-01-26 18:17:00 -05:00
|
|
|
(push (list "subject"
|
2004-04-04 01:21:46 +00:00
|
|
|
(concat "Automatic submission from "
|
|
|
|
url-package-name "/"
|
2021-01-26 18:17:00 -05:00
|
|
|
url-package-version))
|
|
|
|
args))
|
2004-04-04 01:21:46 +00:00
|
|
|
(if (and source-url (not (assoc "x-url-from" args)))
|
|
|
|
(setq args (cons (list "x-url-from" source-url) args)))
|
|
|
|
|
2005-09-01 16:38:39 +00:00
|
|
|
(let ((tolist (assoc "to" args)))
|
|
|
|
(if tolist
|
|
|
|
(if (not (string= to ""))
|
|
|
|
(setcdr tolist
|
2005-09-02 12:30:51 +00:00
|
|
|
(list (concat to ", " (cadr tolist)))))
|
2005-09-01 16:38:39 +00:00
|
|
|
(setq args (cons (list "to" to) args))))
|
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(setq subject (cdr-safe (assoc "subject" args)))
|
2005-09-17 04:58:28 +00:00
|
|
|
(if (eq url-mail-command 'compose-mail)
|
|
|
|
(compose-mail nil nil nil 'new)
|
|
|
|
(if (eq url-mail-command 'mail)
|
|
|
|
(mail 'new)
|
|
|
|
(funcall url-mail-command)))
|
2004-04-04 01:21:46 +00:00
|
|
|
(while args
|
|
|
|
(if (string= (caar args) "body")
|
|
|
|
(progn
|
2007-05-29 15:30:06 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(or (search-forward (concat "\n" mail-header-separator "\n") nil t)
|
|
|
|
(goto-char (point-max)))
|
2017-09-13 15:52:52 -07:00
|
|
|
(insert (mapconcat
|
2021-04-01 22:04:21 +02:00
|
|
|
(lambda (string)
|
Use string-replace instead of replace-regexp-in-string
`string-replace` is easier to understand, less error-prone, much
faster, and results in shorter Lisp and byte code. Use it where
applicable and obviously safe (erring on the conservative side).
* admin/authors.el (authors-scan-change-log):
* lisp/autoinsert.el (auto-insert-alist):
* lisp/calc/calc-prog.el (calc-edit-macro-combine-alg-ent)
(calc-edit-macro-combine-ext-command)
(calc-edit-macro-combine-var-name):
* lisp/calc/calc-units.el (math-make-unit-string):
* lisp/calendar/cal-html.el (cal-html-comment):
* lisp/calendar/cal-tex.el (cal-tex-comment):
* lisp/calendar/icalendar.el (icalendar--convert-string-for-export)
(icalendar--convert-string-for-import):
* lisp/calendar/iso8601.el (iso8601--concat-regexps)
(iso8601--full-time-match, iso8601--combined-match):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/todo-mode.el (todo-filter-items-filename):
* lisp/cedet/cedet-files.el (cedet-directory-name-to-file-name)
(cedet-file-name-to-directory-name):
* lisp/comint.el (comint-watch-for-password-prompt):
* lisp/dired-aux.el (dired-do-chmod):
* lisp/dired-x.el (dired-man):
* lisp/dired.el (dired-insert-directory, dired-goto-file-1):
* lisp/emacs-lisp/comp.el (comp-c-func-name):
* lisp/emacs-lisp/re-builder.el (reb-copy):
* lisp/erc/erc-dcc.el (erc-dcc-unquote-filename):
* lisp/erc/erc.el (erc-quit-reason-zippy, erc-part-reason-zippy)
(erc-update-mode-line-buffer, erc-message-english-PART):
* lisp/files.el (make-backup-file-name-1, files--transform-file-name)
(read-file-modes):
* lisp/fringe.el (fringe-mode):
* lisp/gnus/gnus-art.el (gnus-button-handle-info-url):
* lisp/gnus/gnus-group.el (gnus-group-completing-read):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-ical):
* lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy):
* lisp/gnus/gnus-search.el (gnus-search-query-parse-date)
(gnus-search-transform-expression, gnus-search-run-search):
* lisp/gnus/gnus-start.el (gnus-dribble-enter):
* lisp/gnus/gnus-sum.el (gnus-summary-refer-article):
* lisp/gnus/gnus-util.el (gnus-mode-string-quote):
* lisp/gnus/message.el (message-put-addresses-in-ecomplete)
(message-parse-mailto-url, message-mailto-1):
* lisp/gnus/mml-sec.el (mml-secure-epg-sign):
* lisp/gnus/mml-smime.el (mml-smime-epg-verify):
* lisp/gnus/mml2015.el (mml2015-epg-verify):
* lisp/gnus/nnmaildir.el (nnmaildir--system-name)
(nnmaildir-request-list, nnmaildir-retrieve-groups)
(nnmaildir-request-group, nnmaildir-retrieve-headers):
* lisp/gnus/nnrss.el (nnrss-node-text):
* lisp/gnus/spam-report.el (spam-report-gmane-internal)
(spam-report-user-mail-address):
* lisp/ibuffer.el (name):
* lisp/image-dired.el (image-dired-pngnq-thumb)
(image-dired-pngcrush-thumb, image-dired-optipng-thumb)
(image-dired-create-thumb-1):
* lisp/info.el (Info-set-mode-line):
* lisp/international/mule-cmds.el (describe-language-environment):
* lisp/mail/rfc2231.el (rfc2231-parse-string):
* lisp/mail/rfc2368.el (rfc2368-parse-mailto-url):
* lisp/mail/rmail.el (rmail-insert-inbox-text)
(rmail-simplified-subject-regexp):
* lisp/mail/rmailout.el (rmail-output-body-to-file):
* lisp/mail/undigest.el (rmail-digest-rfc1153):
* lisp/man.el (Man-default-man-entry):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc--debug):
* lisp/net/browse-url.el (browse-url-mail):
* lisp/net/eww.el (eww-update-header-line-format):
* lisp/net/newst-backend.el (newsticker-save-item):
* lisp/net/rcirc.el (rcirc-sentinel):
* lisp/net/soap-client.el (soap-decode-date-time):
* lisp/nxml/rng-cmpct.el (rng-c-literal-2-re):
* lisp/nxml/xmltok.el (let*):
* lisp/obsolete/nnir.el (nnir-run-swish-e, nnir-run-hyrex)
(nnir-run-find-grep):
* lisp/play/dunnet.el (dun-doassign):
* lisp/play/handwrite.el (handwrite):
* lisp/proced.el (proced-format-args):
* lisp/profiler.el (profiler-report-header-line-format):
* lisp/progmodes/gdb-mi.el (gdb-mi-quote):
* lisp/progmodes/make-mode.el (makefile-bsdmake-rule-action-regex)
(makefile-make-font-lock-keywords):
* lisp/progmodes/prolog.el (prolog-guess-fill-prefix):
* lisp/progmodes/ruby-mode.el (ruby-toggle-string-quotes):
* lisp/progmodes/sql.el (sql-remove-tabs-filter, sql-str-literal):
* lisp/progmodes/which-func.el (which-func-current):
* lisp/replace.el (query-replace-read-from)
(occur-engine, replace-quote):
* lisp/select.el (xselect--encode-string):
* lisp/ses.el (ses-export-tab):
* lisp/subr.el (shell-quote-argument):
* lisp/term/pc-win.el (msdos-show-help):
* lisp/term/w32-win.el (w32--set-selection):
* lisp/term/xterm.el (gui-backend-set-selection):
* lisp/textmodes/picture.el (picture-tab-search):
* lisp/thumbs.el (thumbs-call-setroot-command):
* lisp/tooltip.el (tooltip-show-help-non-mode):
* lisp/transient.el (transient-format-key):
* lisp/url/url-mailto.el (url-mailto):
* lisp/vc/log-edit.el (log-edit-changelog-ours-p):
* lisp/vc/vc-bzr.el (vc-bzr-status):
* lisp/vc/vc-hg.el (vc-hg--glob-to-pcre):
* lisp/vc/vc-svn.el (vc-svn-after-dir-status):
* lisp/xdg.el (xdg-desktop-strings):
* test/lisp/electric-tests.el (defun):
* test/lisp/term-tests.el (term-simple-lines):
* test/lisp/time-stamp-tests.el (formatz-mod-del-colons):
* test/lisp/wdired-tests.el (wdired-test-bug32173-01)
(wdired-test-unfinished-edit-01):
* test/src/json-tests.el (json-parse-with-custom-null-and-false-objects):
Use `string-replace` instead of `replace-regexp-in-string`.
2021-08-08 18:58:46 +02:00
|
|
|
(string-replace "\r\n" "\n" string))
|
2005-09-01 16:38:39 +00:00
|
|
|
(cdar args) "\n")))
|
2004-04-04 01:21:46 +00:00
|
|
|
(url-mail-goto-field (caar args))
|
2021-01-26 18:17:00 -05:00
|
|
|
;; (setq func (intern-soft (concat "mail-" (caar args))))
|
2004-04-04 01:21:46 +00:00
|
|
|
(insert (mapconcat 'identity (cdar args) ", ")))
|
|
|
|
(setq args (cdr args)))
|
|
|
|
(if (not url-request-data)
|
|
|
|
(progn
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(if subject
|
|
|
|
(url-mail-goto-field nil)
|
|
|
|
(url-mail-goto-field "subject")))
|
|
|
|
(if url-request-extra-headers
|
2023-04-10 15:20:27 +02:00
|
|
|
(mapc
|
2004-04-04 01:21:46 +00:00
|
|
|
(lambda (x)
|
|
|
|
(url-mail-goto-field (car x))
|
|
|
|
(insert (cdr x)))
|
2023-04-10 15:20:27 +02:00
|
|
|
url-request-extra-headers))
|
2004-04-04 01:21:46 +00:00
|
|
|
(goto-char (point-max))
|
|
|
|
(insert url-request-data)
|
|
|
|
;; It seems Microsoft-ish to send without warning.
|
2024-02-04 10:28:40 +01:00
|
|
|
;; FIXME: presumably this should depend on a privacy setting.
|
|
|
|
(if (y-or-n-p "Send this auto-generated mail?")
|
2005-09-15 03:30:39 +00:00
|
|
|
(let ((buffer (current-buffer)))
|
|
|
|
(cond ((eq url-mail-command 'compose-mail)
|
|
|
|
(funcall (get mail-user-agent 'sendfunc) nil))
|
|
|
|
;; otherwise, we can't be sure
|
|
|
|
((fboundp 'message-send-and-exit)
|
|
|
|
(message-send-and-exit))
|
|
|
|
(t (mail-send-and-exit nil)))
|
|
|
|
(kill-buffer buffer))))
|
2004-04-04 01:21:46 +00:00
|
|
|
nil))
|
|
|
|
|
|
|
|
(provide 'url-mailto)
|
2004-04-04 04:44:10 +00:00
|
|
|
|
2004-04-12 04:05:07 +00:00
|
|
|
;;; url-mailto.el ends here
|