]> diplodocus.org Git - nmh/blob - uip/rmm.c
Removed temporary probes added in commit
[nmh] / uip / rmm.c
1
2 /*
3 * rmm.c -- remove a message(s)
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 #define RMM_SWITCHES \
14 X("unlink", 0, UNLINKSW) \
15 X("nounlink", 0, NUNLINKSW) \
16 X("rmmproc program", 0, RPROCSW) \
17 X("normmproc", 0, NRPRCSW) \
18 X("version", 0, VERSIONSW) \
19 X("help", 0, HELPSW) \
20
21 #define X(sw, minchars, id) id,
22 DEFINE_SWITCH_ENUM(RMM);
23 #undef X
24
25 #define X(sw, minchars, id) { sw, minchars, id },
26 DEFINE_SWITCH_ARRAY(RMM, switches);
27 #undef X
28
29
30 int
31 main (int argc, char **argv)
32 {
33 int msgnum, unlink_msgs = 0;
34 char *cp, *maildir, *folder = NULL;
35 char buf[BUFSIZ], **argp;
36 char **arguments;
37 struct msgs_array msgs = { 0, 0, NULL };
38 struct msgs *mp;
39
40 #ifdef LOCALE
41 setlocale(LC_ALL, "");
42 #endif
43 invo_name = r1bindex (argv[0], '/');
44
45 /* read user profile/context */
46 context_read();
47
48 arguments = getarguments (invo_name, argc, argv, 1);
49 argp = arguments;
50
51 /* parse arguments */
52 while ((cp = *argp++)) {
53 if (*cp == '-') {
54 switch (smatch (++cp, switches)) {
55 case AMBIGSW:
56 ambigsw (cp, switches);
57 done (1);
58 case UNKWNSW:
59 adios (NULL, "-%s unknown\n", cp);
60
61 case HELPSW:
62 snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]",
63 invo_name);
64 print_help (buf, switches, 1);
65 done (0);
66 case VERSIONSW:
67 print_version(invo_name);
68 done (0);
69
70 case UNLINKSW:
71 unlink_msgs++;
72 continue;
73 case NUNLINKSW:
74 unlink_msgs = 0;
75 continue;
76
77 case RPROCSW:
78 if (!(rmmproc = *argp++) || *rmmproc == '-')
79 adios (NULL, "missing argument to %s", argp[-2]);
80 continue;
81 case NRPRCSW:
82 rmmproc = NULL;
83 continue;
84 }
85 }
86 if (*cp == '+' || *cp == '@') {
87 if (folder)
88 adios (NULL, "only one folder at a time!");
89 else
90 folder = pluspath (cp);
91 } else
92 app_msgarg(&msgs, cp);
93 }
94
95 if (!context_find ("path"))
96 free (path ("./", TFOLDER));
97 if (!msgs.size)
98 app_msgarg(&msgs, "cur");
99 if (!folder)
100 folder = getfolder (1);
101 maildir = m_maildir (folder);
102
103 if (chdir (maildir) == NOTOK)
104 adios (maildir, "unable to change directory to");
105
106 /* read folder and create message structure */
107 if (!(mp = folder_read (folder, 1)))
108 adios (NULL, "unable to read folder %s", folder);
109
110 /* check for empty folder */
111 if (mp->nummsg == 0)
112 adios (NULL, "no messages in %s", folder);
113
114 /* parse all the message ranges/sequences and set SELECTED */
115 for (msgnum = 0; msgnum < msgs.size; msgnum++)
116 if (!m_convert (mp, msgs.msgs[msgnum]))
117 done (1);
118 seq_setprev (mp); /* set the previous-sequence */
119
120 /*
121 * As part of the new world locking order, folder_delmsgs() now updates
122 * the sequence and context for us. But since folder_delmsgs() doesn't
123 * have access to the folder name, change the context now.
124 */
125
126 context_replace (pfolder, folder);
127
128 /* "remove" the SELECTED messages */
129 folder_delmsgs (mp, unlink_msgs, 0);
130
131 folder_free (mp); /* free folder structure */
132 done (0);
133 return 1;
134 }