diff options
author | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-05 03:21:41 +0000 |
---|---|---|
committer | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-05 03:21:41 +0000 |
commit | 01436013af810a8cc4dba53a30394d502c2ef5e4 (patch) | |
tree | 0d2b49359d96fc63fe610173f9f8e4657a051ab3 /mail/imap-uw/files/patch-ah | |
parent | Upgrade to 0.1017. (diff) |
Mega cclient port SSL commit redux. This time with maintainer approval.
1. Add support for building cclient with SSL. Warn about the possibility
that some ports may have been missed and need ssl added at link time.
2. Update cclient and imap-uw to latest versions.
3. Fix pine4 to add ssl libraries. This can be used as a model for what
other ports may need to do.
4. Release MAINTAINERship (by request).
Submitted by: anders@fix.no
Approved by: petef@databits.net
Notes
Notes:
svn path=/head/; revision=40861
Diffstat (limited to 'mail/imap-uw/files/patch-ah')
-rw-r--r-- | mail/imap-uw/files/patch-ah | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mail/imap-uw/files/patch-ah b/mail/imap-uw/files/patch-ah index 7be00ff5b4e0..11985385b6a8 100644 --- a/mail/imap-uw/files/patch-ah +++ b/mail/imap-uw/files/patch-ah @@ -1,6 +1,6 @@ ---- 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 @@ +--- src/ipopd/ipop3d.c.old Wed Apr 4 00:19:48 2001 ++++ src/ipopd/ipop3d.c Wed Apr 4 00:28:24 2001 +@@ -28,6 +28,11 @@ #include <time.h> #include "c-client.h" @@ -10,22 +10,22 @@ +#include <stdlib.h> +#endif /* DRAC_AUTH */ - /* Autologout timer */ - #define KODTIMEOUT 60*5 -@@ -61,6 +66,12 @@ + #define CRLF PSOUT ("\015\012") /* primary output terpri */ + +@@ -57,6 +62,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.70"; /* server version */ ++ + char *version = "2001.75"; /* server version */ short state = AUTHORIZATION; /* server state */ short critical = NIL; /* non-zero if in critical code */ -@@ -104,7 +115,7 @@ +@@ -100,7 +111,7 @@ #include "linkage.c" /* initialize server */ server_init ((s = strrchr (argv[0],'/')) ? s + 1 : argv[0], |