postfix: Removed VIEW-based comments from configuration files. v0.6.x
authorPascal Volk <user@localhost.localdomain.org>
Sun, 08 Apr 2012 16:29:37 +0000
branchv0.6.x
changeset 501 f2387d60624b
parent 500 5ccc9c6e5193
child 502 e1b32377032f
postfix: Removed VIEW-based comments from configuration files.
postfix/pgsql-relocated_maps.cf
postfix/pgsql-transport_maps.cf
postfix/pgsql-virtual_alias_maps.cf
postfix/pgsql-virtual_mailbox_maps.cf
postfix/pgsql-virtual_uid_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')
--- 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')
--- 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')
--- 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')
--- 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')