whatnow: Re-integrated whom(1); cleanups.
[mmh] / uip / whatnow.c
index 63a60f3..6cb96f7 100644 (file)
@@ -63,25 +63,27 @@ static struct swit aleqs[] = {
        { "list", 0 },
 #define DISPSW  2
        { "display", 0 },
-#define SENDSW  3
+#define WHOMSW  3
+       { "whom", 0 },
+#define SENDSW  4
        { "send", 0 },
-#define REFILEOPT  4
+#define REFILEOPT  5
        { "refile +folder", 0 },
-#define DELETESW  5
+#define DELETESW  6
        { "delete", 0 },
-#define QUITSW  6
+#define QUITSW  7
        { "quit", 0 },
-#define CDCMDSW  7
+#define CDCMDSW  8
        { "cd [directory]", 0 },
-#define PWDCMDSW  8
+#define PWDCMDSW  9
        { "pwd", 0 },
-#define LSCMDSW  9
+#define LSCMDSW  10
        { "ls", 0 },
-#define ALISTCMDSW  10
+#define ALISTCMDSW  11
        { "alist", 0 },
-#define ATTACHCMDSW  11
+#define ATTACHCMDSW  12
        { "attach files", 0 },
-#define DETACHCMDSW  12
+#define DETACHCMDSW  13
        { "detach numbers", 0 },
        { NULL, 0 }
 };
@@ -399,6 +401,12 @@ main(int argc, char **argv)
                        }
                        break;
 
+               case WHOMSW:
+                       /* list recipients */
+                       snprintf(buf, sizeof buf, "%s '%s'", "whom", drft);
+                       system(buf);
+                       break;
+
                default:
                        /* Unknown command */
                        advise(NULL, "say what?");