2 ** mark.c -- add message(s) to sequences in given folder
3 ** -- delete messages (s) from sequences in given folder
4 ** -- list sequences in given folder
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 static struct swit switches[] = {
22 { "sequence name", 0 },
43 static void print_debug(struct msgs *);
44 static void seq_printdebug(struct msgs *);
48 main(int argc, char **argv)
50 int addsw = 0, deletesw = 0, debugsw = 0;
51 int listsw = 0, publicsw = -1, zerosw = 0;
53 char *cp, *maildir, *folder = NULL, buf[BUFSIZ];
54 char **argp, **arguments;
55 char *seqs[NUMATTRS + 1];
56 struct msgs_array msgs = { 0, 0, NULL };
60 setlocale(LC_ALL, "");
62 invo_name = mhbasename(argv[0]);
64 /* read user profile/context */
67 arguments = getarguments(invo_name, argc, argv, 1);
73 while ((cp = *argp++)) {
75 switch (smatch(++cp, switches)) {
77 ambigsw(cp, switches);
80 adios(NULL, "-%s unknown\n", cp);
83 snprintf(buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name);
84 print_help(buf, switches, 1);
87 print_version(invo_name);
92 deletesw = listsw = 0;
100 addsw = deletesw = 0;
104 if (!(cp = *argp++) || *cp == '-')
105 adios(NULL, "missing argument to %s",
108 /* check if too many sequences specified */
109 if (seqp >= NUMATTRS)
110 adios(NULL, "too many sequences (more than %d) specified", NUMATTRS);
133 if (*cp == '+' || *cp == '@') {
135 adios(NULL, "only one folder at a time!");
137 folder = getcpy(expandfol(cp));
139 app_msgarg(&msgs, cp);
143 ** If we haven't specified -add, -delete, or -list,
144 ** then use -add if a sequence was specified, else
147 if (!addsw && !deletesw && !listsw) {
155 app_msgarg(&msgs, listsw ? seq_all : seq_cur);
157 folder = getcurfol();
158 maildir = toabsdir(folder);
160 if (chdir(maildir) == NOTOK)
161 adios(maildir, "unable to change directory to");
163 /* read folder and create message structure */
164 if (!(mp = folder_read(folder)))
165 adios(NULL, "unable to read folder %s", folder);
167 /* print some general debugging info */
171 /* check for empty folder */
173 adios(NULL, "no messages in %s", folder);
175 /* parse all the message ranges/sequences and set SELECTED */
176 for (msgnum = 0; msgnum < msgs.size; msgnum++)
177 if (!m_convert(mp, msgs.msgs[msgnum]))
180 if (publicsw == 1 && is_readonly(mp))
181 adios(NULL, "folder %s is read-only, so -public not allowed",
185 ** Make sure at least one sequence has been
186 ** specified if we are adding or deleting.
188 if (seqp == 0 && (addsw || deletesw))
189 adios(NULL, "-%s requires at least one -sequence argument",
190 addsw ? "add" : "delete");
193 /* Adding messages to sequences */
195 for (seqp = 0; seqs[seqp]; seqp++)
196 if (!seq_addsel(mp, seqs[seqp], publicsw, zerosw))
200 /* Deleting messages from sequences */
202 for (seqp = 0; seqs[seqp]; seqp++)
203 if (!seq_delsel(mp, seqs[seqp], publicsw, zerosw))
207 /* Listing messages in sequences */
210 /* print the sequences given */
211 for (seqp = 0; seqs[seqp]; seqp++)
212 seq_print(mp, seqs[seqp]);
214 /* else print them all */
218 /* print debugging info about SELECTED messages */
223 seq_save(mp); /* synchronize message sequences */
224 context_replace(curfolder, folder); /* update current folder */
225 context_save(); /* save the context file */
226 folder_free(mp); /* free folder/message structure */
233 ** Print general debugging info
236 print_debug(struct msgs *mp)
240 printf("invo_name = %s\n", invo_name);
241 printf("mypath = %s\n", mypath);
242 printf("defpath = %s\n", defpath);
243 printf("ctxpath = %s\n", ctxpath);
244 printf("context flags = %s\n", snprintb(buf, sizeof(buf),
245 (unsigned) ctxflags, DBITS));
246 printf("foldpath = %s\n", mp->foldpath);
247 printf("folder flags = %s\n\n", snprintb(buf, sizeof(buf),
248 (unsigned) mp->msgflags, FBITS));
249 printf("lowmsg=%d hghmsg=%d nummsg=%d curmsg=%d\n",
250 mp->lowmsg, mp->hghmsg, mp->nummsg, mp->curmsg);
251 printf("lowsel=%d hghsel=%d numsel=%d\n",
252 mp->lowsel, mp->hghsel, mp->numsel);
253 printf("lowoff=%d hghoff=%d\n\n", mp->lowoff, mp->hghoff);
258 ** Print debugging info about all the SELECTED
259 ** messages and the sequences they are in.
262 seq_printdebug(struct msgs *mp)
268 for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
269 if (is_selected(mp, msgnum))
270 printf("%*d: %s\n", DMAXFOLDER, msgnum, snprintb(buf, sizeof(buf), (unsigned) mp->msgstats[msgnum - mp->lowoff], seq_bits(mp)));