Posts

Showing posts from March 23, 2012

loops back to myself

Trying to fix an error : loops back to myself Hope this works on monday   Postfix virtual ALIAS example: separate domains, UNIX system accounts With the approach described in this section, every hosted domain can have its own info etc. email address. However, it still uses UNIX system accounts for local mailbox deliveries. With virtual alias domains , each hosted address is aliased to a local UNIX system account or to a remote address. The example below shows how to use this mechanism for the example.com domain. 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@example.com postmaster 7 info@example.com joe 8 sales@example.com jane 9 # Uncomment entry below to implement a catch-all address 10 # @example.com jim 11 ...virtual aliases for more domains... Notes: Line 2: the vi