Basically, I want a "catch-all" user. (Not a domain catch-all, a user catch-all). So when mail is sent to user@* (as long as the * is a domain listed in vhosts) then the mail gets dropped in this users mailbox. My configuration looks like the below... The only problem is when I send emails here is the responses I'm getting: Code: Send an email to: [email protected] - example1.com/test/ - works perfectly :) [email protected] - example2.com/test/ - works perfectly :) [email protected] - NDR - no user recognized - fails [email protected] - NDR - no user recognized - fails How I would like it to work: Code: Send an email to: [email protected] - example1.com/test/ [email protected] - example2.com/test/ [email protected] - test/ [email protected] - test/ vmaps (It is being postmap'ed): Code: test01 test/ [email protected] example1.com/test/ [email protected] example2.com/test/ vhosts: Code: example1.com example2.com main.cf: Code: smtpd_banner = Mail Relay biff = no append_dot_mydomain = no myhostname = localhost alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases myorigin = /etc/mailname mynetworks = 127.0.0.0/8 mailbox_command = mailbox_size_limit = 0 home_mailbox = Maildir/ virtual_mailbox_domains = /etc/postfix/vhosts virtual_mailbox_base = /home/vmail virtual_mailbox_maps = hash:/etc/postfix/vmaps virtual_minimum_uid = 1000 virtual_uid_maps = static:1000 virtual_gid_maps = static:1000 recipient_delimiter = + inet_interfaces = all inet_protocols = ipv4 mydestination = $myhostname relayhost = mail.log: Code: Apr 6 10:28:15 mail-relay postfix/qmgr[6106]: D3FDC62B819F: from=<root@localhost>, size=354, nrcpt=1 (queue active) Apr 6 10:28:15 mail-relay postfix/virtual[6117]: D3FDC62B819F: to=<[email protected]>, relay=virtual, delay=11, delays=11/0.02/0/0.02, dsn=5.1.1, status=bounced (unknown user: "[email protected]") How do I go about setting this up? Drez