s/pfolder/curfolder/g
[mmh] / uip / show.c
index eda19ca..757b001 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * show.c -- show/list messages
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** show.c -- show/list messages
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 #include <h/mime.h>
@@ -35,24 +35,22 @@ static struct swit switches[] = {
        { "showmimeproc program", 0 },
 #define NSHOWSW  11
        { "noshowproc", 0 },
-#define DRFTSW  12
-       { "draft", 0 },
-#define FILESW  13
+#define FILESW  12
        { "file file", -4 },  /* interface from showfile */
-#define VERSIONSW  14
+#define VERSIONSW  13
        { "version", 0 },
-#define HELPSW  15
+#define HELPSW  14
        { "help", 0 },
        { NULL, 0 }
 };
 
 /*
- * static prototypes
- */
+** static prototypes
+*/
 static int is_nontext(char *);
 
 /* prototype from mhlsbr.c */
-int mhl (int, char **);
+int mhl(int, char **);
 
 #define SHOW  0
 #define NEXT  1
@@ -60,11 +58,11 @@ int mhl (int, char **);
 
 
 int
-main (int argc, char **argv)
+main(int argc, char **argv)
 {
-       int draftsw = 0, headersw = 1, msgp = 0;
+       int headersw = 1, msgp = 0;
        int nshow = 0, checkmime = 1, mime;
-       int vecp = 1, procp = 1, isdf = 0, mode = SHOW, msgnum;
+       int vecp = 1, procp = 1, mode = SHOW, msgnum;
        char *cp, *maildir, *file = NULL, *folder = NULL, *proc;
        char buf[BUFSIZ], **argp, **arguments;
        char *msgs[MAXARGS], *vec[MAXARGS];
@@ -73,58 +71,48 @@ main (int argc, char **argv)
 #ifdef LOCALE
        setlocale(LC_ALL, "");
 #endif
-       invo_name = r1bindex (argv[0], '/');
+       invo_name = mhbasename(argv[0]);
 
        /* read user profile/context */
        context_read();
 
-       if (!mh_strcasecmp (invo_name, "next")) {
+       if (!mh_strcasecmp(invo_name, "next")) {
                mode = NEXT;
-       } else if (!mh_strcasecmp (invo_name, "prev")) {
+       } else if (!mh_strcasecmp(invo_name, "prev")) {
                mode = PREV;
        }
-       arguments = getarguments (invo_name, argc, argv, 1);
+       arguments = getarguments(invo_name, argc, argv, 1);
        argp = arguments;
 
        while ((cp = *argp++)) {
                if (*cp == '-') {
-                       switch (smatch (++cp, switches)) {
+                       switch (smatch(++cp, switches)) {
                                case AMBIGSW:
-                                       ambigsw (cp, switches);
-                                       done (1);
+                                       ambigsw(cp, switches);
+                                       done(1);
                                case UNKWNSW:
                                case NPROGSW:
                                        vec[vecp++] = --cp;
                                        continue;
 
                                case HELPSW:
-                                       snprintf (buf, sizeof(buf),
-                                               "%s [+folder] %s[switches] [switches for showproc]",
-                                               invo_name, mode == SHOW ? "[msgs] ": "");
-                                       print_help (buf, switches, 1);
-                                       done (1);
+                                       snprintf(buf, sizeof(buf), "%s [+folder] %s[switches] [switches for showproc]", invo_name, mode == SHOW ? "[msgs] ": "");
+                                       print_help(buf, switches, 1);
+                                       done(1);
                                case VERSIONSW:
                                        print_version(invo_name);
-                                       done (1);
+                                       done(1);
 
-                               case DRFTSW:
-                                       if (file)
-                                               adios (NULL, "only one file at a time!");
-                                       draftsw++;
-                                       if (mode == SHOW)
-                                               continue;
-usage:
-                                       adios (NULL,
-                                                       "usage: %s [+folder] [switches] [switches for showproc]",
-                                                       invo_name);
                                case FILESW:
                                        if (mode != SHOW)
-                                               goto usage;
-                                       if (draftsw || file)
-                                               adios (NULL, "only one file at a time!");
+usage:
+                                               adios(NULL, "usage: %s [+folder] [switches] [switches for showproc]", invo_name);
+
+                                       if (file)
+                                               adios(NULL, "only one file at a time!");
                                        if (!(cp = *argp++) || *cp == '-')
-                                               adios (NULL, "missing argument to %s", argp[-2]);
-                                       file = path (cp, TFILE);
+                                               adios(NULL, "missing argument to %s", argp[-2]);
+                                       file = getcpy(expanddir(cp));
                                        continue;
 
                                case HEADSW:
@@ -137,8 +125,8 @@ usage:
                                case FORMSW:
                                        vec[vecp++] = --cp;
                                        if (!(cp = *argp++) || *cp == '-')
-                                               adios (NULL, "missing argument to %s", argp[-2]);
-                                       vec[vecp++] = getcpy (etcpath(cp));
+                                               adios(NULL, "missing argument to %s", argp[-2]);
+                                       vec[vecp++] = getcpy(etcpath(cp));
                                        continue;
 
                                case PROGSW:
@@ -146,13 +134,13 @@ usage:
                                case WIDTHSW:
                                        vec[vecp++] = --cp;
                                        if (!(cp = *argp++) || *cp == '-')
-                                               adios (NULL, "missing argument to %s", argp[-2]);
+                                               adios(NULL, "missing argument to %s", argp[-2]);
                                        vec[vecp++] = cp;
                                        continue;
 
                                case SHOWSW:
                                        if (!(showproc = *argp++) || *showproc == '-')
-                                               adios (NULL, "missing argument to %s", argp[-2]);
+                                               adios(NULL, "missing argument to %s", argp[-2]);
                                        nshow = 0;
                                        continue;
                                case NSHOWSW:
@@ -161,7 +149,7 @@ usage:
 
                                case SHOWMIMESW:
                                        if (!(showmimeproc = *argp++) || *showmimeproc == '-')
-                                               adios (NULL, "missing argument to %s", argp[-2]);
+                                               adios(NULL, "missing argument to %s", argp[-2]);
                                        nshow = 0;
                                        continue;
                                case CHECKMIMESW:
@@ -174,33 +162,27 @@ usage:
                }
                if (*cp == '+' || *cp == '@') {
                        if (folder)
-                               adios (NULL, "only one folder at a time!");
+                               adios(NULL, "only one folder at a time!");
                        else
-                               folder = pluspath (cp);
+                               folder = getcpy(expandfol(cp));
+               } else if (mode != SHOW) {
+                       goto usage;
                } else {
-                       if (mode != SHOW)
-                               goto usage;
-                       else
-                               msgs[msgp++] = cp;
+                       msgs[msgp++] = cp;
                }
        }
        procp = vecp;
 
-       if (!context_find ("path"))
-               free (path ("./", TFOLDER));
-
-       if (draftsw || file) {
+       if (file) {
                if (msgp)
-                       adios (NULL, "only one file at a time!");
-               vec[vecp++] = draftsw
-                       ? getcpy (m_draft (folder, msgp ? msgs[0] : NULL, 1, &isdf))
-                       : file;
+                       adios(NULL, "only one file at a time!");
+               vec[vecp++] = file;
                goto go_to_it;
        }
 
 #ifdef WHATNOW
-       if (!msgp && !folder && mode == SHOW && (cp = getenv ("mhdraft")) && *cp) {
-               draftsw++;
+       if (!msgp && !folder && mode == SHOW &&
+                       (cp = getenv("mhdraft")) && *cp) {
                vec[vecp++] = cp;
                goto go_to_it;
        }
@@ -221,76 +203,82 @@ usage:
        }
 
        if (!folder)
-               folder = getfolder (1);
-       maildir = m_maildir (folder);
+               folder = getcurfol();
+       maildir = toabsdir(folder);
 
-       if (chdir (maildir) == NOTOK)
-               adios (maildir, "unable to change directory to");
+       if (chdir(maildir) == NOTOK)
+               adios(maildir, "unable to change directory to");
 
        /* read folder and create message structure */
-       if (!(mp = folder_read (folder)))
-               adios (NULL, "unable to read folder %s", folder);
+       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);
+               adios(NULL, "no messages in %s", folder);
 
        /* parse all the message ranges/sequences and set SELECTED */
        for (msgnum = 0; msgnum < msgp; msgnum++)
-               if (!m_convert (mp, msgs[msgnum]))
-                       done (1);
+               if (!m_convert(mp, msgs[msgnum]))
+                       done(1);
 
        /*
-        * Set the SELECT_UNSEEN bit for all the SELECTED messages,
-        * since we will use that as a tag to know which messages
-        * to remove from the "unseen" sequence.
-        */
+       ** Set the SELECT_UNSEEN bit for all the SELECTED messages,
+       ** since we will use that as a tag to know which messages
+       ** to remove from the "unseen" sequence.
+       */
        for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
                if (is_selected(mp, msgnum))
-                       set_unseen (mp, msgnum);
+                       set_unseen(mp, msgnum);
 
-       seq_setprev (mp);  /* set the Previous-Sequence */
-       seq_setunseen (mp, 1);  /* unset the Unseen-Sequence */
+       seq_setprev(mp);  /* set the Previous-Sequence */
+       seq_setunseen(mp, 1);  /* unset the Unseen-Sequence */
 
        if (mp->numsel > MAXARGS - 2)
-               adios (NULL, "more than %d messages for show exec", MAXARGS - 2);
+               adios(NULL, "more than %d messages for show exec",
+                               MAXARGS - 2);
 
        for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
                if (is_selected(mp, msgnum))
-                       vec[vecp++] = getcpy (m_name (msgnum));
+                       vec[vecp++] = getcpy(m_name(msgnum));
 
-       seq_setcur (mp, mp->hghsel);  /* update current message  */
-       seq_save (mp);  /* synchronize sequences   */
-       context_replace (pfolder, folder);  /* update current folder   */
-       context_save ();  /* save the context file   */
+       seq_setcur(mp, mp->hghsel);  /* update current message  */
+       seq_save(mp);  /* synchronize sequences   */
+       context_replace(curfolder, folder);  /* update current folder   */
+       context_save();  /* save the context file   */
 
        if (headersw && vecp == 2)
-               printf ("(Message %s:%s)\n", folder, vec[1]);
+               printf("(Message %s:%s)\n", folder, vec[1]);
 
 go_to_it: ;
-       fflush (stdout);
+       fflush(stdout);
 
        vec[vecp] = NULL;
 
        /*
-        * Decide which "proc" to use
-        */
+       ** Decide which "proc" to use
+       */
        mime = 0;
        if (nshow) {
                proc = catproc;
        } else {
                /* check if any messages are non-text MIME messages */
-               if (checkmime && !getenv ("NOMHNPROC")) {
-                       if (!draftsw && !file) {
-                               /* loop through selected messages and check for MIME */
-                               for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
-                                       if (is_selected (mp, msgnum) && is_nontext (m_name (msgnum))) {
+               if (checkmime && !getenv("NOMHNPROC")) {
+                       if (!file) {
+                               /*
+                               ** loop through selected messages
+                               ** and check for MIME
+                               */
+                               for (msgnum = mp->lowsel;
+                                               msgnum <= mp->hghsel;
+                                               msgnum++)
+                                       if (is_selected(mp, msgnum) && is_nontext(m_name(msgnum))) {
                                                mime = 1;
                                                break;
                                        }
                        } else {
-                               /* check the file or draft for MIME */
-                               if (is_nontext (vec[vecp - 1]))
+                               /* check the file for MIME */
+                               if (is_nontext(vec[vecp - 1]))
                                        mime = 1;
                        }
                }
@@ -302,16 +290,16 @@ go_to_it: ;
                        proc = showproc;
        }
 
-       if (folder && !draftsw && !file)
-               m_putenv ("mhfolder", folder);
+       if (folder && !file)
+               m_putenv("mhfolder", folder);
 
        /*
-        * For backward compatibility, if the "proc" is mhn,
-        * then add "-show" option.  Add "-file" if showing
-        * file or draft.
-        */
-       if (strcmp (r1bindex (proc, '/'), "mhn") == 0) {
-               if (draftsw || file) {
+       ** For backward compatibility, if the "proc" is mhn,
+       ** then add "-show" option.  Add "-file" if showing
+       ** file.
+       */
+       if (strcmp(mhbasename(proc), "mhn") == 0) {
+               if (file) {
                        vec[vecp] = vec[vecp - 1];
                        vec[vecp - 1] = "-file";
                        vecp++;
@@ -320,52 +308,51 @@ go_to_it: ;
                vec[vecp] = NULL;
        }
 
-       /* If the "proc" is "mhshow", add "-file" if showing file or draft.
-        */
-       if (strcmp (r1bindex (proc, '/'), "mhshow") == 0 && (draftsw || file) ) {
+       /* If the "proc" is "mhshow", add "-file" if showing file.  */
+       if (strcmp(mhbasename(proc), "mhshow") == 0 && file ) {
           vec[vecp] = vec[vecp - 1];
           vec[vecp - 1] = "-file";
           vec[++vecp] = NULL;
        }
 
        /*
-        * If "proc" is mhl, then run it internally
-        * rather than exec'ing it.
-        */
-       if (strcmp (r1bindex (proc, '/'), "mhl") == 0) {
+       ** If "proc" is mhl, then run it internally
+       ** rather than exec'ing it.
+       */
+       if (strcmp(mhbasename(proc), "mhl") == 0) {
                vec[0] = "mhl";
-               mhl (vecp, vec);
-               done (0);
+               mhl(vecp, vec);
+               done(0);
        }
 
        /*
-        * If you are not using a nmh command as your "proc", then
-        * add the path to the message names.  Currently, we are just
-        * checking for mhn here, since we've already taken care of mhl.
-        */
-       if (!strcmp (r1bindex (proc, '/'), "mhl")
-                       && !draftsw
+       ** If you are not using a nmh command as your "proc", then
+       ** add the path to the message names.  Currently, we are just
+       ** checking for mhn here, since we've already taken care of mhl.
+       */
+       if (!strcmp(mhbasename(proc), "mhl")
                        && !file
-                       && chdir (maildir = concat (m_maildir (""), "/", NULL)) != NOTOK) {
-               mp->foldpath = concat (mp->foldpath, "/", NULL);
-               cp = ssequal (maildir, mp->foldpath)
-                       ? mp->foldpath + strlen (maildir)
+                       && chdir(maildir =
+                       concat(toabsdir("+"), "/", NULL)) != NOTOK) {
+               mp->foldpath = concat(mp->foldpath, "/", NULL);
+               cp = isprefix(maildir, mp->foldpath)
+                       ? mp->foldpath + strlen(maildir)
                        : mp->foldpath;
                for (msgnum = procp; msgnum < vecp; msgnum++)
-                       vec[msgnum] = concat (cp, vec[msgnum], NULL);
+                       vec[msgnum] = concat(cp, vec[msgnum], NULL);
        }
 
-       vec[0] = r1bindex (proc, '/');
-       execvp (proc, vec);
-       adios (proc, "unable to exec");
+       vec[0] = mhbasename(proc);
+       execvp(proc, vec);
+       adios(proc, "unable to exec");
        return 0;  /* dead code to satisfy the compiler */
 }
 
 /*
- * Check if a message or file contains any non-text parts
- */
+** Check if a message or file contains any non-text parts
+*/
 static int
-is_nontext (char *msgnam)
+is_nontext(char *msgnam)
 {
        int result, state;
        unsigned char *bp, *dp;
@@ -373,31 +360,32 @@ is_nontext (char *msgnam)
        char buf[BUFSIZ], name[NAMESZ];
        FILE *fp;
 
-       if ((fp = fopen (msgnam, "r")) == NULL)
+       if ((fp = fopen(msgnam, "r")) == NULL)
                return 0;
 
        for (state = FLD;;) {
-               switch (state = m_getfld (state, name, buf, sizeof(buf), fp)) {
+               switch (state = m_getfld(state, name, buf, sizeof(buf), fp)) {
                case FLD:
                case FLDPLUS:
                case FLDEOF:
                        /*
-                        * Check Content-Type field
-                        */
-                       if (!mh_strcasecmp (name, TYPE_FIELD)) {
+                       ** Check Content-Type field
+                       */
+                       if (!mh_strcasecmp(name, TYPE_FIELD)) {
                                int passno;
                                char c;
 
-                               cp = add (buf, NULL);
+                               cp = getcpy(buf);
                                while (state == FLDPLUS) {
-                                       state = m_getfld (state, name, buf, sizeof(buf), fp);
-                                       cp = add (buf, cp);
+                                       state = m_getfld(state, name, buf,
+                                                       sizeof(buf), fp);
+                                       cp = add(buf, cp);
                                }
                                bp = cp;
                                passno = 1;
 
 again:
-                               for (; isspace (*bp); bp++)
+                               for (; isspace(*bp); bp++)
                                        continue;
                                if (*bp == '(') {
                                        int i;
@@ -432,34 +420,36 @@ invalid:
                                        passno = 3;
                                        goto again;
                                }
-                               for (dp = bp; istoken (*dp); dp++)
+                               for (dp = bp; istoken(*dp); dp++)
                                        continue;
                                c = *dp;
                                *dp = '\0';
                                if (!*bp)
                                        goto invalid;
                                if (passno > 1) {
-                                       if ((result = (mh_strcasecmp (bp, "plain") != 0)))
+                                       if ((result = (mh_strcasecmp(bp,
+                                                       "plain") != 0)))
                                                goto out;
                                        *dp = c;
-                                       for (dp++; isspace (*dp); dp++)
+                                       for (dp++; isspace(*dp); dp++)
                                                continue;
                                        if (*dp) {
-                                               if ((result = !uprf (dp, "charset")))
+                                               if ((result = !uprf(dp,
+                                                               "charset")))
                                                        goto out;
                                                dp += sizeof("charset") - 1;
-                                               while (isspace (*dp))
+                                               while (isspace(*dp))
                                                        dp++;
                                                if (*dp++ != '=')
                                                        goto invalid;
-                                               while (isspace (*dp))
+                                               while (isspace(*dp))
                                                        dp++;
                                                if (*dp == '"') {
                                                        if ((bp = strchr(++dp, '"')))
                                                                *bp = '\0';
                                                } else {
                                                        for (bp = dp; *bp; bp++)
-                                                               if (!istoken (*bp)) {
+                                                               if (!istoken(*bp)) {
                                                                        *bp = '\0';
                                                                        break;
                                                                }
@@ -469,9 +459,9 @@ invalid:
                                                dp = "US-ASCII";
                                        }
                                        /* Check the character set */
-                                       result = !check_charset (dp, strlen (dp));
+                                       result = !check_charset(dp, strlen(dp));
                                } else {
-                                       if (!(result = (mh_strcasecmp (bp, "text") != 0))) {
+                                       if (!(result = (mh_strcasecmp(bp, "text") != 0))) {
                                                *dp = c;
                                                bp = dp;
                                                passno = 2;
@@ -479,54 +469,56 @@ invalid:
                                        }
                                }
 out:
-                               free (cp);
+                               free(cp);
                                if (result) {
-                                       fclose (fp);
+                                       fclose(fp);
                                        return result;
                                }
                                break;
                        }
 
                        /*
-                        * Check Content-Transfer-Encoding field
-                        */
-                       if (!mh_strcasecmp (name, ENCODING_FIELD)) {
-                               cp = add (buf, NULL);
+                       ** Check Content-Transfer-Encoding field
+                       */
+                       if (!mh_strcasecmp(name, ENCODING_FIELD)) {
+                               cp = getcpy(buf);
                                while (state == FLDPLUS) {
-                                       state = m_getfld (state, name, buf, sizeof(buf), fp);
-                                       cp = add (buf, cp);
+                                       state = m_getfld(state, name, buf,
+                                                       sizeof(buf), fp);
+                                       cp = add(buf, cp);
                                }
-                               for (bp = cp; isspace (*bp); bp++)
+                               for (bp = cp; isspace(*bp); bp++)
                                        continue;
-                               for (dp = bp; istoken (*dp); dp++)
+                               for (dp = bp; istoken(*dp); dp++)
                                        continue;
                                *dp = '\0';
-                               result = (mh_strcasecmp (bp, "7bit")
-                                          && mh_strcasecmp (bp, "8bit")
-                                          && mh_strcasecmp (bp, "binary"));
+                               result = (mh_strcasecmp(bp, "7bit")
+                                          && mh_strcasecmp(bp, "8bit")
+                                          && mh_strcasecmp(bp, "binary"));
 
-                               free (cp);
+                               free(cp);
                                if (result) {
-                                       fclose (fp);
+                                       fclose(fp);
                                        return result;
                                }
                                break;
                        }
 
                        /*
-                        * Just skip the rest of this header
-                        * field and go to next one.
-                        */
+                       ** Just skip the rest of this header
+                       ** field and go to next one.
+                       */
                        while (state == FLDPLUS)
-                               state = m_getfld (state, name, buf, sizeof(buf), fp);
+                               state = m_getfld(state, name, buf, sizeof(buf),
+                                               fp);
                        break;
 
                        /*
-                        * We've passed the message header,
-                        * so message is just text.
-                        */
+                       ** We've passed the message header,
+                       ** so message is just text.
+                       */
                default:
-                       fclose (fp);
+                       fclose(fp);
                        return 0;
                }
        }