summaryrefslogtreecommitdiff
path: root/emacsmail.sh.in
blob: f3b1fcece52ef81d609892bcb7f8525dab64de10 (plain)
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
#!@bash@

# Copyright (C) 2014 Luke Shumaker <lukeshu@sbcglobal.net>
#
# This file is not considered part of GNU Emacs.
#
# 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/>.

m4_include(common.sh.in)

usage() {
	print 'Usage: %q [OPTIONS] MAILTO_URL' "$0"
	print 'Use Emacs to open RFC 2368 "mailto:" URLs'
	echo
	print 'Yes, I know that RFC 2368 is obsoleted by RFC 6068.'
	print 'emacs-devel@gnu.org would *love* a patch to browse-url.el'
	echo
	print 'The following OPTIONS are accepted:'
	emacs_usage
}

main() {
	declare -a flags=()
	declare error=false
	declare mode=normal

	emacs_getopt_init
	declare args
	args="$(emacs_getopt '' '' "$@")" || error=true
	eval set -- "$args"
	while true; do
		case "$1" in
			-V|--version) shift; mode=version;;
			-H|--help) shift; mode=usage;;
			--) shift; break;;
			*)
				if [[ $1 =~ $emacs_getopt_2 ]]; then
					flags+=("$1" "$2"); shift 2
				else
					flags+=("$1"); shift 1
				fi
				;;
 		esac
	done
	urls=("$@")
	if [[ $mode == normal ]]; then
		[[ ${#urls[@]} = 1 ]] || error=true
	fi

	if $error; then
		usage >&2
		return 1
	fi
	case "$mode" in
		usage) usage; return 0;;
		version) version; return 0;;
	esac

	emacsclient "${flags[@]}" --eval \
		"(browse-url-mail $(emacs_quote "${urls[@]}"))"
}

main "$@"