[PATCH] cli: add a tool for starting new message in the emacs ui
authorDavid Bremner <david@tethera.net>
Sun, 22 Feb 2015 20:34:44 +0000 (21:34 +0100)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:06 +0000 (14:48 -0700)
4f/1e6dfbbe949c3502b256753715caeffa34823b [new file with mode: 0644]

diff --git a/4f/1e6dfbbe949c3502b256753715caeffa34823b b/4f/1e6dfbbe949c3502b256753715caeffa34823b
new file mode 100644 (file)
index 0000000..1a61640
--- /dev/null
@@ -0,0 +1,293 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 57963431FD5\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Feb 2015 12:45:59 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 2.438\r
+X-Spam-Level: **\r
+X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
+       tests=[DNS_FROM_AHBL_RHSBL=2.438] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id KI4agDOOaDXw for <notmuch@notmuchmail.org>;\r
+       Sun, 22 Feb 2015 12:45:56 -0800 (PST)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+       [87.98.215.224])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 0D7D4431FD4\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Feb 2015 12:45:56 -0800 (PST)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+       4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+       id 1YPdEy-0005zp-Ji; Sun, 22 Feb 2015 20:35:00 +0000\r
+Received: (nullmailer pid 611 invoked by uid 1000); Sun, 22 Feb 2015 20:34:47\r
+       -0000\r
+From: David Bremner <david@tethera.net>\r
+To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org\r
+Subject: [PATCH] cli: add a tool for starting new message in the emacs ui\r
+Date: Sun, 22 Feb 2015 21:34:44 +0100\r
+Message-Id: <1424637284-567-1-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1421598115-4889-1-git-send-email-david@tethera.net>\r
+References: <1421598115-4889-1-git-send-email-david@tethera.net>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=UTF-8\r
+Content-Transfer-Encoding: 8bit\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 22 Feb 2015 20:45:59 -0000\r
+\r
+From: Jani Nikula <jani@nikula.org>\r
+\r
+Add a tool to start composing an email in the Notmuch Emacs UI with\r
+the specified subject, recipients, and message body.\r
+---\r
+ doc/conf.py                    |   4 ++\r
+ doc/man1/notmuch-emacs-mua.rst |  63 +++++++++++++++++++\r
+ notmuch-emacs-mua              | 136 +++++++++++++++++++++++++++++++++++++++++\r
+ 3 files changed, 203 insertions(+)\r
+ create mode 100644 doc/man1/notmuch-emacs-mua.rst\r
+ create mode 100755 notmuch-emacs-mua\r
+\r
+diff --git a/doc/conf.py b/doc/conf.py\r
+index fb49f6e..8fbc854 100644\r
+--- a/doc/conf.py\r
++++ b/doc/conf.py\r
+@@ -78,6 +78,10 @@ man_pages = [\r
+         u'creates a plain-text dump of the tags of each message',\r
+         [u'Carl Worth and many others'], 1),\r
\r
++('man1/notmuch-emacs-mua','notmuch-emacs-mua',\r
++        u'send mail with notmuch and emacs',\r
++        [u'Carl Worth and many others'], 1),\r
++\r
+ ('man5/notmuch-hooks','notmuch-hooks',\r
+         u'hooks for notmuch',\r
+         [u'Carl Worth and many others'], 5),\r
+diff --git a/doc/man1/notmuch-emacs-mua.rst b/doc/man1/notmuch-emacs-mua.rst\r
+new file mode 100644\r
+index 0000000..eb47098\r
+--- /dev/null\r
++++ b/doc/man1/notmuch-emacs-mua.rst\r
+@@ -0,0 +1,63 @@\r
++=================\r
++notmuch-emacs-mua\r
++=================\r
++\r
++SYNOPSIS\r
++========\r
++\r
++**notmuch-emacs-mua** [options ...] [<to-address> ...]\r
++\r
++DESCRIPTION\r
++===========\r
++\r
++Start composing an email in the Notmuch Emacs UI with the specified\r
++subject, recipients, and message body.\r
++\r
++Supported options for **notmuch-emacs-mua** include\r
++\r
++    ``-h, --help``\r
++        Display help.\r
++\r
++    ``-C, --client``\r
++        Use emacsclient, rather than emacs. This will start\r
++        an emacs daemon process if necessary.\r
++\r
++    ``-s, --subject=``\ <subject>\r
++        Specify the subject of the message.\r
++\r
++    ``--to=``\ <to-address>\r
++        Specify a recipient (To).\r
++\r
++    ``-c, --cc=``\ <cc-address>\r
++        Specify a carbon-copy (Cc) recipient.\r
++\r
++    ``-b, --bcc=``\ <bcc-address>\r
++        Specify a blind-carbon-copy (Bcc) recipient.\r
++\r
++    ``-i, --body=``\ <file>\r
++        Specify a file to include into the body of the message.\r
++\r
++    ``--no-window-system``\r
++        Even if a window system is available, use the current terminal\r
++\r
++    ``--print``\r
++        Output the resulting elisp to stdout instead of evaluating it.\r
++\r
++The supported positional parameters and short options are a compatible\r
++subset of the **mutt** MUA command-line options.\r
++\r
++Options may be specified multiple times.\r
++\r
++ENVIRONMENT VARIABLES\r
++=====================\r
++\r
++``EMACS``\r
++Name of emacs command to invoke\r
++\r
++``EMACSCLIENT``\r
++Name of emacsclient comment to invoke\r
++\r
++SEE ALSO\r
++========\r
++\r
++**notmuch(1)**, **emacsclient(1)**, **mutt(1)**\r
+diff --git a/notmuch-emacs-mua b/notmuch-emacs-mua\r
+new file mode 100755\r
+index 0000000..b8cbc82\r
+--- /dev/null\r
++++ b/notmuch-emacs-mua\r
+@@ -0,0 +1,136 @@\r
++#!/usr/bin/env bash\r
++#\r
++# notmuch-emacs-mua - start composing a mail on the command line\r
++#\r
++# Copyright © 2014 Jani Nikula\r
++#\r
++# This program is free software: you can redistribute it and/or modify\r
++# it under the terms of the GNU General Public License as published by\r
++# the Free Software Foundation, either version 3 of the License, or\r
++# (at your option) any later version.\r
++#\r
++# This program is distributed in the hope that it will be useful,\r
++# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
++# GNU General Public License for more details.\r
++#\r
++# You should have received a copy of the GNU General Public License\r
++# along with this program.  If not, see http://www.gnu.org/licenses/ .\r
++#\r
++# Authors: Jani Nikula <jani@nikula.org>\r
++#\r
++\r
++set -eu\r
++\r
++escape ()\r
++{\r
++    echo "${1//\"/\\\"}"\r
++}\r
++\r
++EMACS=${EMACS-emacs}\r
++EMACSCLIENT=${EMACSCLIENT-emacsclient}\r
++\r
++PRINT_ONLY=\r
++USE_EMACSCLIENT=\r
++CLIENT_TYPE="-c"\r
++\r
++# The crux of it all: construct an elisp progn and eval it.\r
++ELISP="(prog1 'done (require 'notmuch) (notmuch-mua-new-mail)"\r
++ELISP="${ELISP} (setq message-exit-actions (list #'save-buffers-kill-terminal))"\r
++\r
++while getopts :s:c:b:i:hC opt; do\r
++    # Handle errors and long options.\r
++    case "${opt}" in\r
++      :)\r
++          echo "$0: short option -${OPTARG} requires an argument." >&2\r
++          exit 1\r
++          ;;\r
++      \?)\r
++          opt=$1\r
++          if [ "${OPTARG}" != "-" ]; then\r
++              echo "$0: unknown short option -${OPTARG}." >&2\r
++              exit 1\r
++          fi\r
++\r
++          case "${opt}" in\r
++              # Long options with arguments.\r
++              --subject=*|--to=*|--cc=*|--bcc=*|--body=*)\r
++                  OPTARG=${opt#--*=}\r
++                  opt=${opt%%=*}\r
++                  ;;\r
++              # Long options without arguments.\r
++              --help|--print|--no-window-system|--client)\r
++                  ;;\r
++              *)\r
++                  echo "$0: unknown long option ${opt}, or argument mismatch." >&2\r
++                  exit 1\r
++                  ;;\r
++          esac\r
++          # getopts does not do this for what it considers errors.\r
++          OPTIND=$((OPTIND + 1))\r
++          ;;\r
++    esac\r
++\r
++\r
++    OPTARG="${OPTARG-none}"\r
++    OPTARG="$(escape "${OPTARG}")"\r
++\r
++    case "${opt}" in\r
++      --help|h)\r
++          exec man notmuch-emacs-mua\r
++          ;;\r
++      --client|C)\r
++          USE_EMACSCLIENT="yes"\r
++          ;;\r
++      --subject|s)\r
++          ELISP="${ELISP} (message-goto-subject) (insert \"${OPTARG}\")"\r
++          ;;\r
++      --to)\r
++          ELISP="${ELISP} (message-goto-to) (insert \"${OPTARG}, \")"\r
++          ;;\r
++      --cc|c)\r
++          ELISP="${ELISP} (message-goto-cc) (insert \"${OPTARG}, \")"\r
++          ;;\r
++      --bcc|b)\r
++          ELISP="${ELISP} (message-goto-bcc) (insert \"${OPTARG}, \")"\r
++          ;;\r
++      --body|i)\r
++          ELISP="${ELISP} (message-goto-body) (cd \"${PWD}\") (insert-file \"${OPTARG}\")"\r
++          ;;\r
++      --print)\r
++          PRINT_ONLY=1\r
++          ;;\r
++      --no-window-system)\r
++          CLIENT_TYPE="-t"\r
++          ;;\r
++      *)\r
++          # We should never end up here.\r
++          echo "$0: internal error (option ${opt})." >&2\r
++          exit 1\r
++          ;;\r
++    esac\r
++\r
++    shift $((OPTIND - 1))\r
++    OPTIND=1\r
++done\r
++\r
++# Positional parameters.\r
++for arg; do\r
++    arg="$(escape "${arg}")"\r
++    ELISP="${ELISP} (message-goto-to) (insert \"${arg}, \")"\r
++done\r
++\r
++# End progn.\r
++ELISP="${ELISP})"\r
++\r
++if [ -n "$PRINT_ONLY" ]; then\r
++    echo ${ELISP}\r
++    exit 0\r
++fi\r
++\r
++if [ -n "$USE_EMACSCLIENT" ]; then\r
++    # Evaluate the progn.\r
++    exec ${EMACSCLIENT} ${CLIENT_TYPE} -a '' --eval "${ELISP}"\r
++else\r
++    exec ${EMACS} --eval "${ELISP}"\r
++fi\r
+-- \r
+2.1.4\r
+\r