unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob fdf402443dd921dd379af9c303208a96a1c6072f 2872 bytes (raw)
name: notmuch-emacs-mua 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
 
#!/usr/bin/env bash
#
# notmuch-emacs-mua - start composing a mail on the command line
#
# Copyright © 2014 Jani Nikula
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see http://www.gnu.org/licenses/ .
#
# Authors: Jani Nikula <jani@nikula.org>
#

set -eu

escape ()
{
    echo "${1//\"/\\\"}"
}

PRINT_ONLY=
CLIENT_TYPE="-c"

# The crux of it all: construct an elisp progn and eval it.
ELISP="(prog1 'done (require 'notmuch) (notmuch-mua-new-mail)"

while getopts :s:c:b:i:h opt; do
    # Handle errors and long options.
    case "${opt}" in
	:)
	    echo "$0: short option -${OPTARG} requires an argument." >&2
	    exit 1
	    ;;
	\?)
	    opt=$1
	    if [ "${OPTARG}" != "-" ]; then
		echo "$0: unknown short option -${OPTARG}." >&2
		exit 1
	    fi

	    case "${opt}" in
		# Long options with arguments.
		--subject=*|--to=*|--cc=*|--bcc=*|--body=*)
		    OPTARG=${opt#--*=}
		    opt=${opt%%=*}
		    ;;
		# Long options without arguments.
		--help|--print|--no-window-system)
		    ;;
		*)
		    echo "$0: unknown long option ${opt}, or argument mismatch." >&2
		    exit 1
		    ;;
	    esac
	    # getopts does not do this for what it considers errors.
	    OPTIND=$((OPTIND + 1))
	    ;;
    esac

    OPTARG="$(escape "${OPTARG}")"

    case "${opt}" in
	--help|h)
	    exec man notmuch-emacs-mua
	    ;;
	--subject|s)
	    ELISP="${ELISP} (message-goto-subject) (insert \"${OPTARG}\")"
	    ;;
	--to)
	    ELISP="${ELISP} (message-goto-to) (insert \"${OPTARG}, \")"
	    ;;
	--cc|c)
	    ELISP="${ELISP} (message-goto-cc) (insert \"${OPTARG}, \")"
	    ;;
	--bcc|b)
	    ELISP="${ELISP} (message-goto-bcc) (insert \"${OPTARG}, \")"
	    ;;
	--body|i)
	    ELISP="${ELISP} (message-goto-body) (cd \"${PWD}\") (insert-file \"${OPTARG}\")"
	    ;;
	--print)
	    PRINT_ONLY=1
	    ;;
	--no-window-system)
	    CLIENT_TYPE="-t"
	    ;;
	*)
	    # We should never end up here.
	    echo "$0: internal error (option ${opt})." >&2
	    exit 1
	    ;;
    esac

    shift $((OPTIND - 1))
    OPTIND=1
done

# Positional parameters.
for arg; do
    arg="$(escape "${arg}")"
    ELISP="${ELISP} (message-goto-to) (insert \"${arg}, \")"
done

# End progn.
ELISP="${ELISP})"

if [ -n "$PRINT_ONLY" ]; then
    echo ${ELISP}
    exit 0
fi

# Evaluate the progn.
exec emacsclient ${CLIENT_TYPE} -a '' --eval "${ELISP}"

debug log:

solving fdf4024 ...
found fdf4024 in https://yhetil.org/notmuch/1421598115-4889-1-git-send-email-david@tethera.net/

applying [1/1] https://yhetil.org/notmuch/1421598115-4889-1-git-send-email-david@tethera.net/
diff --git a/notmuch-emacs-mua b/notmuch-emacs-mua
new file mode 100755
index 0000000..fdf4024

Checking patch notmuch-emacs-mua...
Applied patch notmuch-emacs-mua cleanly.

index at:
100755 fdf402443dd921dd379af9c303208a96a1c6072f	notmuch-emacs-mua

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).