# HG changeset patch
# User Pascal Volk <user@localhost.localdomain.org>
# Date 1333902577 0
# Node ID f2387d60624b705531b1ced049738f4082998215
# Parent  5ccc9c6e51936533876de9df762637d76ac63d10
postfix: Removed VIEW-based comments from configuration files.

diff -r 5ccc9c6e5193 -r f2387d60624b postfix/pgsql-relocated_maps.cf
--- a/postfix/pgsql-relocated_maps.cf	Sun Apr 08 16:20:43 2012 +0000
+++ b/postfix/pgsql-relocated_maps.cf	Sun Apr 08 16:29:37 2012 +0000
@@ -11,9 +11,4 @@
 dbname = mailsys
 
 # The SQL query template used to search the database
-# Use this VIEW-based template if you didn't create the pgsql function
-# `postfix_relocated_map'.
-#query = SELECT destination FROM postfix_relocated WHERE address='%s'
-
-# the recommended, function-based template
 query = SELECT destination FROM postfix_relocated_map('%u', '%d')
diff -r 5ccc9c6e5193 -r f2387d60624b postfix/pgsql-transport_maps.cf
--- a/postfix/pgsql-transport_maps.cf	Sun Apr 08 16:20:43 2012 +0000
+++ b/postfix/pgsql-transport_maps.cf	Sun Apr 08 16:29:37 2012 +0000
@@ -11,9 +11,4 @@
 dbname = mailsys
 
 # The SQL query template used to search the database
-# Use this VIEW-based template if you didn't create the pgsql function
-# `postfix_transport_map'.
-#query = SELECT transport FROM postfix_transport WHERE address='%s'
-
-# the recommended, function-based template
 query = SELECT transport FROM postfix_transport_map('%u', '%d')
diff -r 5ccc9c6e5193 -r f2387d60624b postfix/pgsql-virtual_alias_maps.cf
--- a/postfix/pgsql-virtual_alias_maps.cf	Sun Apr 08 16:20:43 2012 +0000
+++ b/postfix/pgsql-virtual_alias_maps.cf	Sun Apr 08 16:29:37 2012 +0000
@@ -11,9 +11,4 @@
 dbname = mailsys
 
 # The SQL query template used to search the database
-# Use this VIEW-based template if you didn't create the pgsql function
-# `postfix_virtual_alias_map'.
-#query = SELECT destination FROM postfix_alias WHERE address='%s'
-
-# the recommended, function-based template
 query = SELECT destination FROM postfix_virtual_alias_map('%u', '%d')
diff -r 5ccc9c6e5193 -r f2387d60624b postfix/pgsql-virtual_mailbox_maps.cf
--- a/postfix/pgsql-virtual_mailbox_maps.cf	Sun Apr 08 16:20:43 2012 +0000
+++ b/postfix/pgsql-virtual_mailbox_maps.cf	Sun Apr 08 16:29:37 2012 +0000
@@ -11,9 +11,4 @@
 dbname = mailsys
 
 # The SQL query template used to search the database
-# Use this VIEW-based template if you didn't create the pgsql function
-# `postfix_virtual_mailbox_map'.
-#query = SELECT maildir FROM postfix_maildir WHERE address='%s'
-
-# the recommended, function-based template
 query = SELECT maildir FROM postfix_virtual_mailbox_map('%u', '%d')
diff -r 5ccc9c6e5193 -r f2387d60624b postfix/pgsql-virtual_uid_maps.cf
--- a/postfix/pgsql-virtual_uid_maps.cf	Sun Apr 08 16:20:43 2012 +0000
+++ b/postfix/pgsql-virtual_uid_maps.cf	Sun Apr 08 16:29:37 2012 +0000
@@ -11,9 +11,4 @@
 dbname = mailsys
 
 # The SQL query template used to search the database
-# Use this VIEW-based template if you didn't create the pgsql function
-# `postfix_virtual_uid_map'.
-#query = SELECT uid FROM postfix_uid WHERE address='%s'
-
-# the recommended, function-based template
 query = SELECT uid FROM postfix_virtual_uid_map('%u', '%d')