3 * seq_setunseen.c -- add/delete all messages which have the SELECT_UNSEEN
4 * -- bit set to/from the Unseen-Sequence
6 * This code is Copyright (c) 2002, by the authors of nmh. See the
7 * COPYRIGHT file in the root directory of the nmh distribution for
8 * complete copyright information.
14 * We scan through the folder and act upon all messages
15 * that are marked with the SELECT_UNSEEN bit.
17 * If seen == 1, delete messages from unseen sequence.
18 * If seen == 0, add messages to unseen sequence.
22 seq_setunseen (struct msgs *mp, int seen)
28 * Get the list of sequences for Unseen-Sequence
31 if ((cp = context_find (usequence))) {
33 if (!(ap = brkstring (dp, " ", "\n")) || !*ap) {
42 * Now add/delete each message which has the SELECT_UNSEEN
43 * bit set to/from each of these sequences.
47 /* make sure sequence exists first */
48 if (seq_getnum(mp, *ap) != -1)
49 for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
50 if (is_unseen (mp, msgnum))
51 seq_delmsg (mp, *ap, msgnum);
53 for (msgnum = mp->lowmsg; msgnum <= mp->hghmsg; msgnum++)
54 if (is_unseen (mp, msgnum))
55 seq_addmsg (mp, *ap, msgnum, -1, 0);