e07be818f5
IMPORTANT: read the documents in /usr/pkg/share/doc/postfix/ before upgrading from Postfix 1.1. Hightlights: - MIME support (including 8bit->7bit conversion and more accurate matching of MIME headers in message bodies) - completely rewritten RBL client code - smarter handling of DNS lookup errors in UCE restrictions - virtual delivery agent without transport map for every domain - a long list of other things that are meant to improve performance or functionality without compromising what already existed.
35 lines
1,003 B
Text
35 lines
1,003 B
Text
$NetBSD: patch-ae,v 1.6 2003/01/06 09:15:50 martti Exp $
|
|
|
|
--- src/global/mail_params.h.orig Mon Dec 23 20:33:09 2002
|
|
+++ src/global/mail_params.h Sat Dec 28 08:53:11 2002
|
|
@@ -64,7 +64,7 @@
|
|
extern gid_t var_owner_gid;
|
|
|
|
#define VAR_SGID_GROUP "setgid_group"
|
|
-#define DEF_SGID_GROUP "postdrop"
|
|
+#define DEF_SGID_GROUP "maildrop"
|
|
extern char *var_sgid_group;
|
|
extern gid_t var_sgid_gid;
|
|
|
|
@@ -187,18 +187,18 @@
|
|
*/
|
|
#define VAR_PROGRAM_DIR "program_directory"
|
|
#ifndef DEF_PROGRAM_DIR
|
|
-#define DEF_PROGRAM_DIR "/usr/libexec/postfix"
|
|
+#define DEF_PROGRAM_DIR "__PREFIX/libexec/postfix"
|
|
#endif
|
|
|
|
#define VAR_DAEMON_DIR "daemon_directory"
|
|
#ifndef DEF_DAEMON_DIR
|
|
-#define DEF_DAEMON_DIR "/usr/libexec/postfix"
|
|
+#define DEF_DAEMON_DIR "__PREFIX/libexec/postfix"
|
|
#endif
|
|
extern char *var_daemon_dir;
|
|
|
|
#define VAR_COMMAND_DIR "command_directory"
|
|
#ifndef DEF_COMMAND_DIR
|
|
-#define DEF_COMMAND_DIR "/usr/sbin"
|
|
+#define DEF_COMMAND_DIR "__PREFIX/sbin"
|
|
#endif
|
|
extern char *var_command_dir;
|
|
|