The last set of patches, I had to hand edit, didn't apply cleanly.

Submitted by:	Richard Lucas <rlucas@solidcomputing.com>
This commit is contained in:
James E. Housley 2001-03-27 12:27:20 +00:00
parent 190bbf4a68
commit aba319a01e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40433
3 changed files with 13 additions and 13 deletions

View File

@ -12,7 +12,7 @@
SHELL= /bin/sh
@@ -39,21 +39,17 @@
@@ -39,21 +39,23 @@
# Get local definitions from c-client directory
C = ../c-client

View File

@ -1,5 +1,5 @@
--- src/ipopd/ipop3d.c.old Wed Oct 25 01:15:46 2000
+++ src/ipopd/ipop3d.c Sun Jan 7 21:40:25 2001
--- src/ipopd/ipop3d.c.orig Sun Dec 10 14:31:14 2000
+++ src/ipopd/ipop3d.c Tue Mar 27 07:10:35 2001
@@ -35,6 +35,11 @@
#include <time.h>
#include "c-client.h"
@ -17,12 +17,12 @@
/* Global storage */
+#ifdef DRAC_AUTH
+#define DRACTIMEOUT 10*60 /* check every 10 minutes */
+time_t lastdrac = 0; /* time of last drac check */
+#define DRACTIMEOUT 10*60 /* check every 10 minutes */
+time_t lastdrac = 0; /* time of last drac check */
+extern char *getenv ();
+#endif /* DRAC_AUTH */
+
char *version = "2000.69"; /* server version */
+
char *version = "2000.70"; /* server version */
short state = AUTHORIZATION; /* server state */
short critical = NIL; /* non-zero if in critical code */
@@ -104,7 +115,7 @@

View File

@ -1,5 +1,5 @@
--- src/imapd/imapd.c.old Sat Nov 18 05:16:29 2000
+++ src/imapd/imapd.c Sun Dec 31 18:53:25 2000
--- src/imapd/imapd.c.orig Tue Jan 9 16:11:44 2001
+++ src/imapd/imapd.c Tue Mar 27 07:16:48 2001
@@ -17,7 +17,7 @@
* The full text of our legal notices is contained in the file called
* CPYRIGHT, included with this Distribution.
@ -44,15 +44,15 @@
/* Global storage */
+#ifdef DRAC_AUTH
+#define DRACTIMEOUT 10*60 /* check every 10 minutes */
+time_t lastdrac = 0; /* time of last drac check */
+#define DRACTIMEOUT 10*60 /* check every 10 minutes */
+time_t lastdrac = 0; /* time of last drac check */
+extern char *getenv ();
+#endif /* DRAC_AUTH */
+
char *version = "2000.284"; /* version number of this server */
char *version = "2000.287"; /* version number of this server */
time_t alerttime = 0; /* time of last alert */
time_t sysalerttime = 0; /* time of last system alert */
@@ -1131,6 +1142,44 @@
@@ -1139,6 +1150,44 @@
lasterror ());
return;
}