From: (no name) (no email)
Date: Sat Jan 01 2005 - 07:31:59 EST
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
7 joe
8 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 example.com/info
12 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
|
|
|