repl.c
5.86 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2002 Free Software Foundation, Inc.
GNU Mailutils 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 2, or (at your option)
any later version.
GNU Mailutils 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 GNU Mailutils; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* MH reply command */
#include <mh.h>
const char *argp_program_version = "reply (" PACKAGE_STRING ")";
static char doc[] = "GNU MH reply";
static char args_doc[] = N_("[+folder] [msg]");
#define ARG_NOEDIT 1
#define ARG_FCC 2
#define ARG_FILTER 3
#define ARG_INPLACE 4
#define ARG_QUERY 5
#define ARG_WHATNOWPROC 6
#define ARG_NOWHATNOWPROC 7
#define ARG_NODRAFTFOLDER 8
/* GNU options */
static struct argp_option options[] = {
{"annotate", 'a', N_("BOOL"), OPTION_ARG_OPTIONAL,
N_("Add Replied: header to the message being replied to")},
{"draftfolder", 'd', N_("FOLDER"), 0,
N_("Invoke the draftfolder facility")},
{"draftmessage" , 'm', N_("MSG"), 0,
N_("Invoke the draftmessage facility")},
{"cc", 'c', "{all|to|cc|me}", 0,
N_("Specify whom to place on the Cc: list of the reply")},
{"nocc", 'n', "{all|to|cc|me}", 0,
N_("Specify whom to remove from the Cc: list of the reply")},
{"folder", 'f', N_("FOLDER"), 0, N_("Specify folder to operate upon")},
{"editor", 'e', N_("PROG"), 0, N_("Set the editor program to use")},
{"noedit", ARG_NOEDIT, 0, 0, N_("Suppress the initial edit")},
{"fcc", ARG_FCC, N_("FOLDER"), 0, N_("Set the folder to receive Fcc's.")},
{"filter", ARG_FILTER, N_("PROG"), 0,
N_("Set the filter program to preprocess the body of the message being replied")},
{"form", 'F', N_("FILE"), 0, N_("Read format from given file")},
{"inplace", ARG_INPLACE, N_("BOOL"), 0, N_("Annotate the message in place")},
{"query", ARG_QUERY, N_("BOOL"), 0, N_("Query for addresses to place in To: and Cc: lists")},
{"width", 'w', N_("NUMBER"), 0, N_("Set output width")},
{"whatnowproc", ARG_WHATNOWPROC, N_("PROG"), 0,
N_("Set the replacement for whatnow program")},
{ N_("\nUse -help switch to obtain the list of traditional MH options. "), 0, 0, OPTION_DOC, "" },
{ 0 }
};
/* Traditional MH options */
struct mh_option mh_option[] = {
{"annotate", 1, 'a', MH_OPT_BOOL },
{"cc", 1, 'c', MH_OPT_ARG, "all/to/cc/me"},
{"nocc", 3, 'n', MH_OPT_ARG, "all/to/cc/me"},
{"form", 4, 'F', MH_OPT_ARG, "formatfile"},
{"width", 1, 'w', MH_OPT_ARG, "number"},
{"draftfolder", 6, 'd', MH_OPT_ARG, "folder"},
{"nodraftfolder", 3, ARG_NODRAFTFOLDER, },
{"editor", 1, 'e', MH_OPT_ARG, "program"},
{"noedit", 3, ARG_NOEDIT, },
{"fcc", 1, ARG_FCC, MH_OPT_ARG, "folder"},
{"filter", 2, ARG_FILTER, MH_OPT_ARG, "program"},
{"inplace", 1, ARG_INPLACE, MH_OPT_BOOL },
{"query", 1, ARG_QUERY, MH_OPT_BOOL },
{"whatnowproc", 2, ARG_WHATNOWPROC, MH_OPT_ARG, "program"},
{"nowhatnowproc", 3, ARG_NOWHATNOWPROC },
{ 0 }
};
static char *format_str =
"%(lit)%(formataddr %<{reply-to}%?{from}%?{sender}%?{return-path}%>)"
"%<(nonnull)%(void(width))%(putaddr To: )\\n%>"
"%(lit)%(formataddr{to})%(formataddr{cc})%(formataddr(me))"
"%<(nonnull)%(void(width))%(putaddr cc: )\\n%>"
"%<{fcc}Fcc: %{fcc}\\n%>"
"%<{subject}Subject: Re: %{subject}\\n%>"
"%<{date}In-reply-to: Your message of \""
"%<(nodate{date})%{date}%|%(pretty{date})%>.\"%<{message-id}\n"
" %{message-id}%>\\n%>"
"--------\n";
static mh_format_t format;
static int width = 80;
static char *draft_file;
static mh_msgset_t msgset;
static mailbox_t mbox;
static int
opt_handler (int key, char *arg, void *unused)
{
switch (key)
{
case '+':
case 'f':
current_folder = arg;
break;
case 'F':
mh_read_formfile (arg, &format_str);
break;
case 'w':
width = strtoul (arg, NULL, 0);
if (!width)
{
mh_error (_("Invalid width"));
exit (1);
}
break;
case 'a':
case 'd':
case 'm':
case 'c':
case 'n':
case 'e':
case ARG_NOEDIT:
case ARG_FCC:
case ARG_FILTER:
case ARG_INPLACE:
case ARG_QUERY:
case ARG_WHATNOWPROC:
mh_error (_("option is not yet implemented"));
exit (1);
default:
return 1;
}
return 0;
}
void
make_draft ()
{
int rc;
message_t msg;
FILE *fp;
char buffer[1024];
#define bufsize sizeof(buffer)
/* FIXME: first check if the draft exists */
fp = fopen (draft_file, "w+");
if (!fp)
{
mh_error (_("cannot open draft file %s: %s"),
draft_file, strerror (errno));
exit (1);
}
rc = mailbox_get_message (mbox, msgset.list[0], &msg);
if (rc)
{
mh_error (_("cannot read message %lu: %s"),
(unsigned long) msgset.list[0],
mu_errstring (rc));
exit (1);
}
mh_format (&format, msg, msgset.list[0], buffer, bufsize);
fprintf (fp, "%s", buffer);
fclose (fp);
}
int
main (int argc, char **argv)
{
int index;
/* Native Language Support */
mu_init_nls ();
mh_argp_parse (argc, argv, options, mh_option, args_doc, doc,
opt_handler, NULL, &index);
if (mh_format_parse (format_str, &format))
{
mh_error (_("Bad format string"));
exit (1);
}
mbox = mh_open_folder (current_folder, 0);
mh_msgset_parse (mbox, &msgset, argc - index, argv + index, "cur");
if (msgset.count != 1)
{
mh_error (_("only one message at a time!"));
return 1;
}
draft_file = mh_expand_name ("draft", 0);
make_draft ();
return 0;
}