diff options
author | martin <martin@pkgsrc.org> | 2004-01-20 19:37:45 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2004-01-20 19:37:45 +0000 |
commit | 05b97ea7327e7f7220a15b5f2ca7f6e01abd7429 (patch) | |
tree | 5346c7f7d7784168b6af431e214f83ba380794d1 /mail | |
parent | 7809b6f7ca6e96bd13379b151b97af7d7ba4c943 (diff) | |
download | pkgsrc-05b97ea7327e7f7220a15b5f2ca7f6e01abd7429.tar.gz |
Apply the SASL2 cure to smtp and lmtp to. This makes outgoing authenticated
mail work.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postfix/distinfo | 6 | ||||
-rw-r--r-- | mail/postfix/patches/patch-ab | 23 | ||||
-rw-r--r-- | mail/postfix/patches/patch-ac | 23 |
3 files changed, 49 insertions, 3 deletions
diff --git a/mail/postfix/distinfo b/mail/postfix/distinfo index ce4b1838916..2d4ca3eb6c7 100644 --- a/mail/postfix/distinfo +++ b/mail/postfix/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.48 2003/10/03 15:04:52 christos Exp $ +$NetBSD: distinfo,v 1.49 2004/01/20 19:37:45 martin Exp $ SHA1 (postfix/postfix-2.0.16.tar.gz) = 6272be8b87df1142a467f2a4e13c4e27d00bf952 Size (postfix/postfix-2.0.16.tar.gz) = 1353520 bytes -SHA1 (postfix/tls+ipv6-1.18a-pf-2.0.16.patch.gz) = c974934914aac2ec4fae1c20ad937713fac1ccc7 -Size (postfix/tls+ipv6-1.18a-pf-2.0.16.patch.gz) = 253429 bytes SHA1 (patch-aa) = 39a89a28cec3fd264dbda97633e34695eaad01e9 +SHA1 (patch-ab) = ac4c75fb7a36491edf03b54915c7a47461748b4d +SHA1 (patch-ac) = b0d26742fe8496b2fd4729a41fecadc275e71cf2 SHA1 (patch-ad) = 2f83cc6108eea4a1c401fe9e549d93430166f7fa SHA1 (patch-ae) = daa160ef54d725ca156f29322d45efcf4af6c02a SHA1 (patch-af) = 4d3a6c21d284dce1c75dcd4fc537af17a28a5e66 diff --git a/mail/postfix/patches/patch-ab b/mail/postfix/patches/patch-ab new file mode 100644 index 00000000000..b161debce4d --- /dev/null +++ b/mail/postfix/patches/patch-ab @@ -0,0 +1,23 @@ +$NetBSD: patch-ab,v 1.8 2004/01/20 19:37:45 martin Exp $ + +--- src/lmtp/lmtp.h.orig 2003-09-10 02:48:03.000000000 +0200 ++++ src/lmtp/lmtp.h 2004-01-20 20:30:12.000000000 +0100 +@@ -11,10 +11,18 @@ + /* + * SASL library. + */ ++#ifdef USE_SASL2_AUTH ++#ifndef USE_SASL_AUTH ++#define USE_SASL_AUTH ++#endif ++#include <sasl/sasl.h> ++#include <sasl/saslutil.h> ++#else + #ifdef USE_SASL_AUTH + #include <sasl.h> + #include <saslutil.h> + #endif ++#endif + + /* + * Utility library. diff --git a/mail/postfix/patches/patch-ac b/mail/postfix/patches/patch-ac new file mode 100644 index 00000000000..ce2d6c65faa --- /dev/null +++ b/mail/postfix/patches/patch-ac @@ -0,0 +1,23 @@ +$NetBSD: patch-ac,v 1.6 2004/01/20 19:37:45 martin Exp $ + +--- src/smtp/smtp.h.orig 2002-05-23 21:18:02.000000000 +0200 ++++ src/smtp/smtp.h 2004-01-20 20:29:21.000000000 +0100 +@@ -11,10 +11,18 @@ + /* + * SASL library. + */ ++#ifdef USE_SASL2_AUTH ++#ifndef USE_SASL_AUTH ++#define USE_SASL_AUTH ++#endif ++#include <sasl/sasl.h> ++#include <sasl/saslutil.h> ++#else + #ifdef USE_SASL_AUTH + #include <sasl.h> + #include <saslutil.h> + #endif ++#endif + + /* + * Utility library. |