summaryrefslogtreecommitdiff
path: root/mail/popa3d/patches/patch-aa
blob: 86763e48f9f5a3c2853756a057682633e6461aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
$NetBSD: patch-aa,v 1.10 2004/09/23 06:43:45 cube Exp $

--- params.h.orig	Sat Apr 12 16:16:01 2003
+++ params.h
@@ -13,7 +13,7 @@
 /*
  * Are we going to be a standalone server or start via an inetd clone?
  */
-#define POP_STANDALONE			0
+#define POP_STANDALONE			1
 
 #if POP_STANDALONE
 
@@ -38,7 +38,7 @@
  * option is provided primarily as a way to meet conventions of certain
  * systems where all services obey libwrap access controls.
  */
-#define DAEMON_LIBWRAP			0
+#define DAEMON_LIBWRAP			1
 
 #if DAEMON_LIBWRAP
 /*
@@ -99,7 +99,7 @@
  * A pseudo-user to run as before authentication. The user and its UID
  * must not be used for any other purpose.
  */
-#define POP_USER			POP_SERVER
+#define POP_USER			@@POPA3D_USER@@
 
 /*
  * An empty directory to chroot to before authentication. The directory
@@ -144,8 +144,8 @@
  *
  * Note that there's no built-in password aging support.
  */
-#define AUTH_PASSWD			0
-#define AUTH_SHADOW			1
+#define AUTH_PASSWD			1
+#define AUTH_SHADOW			0
 #define AUTH_PAM			0
 #define AUTH_PAM_USERPASS		0
 #define USE_LIBPAM_USERPASS		0
@@ -198,8 +198,8 @@
  *
  * *BSDs use flock(2), others typically use fcntl(2).
  */
-#define LOCK_FCNTL			1
-#define LOCK_FLOCK			0
+#define LOCK_FCNTL			0
+#define LOCK_FLOCK			1
 
 /*
  * How do we talk to syslogd? These should be fine for most systems.