]>
diplodocus.org Git - nmh/blob - sbr/folder_delmsgs.c
3 * folder_delmsgs.c -- "remove" SELECTED messages from a folder
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.
14 * 1) If we are using an external rmmproc, then exec it.
15 * 2) Else if unlink_msgs is non-zero, then unlink the
17 * 3) Else rename SELECTED messages by prefixing name
18 * with a standard prefix.
20 * If there is an error, return -1, else return 0.
24 folder_delmsgs (struct msgs
*mp
, int unlink_msgs
, int nohook
)
27 int msgnum
, vecp
, retval
= 0;
28 char buf
[100], *dp
, **vec
, *prog
;
32 * If "rmmproc" is defined, exec it to remove messages.
35 /* Unset the EXISTS flag for each message to be removed */
36 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
37 if (is_selected (mp
, msgnum
))
38 unset_exists (mp
, msgnum
);
41 /* Mark that the sequence information has changed */
42 mp
->msgflags
|= SEQMOD
;
45 * Write out the sequence and context files; this will release
46 * any locks before the rmmproc is called.
52 vec
= argsplit(rmmproc
, &prog
, &vecp
);
55 * argsplit allocates a MAXARGS vector by default, If we need
56 * something bigger, allocate it ourselves
59 if (mp
->numsel
+ vecp
+ 1 > MAXARGS
)
60 vec
= mh_xrealloc(vec
, (mp
->numsel
+ vecp
+ 1) * sizeof *vec
);
61 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
62 if (is_selected (mp
, msgnum
) &&
63 !(vec
[vecp
++] = strdup (m_name (msgnum
))))
64 adios (NULL
, "strdup failed");
70 switch (pid
= fork()) {
72 advise ("fork", "unable to");
77 fprintf (stderr
, "unable to exec ");
82 arglist_free(prog
, vec
);
83 return (pidwait (pid
, -1));
88 * Either unlink or rename the SELECTED messages
90 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
91 if (is_selected (mp
, msgnum
)) {
92 /* unselect message */
93 unset_selected (mp
, msgnum
);
97 * Run the external hook on the message if one was specified in the context.
98 * All we have is the message number; we have changed to the directory
99 * containing the message. So, we need to extract that directory to form
100 * the complete path. Note that the caller knows the directory, but has
101 * no way of passing that to us.
105 (void)snprintf(msgpath
, sizeof (msgpath
), "%s/%d", mp
->foldpath
, msgnum
);
106 (void)ext_hook("del-hook", msgpath
, NULL
);
109 dp
= m_name (msgnum
);
112 /* just unlink the messages */
113 if (m_unlink (dp
) == -1) {
114 admonish (dp
, "unable to unlink");
119 /* or rename messages with standard prefix */
120 strncpy (buf
, m_backup (dp
), sizeof(buf
));
121 if (rename (dp
, buf
) == -1) {
122 admonish (buf
, "unable to rename %s to", dp
);
128 /* If removal was successful, decrement message count */
129 unset_exists (mp
, msgnum
);
136 adios (NULL
, "oops, mp->numsel should be 0");
138 /* Mark that the sequence information has changed */
139 mp
->msgflags
|= SEQMOD
;
142 * Write out sequence and context files