summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd21/patches
diff options
context:
space:
mode:
authorjlam <jlam>2003-09-13 23:03:17 +0000
committerjlam <jlam>2003-09-13 23:03:17 +0000
commit1c8d16cedf15fa4b09eef850cd89cdaece7d5d04 (patch)
treea9e1f17d7b2de1821d7e5d7bc8bd17805bf4cdfb /mail/cyrus-imapd21/patches
parent9b995c72c53c053bc62e1a40e1f887c643dea330 (diff)
downloadpkgsrc-1c8d16cedf15fa4b09eef850cd89cdaece7d5d04.tar.gz
Update mail/cyrus-imapd21 to 2.1.15. Changes from version 2.1.14 include:
* Correct a potential DOS attack in the fud daemon. * Arbitron now works again * Telemetry logging for mupdate * Duplicate Suppression logging for redirect sieve actions * A number of bugs in reconstruct have been fixed. also added the -p and -x options * Better stubbing out of user_deleteacl * No longer log any shutdown() failures * Improved IPv6 support (for systems with two getnameinfo implementations) * Misc Documentation Improvements
Diffstat (limited to 'mail/cyrus-imapd21/patches')
-rw-r--r--mail/cyrus-imapd21/patches/patch-aa17
-rw-r--r--mail/cyrus-imapd21/patches/patch-ab21
-rw-r--r--mail/cyrus-imapd21/patches/patch-ac10
-rw-r--r--mail/cyrus-imapd21/patches/patch-af18
4 files changed, 40 insertions, 26 deletions
diff --git a/mail/cyrus-imapd21/patches/patch-aa b/mail/cyrus-imapd21/patches/patch-aa
deleted file mode 100644
index 8bcddc6f0b0..00000000000
--- a/mail/cyrus-imapd21/patches/patch-aa
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/10/27 16:08:53 chris Exp $
-
---- imap/lmtpengine.h~ Fri Aug 2 17:54:49 2002
-+++ imap/lmtpengine.h Thu Aug 29 21:14:03 2002
-@@ -44,7 +44,12 @@
- #define LMTPENGINE_H
-
- /* configuration parameters */
-+#ifdef __NetBSD__
-+#include <paths.h>
-+#define DEFAULT_SENDMAIL (_PATH_SENDMAIL)
-+#else
- #define DEFAULT_SENDMAIL ("/usr/lib/sendmail")
-+#endif
- #define DEFAULT_POSTMASTER ("postmaster")
-
- #define SENDMAIL (config_getstring("sendmail", DEFAULT_SENDMAIL))
diff --git a/mail/cyrus-imapd21/patches/patch-ab b/mail/cyrus-imapd21/patches/patch-ab
new file mode 100644
index 00000000000..2dc4ec2bb11
--- /dev/null
+++ b/mail/cyrus-imapd21/patches/patch-ab
@@ -0,0 +1,21 @@
+$NetBSD: patch-ab,v 1.3 2003/09/13 23:03:18 jlam Exp $
+
+--- acconfig.h.orig Sat Sep 13 16:49:05 2003
++++ acconfig.h Sat Sep 13 17:01:59 2003
+@@ -270,8 +270,16 @@
+ #define shutdown(fd, mode) 0
+ #endif
+
++#ifdef HAVE_PATHS_H
++#include <paths.h>
++#endif
++
+ /* sendmail configuration parameters */
++#if defined(_PATH_SENDMAIL)
++#define DEFAULT_SENDMAIL (_PATH_SENDMAIL)
++#else
+ #define DEFAULT_SENDMAIL ("/usr/lib/sendmail")
++#endif
+ #define DEFAULT_POSTMASTER ("postmaster")
+
+ #define SENDMAIL (config_getstring("sendmail", DEFAULT_SENDMAIL))
diff --git a/mail/cyrus-imapd21/patches/patch-ac b/mail/cyrus-imapd21/patches/patch-ac
index 8de04b0e8f9..1b73ceca1e0 100644
--- a/mail/cyrus-imapd21/patches/patch-ac
+++ b/mail/cyrus-imapd21/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.3 2003/08/16 09:23:59 recht Exp $
+$NetBSD: patch-ac,v 1.4 2003/09/13 23:03:18 jlam Exp $
---- imap/imapd.c.orig 2003-06-25 05:33:59.000000000 +0200
-+++ imap/imapd.c 2003-07-26 14:26:27.000000000 +0200
-@@ -5839,7 +5839,7 @@
+--- imap/imapd.c.orig Sat Sep 13 16:49:05 2003
++++ imap/imapd.c Sat Sep 13 16:49:22 2003
+@@ -5838,7 +5838,7 @@
{
int i=0, j=0;
char tagbuf[128];
@@ -11,7 +11,7 @@ $NetBSD: patch-ac,v 1.3 2003/08/16 09:23:59 recht Exp $
struct buf tag, cmd, tmp, user;
int r = 0;
-@@ -5954,7 +5954,7 @@
+@@ -5953,7 +5953,7 @@
char *mailbox, char *acl_in)
{
int r = 0;
diff --git a/mail/cyrus-imapd21/patches/patch-af b/mail/cyrus-imapd21/patches/patch-af
index dc074d2f046..62e98ccbc3e 100644
--- a/mail/cyrus-imapd21/patches/patch-af
+++ b/mail/cyrus-imapd21/patches/patch-af
@@ -1,8 +1,18 @@
-$NetBSD: patch-af,v 1.4 2003/08/16 09:23:59 recht Exp $
+$NetBSD: patch-af,v 1.5 2003/09/13 23:03:18 jlam Exp $
---- configure.in.orig 2003-06-25 23:12:54.000000000 +0200
-+++ configure.in 2003-07-26 14:27:03.000000000 +0200
-@@ -891,6 +891,10 @@
+--- configure.in.orig Sat Sep 13 16:49:05 2003
++++ configure.in Sat Sep 13 16:59:11 2003
+@@ -260,6 +260,9 @@
+ dnl for et routines
+ AC_FUNC_CHECK(strerror,AC_DEFINE(HAS_STRERROR),AC_DEFINE(NEED_SYS_ERRLIST))
+
++dnl for path to sendmail
++AC_CHECK_HEADERS(paths.h)
++
+ dnl for master fd limits
+ AC_CHECK_HEADERS(sys/resource.h)
+ AC_CHECK_FUNCS(setrlimit)
+@@ -898,6 +901,10 @@
dnl and compile perl/cyradm
PERL_SUBDIRS="imap"
PERL="${with_perl}"