X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frmm.c;h=33ae9dad400d459635156be358deada291111654;hb=2f43405ca3cccdfc56faca7a8b6b0d6913cf45aa;hp=4b1d7d3bc8e3ef61c564a65d11e86d0a8a7aac38;hpb=e8b419a01421de7b88997d9a0220522dd38cbe8b;p=mmh diff --git a/uip/rmm.c b/uip/rmm.c index 4b1d7d3..33ae9da 100644 --- a/uip/rmm.c +++ b/uip/rmm.c @@ -31,7 +31,6 @@ main(int argc, char **argv) char **arguments; struct msgs_array msgs = { 0, 0, NULL }; struct msgs *mp; - pid_t pid; setlocale(LC_ALL, ""); invo_name = mhbasename(argv[0]); @@ -94,88 +93,53 @@ main(int argc, char **argv) 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 all the message ranges/sequences and set SELECTED */ + /* + ** parse all the message ranges/sequences and set SELECTED + ** (We do this for the refiling case as well, to complain + ** about invalid msg arguments in rmm, before we call refile.) + */ for (msgnum = 0; msgnum < msgs.size; msgnum++) { if (!m_convert(mp, msgs.msgs[msgnum])) { done(1); } } - seq_setprev(mp); /* set the previous-sequence */ + context_replace(curfolder, folder); + context_save(); if (unlink_msgs) { /* "remove" the SELECTED messages */ folder_delmsgs(mp, 1); - + seq_setprev(mp); seq_save(mp); - context_replace(curfolder, folder); - context_save(); folder_free(mp); done(0); return 1; } - /* - ** This is hackish. If we don't unlink, but refile, - ** then we need to update the current folder in the - ** context so the external program will refile files - ** from the correct directory. - */ - context_replace(curfolder, folder); - context_save(); - fflush(stdout); - /* remove by refiling. */ - /* Unset the EXISTS flag for each message to be removed */ - for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) { - if (is_selected(mp, msgnum)) { - unset_exists(mp, msgnum); - } - } - /* Mark that the sequence information has changed */ - mp->msgflags |= SEQMOD; + folder_free(mp); + fflush(stdout); - if (mp->numsel+4 > MAXARGS) { + if (msgs.size+6 > MAXARGS) { adios(NULL, "more than %d messages for refile exec", - MAXARGS - 4); + MAXARGS - 6); } - vec = (char **)mh_xmalloc((size_t)(mp->numsel + 4) * sizeof(*vec)); + vec = (char **)mh_xmalloc((size_t)(msgs.size + 6) * sizeof(*vec)); vec[vecp++] = "refile"; + vec[vecp++] = "-src"; + vec[vecp++] = concat("+", folder, NULL); vec[vecp++] = "-nolink"; vec[vecp++] = concat("+", trashfolder, NULL); - for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) { - if (!is_selected(mp, msgnum)) { - continue; - } - if (!(vec[vecp++] = strdup(m_name(msgnum)))) { - adios(NULL, "strdup failed"); - } + for (msgnum = 0; msgnum < msgs.size; msgnum++) { + vec[vecp++] = msgs.msgs[msgnum]; } vec[vecp] = NULL; + done(execprog(*vec, vec)); - fflush(stdout); - switch (pid = fork()) { - case -1: - adios("fork", "unable to"); - - case 0: - execvp(*vec, vec); - fprintf(stderr, "unable to exec "); - perror(*vec); - _exit(-1); - - default: - pidwait(pid, -1); - } - - folder_free(mp); - done(0); - return 1; + return 1; /* just in case ... */ }