|
Save the teapot fund New CSS web design for Wibble proudly provided by Kelv. Please contact the webmaster with any questions or concerns. |
Wibble > List archives > postfix > 2005 [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Virtual "catch all" problem
Hello, When I specify an catchall address @example.com in the alias lookups it works. But then no mail will go to the a virtual mailboxes for example.com. Virtual aliases has more priority then a virtual mailbox. According to the documentation I can add an catchall in virtual mailbox tabl. But the catchall for @example.com is not located on the same system so I can't add an catchall address in virtual mailbox table. Any ideas? 1 /etc/postfix/main.cf: 2 virtual_alias_domains = example.com ...other hosted domains... 3 virtual_alias_maps = hash:/etc/postfix/virtual 4 5 /etc/postfix/virtual: 6 postmaster@xxxxxxxxxxx postmaster 7 info@xxxxxxxxxxx joe 8 sales@xxxxxxxxxxx jane 9 # Uncomment entry below to implement a catch-all address 10 # @example.com jim 11 ...virtual aliases for more domains... 1 /etc/postfix/main.cf: 2 virtual_mailbox_domains = example.com ...more domains... 3 virtual_mailbox_base = /var/mail/vhosts 4 virtual_mailbox_maps = hash:/etc/postfix/vmailbox 5 virtual_minimum_uid = 100 6 virtual_uid_maps = static:5000 7 virtual_gid_maps = static:5000 8 virtual_alias_maps = hash:/etc/postfix/virtual 9 10 /etc/postfix/vmailbox: 11 info@xxxxxxxxxxx example.com/info 12 sales@xxxxxxxxxxx example.com/sales/ 13 # Comment out the entry below to implement a catch-all. 14 # @example.com example.com/catchall 15 ...virtual mailboxes for more domains... 16 17 /etc/postfix/virtual: 18 postmaster@xxxxxxxxxxx postmaster
|