diff options
author | mich <mich@FreeBSD.org> | 2003-07-29 16:19:04 +0000 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2003-07-29 16:19:04 +0000 |
commit | 008ebb838fe05ca658ae312681ed84d90ee15357 (patch) | |
tree | a2ed196fa830cf5e08dd7fcfd0ff0c9febb5e9af /net/imapproxy/files | |
parent | 972cc9872406970f62be2b98b1be9dc7d923cc22 (diff) | |
download | FreeBSD-ports-008ebb838fe05ca658ae312681ed84d90ee15357.zip FreeBSD-ports-008ebb838fe05ca658ae312681ed84d90ee15357.tar.gz |
The program forwards all IMAP traffic between the client and the server, but
keeps the connection to the server alive after the client logs out. When the
same user attempts to log in again, the proxy will use the cached
username/password pair to authenticate the client, and tie the new client to
the old server connection (which was kept alive)
PR: 54977
Submitted by: Lasse L. Johnsen
Approved by: roberto (mentor)
Diffstat (limited to 'net/imapproxy/files')
-rw-r--r-- | net/imapproxy/files/patch-aa | 10 | ||||
-rw-r--r-- | net/imapproxy/files/patch-ab | 10 | ||||
-rw-r--r-- | net/imapproxy/files/patch-ac | 13 | ||||
-rw-r--r-- | net/imapproxy/files/patch-ad | 11 |
4 files changed, 44 insertions, 0 deletions
diff --git a/net/imapproxy/files/patch-aa b/net/imapproxy/files/patch-aa new file mode 100644 index 0000000..914e880 --- /dev/null +++ b/net/imapproxy/files/patch-aa @@ -0,0 +1,10 @@ +--- configfile.c.orig Fri Aug 9 15:24:23 2002 ++++ configfile.c Mon Jul 28 11:22:34 2003 +@@ -23,6 +23,7 @@ + #include <string.h> + #include <strings.h> + #include <stdlib.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> + #include <arpa/inet.h> diff --git a/net/imapproxy/files/patch-ab b/net/imapproxy/files/patch-ab new file mode 100644 index 0000000..2e6d7ea --- /dev/null +++ b/net/imapproxy/files/patch-ab @@ -0,0 +1,10 @@ +--- database.c.orig Fri Aug 9 15:24:23 2002 ++++ database.c Mon Jul 28 11:22:10 2003 +@@ -24,6 +24,7 @@ + #include <stdlib.h> + #include <stdio.h> + #include <errno.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> + #include <arpa/inet.h> diff --git a/net/imapproxy/files/patch-ac b/net/imapproxy/files/patch-ac new file mode 100644 index 0000000..586bc3c --- /dev/null +++ b/net/imapproxy/files/patch-ac @@ -0,0 +1,13 @@ +--- network.c.orig Fri Aug 9 15:24:23 2002 ++++ network.c Mon Jul 28 11:21:26 2003 +@@ -20,9 +20,9 @@ + + + #include <stdio.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> +-#include <sys/types.h> + #include <string.h> + #include <netdb.h> + #include <unistd.h> diff --git a/net/imapproxy/files/patch-ad b/net/imapproxy/files/patch-ad new file mode 100644 index 0000000..cc980901 --- /dev/null +++ b/net/imapproxy/files/patch-ad @@ -0,0 +1,11 @@ +--- include/defines.h.orig Mon Jul 28 12:41:58 2003 ++++ include/defines.h Mon Jul 28 12:42:27 2003 +@@ -45,7 +45,7 @@ + + #define DEFAULT_MAX_REUSE 0 + +-#define DEFAULT_CONFIG_FILE ".imapproxy" ++#define DEFAULT_CONFIG_FILE "/usr/local/etc/imapproxy.conf" + #define VERSION "v0.9-3" + #define PROGNAME "ImapProxy" + #define AUTHOR "Steven Van Acker <imapproxy@kuleuven.net>" |