ports/80235: [PATCH] mail/postfix: update to 2.3.20050418

sylvio cesar sylvioc at gmail.com
Fri Apr 22 04:30:20 UTC 2005


>Number:         80235
>Category:       ports
>Synopsis:       [PATCH] mail/postfix: update to 2.3.20050418
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 22 04:30:19 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     sylvio cesar
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
>Environment:
System: FreeBSD sylvioc.gmail.com 5.4-STABLE FreeBSD 5.4-STABLE #2: Sun Apr 10 04:35:12 BRT 2005
>Description:
- Update to 2.3.20050418

Removed file(s):
- files/patch-src-lmtp-lmtp_sasl_glue.c
- files/patch-src-smtp-smtp_sasl_glue.c

Port maintainer (marcus at corp.grupos.com.br) is cc'd.

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
      
>Fix:

--- postfix-2.3.20050418,2.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/mail/postfix-current/Makefile,v
retrieving revision 1.117
diff -u -r1.117 Makefile
--- Makefile	11 Apr 2005 19:22:17 -0000	1.117
+++ Makefile	22 Apr 2005 04:16:05 -0000
@@ -32,7 +32,7 @@
 MAINTAINER=	marcus at corp.grupos.com.br
 COMMENT=	A secure alternative to widely-used Sendmail
 
-PORTVERSIONRAW=	2.3-20050404
+PORTVERSIONRAW=	2.3-20050418
 
 CONFLICTS=	courier-0.* postfix-1.* postfix-2.0.* postfix-2.1.* postfix-2.2.* \
 		sendmail-8.* sendmail-*-8.* smail-3.* zmailer-2.*
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/mail/postfix-current/distinfo,v
retrieving revision 1.68
diff -u -r1.68 distinfo
--- distinfo	11 Apr 2005 19:22:18 -0000	1.68
+++ distinfo	22 Apr 2005 04:16:05 -0000
@@ -1,2 +1,2 @@
-MD5 (postfix/postfix-2.3-20050404.tar.gz) = ed014027f63626bffe5dd7dd3a4e187b
-SIZE (postfix/postfix-2.3-20050404.tar.gz) = 2442512
+MD5 (postfix/postfix-2.3-20050418.tar.gz) = 5016917ee80c89d676aa777085ce8346
+SIZE (postfix/postfix-2.3-20050418.tar.gz) = 2446600 
Index: files/patch-src-lmtp-lmtp_sasl_glue.c
===================================================================
RCS file: files/patch-src-lmtp-lmtp_sasl_glue.c
diff -N files/patch-src-lmtp-lmtp_sasl_glue.c
--- files/patch-src-lmtp-lmtp_sasl_glue.c	11 Apr 2005 19:22:18 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,32 +0,0 @@
---- src/lmtp/lmtp_sasl_glue.c.orig	Mon Apr 11 00:08:53 2005
-+++ src/lmtp/lmtp_sasl_glue.c	Mon Apr 11 00:09:03 2005
-@@ -292,6 +292,14 @@
- 
- void    lmtp_sasl_initialize(void)
- {
-+    /*
-+     * Global callbacks. These have no per-session context.
-+     */
-+    static sasl_callback_t callbacks[] = {
-+	{SASL_CB_LOG, &lmtp_sasl_log, 0},
-+	{SASL_CB_LIST_END, 0, 0}
-+    };
-+
- #if SASL_VERSION_MAJOR >= 2 && (SASL_VERSION_MINOR >= 2 \
-     || (SASL_VERSION_MINOR == 1 && SASL_VERSION_STEP >= 19))
-     int     sasl_major;
-@@ -313,14 +321,6 @@
- 		  SASL_VERSION_MAJOR, SASL_VERSION_MINOR, SASL_VERSION_STEP,
- 		  sasl_major, sasl_minor, sasl_step);
- #endif
--
--    /*
--     * Global callbacks. These have no per-session context.
--     */
--    static sasl_callback_t callbacks[] = {
--	{SASL_CB_LOG, &lmtp_sasl_log, 0},
--	{SASL_CB_LIST_END, 0, 0}
--    };
- 
-     /*
-      * Sanity check.
Index: files/patch-src-smtp-smtp_sasl_glue.c
===================================================================
RCS file: files/patch-src-smtp-smtp_sasl_glue.c
diff -N files/patch-src-smtp-smtp_sasl_glue.c
--- files/patch-src-smtp-smtp_sasl_glue.c	11 Apr 2005 19:22:18 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,32 +0,0 @@
---- src/smtp/smtp_sasl_glue.c.orig	Mon Apr 11 00:09:17 2005
-+++ src/smtp/smtp_sasl_glue.c	Mon Apr 11 00:09:30 2005
-@@ -321,6 +321,14 @@
- 
- void    smtp_sasl_initialize(void)
- {
-+    /*
-+     * Global callbacks. These have no per-session context.
-+     */
-+    static sasl_callback_t callbacks[] = {
-+	{SASL_CB_LOG, &smtp_sasl_log, 0},
-+	{SASL_CB_LIST_END, 0, 0}
-+    };
-+
- #if SASL_VERSION_MAJOR >= 2 && (SASL_VERSION_MINOR >= 2 \
-     || (SASL_VERSION_MINOR == 1 && SASL_VERSION_STEP >= 19))
-     int     sasl_major;
-@@ -342,14 +350,6 @@
- 		  SASL_VERSION_MAJOR, SASL_VERSION_MINOR, SASL_VERSION_STEP,
- 		  sasl_major, sasl_minor, sasl_step);
- #endif
--
--    /*
--     * Global callbacks. These have no per-session context.
--     */
--    static sasl_callback_t callbacks[] = {
--	{SASL_CB_LOG, &smtp_sasl_log, 0},
--	{SASL_CB_LIST_END, 0, 0}
--    };
- 
-     /*
-      * Sanity check.
--- postfix-2.3.20050418,2.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list