From aac9670c207aaefb17521c2ce4db39cb8893f660 Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Fri, 6 Jan 2012 10:36:21 -0500 Subject: [PATCH] Garbage-collect SLOCAL_MBOX (and make it the default). --- acconfig.h | 7 ------- uip/slocal.c | 4 ---- 2 files changed, 11 deletions(-) diff --git a/acconfig.h b/acconfig.h index 51bc739..ce6b5c4 100644 --- a/acconfig.h +++ b/acconfig.h @@ -26,13 +26,6 @@ /* #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 diff --git a/uip/slocal.c b/uip/slocal.c index 22a21b1..f10c76d 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -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 } -- 1.7.10.4