diff options
Diffstat (limited to 'mail/solidpop3d/files')
-rw-r--r-- | mail/solidpop3d/files/patch-aa | 20 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ab | 31 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ac | 30 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ad | 22 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-configure | 11 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-src_apop.c | 19 |
6 files changed, 0 insertions, 133 deletions
diff --git a/mail/solidpop3d/files/patch-aa b/mail/solidpop3d/files/patch-aa deleted file mode 100644 index 5636763ad2f1..000000000000 --- a/mail/solidpop3d/files/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ ---- src/const.h.orig Wed Apr 19 00:04:05 2000 -+++ src/const.h Tue Nov 7 08:59:40 2000 -@@ -36,7 +36,7 @@ - #define DEFWCCOUNT 5 - - #ifdef MDMAILBOX --#define DEFMAILDROPNAME "/var/spool/mail/%s" -+#define DEFMAILDROPNAME "/var/mail/%s" - #else - #define DEFMAILDROPNAME "Maildir" - #endif -@@ -50,7 +50,7 @@ - #define MAXMDTYPENAMELENGTH 40 - #define USERCFG ".spop3d" - #define USERBULL ".spop3d-bull" --#define POPUSER "spop3d" -+#define POPUSER "pop" - - #define PER_SOURCE 5 - #define MAX_SESSIONS 50 diff --git a/mail/solidpop3d/files/patch-ab b/mail/solidpop3d/files/patch-ab deleted file mode 100644 index 3b8faf4312ff..000000000000 --- a/mail/solidpop3d/files/patch-ab +++ /dev/null @@ -1,31 +0,0 @@ ---- src/Makefile.in.orig Fri Apr 21 04:55:44 2000 -+++ src/Makefile.in Tue Nov 7 09:18:04 2000 -@@ -60,11 +60,11 @@ - - - noinst_HEADERS = apop.h authenticate.h cmds.h configfile.h const.h fdfgets.h \ --log.h mailbox.h maildir.h maildrop.h md5.h includes.h options.h response.h \ -+log.h mailbox.h maildir.h maildrop.h includes.h options.h response.h \ - userconfig.h mapping.h spipv6.h - - --spop3d_SOURCES = authenticate.c cmds.c log.c fdfgets.c maildrop.c main.c md5.c \ -+spop3d_SOURCES = authenticate.c cmds.c log.c fdfgets.c maildrop.c main.c \ - memops.c options.c response.c vsnprintf.c - - -@@ -90,12 +90,12 @@ - - - DEFS = @DEFS@ -DDEFCONFIGFILENAME=\"$(sysconfdir)/spop3d.conf\" \ ---DBULLDIR=\"$(localstatedir)/bulletins/\" -I. -I$(srcdir) -I.. -+-DBULLDIR=\"/var/spool/spop3d\" -I. -I$(srcdir) -I.. - LDFLAGS = @LDFLAGS@ - LIBS = @LIBS@ - pop_auth_OBJECTS = pop_auth.o fdfgets.o vsnprintf.o - spop3d_OBJECTS = authenticate.o cmds.o log.o fdfgets.o maildrop.o main.o \ --md5.o memops.o options.o response.o vsnprintf.o -+memops.o options.o response.o vsnprintf.o - CFLAGS = @CFLAGS@ - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CFLAGS) - CCLD = $(CC) diff --git a/mail/solidpop3d/files/patch-ac b/mail/solidpop3d/files/patch-ac deleted file mode 100644 index 5bb51164fc2d..000000000000 --- a/mail/solidpop3d/files/patch-ac +++ /dev/null @@ -1,30 +0,0 @@ ---- src/mailbox.c.orig Sat May 13 21:18:33 2000 -+++ src/mailbox.c Tue Nov 7 08:59:40 2000 -@@ -45,6 +45,9 @@ - #endif - #endif - -+#define md5_finish_ctx(ctx, dig) MD5Final((unsigned char *)dig, ctx) -+#define md5_init_ctx(ctx) MD5Init(ctx) -+#define md5_process_bytes(buf, len, ctx) MD5Update (ctx, (unsigned char *)buf, len) - - extern void check_wccount(void); - extern char maildrop_name[]; -@@ -207,7 +210,7 @@ - char linebuf[128]; - char msgdate[21]; - struct mb_message *mbspecific; -- struct md5_ctx context; -+ MD5_CTX context; - int header = 1, fixed = 0, newline = 1; - - if (mailboxfd < 0) { -@@ -342,7 +345,7 @@ - off_t act_ofs = 0; - char msgdate[21]; - struct mb_message *tmp; -- struct md5_ctx context; -+ MD5_CTX context; - int tmpmsgnr = 0; - time_t tmpmsg_time; - off_t tmpfrom_where = 0, tmpwhere = 0; diff --git a/mail/solidpop3d/files/patch-ad b/mail/solidpop3d/files/patch-ad deleted file mode 100644 index 2816732e5e3d..000000000000 --- a/mail/solidpop3d/files/patch-ad +++ /dev/null @@ -1,22 +0,0 @@ ---- src/maildir.c.orig Sat May 13 21:18:35 2000 -+++ src/maildir.c Tue Nov 7 08:59:40 2000 -@@ -59,6 +59,10 @@ - #endif - #endif - -+#define md5_finish_ctx(ctx, dig) MD5Final((unsigned char *)dig, ctx) -+#define md5_init_ctx(ctx) MD5Init(ctx) -+#define md5_process_bytes(buf, len, ctx) MD5Update (ctx, (unsigned char *)buf, len) -+ - extern void check_wccount(void); - - extern char maildrop_name[]; -@@ -650,7 +654,7 @@ - char *mdir_md5_uidl_message(unsigned int number, char *result) { - size_t length; - char *tmp2, *tmp3; -- struct md5_ctx context; -+ MD5_CTX context; - - md5_init_ctx(&context); - tmp2 = ((struct mdir_message *) (messages[number].md_specific))->filename; diff --git a/mail/solidpop3d/files/patch-configure b/mail/solidpop3d/files/patch-configure deleted file mode 100644 index c1dbbffa3f35..000000000000 --- a/mail/solidpop3d/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Fri Dec 15 10:21:19 2000 -+++ configure Fri Dec 15 10:21:28 2000 -@@ -2914,7 +2914,7 @@ - #define HAVE_PAM 1 - EOF - -- SPOPLIBS="$SPOPLIBS -lpam -ldl" -+ SPOPLIBS="$SPOPLIBS -lpam" - echo "$ac_t""yes" 1>&6 - else - echo "$ac_t""no" 1>&6 diff --git a/mail/solidpop3d/files/patch-src_apop.c b/mail/solidpop3d/files/patch-src_apop.c deleted file mode 100644 index 1e1a2b5fdc41..000000000000 --- a/mail/solidpop3d/files/patch-src_apop.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/apop.c.orig Tue Nov 7 09:00:11 2000 -+++ src/apop.c Tue Nov 7 09:02:38 2000 -@@ -26,11 +26,15 @@ - #include <sys/stat.h> - #include <fcntl.h> - -+#define md5_finish_ctx(ctx, dig) MD5Final((unsigned char *)dig, ctx) -+#define md5_init_ctx(ctx) MD5Init(ctx) -+#define md5_process_bytes(buf, len, ctx) MD5Update (ctx, (unsigned char *)buf, len) -+ - extern char apop_secret[]; - - int apop_authenticate(char *username, char *apoptimestamp, char *udigest) { - char adigest[16], digest[16]; -- struct md5_ctx context; -+ MD5_CTX context; - int tmp; - - for (tmp = 0; tmp < 16; tmp++) { |