From: Peter Oliver Date: Wed, 9 Jun 2021 11:44:32 +0000 (+0100) Subject: Provide an emacsclient-mail.desktop X-Git-Tag: emacs-28.0.90~1977 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b1b05c828d67930bb3b897fe98e1992db42cf23c;p=emacs.git Provide an emacsclient-mail.desktop We provide both an emacs.desktop and an emacsclient.desktop, so for consistency let’s do the same with mail. * etc/emacs-mail.desktop: Extract suggestions for using emacsclient from comments to create emacsclient-mail.desktop. * etc/emacsclient-mail.desktop: Send mail using an existing Emacs rather than starting a new one. --- diff --git a/etc/NEWS b/etc/NEWS index 5b04278e3aa..1a3130826a5 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1077,6 +1077,7 @@ Clicking on a 'mailto:' link in other applications will then open Emacs with headers filled out according to the link, e.g. "mailto:larsi@gnus.org?subject=This+is+a+test". If you prefer emacsclient, use "emacsclient -e '(message-mailto "%u")'" +or "emacsclient-mail.desktop". --- *** Change to default value of 'message-draft-headers' user option. diff --git a/etc/emacs-mail.desktop b/etc/emacs-mail.desktop index 251afa100cd..3a96b9ec8c7 100644 --- a/etc/emacs-mail.desktop +++ b/etc/emacs-mail.desktop @@ -1,22 +1,10 @@ [Desktop Entry] Categories=Network;Email; Comment=GNU Emacs is an extensible, customizable text editor - and more +Exec=emacs -f message-mailto %u Icon=emacs Name=Emacs (Mail) MimeType=x-scheme-handler/mailto; NoDisplay=false Terminal=false Type=Application - -Exec=emacs -f message-mailto %u -# # If you prefer to use emacsclient, use this instead: -# Exec=sh -c 'emacsclient --alternate-editor= --display="$DISPLAY" --eval "(message-mailto \"%u\")"' -# Actions=new-window;new-instance; - -# [Desktop Action new-window] -# Name=New Window -# Exec=emacsclient --alternate-editor= --create-frame --eval '(message-mailto "%u")' - -# [Desktop Action new-instance] -# Name=New Instance -# Exec=emacs -f message-mailto %u diff --git a/etc/emacsclient-mail.desktop b/etc/emacsclient-mail.desktop new file mode 100644 index 00000000000..4df79ed3002 --- /dev/null +++ b/etc/emacsclient-mail.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Categories=Network;Email; +Comment=GNU Emacs is an extensible, customizable text editor - and more +Exec=sh -c 'exec emacsclient --alternate-editor= --display="$DISPLAY" --eval "(message-mailto \"%u\")"' +Icon=emacs +Name=Emacs (Mail, Client) +MimeType=x-scheme-handler/mailto; +NoDisplay=false +Terminal=false +Type=Application +Actions=new-window;new-instance; + +[Desktop Action new-window] +Name=New Window +Exec=emacsclient --alternate-editor= --create-frame --eval '(message-mailto "%u")' + +[Desktop Action new-instance] +Name=New Instance +Exec=emacs -f message-mailto %u