Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu/dist/postfix/util catch up with sendmail 8.10 "aliases" ...



details:   https://anonhg.NetBSD.org/src/rev/8c501b2282e9
branches:  trunk
changeset: 485782:8c501b2282e9
user:      itojun <itojun%NetBSD.org@localhost>
date:      Fri May 05 18:17:43 2000 +0000

description:
catch up with sendmail 8.10 "aliases" pathname.
(postfix tries to be very compatible to sendmail,
so this is the right thing to do I believe)

diffstat:

 gnu/dist/postfix/util/sys_defs.h |  4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diffs (15 lines):

diff -r 01ec0bb95a1b -r 8c501b2282e9 gnu/dist/postfix/util/sys_defs.h
--- a/gnu/dist/postfix/util/sys_defs.h  Fri May 05 17:52:38 2000 +0000
+++ b/gnu/dist/postfix/util/sys_defs.h  Fri May 05 18:17:43 2000 +0000
@@ -31,7 +31,11 @@
 #define HAS_DB
 #define HAS_SA_LEN
 #define DEF_DB_TYPE    "hash"
+#if 0  /*before sendmail 8.10*/
 #define ALIAS_DB_MAP   "hash:/etc/aliases"
+#else  /*sendmail 8.10*/
+#define ALIAS_DB_MAP   "hash:/etc/mail/aliases"
+#endif
 #define GETTIMEOFDAY(t)        gettimeofday(t,(struct timezone *) 0)
 #define ROOT_PATH      "/bin:/usr/bin:/sbin:/usr/sbin"
 #define USE_STATFS



Home | Main Index | Thread Index | Old Index