forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editmsg.c
311 lines (264 loc) · 7.39 KB
/
editmsg.c
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/**
* @file
* Prepare an email to be edited
*
* @authors
* Copyright (C) 1999-2002 Thomas Roessler <[email protected]>
*
* @copyright
* 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 2 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/>.
*/
/**
* @page editmsg Prepare an email to be edited
*
* Prepare an email to be edited
*/
#include "config.h"
#include <errno.h>
#include <limits.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
#include "mutt/mutt.h"
#include "config/lib.h"
#include "email/lib.h"
#include "mutt.h"
#include "context.h"
#include "copy.h"
#include "curs_lib.h"
#include "globals.h"
#include "mailbox.h"
#include "muttlib.h"
#include "mx.h"
#include "protos.h"
/**
* edit_or_view_one_message - Edit an email or view it in an external editor
* @param edit true if the message should be editable. If false, changes
* to the message (in the editor) will be ignored.
* @param m Mailbox
* @param cur Email
* @retval 1 Message not modified
* @retval 0 Message edited successfully
* @retval -1 Error
*/
static int edit_or_view_one_message(bool edit, struct Mailbox *m, struct Email *cur)
{
char tmp[PATH_MAX];
char buf[STRING];
enum MailboxType omagic;
int oerrno;
int rc;
bool o_read;
bool o_old;
int of, cf;
struct Message *msg = NULL;
FILE *fp = NULL;
struct stat sb;
time_t mtime = 0;
mutt_mktemp(tmp, sizeof(tmp));
omagic = MboxType;
MboxType = MUTT_MBOX;
struct Context *tmpctx = mx_mbox_open(NULL, tmp, MUTT_NEWFOLDER);
MboxType = omagic;
if (!tmpctx)
{
mutt_error(_("could not create temporary folder: %s"), strerror(errno));
return -1;
}
const int chflags =
CH_NOLEN | ((m->magic == MUTT_MBOX || m->magic == MUTT_MMDF) ? 0 : CH_NOSTATUS);
rc = mutt_append_message(tmpctx->mailbox, m, cur, 0, chflags);
oerrno = errno;
mx_mbox_close(&tmpctx, NULL);
if (rc == -1)
{
mutt_error(_("could not write temporary mail folder: %s"), strerror(oerrno));
goto bail;
}
rc = stat(tmp, &sb);
if (rc == -1)
{
mutt_error(_("Can't stat %s: %s"), tmp, strerror(errno));
goto bail;
}
/* The file the user is going to edit is not a real mbox, so we need to
* truncate the last newline in the temp file, which is logically part of
* the message separator, and not the body of the message. If we fail to
* remove it, the message will grow by one line each time the user edits
* the message.
*/
if (sb.st_size != 0 && truncate(tmp, sb.st_size - 1) == -1)
{
mutt_error(_("could not truncate temporary mail folder: %s"), strerror(errno));
goto bail;
}
if (!edit)
{
/* remove write permissions */
rc = mutt_file_chmod_rm_stat(tmp, S_IWUSR | S_IWGRP | S_IWOTH, &sb);
if (rc == -1)
{
mutt_debug(1, "Could not remove write permissions of %s: %s", tmp, strerror(errno));
/* Do not bail out here as we are checking afterwards if we should adopt
* changes of the temporary file. */
}
}
/* Do not reuse the stat sb here as it is outdated. */
mtime = mutt_file_decrease_mtime(tmp, NULL);
mutt_edit_file(NONULL(Editor), tmp);
rc = stat(tmp, &sb);
if (rc == -1)
{
mutt_error(_("Can't stat %s: %s"), tmp, strerror(errno));
goto bail;
}
if (sb.st_size == 0)
{
mutt_message(_("Message file is empty"));
rc = 1;
goto bail;
}
if (edit && sb.st_mtime == mtime)
{
mutt_message(_("Message not modified"));
rc = 1;
goto bail;
}
if (!edit && sb.st_mtime != mtime)
{
mutt_message(_("Message of read-only mailbox modified! Ignoring changes."));
rc = 1;
goto bail;
}
if (!edit)
{
/* stop processing here and skip right to the end */
rc = 1;
goto bail;
}
fp = fopen(tmp, "r");
if (!fp)
{
rc = -1;
mutt_error(_("Can't open message file: %s"), strerror(errno));
goto bail;
}
tmpctx = mx_mbox_open(m, NULL, MUTT_APPEND);
if (!tmpctx)
{
rc = -1;
/* L10N: %s is from strerror(errno) */
mutt_error(_("Can't append to folder: %s"), strerror(errno));
goto bail;
}
of = 0;
cf = (((tmpctx->mailbox->magic == MUTT_MBOX) || (tmpctx->mailbox->magic == MUTT_MMDF)) ?
0 :
CH_NOSTATUS);
if (fgets(buf, sizeof(buf), fp) && is_from(buf, NULL, 0, NULL))
{
if ((tmpctx->mailbox->magic == MUTT_MBOX) || (tmpctx->mailbox->magic == MUTT_MMDF))
cf = CH_FROM | CH_FORCE_FROM;
}
else
of = MUTT_ADD_FROM;
/* XXX - we have to play games with the message flags to avoid
* problematic behavior with maildir folders. */
o_read = cur->read;
o_old = cur->old;
cur->read = false;
cur->old = false;
msg = mx_msg_open_new(tmpctx->mailbox, cur, of);
cur->read = o_read;
cur->old = o_old;
if (!msg)
{
mutt_error(_("Can't append to folder: %s"), strerror(errno));
mx_mbox_close(&tmpctx, NULL);
goto bail;
}
rc = mutt_copy_hdr(fp, msg->fp, 0, sb.st_size, CH_NOLEN | cf, NULL);
if (rc == 0)
{
fputc('\n', msg->fp);
mutt_file_copy_stream(fp, msg->fp);
}
rc = mx_msg_commit(tmpctx->mailbox, msg);
mx_msg_close(tmpctx->mailbox, &msg);
mx_mbox_close(&tmpctx, NULL);
bail:
mutt_file_fclose(&fp);
if (rc >= 0)
unlink(tmp);
if (rc == 0)
{
mutt_set_flag(Context->mailbox, cur, MUTT_DELETE, 1);
mutt_set_flag(Context->mailbox, cur, MUTT_PURGE, 1);
mutt_set_flag(Context->mailbox, cur, MUTT_READ, 1);
if (DeleteUntag)
mutt_set_flag(Context->mailbox, cur, MUTT_TAG, 0);
}
else if (rc == -1)
mutt_message(_("Error. Preserving temporary file: %s"), tmp);
return rc;
}
/**
* edit_or_view_message - Edit an email or view it in an external editor
* @param edit true: Edit the email; false: view the email
* @param ctx Mailbox Context
* @param e Email
* @retval 1 Message not modified
* @retval 0 Message edited successfully
* @retval -1 Error
*/
int edit_or_view_message(bool edit, struct Context *ctx, struct Email *e)
{
if (e)
return edit_or_view_one_message(edit, ctx->mailbox, e);
for (int i = 0; i < ctx->mailbox->msg_count; i++)
{
if (!message_is_tagged(ctx, i))
continue;
if (edit_or_view_one_message(edit, ctx->mailbox, ctx->mailbox->emails[i]) == -1)
return -1;
}
return 0;
}
/**
* mutt_edit_message - Edit a message
* @param ctx Mailbox Context
* @param e Email
* @retval 1 Message not modified
* @retval 0 Message edited successfully
* @retval -1 Error
*/
int mutt_edit_message(struct Context *ctx, struct Email *e)
{
return edit_or_view_message(true, ctx, e); /* true means edit */
}
/**
* mutt_view_message - Edit a message
* @param ctx Mailbox Context
* @param e Email
* @retval 1 Message not modified
* @retval 0 Message edited successfully
* @retval -1 Error
*/
int mutt_view_message(struct Context *ctx, struct Email *e)
{
return edit_or_view_message(false, ctx, e); /* false means only view */
}