Rearranged whitespace (and comments) in all the code!
[mmh] / uip / refile.c
index 25f7629..b8b64d0 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * refile.c -- move or link message(s) from a source folder
  *          -- into one or more destination folders
 #include <errno.h>
 
 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", 0 },
-    { NULL, 0 }
+#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", 0 },
+       { NULL, 0 }
 };
 
 static char maildir[BUFSIZ];
 
 struct st_fold {
-    char *f_name;
-    struct msgs *f_mp;
+       char *f_name;
+       struct msgs *f_mp;
 };
 
 /*
@@ -62,210 +61,210 @@ static int m_file (char *, struct st_fold *, int, 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;
-    char *cp, *folder = NULL, buf[BUFSIZ];
-    char **argp, **arguments;
-    char *filevec[NFOLDERS + 2];
-    char **files = &filevec[1];           /* leave room for remove_files:vec[0] */
-    struct st_fold folders[NFOLDERS + 1];
-    struct msgs_array msgs = { 0, 0, NULL };
-    struct msgs *mp;
+       int linkf = 0, preserve = 0, filep = 0;
+       int foldp = 0, isdf = 0, unlink_msgs = 0;
+       int i, msgnum;
+       char *cp, *folder = NULL, buf[BUFSIZ];
+       char **argp, **arguments;
+       char *filevec[NFOLDERS + 2];
+       char **files = &filevec[1];  /* leave room for remove_files:vec[0] */
+       struct st_fold folders[NFOLDERS + 1];
+       struct msgs_array msgs = { 0, 0, NULL };
+       struct msgs *mp;
 
 #ifdef LOCALE
-    setlocale(LC_ALL, "");
+       setlocale(LC_ALL, "");
 #endif
-    invo_name = r1bindex (argv[0], '/');
-
-    /* read user profile/context */
-    context_read();
-
-    arguments = getarguments (invo_name, argc, argv, 1);
-    argp = arguments;
-
-    /*
-     * 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;
-           }
+       invo_name = r1bindex (argv[0], '/');
+
+       /* read user profile/context */
+       context_read();
+
+       arguments = getarguments (invo_name, argc, argv, 1);
+       argp = arguments;
+
+       /*
+        * 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 =
+                               pluspath (cp);
+               } else
+                               app_msgarg(&msgs, cp);
        }
-       if (*cp == '+' || *cp == '@') {
-           if (foldp > NFOLDERS)
-               adios (NULL, "only %d folders allowed!", NFOLDERS);
-           folders[foldp++].f_name =
-               pluspath (cp);
-       } else
-               app_msgarg(&msgs, cp);
-    }
-
-    if (!context_find ("path"))
-       free (path ("./", TFOLDER));
-    if (foldp == 0)
-       adios (NULL, "no folder specified");
+
+       if (!context_find ("path"))
+               free (path ("./", TFOLDER));
+       if (foldp == 0)
+               adios (NULL, "no folder specified");
 
 #ifdef WHATNOW
-    if (!msgs.size && !foldp && !filep && (cp = getenv ("mhdraft")) && *cp)
-       files[filep++] = cp;
+       if (!msgs.size && !foldp && !filep && (cp = getenv ("mhdraft")) && *cp)
+               files[filep++] = cp;
 #endif /* WHATNOW */
 
-    /*
-     * We are refiling a file to the folders
-     */
-    if (filep > 0) {
-       if (folder || msgs.size)
-           adios (NULL, "use -file or some messages, not both");
+       /*
+        * We are refiling a file to the folders
+        */
+       if (filep > 0) {
+               if (folder || msgs.size)
+                       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, 0))
+                               done (1);
+               /* If -nolink, then "remove" files */
+               if (!linkf)
+                       remove_files (filep, filevec);
+               done (0);
+       }
+
+       if (!msgs.size)
+               app_msgarg(&msgs, "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 < msgs.size; msgnum++)
+               if (!m_convert (mp, msgs.msgs[msgnum]))
+                       done (1);
+       seq_setprev (mp);  /* set the previous-sequence */
+
+       /* create folder structures for each destination folder */
        opnfolds (folders, foldp);
-       for (i = 0; i < filep; i++)
-           if (m_file (files[i], folders, foldp, preserve, 0))
-               done (1);
-       /* If -nolink, then "remove" files */
-       if (!linkf)
-           remove_files (filep, filevec);
-       done (0);
-    }
-
-    if (!msgs.size)
-       app_msgarg(&msgs, "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 < msgs.size; msgnum++)
-       if (!m_convert (mp, msgs.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.
-     *
-     * This causes the add hook to be run for messages that are
-     * linked into another folder.  The refile hook is run for
-     * messages that are moved to another folder.
-     */
-    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, !linkf))
-               done (1);
-           free (cp);
+
+       /* Link all the selected messages into destination folders.
+        *
+        * This causes the add hook to be run for messages that are
+        * linked into another folder.  The refile hook is run for
+        * messages that are moved to another folder.
+        */
+       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, !linkf))
+                               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.
-     *
-     * Note that folder_delmsgs does not call the delete hook
-     * because the message has already been handled above.
-     */
-    if (!linkf) {
-       folder_delmsgs (mp, unlink_msgs, 1);
-    }
-
-    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   */
-    done (0);
-    return 1;
+
+       /*
+        * 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.
+        *
+        * Note that folder_delmsgs does not call the delete hook
+        * because the message has already been handled above.
+        */
+       if (!linkf) {
+               folder_delmsgs (mp, unlink_msgs, 1);
+       }
+
+       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   */
+       done (0);
+       return 1;
 }
 
 
@@ -277,26 +276,26 @@ main (int argc, char **argv)
 static void
 opnfolds (struct st_fold *folders, int nfolders)
 {
-    char nmaildir[BUFSIZ];
-    register struct st_fold *fp, *ep;
-    register struct msgs *mp;
+       char nmaildir[BUFSIZ];
+       register struct st_fold *fp, *ep;
+       register struct msgs *mp;
 
-    for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
-       chdir (m_maildir (""));
-       strncpy (nmaildir, m_maildir (fp->f_name), sizeof(nmaildir));
+       for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
+               chdir (m_maildir (""));
+               strncpy (nmaildir, m_maildir (fp->f_name), sizeof(nmaildir));
 
-    create_folder (nmaildir, 0, done);
+       create_folder (nmaildir, 0, done);
 
-       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;
+               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;
+               fp->f_mp = mp;
 
-       chdir (maildir);
-    }
+               chdir (maildir);
+       }
 }
 
 
@@ -308,14 +307,14 @@ opnfolds (struct st_fold *folders, int nfolders)
 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);
-    }
+       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);
+       }
 }
 
 
@@ -328,26 +327,26 @@ clsfolds (struct st_fold *folders, int nfolders)
 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");
-    }
+       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");
+       }
 }
 
 
@@ -359,12 +358,12 @@ remove_files (int filep, char **files)
 static int
 m_file (char *msgfile, struct st_fold *folders, int nfolders, int preserve, int refile)
 {
-    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, nfolders == 1 && refile, maildir)) == -1)
-           return 1;
-    }
-    return 0;
+       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, nfolders == 1 && refile, maildir)) == -1)
+                       return 1;
+       }
+       return 0;
 }