cc-test.sh: t_behave_iconv_mainbody() should compile test instead, sigh!
[s-mailx.git] / cmd-write.c
blobe94ce727f47fab76286ca5e6bf2c8c1b8f47bf9f
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ User commands which save, copy, write (parts of) messages.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE cmd_write
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
42 /* Save/copy the indicated messages at the end of the passed file name.
43 * If mark is true, mark the message "saved" */
44 static int save1(char *str, int domark, char const *cmd,
45 struct n_ignore const *itp, int convert, int sender_record,
46 int domove);
48 /* Snarf the file from the end of the command line and return a pointer to it.
49 * If there is no file attached, return the mbox file. Put a null in front of
50 * the file name so that the message list processing won't see it, unless the
51 * file name is the only thing on the line, in which case, return 0 in the
52 * reference flag variable */
53 static char * snarf(char *linebuf, bool_t *flag, bool_t usembox);
55 static int
56 save1(char *str, int domark, char const *cmd, struct n_ignore const *itp,
57 int convert, int sender_record, int domove)
59 ui64_t mstats[1], tstats[2];
60 enum n_fopen_state fs;
61 int last, *msgvec, *ip;
62 struct message *mp;
63 char *file, *cp, *cq;
64 char const *disp, *shell;
65 FILE *obuf;
66 bool_t success, isflag;
67 NYD_ENTER;
69 success = FAL0;
70 last = 0;
71 shell = NULL;
72 file = NULL;
74 msgvec = salloc((msgCount + 2) * sizeof *msgvec);
75 if (sender_record) {
76 for (cp = str; *cp != '\0' && spacechar(*cp); ++cp)
78 isflag = (*cp != '\0');
79 } else {
80 if ((file = snarf(str, &isflag, convert != SEND_TOFILE)) == NULL)
81 goto jleave;
82 while(spacechar(*file))
83 ++file;
84 if (*file == '|') {
85 ++file;
86 shell = ok_vlook(SHELL);
90 if (!isflag) {
91 *msgvec = first(0, MMNORM);
92 msgvec[1] = 0;
93 } else if (getmsglist(str, msgvec, 0) < 0)
94 goto jleave;
95 if (*msgvec == 0) {
96 if (n_pstate & (n_PS_HOOK_MASK | n_PS_ROBOT)) {
97 success = TRU1;
98 goto jleave;
100 fprintf(n_stdout, _("No messages to %s.\n"), cmd);
101 goto jleave;
104 if (sender_record) {
105 if ((cp = nameof(message + *msgvec - 1, 0)) == NULL) {
106 fprintf(n_stdout, _("Cannot determine message sender to %s.\n"), cmd);
107 goto jleave;
110 for (cq = cp; *cq != '\0' && *cq != '@'; cq++)
112 *cq = '\0';
113 if (ok_blook(outfolder)) {
114 size_t sz = strlen(cp) +1;
115 file = salloc(sz + 1);
116 file[0] = '+';
117 memcpy(file + 1, cp, sz);
118 } else
119 file = cp;
122 /* Pipe target is special TODO hacked in later, normalize flow! */
123 if (shell != NULL) {
124 if ((obuf = Popen(file, "w", shell, NULL, 1)) == NULL) {
125 int esave;
127 esave = n_err_no;
128 n_perr(file, esave);
129 n_err_no = esave;
130 goto jleave;
132 isflag = FAL0;
133 disp = _("[Piped]");
134 goto jsend;
137 if ((file = fexpand(file, FEXP_FULL)) == NULL)
138 goto jleave;
140 /* TODO all this should be URL and Mailbox-"VFS" based, and then finally
141 * TODO end up as Mailbox()->append(). Unless SEND_TOFILE, of course.
142 * TODO However, URL parse because that file:// prefix check is a HACK! */
143 if(convert == SEND_TOFILE && !is_prefix("file://", file))
144 file = savecat("file://", file);
145 if((obuf = n_fopen_any(file, "a+", &fs)) == NULL){
146 n_perr(file, 0);
147 goto jleave;
150 #if defined HAVE_POP3 && defined HAVE_IMAP
151 if(mb.mb_type == MB_POP3 && (fs & n_PROTO_MASK) == n_PROTO_IMAP){
152 Fclose(obuf);
153 n_err(_("Direct copy from POP3 to IMAP not supported before v15\n"));
154 goto jleave;
156 #endif
158 disp = (fs & n_FOPEN_STATE_EXISTS) ? _("[Appended]") : _("[New file]");
160 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
161 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
162 int xerr;
164 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()!
165 * TODO BETTER yet: should be returned in lock state already! */
166 n_file_lock(fileno(obuf), FLT_WRITE, 0,0, UIZ_MAX);
168 if((xerr = n_folder_mbox_prepare_append(obuf, NULL)) != n_ERR_NONE){
169 n_perr(file, xerr);
170 goto jleave;
174 jsend:
175 success = TRU1;
176 tstats[0] = tstats[1] = 0;
177 #ifdef HAVE_IMAP
178 imap_created_mailbox = 0;
179 #endif
181 srelax_hold();
182 for (ip = msgvec; *ip != 0 && UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount);
183 ++ip) {
184 mp = &message[*ip - 1];
185 #ifdef HAVE_IMAP
186 if((fs & n_PROTO_MASK) == n_PROTO_IMAP &&
187 !n_ignore_is_any(n_IGNORE_SAVE) && imap_thisaccount(file)){
188 if(imap_copy(mp, PTR2SIZE(mp - message + 1), file) == STOP){
189 success = FAL0;
190 goto jferr;
192 mstats[0] = mp->m_xsize;
193 }else
194 #endif
195 if (sendmp(mp, obuf, itp, NULL, convert, mstats) < 0) {
196 success = FAL0;
197 goto jferr;
199 srelax();
201 touch(mp);
202 if (domark)
203 mp->m_flag |= MSAVED;
204 if (domove) {
205 mp->m_flag |= MDELETED | MSAVED;
206 last = *ip;
209 tstats[0] += mstats[0];
210 tstats[1] += mp->m_lines;/* TODO won't work, need target! v15!! */
212 srelax_rele();
214 fflush(obuf);
215 if (ferror(obuf)) {
216 jferr:
217 n_perr(file, 0);
218 if (!success)
219 srelax_rele();
220 success = FAL0;
222 if (shell != NULL) {
223 if (!Pclose(obuf, TRU1))
224 success = FAL0;
225 } else if (Fclose(obuf) != 0)
226 success = FAL0;
228 if (success) {
229 #ifdef HAVE_IMAP
230 if((fs & n_PROTO_MASK) == n_PROTO_IMAP){
231 if(disconnected(file))
232 disp = "[Queued]";
233 else if(imap_created_mailbox)
234 disp = "[New file]";
235 else
236 disp = "[Appended]";
238 #endif
239 fprintf(n_stdout, "%s %s %" /*PRIu64 "/%"*/ PRIu64 " bytes\n",
240 n_shexp_quote_cp(file, FAL0), disp,
241 /*tstats[1], TODO v15: lines written */ tstats[0]);
242 } else if (domark) {
243 for (ip = msgvec; *ip != 0 &&
244 UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount); ++ip) {
245 mp = message + *ip - 1;
246 mp->m_flag &= ~MSAVED;
248 } else if (domove) {
249 for (ip = msgvec; *ip != 0 &&
250 UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount); ++ip) {
251 mp = message + *ip - 1;
252 mp->m_flag &= ~(MSAVED | MDELETED);
256 if (domove && last && success) {
257 setdot(message + last - 1);
258 last = first(0, MDELETED);
259 setdot(message + (last != 0 ? last - 1 : 0));
261 jleave:
262 NYD_LEAVE;
263 return (success == FAL0);
266 static char *
267 snarf(char *linebuf, bool_t *flag, bool_t usembox)
269 char *cp;
270 NYD_ENTER;
272 if ((cp = laststring(linebuf, flag, TRU1)) == NULL) {
273 if (usembox) {
274 *flag = FAL0;
275 cp = fexpand("&", FEXP_NVAR);
276 } else
277 n_err(_("No file specified\n"));
279 NYD_LEAVE;
280 return cp;
283 FL int
284 c_save(void *v)
286 char *str = v;
287 int rv;
288 NYD_ENTER;
290 rv = save1(str, 1, "save", n_IGNORE_SAVE, SEND_MBOX, 0, 0);
291 NYD_LEAVE;
292 return rv;
295 FL int
296 c_Save(void *v)
298 char *str = v;
299 int rv;
300 NYD_ENTER;
302 rv = save1(str, 1, "save", n_IGNORE_SAVE, SEND_MBOX, 1, 0);
303 NYD_LEAVE;
304 return rv;
307 FL int
308 c_copy(void *v)
310 char *str = v;
311 int rv;
312 NYD_ENTER;
314 rv = save1(str, 0, "copy", n_IGNORE_SAVE, SEND_MBOX, 0, 0);
315 NYD_LEAVE;
316 return rv;
319 FL int
320 c_Copy(void *v)
322 char *str = v;
323 int rv;
324 NYD_ENTER;
326 rv = save1(str, 0, "copy", n_IGNORE_SAVE, SEND_MBOX, 1, 0);
327 NYD_LEAVE;
328 return rv;
331 FL int
332 c_move(void *v)
334 char *str = v;
335 int rv;
336 NYD_ENTER;
338 rv = save1(str, 0, "move", n_IGNORE_SAVE, SEND_MBOX, 0, 1);
339 NYD_LEAVE;
340 return rv;
343 FL int
344 c_Move(void *v)
346 char *str = v;
347 int rv;
348 NYD_ENTER;
350 rv = save1(str, 0, "move", n_IGNORE_SAVE, SEND_MBOX, 1, 1);
351 NYD_LEAVE;
352 return rv;
355 FL int
356 c_decrypt(void *v)
358 char *str = v;
359 int rv;
360 NYD_ENTER;
362 rv = save1(str, 0, "decrypt", n_IGNORE_SAVE, SEND_DECRYPT, 0, 0);
363 NYD_LEAVE;
364 return rv;
367 FL int
368 c_Decrypt(void *v)
370 char *str = v;
371 int rv;
372 NYD_ENTER;
374 rv = save1(str, 0, "decrypt", n_IGNORE_SAVE, SEND_DECRYPT, 1, 0);
375 NYD_LEAVE;
376 return rv;
379 FL int
380 c_write(void *v)
382 char *str = v;
383 int rv;
384 NYD_ENTER;
386 if (str == NULL || *str == '\0')
387 str = savestr(n_path_devnull);
388 rv = save1(str, 0, "write", n_IGNORE_ALL, SEND_TOFILE, 0, 0);
389 NYD_LEAVE;
390 return rv;
393 /* s-it-mode */