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 - 2013 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
48 static int save1(char *str
, int mark
, char const *cmd
,
49 struct ignoretab
*ignore
, int convert
,
50 int sender_record
, int domove
);
51 static char * snarf(char *linebuf
, int *flag
, int usembox
);
52 static int delm(int *msgvec
);
54 static void clob1(int n
);
56 static int ignore1(char **list
, struct ignoretab
*tab
, char const *which
);
57 static int igshow(struct ignoretab
*tab
, char const *which
);
58 static int igcomp(const void *l
, const void *r
);
59 static void unignore_one(const char *name
, struct ignoretab
*tab
);
60 static int unignore1(char **list
, struct ignoretab
*tab
,
64 * If any arguments were given, go to the next applicable argument
65 * following dot, otherwise, go to the next applicable message.
66 * If given as first command with no arguments, print first message.
79 * If some messages were supplied, find the
80 * first applicable one following dot using
84 mdot
= dot
- &message
[0] + 1;
87 * Find the first message in the supplied
88 * message list which follows dot.
91 for (ip
= msgvec
; *ip
!= 0; ip
++) {
94 * Work around an optimizer bug in Cray Standard C Version 4.0.3 (057126).
95 * Otherwise, SIGFPE is received when mb.mb_threaded != 0.
97 #pragma _CRI suppress ip
99 if (mb
.mb_threaded
? message
[*ip
-1].m_threadpos
>
108 mp
= &message
[*ip2
- 1];
109 if ((mp
->m_flag
& (MDELETED
|MHIDDEN
)) == 0) {
118 printf(catgets(catd
, CATSET
, 21, "No messages applicable\n"));
123 * If this is the first command, select message 1.
124 * Note that this must exist for us to get here at all.
134 * Just find the next good message after dot, no
138 if (mb
.mb_threaded
== 0) {
139 for (mp
= dot
+ did_print_dot
; mp
< &message
[msgCount
]; mp
++)
140 if ((mp
->m_flag
& (MDELETED
|MSAVED
|MHIDDEN
)) == 0)
145 mp
= next_in_thread(mp
);
146 while (mp
&& mp
->m_flag
& (MDELETED
|MSAVED
|MHIDDEN
))
147 mp
= next_in_thread(mp
);
149 if (mp
== NULL
|| mp
>= &message
[msgCount
]) {
151 printf(catgets(catd
, CATSET
, 22, "At EOF\n"));
160 list
[0] = dot
- &message
[0] + 1;
166 * Save a message in a file. Mark the message as saved
167 * so we can discard when the user quits.
174 return save1(str
, 1, "save", saveignore
, SEND_MBOX
, 0, 0);
182 return save1(str
, 1, "save", saveignore
, SEND_MBOX
, 1, 0);
186 * Copy a message to a file without affected its saved-ness
193 return save1(str
, 0, "copy", saveignore
, SEND_MBOX
, 0, 0);
201 return save1(str
, 0, "copy", saveignore
, SEND_MBOX
, 1, 0);
205 * Move a message to a file.
212 return save1(str
, 0, "move", saveignore
, SEND_MBOX
, 0, 1);
220 return save1(str
, 0, "move", saveignore
, SEND_MBOX
, 1, 1);
224 * Decrypt and copy a message to a file.
231 return save1(str
, 0, "decrypt", saveignore
, SEND_DECRYPT
, 0, 0);
239 return save1(str
, 0, "decrypt", saveignore
, SEND_DECRYPT
, 1, 0);
243 * Save/copy the indicated messages at the end of the passed file name.
244 * If mark is true, mark the message "saved."
247 save1(char *str
, int mark
, char const *cmd
, struct ignoretab
*ignore
,
248 int convert
, int sender_record
, int domove
)
250 off_t mstats
[2], tstats
[2];
252 int newfile
= 0, compressed
= 0, success
= 1, last
= 0, f
, *msgvec
, *ip
;
254 char *file
= NULL
, *cp
, *cq
;
255 char const *disp
= "";
260 msgvec
= (int *)salloc((msgCount
+ 2) * sizeof *msgvec
);
262 for (cp
= str
; *cp
&& blankchar(*cp
& 0377); cp
++);
265 if ((file
= snarf(str
, &f
, convert
!= SEND_TOFILE
)) == NULL
)
269 *msgvec
= first(0, MMNORM
);
273 printf(catgets(catd
, CATSET
, 23,
274 "No messages to %s.\n"), cmd
);
279 if (f
&& getmsglist(str
, msgvec
, 0) < 0)
284 printf("No applicable messages.\n");
288 if ((cp
= nameof(&message
[*msgvec
- 1], 0)) == NULL
) {
289 printf(catgets(catd
, CATSET
, 24,
290 "Cannot determine message sender to %s.\n"),
294 for (cq
= cp
; *cq
&& *cq
!= '@'; cq
++);
296 if (value("outfolder")) {
297 size_t sz
= strlen(cp
) + 1;
298 file
= salloc(sz
+ 1);
300 memcpy(file
+ 1, cp
, sz
);
304 if ((file
= expand(file
)) == NULL
)
306 prot
= which_protocol(file
);
307 if (prot
!= PROTO_IMAP
) {
308 if (access(file
, 0) >= 0) {
310 disp
= tr(25, "[Appended]");
313 disp
= tr(26, "[New file]");
316 if ((obuf
= convert
== SEND_TOFILE
? Fopen(file
, "a+") :
317 Zopen(file
, "a+", &compressed
)) == NULL
) {
318 if ((obuf
= convert
== SEND_TOFILE
? Fopen(file
, "wx") :
319 Zopen(file
, "wx", &compressed
)) == NULL
) {
326 disp
= catgets(catd
, CATSET
, 25, "[Appended]");
328 if (!newfile
&& fstat(fileno(obuf
), &st
) &&
329 S_ISREG(st
.st_mode
) &&
330 fseek(obuf
, -2L, SEEK_END
) == 0) {
334 switch (fread(buf
, sizeof *buf
, 2, obuf
)) {
336 if (buf
[1] != '\n') {
359 tstats
[0] = tstats
[1] = 0;
360 imap_created_mailbox
= 0;
361 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
362 mp
= &message
[*ip
- 1];
363 if (prot
== PROTO_IMAP
&&
364 ignore
[0].i_count
== 0 &&
365 ignore
[1].i_count
== 0
366 #ifdef HAVE_IMAP /* TODO revisit */
367 && imap_thisaccount(file
)
371 if (imap_copy(mp
, *ip
, file
) == STOP
)
376 mstats
[1] = mp
->m_xsize
;
378 } else if (send(mp
, obuf
, ignore
, NULL
,
379 convert
, mstats
) < 0) {
385 mp
->m_flag
|= MSAVED
;
387 mp
->m_flag
|= MDELETED
|MSAVED
;
390 tstats
[0] += mstats
[0];
391 tstats
[1] += mstats
[1];
398 if (Fclose(obuf
) != 0)
401 if (prot
== PROTO_IMAP
|| prot
== PROTO_MAILDIR
) {
404 ((prot
== PROTO_IMAP
) && disconnected(file
))
407 (imap_created_mailbox
? "[New file]"
410 printf("\"%s\" %s ", file
, disp
);
412 printf("%lu", (long)tstats
[0]);
414 printf(tr(27, "binary"));
415 printf("/%lu\n", (long)tstats
[1]);
417 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
418 mp
= &message
[*ip
- 1];
419 mp
->m_flag
&= ~MSAVED
;
422 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
423 mp
= &message
[*ip
- 1];
424 mp
->m_flag
&= ~(MSAVED
|MDELETED
);
427 if (domove
&& last
&& success
) {
428 setdot(&message
[last
-1]);
429 last
= first(0, MDELETED
);
430 setdot(&message
[last
? last
-1 : 0]);
432 return(success
== 0);
436 * Write the indicated messages at the end of the passed
437 * file name, minus header and trailing blank line.
438 * This is the MIME save function.
445 if (str
== NULL
|| *str
== '\0')
446 str
= savestr("/dev/null");
447 return (save1(str
, 0, "write", allignore
, SEND_TOFILE
, 0, 0));
451 * Snarf the file from the end of the command line and
452 * return a pointer to it. If there is no file attached,
453 * return the mbox file. Put a null in front of the file
454 * name so that the message list processing won't see it,
455 * unless the file name is the only thing on the line, in
456 * which case, return 0 in the reference flag variable.
459 snarf(char *linebuf
, int *flag
, int usembox
)
464 if ((cp
= laststring(linebuf
, flag
, 0)) == NULL
) {
469 fprintf(stderr
, tr(28, "No file specified.\n"));
486 * Delete messages, then type the new dot.
495 lastdot
= dot
- &message
[0] + 1;
496 if (delm(msgvec
) >= 0) {
497 list
[0] = dot
- &message
[0] + 1;
498 if (list
[0] > lastdot
) {
503 printf(catgets(catd
, CATSET
, 29, "At EOF\n"));
505 printf(catgets(catd
, CATSET
, 30, "No more messages\n"));
510 * Delete the indicated messages.
511 * Set dot to some nice place afterwards.
512 * Internal interface.
522 for (ip
= msgvec
; *ip
!= 0; ip
++) {
523 mp
= &message
[*ip
- 1];
525 mp
->m_flag
|= MDELETED
|MTOUCH
;
526 mp
->m_flag
&= ~(MPRESERVE
|MSAVED
|MBOX
);
530 setdot(&message
[last
-1]);
531 last
= first(0, MDELETED
);
533 setdot(&message
[last
-1]);
543 * Following can't happen -- it keeps lint happy
550 * Undelete the indicated messages.
559 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
560 mp
= &message
[*ip
- 1];
563 if (mp
->m_flag
& (MDELETED
|MSAVED
))
564 mp
->m_flag
&= ~(MDELETED
|MSAVED
);
566 mp
->m_flag
&= ~MDELETED
;
568 if (mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
)
569 imap_undelete(mp
, *ip
);
577 * Interactively dump core on "core"
585 extern int wait_status
;
589 switch (pid
= fork()) {
597 (void)printf(tr(31, "Okie dokie"));
598 (void)fflush(stdout
);
599 (void)wait_child(pid
);
601 if (WCOREDUMP(wait_status
))
602 (void)printf(tr(32, " -- Core dumped.\n"));
604 (void)printf(tr(33, " -- Can't dump core.\n"));
616 for (cp
= buf
; cp
< &buf
[512]; *cp
++ = (char)0xFF)
622 * Clobber as many bytes of stack as the user requests.
633 times
= (atoi(argv
[0]) + 511) / 512;
637 #endif /* HAVE_ASSERTS */
640 * Add the given header fields to the retained list.
641 * If no arguments, print the current list of retained fields.
648 return ignore1(list
, ignore
+ 1, "retained");
652 * Add the given header fields to the ignored list.
653 * If no arguments, print the current list of ignored fields.
660 return ignore1(list
, ignore
, "ignored");
664 saveretfield(void *v
)
668 return ignore1(list
, saveignore
+ 1, "retained");
676 return ignore1(list
, saveignore
, "ignored");
684 return ignore1(list
, fwdignore
+ 1, "retained");
692 return ignore1(list
, fwdignore
, "ignored");
696 ignore1(char **list
, struct ignoretab
*tab
, char const *which
)
703 return igshow(tab
, which
);
704 for (ap
= list
; *ap
!= 0; ap
++) {
709 field
= ac_alloc(sz
+ 1);
710 i_strcpy(field
, *ap
, sz
+ 1);
712 if (member(field
, tab
)) {
717 igp
= (struct ignore
*)scalloc(1, sizeof (struct ignore
));
718 sz
= strlen(field
) + 1;
719 igp
->i_field
= smalloc(sz
);
720 memcpy(igp
->i_field
, field
, sz
);
721 igp
->i_link
= tab
->i_head
[h
];
722 tab
->i_head
[h
] = igp
;
730 * Print out all currently retained fields.
733 igshow(struct ignoretab
*tab
, char const *which
)
739 if (tab
->i_count
== 0) {
740 printf(catgets(catd
, CATSET
, 34,
741 "No fields currently being %s.\n"), which
);
745 ring
= (char **)salloc((tab
->i_count
+ 1) * sizeof (char *));
747 for (h
= 0; h
< HSHSIZE
; h
++)
748 for (igp
= tab
->i_head
[h
]; igp
!= 0; igp
= igp
->i_link
)
749 *ap
++ = igp
->i_field
;
751 qsort(ring
, tab
->i_count
, sizeof (char *), igcomp
);
752 for (ap
= ring
; *ap
!= 0; ap
++)
758 * Compare two names for sorting ignored field list.
761 igcomp(const void *l
, const void *r
)
763 return (strcmp(*(char**)UNCONST(l
), *(char**)UNCONST(r
)));
769 return unignore1((char **)v
, ignore
, "ignored");
775 return unignore1((char **)v
, ignore
+ 1, "retained");
779 unsaveignore(void *v
)
781 return unignore1((char **)v
, saveignore
, "ignored");
785 unsaveretain(void *v
)
787 return unignore1((char **)v
, saveignore
+ 1, "retained");
793 return unignore1((char **)v
, fwdignore
, "ignored");
799 return unignore1((char **)v
, fwdignore
+ 1, "retained");
803 unignore_one(const char *name
, struct ignoretab
*tab
)
805 struct ignore
*ip
, *iq
= NULL
;
808 for (ip
= tab
->i_head
[h
]; ip
; ip
= ip
->i_link
) {
809 if (asccasecmp(ip
->i_field
, name
) == 0) {
812 iq
->i_link
= ip
->i_link
;
814 tab
->i_head
[h
] = ip
->i_link
;
824 unignore1(char **list
, struct ignoretab
*tab
, char const *which
)
826 if (tab
->i_count
== 0) {
827 printf(catgets(catd
, CATSET
, 34,
828 "No fields currently being %s.\n"), which
);
832 unignore_one(*list
++, tab
);