]> git.marmaro.de Git - mmh/commitdiff
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 51bc739be7d03e651e77243e2084e5af08079865..ce6b5c4d1a2331077362597dd815080f76a825c9 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.
  */
index 22a21b197fc8fb5b432dc10306bdc26350c2ad5f..f10c76dec93f161c5dd8a101218388dd2113496a 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
 }