1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/*
* refile.c -- move or link message(s) from a source folder
* -- into one or more destination folders
*
* $Id: refile.c,v 1.2 1999/07/16 01:28:07 danh Exp $
*/
#include <h/mh.h>
#include <fcntl.h>
#include <errno.h>
/*
* We allocate spaces for messages (msgs array)
* this number of elements at a time.
*/
#define MAXMSGS 256
static struct swit switches[] = {
#define DRAFTSW 0
{ "draft", 0 },
#define LINKSW 1
{ "link", 0 },
#define NLINKSW 2
{ "nolink", 0 },
#define PRESSW 3
{ "preserve", 0 },
#define NPRESSW 4
{ "nopreserve", 0 },
#define UNLINKSW 5
{ "unlink", 0 },
#define NUNLINKSW 6
{ "nounlink", 0 },
#define SRCSW 7
{ "src +folder", 0 },
#define FILESW 8
{ "file file", 0 },
#define RPROCSW 9
{ "rmmproc program", 0 },
#define NRPRCSW 10
{ "normmproc", 0 },
#define VERSIONSW 11
{ "version", 0 },
#define HELPSW 12
{ "help", 4 },
{ NULL, 0 }
};
extern int errno;
static char maildir[BUFSIZ];
struct st_fold {
char *f_name;
struct msgs *f_mp;
};
/*
* static prototypes
*/
static void opnfolds (struct st_fold *, int);
static void clsfolds (struct st_fold *, int);
static void remove_files (int, char **);
static int m_file (char *, struct st_fold *, int, int);
int
main (int argc, char **argv)
{
int linkf = 0, preserve = 0, filep = 0;
int foldp = 0, isdf = 0, unlink_msgs = 0;
int i, msgnum, nummsgs, maxmsgs;
char *cp, *folder = NULL, buf[BUFSIZ];
char **argp, **arguments, **msgs;
char *filevec[NFOLDERS + 2];
char **files = &filevec[1]; /* leave room for remove_files:vec[0] */
struct st_fold folders[NFOLDERS + 1];
struct msgs *mp;
#ifdef LOCALE
setlocale(LC_ALL, "");
#endif
invo_name = r1bindex (argv[0], '/');
/* read user profile/context */
context_read();
arguments = getarguments (invo_name, argc, argv, 1);
argp = arguments;
/*
* Allocate the initial space to record message
* names, ranges, and sequences.
*/
nummsgs = 0;
maxmsgs = MAXMSGS;
if (!(msgs = (char **) malloc ((size_t) (maxmsgs * sizeof(*msgs)))))
adios (NULL, "unable to allocate storage");
/*
* Parse arguments
*/
while ((cp = *argp++)) {
if (*cp == '-') {
switch (smatch (++cp, switches)) {
case AMBIGSW:
ambigsw (cp, switches);
done (1);
case UNKWNSW:
adios (NULL, "-%s unknown\n", cp);
case HELPSW:
snprintf (buf, sizeof(buf), "%s [msgs] [switches] +folder ...",
invo_name);
print_help (buf, switches, 1);
done (1);
case VERSIONSW:
print_version(invo_name);
done (1);
case LINKSW:
linkf++;
continue;
case NLINKSW:
linkf = 0;
continue;
case PRESSW:
preserve++;
continue;
case NPRESSW:
preserve = 0;
continue;
case UNLINKSW:
unlink_msgs++;
continue;
case NUNLINKSW:
unlink_msgs = 0;
continue;
case SRCSW:
if (folder)
adios (NULL, "only one source folder at a time!");
if (!(cp = *argp++) || *cp == '-')
adios (NULL, "missing argument to %s", argp[-2]);
folder = path (*cp == '+' || *cp == '@' ? cp + 1 : cp,
*cp != '@' ? TFOLDER : TSUBCWF);
continue;
case DRAFTSW:
if (filep > NFOLDERS)
adios (NULL, "only %d files allowed!", NFOLDERS);
isdf = 0;
files[filep++] = getcpy (m_draft (NULL, NULL, 1, &isdf));
continue;
case FILESW:
if (filep > NFOLDERS)
adios (NULL, "only %d files allowed!", NFOLDERS);
if (!(cp = *argp++) || *cp == '-')
adios (NULL, "missing argument to %s", argp[-2]);
files[filep++] = path (cp, TFILE);
continue;
case RPROCSW:
if (!(rmmproc = *argp++) || *rmmproc == '-')
adios (NULL, "missing argument to %s", argp[-2]);
continue;
case NRPRCSW:
rmmproc = NULL;
continue;
}
}
if (*cp == '+' || *cp == '@') {
if (foldp > NFOLDERS)
adios (NULL, "only %d folders allowed!", NFOLDERS);
folders[foldp++].f_name =
path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF);
} else {
/*
* Check if we need to allocate more space
* for message names, ranges, and sequences.
*/
if (nummsgs >= maxmsgs) {
maxmsgs += MAXMSGS;
if (!(msgs = (char **) realloc (msgs,
(size_t) (maxmsgs * sizeof(*msgs)))))
adios (NULL, "unable to reallocate msgs storage");
}
msgs[nummsgs++] = cp;
}
}
if (!context_find ("path"))
free (path ("./", TFOLDER));
if (foldp == 0)
adios (NULL, "no folder specified");
#ifdef WHATNOW
if (!nummsgs && !foldp && !filep && (cp = getenv ("mhdraft")) && *cp)
files[filep++] = cp;
#endif /* WHATNOW */
/*
* We are refiling a file to the folders
*/
if (filep > 0) {
if (folder || nummsgs)
adios (NULL, "use -file or some messages, not both");
opnfolds (folders, foldp);
for (i = 0; i < filep; i++)
if (m_file (files[i], folders, foldp, preserve))
done (1);
/* If -nolink, then "remove" files */
if (!linkf)
remove_files (filep, filevec);
done (0);
}
if (!nummsgs)
msgs[nummsgs++] = "cur";
if (!folder)
folder = getfolder (1);
strncpy (maildir, m_maildir (folder), sizeof(maildir));
if (chdir (maildir) == NOTOK)
adios (maildir, "unable to change directory to");
/* read source folder and create message structure */
if (!(mp = folder_read (folder)))
adios (NULL, "unable to read folder %s", folder);
/* check for empty folder */
if (mp->nummsg == 0)
adios (NULL, "no messages in %s", folder);
/* parse the message range/sequence/name and set SELECTED */
for (msgnum = 0; msgnum < nummsgs; msgnum++)
if (!m_convert (mp, msgs[msgnum]))
done (1);
seq_setprev (mp); /* set the previous-sequence */
/* create folder structures for each destination folder */
opnfolds (folders, foldp);
/* Link all the selected messages into destination folders */
for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
if (is_selected (mp, msgnum)) {
cp = getcpy (m_name (msgnum));
if (m_file (cp, folders, foldp, preserve))
done (1);
free (cp);
}
}
/*
* This is a hack. If we are using an external rmmproc,
* then save the current folder to the context file,
* so the external rmmproc will remove files from the correct
* directory. This should be moved to folder_delmsgs().
*/
if (rmmproc) {
context_replace (pfolder, folder);
context_save ();
fflush (stdout);
}
/* If -nolink, then "remove" messages from source folder */
if (!linkf) {
folder_delmsgs (mp, unlink_msgs);
}
clsfolds (folders, foldp);
if (mp->hghsel != mp->curmsg
&& (mp->numsel != mp->nummsg || linkf))
seq_setcur (mp, mp->hghsel);
seq_save (mp); /* synchronize message sequences */
context_replace (pfolder, folder); /* update current folder */
context_save (); /* save the context file */
folder_free (mp); /* free folder structure */
return done (0);
}
/*
* Read all the destination folders and
* create folder structures for all of them.
*/
static void
opnfolds (struct st_fold *folders, int nfolders)
{
register char *cp;
char nmaildir[BUFSIZ];
register struct st_fold *fp, *ep;
register struct msgs *mp;
struct stat st;
for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
chdir (m_maildir (""));
strncpy (nmaildir, m_maildir (fp->f_name), sizeof(nmaildir));
if (stat (nmaildir, &st) == NOTOK) {
if (errno != ENOENT)
adios (nmaildir, "error on folder");
cp = concat ("Create folder \"", nmaildir, "\"? ", NULL);
if (!getanswer (cp))
done (1);
free (cp);
if (!makedir (nmaildir))
adios (NULL, "unable to create folder %s", nmaildir);
}
if (chdir (nmaildir) == NOTOK)
adios (nmaildir, "unable to change directory to");
if (!(mp = folder_read (fp->f_name)))
adios (NULL, "unable to read folder %s", fp->f_name);
mp->curmsg = 0;
fp->f_mp = mp;
chdir (maildir);
}
}
/*
* Set the Previous-Sequence and then sychronize the
* sequence file, for each destination folder.
*/
static void
clsfolds (struct st_fold *folders, int nfolders)
{
register struct st_fold *fp, *ep;
register struct msgs *mp;
for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
mp = fp->f_mp;
seq_setprev (mp);
seq_save (mp);
}
}
/*
* If you have a "rmmproc" defined, we called that
* to remove all the specified files. If "rmmproc"
* is not defined, then just unlink the files.
*/
static void
remove_files (int filep, char **files)
{
int i;
char **vec;
/* If rmmproc is defined, we use that */
if (rmmproc) {
vec = files++; /* vec[0] = filevec[0] */
files[filep] = NULL; /* NULL terminate list */
fflush (stdout);
vec[0] = r1bindex (rmmproc, '/');
execvp (rmmproc, vec);
adios (rmmproc, "unable to exec");
}
/* Else just unlink the files */
files++; /* advance past filevec[0] */
for (i = 0; i < filep; i++) {
if (unlink (files[i]) == NOTOK)
admonish (files[i], "unable to unlink");
}
}
/*
* Link (or copy) the message into each of
* the destination folders.
*/
static int
m_file (char *msgfile, struct st_fold *folders, int nfolders, int preserve)
{
int msgnum;
struct st_fold *fp, *ep;
for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
if ((msgnum = folder_addmsg (&fp->f_mp, msgfile, 1, 0, preserve)) == -1)
return 1;
}
return 0;
}
|