Garbage-collect SLOCAL_MBOX (and make it the default).
authorKen Hornstein <kenh@pobox.com>
Fri, 6 Jan 2012 15:36:21 +0000 (10:36 -0500)
committerKen Hornstein <kenh@pobox.com>
Fri, 6 Jan 2012 15:36:21 +0000 (10:36 -0500)
acconfig.h
uip/slocal.c

index 51bc739..ce6b5c4 100644 (file)
 /* #define REALLYDUMB  1 */
 
 /*
- * If defined, slocal will use `mbox' format when saving to
- * your standard mail spool.  If not defined, it will use
- * mmdf format.
- */
-#define SLOCAL_MBOX  1
-
-/*
  * If this is defined, nmh will recognize the ~ construct.
  */
 #define MHRC    1
index 22a21b1..f10c76d 100644 (file)
@@ -439,11 +439,7 @@ localmail (int fd, char *mdlvr)
        verbose_printf ("(delivering to standard mail spool)\n");
 
     /* last resort - deliver to standard mail spool */
-#ifdef SLOCAL_MBOX
     return usr_file (fd, mbox, MBOX_FORMAT);
-#else
-    return usr_file (fd, mbox, MMDF_FORMAT);
-#endif
 }