Fix spelling and encoding errors in manpages and an error message
[mmh] / sbr / seq_setunseen.c
1 /*
2 ** seq_setunseen.c -- add/delete all messages which have the SELECT_UNSEEN
3 **                 -- bit set to/from the Unseen-Sequence
4 **
5 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
6 ** COPYRIGHT file in the root directory of the nmh distribution for
7 ** complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <h/utils.h>
12
13 /*
14 ** We scan through the folder and act upon all messages
15 ** that are marked with the SELECT_UNSEEN bit.
16 **
17 ** Either add messages to or (if doadd is false) delete messages from
18 ** the unseen sequence(s).
19 */
20 void
21 seq_setunseen(struct msgs *mp, int doadd)
22 {
23         int n;
24         char **ap, *cp, *dp;
25
26         /*
27         ** Get the list of sequences for Unseen-Sequence
28         ** and split them.
29         */
30         if ((cp = context_find(usequence))) {
31                 dp = mh_xstrdup(cp);
32         } else {
33                 /* not set in profile, thus use the default */
34                 dp = mh_xstrdup(seq_unseen);
35         }
36         if (!(ap = brkstring(dp, " ", "\n")) || !*ap) {
37                 /* contains no sequence name, i.e. we're finished */
38                 mh_free0(&dp);
39                 return;
40         }
41
42         /*
43         ** Now add/delete each message which has the SELECT_UNSEEN
44         ** bit set to/from each of these sequences.
45         */
46         for (; *ap; ap++) {
47                 if (doadd) {
48                         for (n = mp->lowmsg; n <= mp->hghmsg; n++) {
49                                 if (is_unseen(mp, n)) {
50                                         seq_addmsg(mp, *ap, n, -1, 0);
51                                 }
52                         }
53                 } else {
54                         /* make sure sequence exists first */
55                         if (seq_getnum(mp, *ap) != -1) {
56                                 for (n = mp->lowsel; n <= mp->hghsel; n++) {
57                                         if (is_unseen(mp, n)) {
58                                                 seq_delmsg(mp, *ap, n);
59                                         }
60                                 }
61                         }
62                 }
63         }
64
65         mh_free0(&dp);
66 }