]> Frank Brehm's Git Trees - my-stuff/postfix.git/commitdiff
Konfiguration hinzugefĆ¼gt
authorFrank Brehm <frank@brehm-online.com>
Mon, 10 Nov 2008 13:22:01 +0000 (13:22 +0000)
committerFrank Brehm <frank@brehm-online.com>
Mon, 10 Nov 2008 13:22:01 +0000 (13:22 +0000)
git-svn-id: http://svn.brehm-online.com/svn/my-stuff/postfix@27 ec8d2aa5-1599-4edb-8739-2b3a1bc399aa

get-lookup-tables.conf [new file with mode: 0644]

diff --git a/get-lookup-tables.conf b/get-lookup-tables.conf
new file mode 100644 (file)
index 0000000..0398c2a
--- /dev/null
@@ -0,0 +1,73 @@
+# $Id$
+# $URL$
+
+# Konfiguration des Datenbank-Zugriffs
+
+<db>
+       user            vmail
+       host            localhost
+       password        Pee5au0T
+       dbname          vmail
+</db>
+
+workdir                        /etc/postfix/work
+lookup_dir             /etc/postfix/tables
+pid_file               /var/run/get-lookup-tables.pid
+
+#<binary>
+#      postfix         /usr/sbin/postfix
+#      postalias       /usr/sbin/postalias
+#      postmap         /usr/sbin/postmap
+#      postconf        /usr/sbin/postconf
+#</binary>
+
+<lookup aliases>
+       query           "SELECT `alias`, `destination` FROM `alias` WHERE `enabled` = 'y' ORDER BY `alias`, `destination`"
+       type            hash
+       map_type        aliases
+       prefix          <<ENDE
+# NAME
+#        aliases - Postfix local alias database format
+#
+# DESCRIPTION
+#        The  aliases(5)  table provides a system-wide mechanism to
+#        redirect mail for local recipients. The  redirections  are
+#        processed by the Postfix local(8) delivery agent.
+#
+# SEE ALSO
+#        local(8), local delivery agent
+#        newaliases(1), create/update alias database
+#        postalias(1), create/update alias database
+#        postconf(5), configuration parameters
+#
+ENDE
+</lookup>
+
+<lookup virtual>
+       query           "SELECT `email`, `destination` FROM `virtual` WHERE `enabled` = 'y' ORDER BY `destination`, `email`"
+       type            hash
+       map_type        map
+       prefix          <<ENDE
+# NAME
+#        virtual - Postfix virtual alias table format
+#
+# DESCRIPTION
+#        The  optional  virtual(5)  alias  table rewrites recipient
+#        addresses for all local, all virtual, and all remote  mail
+#        destinations.   This  is unlike the aliases(5) table which
+#        is used only for local(8) delivery.  Virtual  aliasing  is
+#        recursive,  and  is  implemented by the Postfix cleanup(8)
+#        daemon before mail is queued.
+#
+# SEE ALSO
+#        cleanup(8), canonicalize and enqueue mail
+#        postmap(1), Postfix lookup table manager
+#        postconf(5), configuration parameters
+#        canonical(5), canonical address mapping
+#
+ENDE
+</lookup>
+
+
+
+# vim: ts=4 syntax=conf