]> git.notmuchmail.org Git - notmuch/blob - notmuch-emacs-mua
NEWS: emacs: notmuch-{cli,emacs}-version usage
[notmuch] / notmuch-emacs-mua
1 #!/usr/bin/env bash
2 #
3 # notmuch-emacs-mua - start composing a mail on the command line
4 #
5 # Copyright © 2014 Jani Nikula
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see http://www.gnu.org/licenses/ .
19 #
20 # Authors: Jani Nikula <jani@nikula.org>
21 #
22
23 set -eu
24
25 # escape: "expand" '\' as '\\' and '"' as '\"'
26 # calling convention: escape -v var "$arg" (like in bash printf).
27 escape ()
28 {
29     local __escape_arg__=${3//\\/\\\\}
30     printf -v $2 '%s' "${__escape_arg__//\"/\\\"}"
31 }
32
33 EMACS=${EMACS-emacs}
34 EMACSCLIENT=${EMACSCLIENT-emacsclient}
35
36 PRINT_ONLY=
37 USE_EMACSCLIENT=
38 CLIENT_TYPE="-c"
39
40 # The crux of it all: construct an elisp progn and eval it.
41 ELISP="(prog1 'done (require 'notmuch) (notmuch-mua-new-mail)"
42 ELISP="${ELISP} (setq message-exit-actions (list #'save-buffers-kill-terminal))"
43
44 # Short options compatible with mutt(1).
45 while getopts :s:c:b:i:h opt; do
46     # Handle errors and long options.
47     case "${opt}" in
48         :)
49             echo "$0: short option -${OPTARG} requires an argument." >&2
50             exit 1
51             ;;
52         \?)
53             opt=$1
54             if [ "${OPTARG}" != "-" ]; then
55                 echo "$0: unknown short option -${OPTARG}." >&2
56                 exit 1
57             fi
58
59             case "${opt}" in
60                 # Long options with arguments.
61                 --subject=*|--to=*|--cc=*|--bcc=*|--body=*)
62                     OPTARG=${opt#--*=}
63                     opt=${opt%%=*}
64                     ;;
65                 # Long options without arguments.
66                 --help|--print|--no-window-system|--client)
67                     ;;
68                 *)
69                     echo "$0: unknown long option ${opt}, or argument mismatch." >&2
70                     exit 1
71                     ;;
72             esac
73             # getopts does not do this for what it considers errors.
74             OPTIND=$((OPTIND + 1))
75             ;;
76     esac
77
78     escape -v OPTARG "${OPTARG-none}"
79
80     case "${opt}" in
81         --help|h)
82             exec man notmuch-emacs-mua
83             ;;
84         --client)
85             USE_EMACSCLIENT="yes"
86             ;;
87         --subject|s)
88             ELISP="${ELISP} (message-goto-subject) (insert \"${OPTARG}\")"
89             ;;
90         --to)
91             ELISP="${ELISP} (message-goto-to) (insert \"${OPTARG}, \")"
92             ;;
93         --cc|c)
94             ELISP="${ELISP} (message-goto-cc) (insert \"${OPTARG}, \")"
95             ;;
96         --bcc|b)
97             ELISP="${ELISP} (message-goto-bcc) (insert \"${OPTARG}, \")"
98             ;;
99         --body|i)
100             ELISP="${ELISP} (message-goto-body) (cd \"${PWD}\") (insert-file \"${OPTARG}\")"
101             ;;
102         --print)
103             PRINT_ONLY=1
104             ;;
105         --no-window-system)
106             CLIENT_TYPE="-t"
107             ;;
108         *)
109             # We should never end up here.
110             echo "$0: internal error (option ${opt})." >&2
111             exit 1
112             ;;
113     esac
114
115     shift $((OPTIND - 1))
116     OPTIND=1
117 done
118
119 # Positional parameters.
120 for arg; do
121     escape -v arg "${arg}"
122     ELISP="${ELISP} (message-goto-to) (insert \"${arg}, \")"
123 done
124
125 # End progn.
126 ELISP="${ELISP})"
127
128 if [ -n "$PRINT_ONLY" ]; then
129     echo ${ELISP}
130     exit 0
131 fi
132
133 if [ -n "$USE_EMACSCLIENT" ]; then
134     # Evaluate the progn.
135     exec ${EMACSCLIENT} ${CLIENT_TYPE} -a '' --eval "${ELISP}"
136 else
137     exec ${EMACS} --eval "${ELISP}"
138 fi