1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #ifndef HAVE_AMALGAMATION
46 /* Save/copy the indicated messages at the end of the passed file name.
47 * If mark is true, mark the message "saved" */
48 static int save1(char *str
, int domark
, char const *cmd
,
49 struct ignoretab
*ignore
, int convert
, int sender_record
,
52 /* Snarf the file from the end of the command line and return a pointer to it.
53 * If there is no file attached, return the mbox file. Put a null in front of
54 * the file name so that the message list processing won't see it, unless the
55 * file name is the only thing on the line, in which case, return 0 in the
56 * reference flag variable */
57 static char * snarf(char *linebuf
, bool_t
*flag
, bool_t usembox
);
59 /* Delete the indicated messages. Set dot to some nice place afterwards */
60 static int delm(int *msgvec
);
62 static int ignore1(char **list
, struct ignoretab
*tab
, char const *which
);
64 /* Print out all currently retained fields */
65 static int igshow(struct ignoretab
*tab
, char const *which
);
67 /* Compare two names for sorting ignored field list */
68 static int igcomp(void const *l
, void const *r
);
71 static int _unignore(char **list
, struct ignoretab
*tab
, char const *which
);
72 static void __unign_all(struct ignoretab
*tab
);
73 static void __unign_one(struct ignoretab
*tab
, char const *name
);
76 save1(char *str
, int domark
, char const *cmd
, struct ignoretab
*ignoret
,
77 int convert
, int sender_record
, int domove
)
79 off_t mstats
[2], tstats
[2];
81 int newfile
= 0, compressed
= 0, last
= 0, *msgvec
, *ip
;
83 char *file
= NULL
, *cp
, *cq
;
84 char const *disp
= "";
87 bool_t success
= FAL0
, f
;
90 msgvec
= salloc((msgCount
+ 2) * sizeof *msgvec
);
92 for (cp
= str
; *cp
!= '\0' && blankchar(*cp
); ++cp
)
96 if ((file
= snarf(str
, &f
, convert
!= SEND_TOFILE
)) == NULL
)
101 *msgvec
= first(0, MMNORM
);
107 printf(_("No messages to %s.\n"), cmd
);
111 } else if (getmsglist(str
, msgvec
, 0) < 0)
118 printf("No applicable messages.\n");
123 if ((cp
= nameof(message
+ *msgvec
- 1, 0)) == NULL
) {
124 printf(_("Cannot determine message sender to %s.\n"), cmd
);
128 for (cq
= cp
; *cq
!= '\0' && *cq
!= '@'; cq
++)
131 if (ok_blook(outfolder
)) {
132 size_t sz
= strlen(cp
) +1;
133 file
= salloc(sz
+ 1);
135 memcpy(file
+ 1, cp
, sz
);
140 if ((file
= expand(file
)) == NULL
)
142 prot
= which_protocol(file
);
143 if (prot
!= PROTO_IMAP
) {
144 if (access(file
, 0) >= 0) {
146 disp
= _("[Appended]");
149 disp
= _("[New file]");
153 obuf
= ((convert
== SEND_TOFILE
) ? Fopen(file
, "a+")
154 : Zopen(file
, "a+", &compressed
));
156 obuf
= ((convert
== SEND_TOFILE
) ? Fopen(file
, "wx")
157 : Zopen(file
, "wx", &compressed
));
165 disp
= _("[Appended]");
167 if (!newfile
&& fstat(fileno(obuf
), &st
) && S_ISREG(st
.st_mode
) &&
168 fseek(obuf
, -2L, SEEK_END
) == 0) {
172 switch (fread(buf
, sizeof *buf
, 2, obuf
)) {
174 if (buf
[1] != '\n') {
199 tstats
[0] = tstats
[1] = 0;
200 imap_created_mailbox
= 0;
202 for (ip
= msgvec
; *ip
!= 0 && UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
);
204 mp
= message
+ *ip
- 1;
205 if (prot
== PROTO_IMAP
&& ignoret
[0].i_count
== 0 &&
206 ignoret
[1].i_count
== 0
207 #ifdef HAVE_IMAP /* TODO revisit */
208 && imap_thisaccount(file
)
212 if (imap_copy(mp
, *ip
, file
) == STOP
)
217 mstats
[1] = mp
->m_xsize
;
219 } else if (sendmp(mp
, obuf
, ignoret
, NULL
, convert
, mstats
) < 0) {
226 mp
->m_flag
|= MSAVED
;
228 mp
->m_flag
|= MDELETED
| MSAVED
;
231 tstats
[0] += mstats
[0];
232 tstats
[1] += mstats
[1];
240 if (Fclose(obuf
) != 0)
245 if (prot
== PROTO_IMAP
|| prot
== PROTO_MAILDIR
) {
248 ((prot
== PROTO_IMAP
) && disconnected(file
)) ? "[Queued]" :
250 (imap_created_mailbox
? "[New file]" : "[Appended]"));
252 printf("\"%s\" %s ", file
, disp
);
254 printf("%lu", (ul_it
)tstats
[0]);
257 printf("/%lu\n", (ul_it
)tstats
[1]);
262 newfile
= ~(MSAVED
| MDELETED
);
264 for (ip
= msgvec
; *ip
!= 0 &&
265 UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
); ++ip
) {
266 mp
= message
+ *ip
- 1;
267 mp
->m_flag
&= newfile
;
271 if (domove
&& last
&& success
) {
272 setdot(message
+ last
- 1);
273 last
= first(0, MDELETED
);
274 setdot(message
+ (last
!= 0 ? last
- 1 : 0));
278 return (success
== FAL0
);
282 snarf(char *linebuf
, bool_t
*flag
, bool_t usembox
)
287 if ((cp
= laststring(linebuf
, flag
, FAL0
)) == NULL
) {
292 fprintf(stderr
, _("No file specified.\n"));
302 int rv
= -1, *ip
, last
;
306 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
307 mp
= message
+ *ip
- 1;
309 mp
->m_flag
|= MDELETED
| MTOUCH
;
310 mp
->m_flag
&= ~(MPRESERVE
| MSAVED
| MBOX
);
314 setdot(message
+ last
- 1);
315 last
= first(0, MDELETED
);
317 setdot(message
+ last
- 1);
328 ignore1(char **list
, struct ignoretab
*tab
, char const *which
)
336 h
= igshow(tab
, which
);
340 for (ap
= list
; *ap
!= 0; ++ap
) {
345 field
= ac_alloc(sz
);
346 i_strcpy(field
, *ap
, sz
);
347 if (member(field
, tab
))
351 igp
= scalloc(1, sizeof *igp
);
352 sz
= strlen(field
) +1;
353 igp
->i_field
= smalloc(sz
);
354 memcpy(igp
->i_field
, field
, sz
);
355 igp
->i_link
= tab
->i_head
[h
];
356 tab
->i_head
[h
] = igp
;
368 igshow(struct ignoretab
*tab
, char const *which
)
375 if (tab
->i_count
== 0) {
376 printf(_("No fields currently being %s.\n"), which
);
380 ring
= salloc((tab
->i_count
+ 1) * sizeof *ring
);
382 for (h
= 0; h
< HSHSIZE
; ++h
)
383 for (igp
= tab
->i_head
[h
]; igp
!= 0; igp
= igp
->i_link
)
384 *ap
++ = igp
->i_field
;
387 qsort(ring
, tab
->i_count
, sizeof *ring
, igcomp
);
389 for (ap
= ring
; *ap
!= NULL
; ++ap
)
397 igcomp(void const *l
, void const *r
)
402 rv
= strcmp(*(char**)UNCONST(l
), *(char**)UNCONST(r
));
408 _unignore(char **list
, struct ignoretab
*tab
, char const *which
)
413 if (tab
->i_count
== 0)
414 printf(_("No fields currently being %s.\n"), which
);
416 while ((field
= *list
++) != NULL
)
417 if (field
[0] == '*' && field
[1] == '\0') {
421 __unign_one(tab
, field
);
427 __unign_all(struct ignoretab
*tab
)
430 struct ignore
*n
, *x
;
433 for (i
= 0; i
< NELEM(tab
->i_head
); ++i
)
434 for (n
= tab
->i_head
[i
]; n
!= NULL
; n
= x
) {
439 memset(tab
, 0, sizeof *tab
);
444 __unign_one(struct ignoretab
*tab
, char const *name
)
446 struct ignore
*ip
, *iq
;
451 for (iq
= NULL
, ip
= tab
->i_head
[h
]; ip
!= NULL
; ip
= ip
->i_link
) {
452 if (!asccasecmp(ip
->i_field
, name
)) {
455 iq
->i_link
= ip
->i_link
;
457 tab
->i_head
[h
] = ip
->i_link
;
470 int list
[2], *ip
, *ip2
, mdot
, *msgvec
= v
, rv
= 1;
475 /* If some messages were supplied, find the first applicable one
476 * following dot using wrap around */
477 mdot
= (int)PTR2SIZE(dot
- message
+ 1);
479 /* Find first message in supplied message list which follows dot */
480 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
481 if ((mb
.mb_threaded
? message
[*ip
- 1].m_threadpos
> dot
->m_threadpos
489 mp
= message
+ *ip2
- 1;
490 if (!(mp
->m_flag
& MMNDEL
)) {
499 printf(_("No messages applicable\n"));
503 /* If this is the first command, select message 1. Note that this must
504 * exist for us to get here at all */
511 /* Just find the next good message after dot, no wraparound */
512 if (mb
.mb_threaded
== 0) {
513 for (mp
= dot
+ did_print_dot
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
514 if (!(mp
->m_flag
& MMNORM
))
519 mp
= next_in_thread(mp
);
520 while (mp
&& (mp
->m_flag
& MMNORM
))
521 mp
= next_in_thread(mp
);
523 if (mp
== NULL
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
525 printf(_("At EOF\n"));
533 list
[0] = (int)PTR2SIZE(dot
- message
+ 1);
548 rv
= save1(str
, 1, "save", saveignore
, SEND_MBOX
, 0, 0);
560 rv
= save1(str
, 1, "save", saveignore
, SEND_MBOX
, 1, 0);
572 rv
= save1(str
, 0, "copy", saveignore
, SEND_MBOX
, 0, 0);
584 rv
= save1(str
, 0, "copy", saveignore
, SEND_MBOX
, 1, 0);
596 rv
= save1(str
, 0, "move", saveignore
, SEND_MBOX
, 0, 1);
608 rv
= save1(str
, 0, "move", saveignore
, SEND_MBOX
, 1, 1);
620 rv
= save1(str
, 0, "decrypt", saveignore
, SEND_DECRYPT
, 0, 0);
632 rv
= save1(str
, 0, "decrypt", saveignore
, SEND_DECRYPT
, 1, 0);
644 if (str
== NULL
|| *str
== '\0')
645 str
= savestr("/dev/null");
646 rv
= save1(str
, 0, "write", allignore
, SEND_TOFILE
, 0, 0);
665 int list
[2], rv
= 0, *msgvec
= v
, lastdot
;
668 lastdot
= (int)PTR2SIZE(dot
- message
+ 1);
669 if (delm(msgvec
) >= 0) {
670 list
[0] = (int)PTR2SIZE(dot
- message
+ 1);
671 if (list
[0] > lastdot
) {
677 printf(_("At EOF\n"));
679 printf(_("No more messages\n"));
688 int *msgvec
= v
, *ip
;
692 for (ip
= msgvec
; *ip
!= 0 && UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
);
694 mp
= message
+ *ip
- 1;
697 if (mp
->m_flag
& (MDELETED
| MSAVED
))
698 mp
->m_flag
&= ~(MDELETED
| MSAVED
);
700 mp
->m_flag
&= ~MDELETED
;
702 if (mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
)
703 imap_undelete(mp
, *ip
);
717 rv
= ignore1(list
, ignore
+ 1, "retained");
729 rv
= ignore1(list
, ignore
, "ignored");
735 c_saveretfield(void *v
)
741 rv
= ignore1(list
, saveignore
+ 1, "retained");
747 c_saveigfield(void *v
)
753 rv
= ignore1(list
, saveignore
, "ignored");
759 c_fwdretfield(void *v
)
765 rv
= ignore1(list
, fwdignore
+ 1, "retained");
771 c_fwdigfield(void *v
)
777 rv
= ignore1(list
, fwdignore
, "ignored");
788 rv
= _unignore((char**)v
, ignore
, "ignored");
799 rv
= _unignore((char**)v
, ignore
+ 1, "retained");
805 c_unsaveignore(void *v
)
810 rv
= _unignore((char**)v
, saveignore
, "ignored");
816 c_unsaveretain(void *v
)
821 rv
= _unignore((char**)v
, saveignore
+ 1, "retained");
827 c_unfwdignore(void *v
)
832 rv
= _unignore((char**)v
, fwdignore
, "ignored");
838 c_unfwdretain(void *v
)
843 rv
= _unignore((char**)v
, fwdignore
+ 1, "retained");