summaryrefslogtreecommitdiff
path: root/mail/postfix/patches/patch-bd
diff options
context:
space:
mode:
authoragc <agc>2004-07-08 08:33:49 +0000
committeragc <agc>2004-07-08 08:33:49 +0000
commit1486be61d2a11c6bb84e5b77dbac588ba9311b7c (patch)
tree600182460a9679b1e137c6efeade2aa1889043ef /mail/postfix/patches/patch-bd
parent72ed11cb660cf898be1c15e9e64ec73fa927da20 (diff)
downloadpkgsrc-1486be61d2a11c6bb84e5b77dbac588ba9311b7c.tar.gz
Pullup ticket 47 to the pkgsrc-2004Q2 branch, requested by Martti Kuparinen.
Update postfix to 2.1.3. Module Name: pkgsrc Committed By: martti Date: Mon Jun 21 16:13:24 UTC 2004 Modified Files: pkgsrc/mail/postfix: Makefile PLIST PLIST.tls distinfo pkgsrc/mail/postfix/patches: patch-aa patch-ae patch-af patch-ag patch-ai Removed Files: pkgsrc/mail/postfix/patches: patch-ad patch-ba patch-bb patch-bc patch-bd Log Message: Updated postfix to 2.1.3 This is the new 2.1.x series, please see www.postfix.org for complete list of changes since 2.0.20.
Diffstat (limited to 'mail/postfix/patches/patch-bd')
-rw-r--r--mail/postfix/patches/patch-bd42
1 files changed, 0 insertions, 42 deletions
diff --git a/mail/postfix/patches/patch-bd b/mail/postfix/patches/patch-bd
deleted file mode 100644
index 8df221accef..00000000000
--- a/mail/postfix/patches/patch-bd
+++ /dev/null
@@ -1,42 +0,0 @@
-$NetBSD: patch-bd,v 1.4 2004/03/05 22:59:32 grant Exp $
-
---- src/cleanup/cleanup_init.c.orig 2002-12-04 01:56:56.000000000 +1100
-+++ src/cleanup/cleanup_init.c
-@@ -6,6 +6,8 @@
- /* SYNOPSIS
- /* #include "cleanup.h"
- /*
-+/* CONFIG_BOOL_TABLE cleanup_bool_table[];
-+/*
- /* CONFIG_INT_TABLE cleanup_int_table[];
- /*
- /* CONFIG_STR_TABLE cleanup_str_table[];
-@@ -28,7 +30,7 @@
- /* for one-time initializations that must be done before any message
- /* processing can take place.
- /*
--/* cleanup_{int,str,time}_table[] specify configuration
-+/* cleanup_{bool,int,str,time}_table[] specify configuration
- /* parameters that must be initialized before calling any functions
- /* in this module. These tables satisfy the interface as specified in
- /* single_service(3).
-@@ -109,6 +111,7 @@ char *var_always_bcc; /* big brother
- int var_extra_rcpt_limit; /* recipient extract limit */
- char *var_rcpt_witheld; /* recipients not disclosed */
- char *var_masq_classes; /* what to masquerade */
-+bool var_canon_env_rcpt; /* canonicalize envelope recipient */
- int var_qattr_count_limit; /* named attribute limit */
- int var_body_check_len; /* when to stop body scan */
-
-@@ -145,6 +148,11 @@ CONFIG_STR_TABLE cleanup_str_table[] = {
- 0,
- };
-
-+CONFIG_BOOL_TABLE cleanup_bool_table[] = {
-+ VAR_CANON_ENV_RCPT, DEF_CANON_ENV_RCPT, &var_canon_env_rcpt,
-+ 0,
-+};
-+
- /*
- * Mappings.
- */