]>
diplodocus.org Git - nmh/blob - uip/rmm.c
3 * rmm.c -- remove a message(s)
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.
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) \
21 #define X(sw, minchars, id) id,
22 DEFINE_SWITCH_ENUM(RMM
);
25 #define X(sw, minchars, id) { sw, minchars, id },
26 DEFINE_SWITCH_ARRAY(RMM
, switches
);
31 main (int argc
, char **argv
)
33 int msgnum
, unlink_msgs
= 0;
34 char *cp
, *maildir
, *folder
= NULL
;
35 char buf
[BUFSIZ
], **argp
;
37 struct msgs_array msgs
= { 0, 0, NULL
};
41 setlocale(LC_ALL
, "");
43 invo_name
= r1bindex (argv
[0], '/');
45 /* read user profile/context */
48 arguments
= getarguments (invo_name
, argc
, argv
, 1);
52 while ((cp
= *argp
++)) {
54 switch (smatch (++cp
, switches
)) {
56 ambigsw (cp
, switches
);
59 adios (NULL
, "-%s unknown\n", cp
);
62 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
64 print_help (buf
, switches
, 1);
67 print_version(invo_name
);
78 if (!(rmmproc
= *argp
++) || *rmmproc
== '-')
79 adios (NULL
, "missing argument to %s", argp
[-2]);
86 if (*cp
== '+' || *cp
== '@') {
88 adios (NULL
, "only one folder at a time!");
90 folder
= pluspath (cp
);
92 app_msgarg(&msgs
, cp
);
95 if (!context_find ("path"))
96 free (path ("./", TFOLDER
));
98 app_msgarg(&msgs
, "cur");
100 folder
= getfolder (1);
101 maildir
= m_maildir (folder
);
103 if (chdir (maildir
) == NOTOK
)
104 adios (maildir
, "unable to change directory to");
106 /* read folder and create message structure */
107 if (!(mp
= folder_read (folder
, 1)))
108 adios (NULL
, "unable to read folder %s", folder
);
110 /* check for empty folder */
112 adios (NULL
, "no messages in %s", folder
);
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
]))
118 seq_setprev (mp
); /* set the previous-sequence */
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.
126 context_replace (pfolder
, folder
);
128 /* "remove" the SELECTED messages */
129 folder_delmsgs (mp
, unlink_msgs
, 0);
131 folder_free (mp
); /* free folder structure */