(BWDIC!) Fix *imap-delim* behaviour..
[s-mailx.git] / cmd-write.c
blobd47784f2b3e6ce81e2a314fe9cc2bc22cc09c965
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 - 2017 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 disp = n_empty;
72 shell = NULL;
73 file = NULL;
75 msgvec = salloc((msgCount + 2) * sizeof *msgvec);
76 if (sender_record) {
77 for (cp = str; *cp != '\0' && spacechar(*cp); ++cp)
79 isflag = (*cp != '\0');
80 } else {
81 if ((file = snarf(str, &isflag, convert != SEND_TOFILE)) == NULL)
82 goto jleave;
83 while(spacechar(*file))
84 ++file;
85 if (*file == '|') {
86 ++file;
87 shell = ok_vlook(SHELL);
91 if (!isflag) {
92 *msgvec = first(0, MMNORM);
93 msgvec[1] = 0;
94 } else if (getmsglist(str, msgvec, 0) < 0)
95 goto jleave;
96 if (*msgvec == 0) {
97 if (n_pstate & (n_PS_HOOK_MASK | n_PS_ROBOT)) {
98 success = TRU1;
99 goto jleave;
101 fprintf(n_stdout, _("No messages to %s.\n"), cmd);
102 goto jleave;
105 if (sender_record) {
106 if ((cp = nameof(message + *msgvec - 1, 0)) == NULL) {
107 fprintf(n_stdout, _("Cannot determine message sender to %s.\n"), cmd);
108 goto jleave;
111 for (cq = cp; *cq != '\0' && *cq != '@'; cq++)
113 *cq = '\0';
114 if (ok_blook(outfolder)) {
115 size_t sz = strlen(cp) +1;
116 file = salloc(sz + 1);
117 file[0] = '+';
118 memcpy(file + 1, cp, sz);
119 } else
120 file = cp;
123 /* Pipe target is special TODO hacked in later, normalize flow! */
124 if (shell != NULL) {
125 if ((obuf = Popen(file, "w", shell, NULL, 1)) == NULL) {
126 int esave;
128 esave = n_err_no;
129 n_perr(file, esave);
130 n_err_no = esave;
131 goto jleave;
133 isflag = FAL0;
134 disp = _("[Piped]");
135 goto jsend;
138 if ((file = fexpand(file, FEXP_FULL)) == NULL)
139 goto jleave;
141 /* TODO all this should be URL and Mailbox-"VFS" based, and then finally
142 * TODO end up as Mailbox()->append(). Unless SEND_TOFILE, of course.
143 * TODO However, URL parse because that file:// prefix check is a HACK! */
144 if(convert == SEND_TOFILE && !is_prefix("file://", file))
145 file = savecat("file://", file);
146 if((obuf = n_fopen_any(file, "a+", &fs)) == NULL){
147 n_perr(file, 0);
148 goto jleave;
151 disp = (fs & n_FOPEN_STATE_EXISTS) ? _("[Appended]") : _("[New file]");
153 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
154 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
155 int xerr;
157 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()!
158 * TODO BETTER yet: should be returned in lock state already! */
159 n_file_lock(fileno(obuf), FLT_WRITE, 0,0, UIZ_MAX);
161 if((xerr = n_folder_mbox_prepare_append(obuf, NULL)) != n_ERR_NONE){
162 n_perr(file, xerr);
163 goto jleave;
167 jsend:
168 success = TRU1;
169 tstats[0] = tstats[1] = 0;
170 #ifdef HAVE_IMAP
171 imap_created_mailbox = 0;
172 #endif
174 srelax_hold();
175 for (ip = msgvec; *ip != 0 && UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount);
176 ++ip) {
177 mp = &message[*ip - 1];
178 #ifdef HAVE_IMAP
179 if((fs & n_PROTO_MASK) == n_PROTO_IMAP &&
180 !n_ignore_is_any(n_IGNORE_SAVE) && imap_thisaccount(file)){
181 if(imap_copy(mp, PTR2SIZE(mp - message + 1), file) == STOP){
182 success = FAL0;
183 goto jferr;
185 mstats[0] = mp->m_xsize;
186 }else
187 #endif
188 if (sendmp(mp, obuf, itp, NULL, convert, mstats) < 0) {
189 success = FAL0;
190 goto jferr;
192 srelax();
194 touch(mp);
195 if (domark)
196 mp->m_flag |= MSAVED;
197 if (domove) {
198 mp->m_flag |= MDELETED | MSAVED;
199 last = *ip;
202 tstats[0] += mstats[0];
203 tstats[1] += mp->m_lines;/* TODO won't work, need target! v15!! */
205 srelax_rele();
207 fflush(obuf);
208 if (ferror(obuf)) {
209 jferr:
210 n_perr(file, 0);
211 if (!success)
212 srelax_rele();
213 success = FAL0;
215 if (shell != NULL) {
216 if (!Pclose(obuf, TRU1))
217 success = FAL0;
218 } else if (Fclose(obuf) != 0)
219 success = FAL0;
221 if (success) {
222 #ifdef HAVE_IMAP
223 if((fs & n_PROTO_MASK) == n_PROTO_IMAP){
224 if(disconnected(file))
225 disp = "[Queued]";
226 else if(imap_created_mailbox)
227 disp = "[New file]";
228 else
229 disp = "[Appended]";
231 #endif
232 fprintf(n_stdout, "%s %s %" /*PRIu64 "/%"*/ PRIu64 " bytes\n",
233 n_shexp_quote_cp(file, FAL0), disp,
234 /*tstats[1], TODO v15: lines written */ tstats[0]);
235 } else if (domark) {
236 for (ip = msgvec; *ip != 0 &&
237 UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount); ++ip) {
238 mp = message + *ip - 1;
239 mp->m_flag &= ~MSAVED;
241 } else if (domove) {
242 for (ip = msgvec; *ip != 0 &&
243 UICMP(z, PTR2SIZE(ip - msgvec), <, msgCount); ++ip) {
244 mp = message + *ip - 1;
245 mp->m_flag &= ~(MSAVED | MDELETED);
249 if (domove && last && success) {
250 setdot(message + last - 1);
251 last = first(0, MDELETED);
252 setdot(message + (last != 0 ? last - 1 : 0));
254 jleave:
255 NYD_LEAVE;
256 return (success == FAL0);
259 static char *
260 snarf(char *linebuf, bool_t *flag, bool_t usembox)
262 char *cp;
263 NYD_ENTER;
265 if ((cp = laststring(linebuf, flag, TRU1)) == NULL) {
266 if (usembox) {
267 *flag = FAL0;
268 cp = fexpand("&", FEXP_FULL);
269 } else
270 n_err(_("No file specified\n"));
272 NYD_LEAVE;
273 return cp;
276 FL int
277 c_save(void *v)
279 char *str = v;
280 int rv;
281 NYD_ENTER;
283 rv = save1(str, 1, "save", n_IGNORE_SAVE, SEND_MBOX, 0, 0);
284 NYD_LEAVE;
285 return rv;
288 FL int
289 c_Save(void *v)
291 char *str = v;
292 int rv;
293 NYD_ENTER;
295 rv = save1(str, 1, "save", n_IGNORE_SAVE, SEND_MBOX, 1, 0);
296 NYD_LEAVE;
297 return rv;
300 FL int
301 c_copy(void *v)
303 char *str = v;
304 int rv;
305 NYD_ENTER;
307 rv = save1(str, 0, "copy", n_IGNORE_SAVE, SEND_MBOX, 0, 0);
308 NYD_LEAVE;
309 return rv;
312 FL int
313 c_Copy(void *v)
315 char *str = v;
316 int rv;
317 NYD_ENTER;
319 rv = save1(str, 0, "copy", n_IGNORE_SAVE, SEND_MBOX, 1, 0);
320 NYD_LEAVE;
321 return rv;
324 FL int
325 c_move(void *v)
327 char *str = v;
328 int rv;
329 NYD_ENTER;
331 rv = save1(str, 0, "move", n_IGNORE_SAVE, SEND_MBOX, 0, 1);
332 NYD_LEAVE;
333 return rv;
336 FL int
337 c_Move(void *v)
339 char *str = v;
340 int rv;
341 NYD_ENTER;
343 rv = save1(str, 0, "move", n_IGNORE_SAVE, SEND_MBOX, 1, 1);
344 NYD_LEAVE;
345 return rv;
348 FL int
349 c_decrypt(void *v)
351 char *str = v;
352 int rv;
353 NYD_ENTER;
355 rv = save1(str, 0, "decrypt", n_IGNORE_SAVE, SEND_DECRYPT, 0, 0);
356 NYD_LEAVE;
357 return rv;
360 FL int
361 c_Decrypt(void *v)
363 char *str = v;
364 int rv;
365 NYD_ENTER;
367 rv = save1(str, 0, "decrypt", n_IGNORE_SAVE, SEND_DECRYPT, 1, 0);
368 NYD_LEAVE;
369 return rv;
372 FL int
373 c_write(void *v)
375 char *str = v;
376 int rv;
377 NYD_ENTER;
379 if (str == NULL || *str == '\0')
380 str = savestr(n_path_devnull);
381 rv = save1(str, 0, "write", n_IGNORE_ALL, SEND_TOFILE, 0, 0);
382 NYD_LEAVE;
383 return rv;
386 /* s-it-mode */