]>
diplodocus.org Git - nmh/blob - uip/refile.c
3 * refile.c -- move or link message(s) from a source folder
4 * -- into one or more destination folders
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.
15 #define REFILE_SWITCHES \
16 X("draft", 0, DRAFTSW) \
17 X("link", 0, LINKSW) \
18 X("nolink", 0, NLINKSW) \
19 X("preserve", 0, PRESSW) \
20 X("nopreserve", 0, NPRESSW) \
21 X("retainsequences", 0, RETAINSEQSSW) \
22 X("noretainsequences", 0, NRETAINSEQSSW) \
23 X("unlink", 0, UNLINKSW) \
24 X("nounlink", 0, NUNLINKSW) \
25 X("src +folder", 0, SRCSW) \
26 X("file file", 0, FILESW) \
27 X("rmmproc program", 0, RPROCSW) \
28 X("normmproc", 0, NRPRCSW) \
29 X("version", 0, VERSIONSW) \
30 X("help", 0, HELPSW) \
32 #define X(sw, minchars, id) id,
33 DEFINE_SWITCH_ENUM(REFILE
);
36 #define X(sw, minchars, id) { sw, minchars, id },
37 DEFINE_SWITCH_ARRAY(REFILE
, switches
);
40 static char maildir
[BUFSIZ
];
50 static void opnfolds (struct st_fold
*, int);
51 static void clsfolds (struct st_fold
*, int);
52 static void remove_files (int, char **);
53 static int m_file (struct msgs
*, char *, int, struct st_fold
*, int, int, int);
54 static void copy_seqs (struct msgs
*, int, struct msgs
*, int);
58 main (int argc
, char **argv
)
60 int linkf
= 0, preserve
= 0, retainseqs
= 0, filep
= 0;
61 int foldp
= 0, isdf
= 0, unlink_msgs
= 0;
63 char *cp
, *folder
= NULL
, buf
[BUFSIZ
];
64 char **argp
, **arguments
;
65 char *filevec
[NFOLDERS
+ 2];
66 char **files
= &filevec
[1]; /* leave room for remove_files:vec[0] */
67 struct st_fold folders
[NFOLDERS
+ 1];
68 struct msgs_array msgs
= { 0, 0, NULL
};
72 setlocale(LC_ALL
, "");
74 invo_name
= r1bindex (argv
[0], '/');
76 /* read user profile/context */
79 arguments
= getarguments (invo_name
, argc
, argv
, 1);
85 while ((cp
= *argp
++)) {
87 switch (smatch (++cp
, switches
)) {
89 ambigsw (cp
, switches
);
92 adios (NULL
, "-%s unknown\n", cp
);
95 snprintf (buf
, sizeof(buf
), "%s [msgs] [switches] +folder ...",
97 print_help (buf
, switches
, 1);
100 print_version(invo_name
);
133 adios (NULL
, "only one source folder at a time!");
134 if (!(cp
= *argp
++) || *cp
== '-')
135 adios (NULL
, "missing argument to %s", argp
[-2]);
136 folder
= path (*cp
== '+' || *cp
== '@' ? cp
+ 1 : cp
,
137 *cp
!= '@' ? TFOLDER
: TSUBCWF
);
140 if (filep
> NFOLDERS
)
141 adios (NULL
, "only %d files allowed!", NFOLDERS
);
143 files
[filep
++] = getcpy (m_draft (NULL
, NULL
, 1, &isdf
));
146 if (filep
> NFOLDERS
)
147 adios (NULL
, "only %d files allowed!", NFOLDERS
);
148 if (!(cp
= *argp
++) || *cp
== '-')
149 adios (NULL
, "missing argument to %s", argp
[-2]);
150 files
[filep
++] = path (cp
, TFILE
);
154 if (!(rmmproc
= *argp
++) || *rmmproc
== '-')
155 adios (NULL
, "missing argument to %s", argp
[-2]);
162 if (*cp
== '+' || *cp
== '@') {
163 if (foldp
> NFOLDERS
)
164 adios (NULL
, "only %d folders allowed!", NFOLDERS
);
165 folders
[foldp
++].f_name
=
168 app_msgarg(&msgs
, cp
);
171 if (!context_find ("path"))
172 free (path ("./", TFOLDER
));
174 adios (NULL
, "no folder specified");
177 if (!msgs
.size
&& !foldp
&& !filep
&& (cp
= getenv ("mhdraft")) && *cp
)
182 * We are refiling a file to the folders
185 if (folder
|| msgs
.size
)
186 adios (NULL
, "use -file or some messages, not both");
187 opnfolds (folders
, foldp
);
188 for (i
= 0; i
< filep
; i
++)
189 if (m_file (0, files
[i
], 0, folders
, foldp
, preserve
, 0))
191 /* If -nolink, then "remove" files */
193 remove_files (filep
, filevec
);
198 app_msgarg(&msgs
, "cur");
200 folder
= getfolder (1);
201 strncpy (maildir
, m_maildir (folder
), sizeof(maildir
));
203 if (chdir (maildir
) == NOTOK
)
204 adios (maildir
, "unable to change directory to");
206 /* read source folder and create message structure */
207 if (!(mp
= folder_read (folder
, 1)))
208 adios (NULL
, "unable to read folder %s", folder
);
210 /* check for empty folder */
212 adios (NULL
, "no messages in %s", folder
);
214 /* parse the message range/sequence/name and set SELECTED */
215 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
216 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
218 seq_setprev (mp
); /* set the previous-sequence */
220 /* create folder structures for each destination folder */
221 opnfolds (folders
, foldp
);
223 /* Link all the selected messages into destination folders.
225 * This causes the add hook to be run for messages that are
226 * linked into another folder. The refile hook is run for
227 * messages that are moved to another folder.
229 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
230 if (is_selected (mp
, msgnum
)) {
231 cp
= getcpy (m_name (msgnum
));
232 if (m_file (mp
, cp
, retainseqs
? msgnum
: 0, folders
, foldp
,
240 * Update this now, since folder_delmsgs() will save the context
241 * but doesn't have access to the folder name.
244 context_replace (pfolder
, folder
); /* update current folder */
247 * Adjust "cur" if necessary
250 if (mp
->hghsel
!= mp
->curmsg
251 && (mp
->numsel
!= mp
->nummsg
|| linkf
))
252 seq_setcur (mp
, mp
->hghsel
);
254 /* If -nolink, then "remove" messages from source folder.
256 * Note that folder_delmsgs does not call the delete hook
257 * because the message has already been handled above.
260 folder_delmsgs (mp
, unlink_msgs
, 1);
262 seq_save (mp
); /* synchronize message sequences */
263 context_save (); /* save the context file */
266 clsfolds (folders
, foldp
);
268 folder_free (mp
); /* free folder structure */
275 * Read all the destination folders and
276 * create folder structures for all of them.
280 opnfolds (struct st_fold
*folders
, int nfolders
)
282 char nmaildir
[BUFSIZ
];
283 register struct st_fold
*fp
, *ep
;
284 register struct msgs
*mp
;
286 for (fp
= folders
, ep
= folders
+ nfolders
; fp
< ep
; fp
++) {
287 chdir (m_maildir (""));
288 strncpy (nmaildir
, m_maildir (fp
->f_name
), sizeof(nmaildir
));
290 create_folder (nmaildir
, 0, done
);
292 if (chdir (nmaildir
) == NOTOK
)
293 adios (nmaildir
, "unable to change directory to");
294 if (!(mp
= folder_read (fp
->f_name
, 1)))
295 adios (NULL
, "unable to read folder %s", fp
->f_name
);
306 * Set the Previous-Sequence and then sychronize the
307 * sequence file, for each destination folder.
311 clsfolds (struct st_fold
*folders
, int nfolders
)
313 register struct st_fold
*fp
, *ep
;
314 register struct msgs
*mp
;
316 for (fp
= folders
, ep
= folders
+ nfolders
; fp
< ep
; fp
++) {
325 * If you have a "rmmproc" defined, we called that
326 * to remove all the specified files. If "rmmproc"
327 * is not defined, then just unlink the files.
331 remove_files (int filep
, char **files
)
334 char **vec
, *program
;
336 /* If rmmproc is defined, we use that */
338 vec
= argsplit(rmmproc
, &program
, &vecp
);
339 files
++; /* Yes, we need to do this */
340 for (i
= 0; i
< filep
; i
++)
341 vec
[vecp
++] = files
[i
];
342 vec
[vecp
] = NULL
; /* NULL terminate list */
345 execvp (program
, vec
);
346 adios (rmmproc
, "unable to exec");
349 /* Else just unlink the files */
350 files
++; /* advance past filevec[0] */
351 for (i
= 0; i
< filep
; i
++) {
352 if (unlink (files
[i
]) == NOTOK
)
353 admonish (files
[i
], "unable to unlink");
359 * Link (or copy) the message into each of the destination folders.
360 * If oldmsgnum is not 0, call copy_seqs().
364 m_file (struct msgs
*mp
, char *msgfile
, int oldmsgnum
,
365 struct st_fold
*folders
, int nfolders
, int preserve
, int refile
)
368 struct st_fold
*fp
, *ep
;
370 for (fp
= folders
, ep
= folders
+ nfolders
; fp
< ep
; fp
++) {
371 if ((msgnum
= folder_addmsg (&fp
->f_mp
, msgfile
, 1, 0, preserve
, nfolders
== 1 && refile
, maildir
)) == -1)
373 if (oldmsgnum
) copy_seqs (mp
, oldmsgnum
, fp
->f_mp
, msgnum
);
380 * Copy sequence information for a refiled message to its
381 * new folder. Skip the cur sequence.
384 copy_seqs (struct msgs
*oldmp
, int oldmsgnum
, struct msgs
*newmp
, int newmsgnum
)
389 for (seq
= svector_strs (oldmp
->msgattrs
), seqnum
= 0;
390 *seq
&& seqnum
< svector_size (oldmp
->msgattrs
);
392 if (strcmp (current
, *seq
)) {
393 assert ((int) seqnum
== seq_getnum (oldmp
, *seq
));
394 if (in_sequence (oldmp
, seqnum
, oldmsgnum
)) {
395 seq_addmsg (newmp
, *seq
, newmsgnum
,
396 is_seq_private (oldmp
, seqnum
) ? 0 : 1, 0);