please do not hijack threads. send a new message instead of replying to an unrelated one.
Rodman Frowert a écrit : > Noel, > > I understand that anything for "mydomain" is looked up in /etc/passwd > which is a type of local recipitant table. But what if I want to feed > that "lookup system" another file in addition to the /etc/passwd file? > I was looking at the "local_recipitant_maps" parameter but haven't quite > figured out how to get it to be used. > > Basically, I would like the default local lookup done IN ADDITION to > another file I specifiy. This way, I still get local lookups, but I can > add users to just the Postfix mail system and not to the actual Unix > system. So anything to mail that is "mydomain" will be looked up in > both tables. > if you want virtual users, then the way to go is virtual_mailbox_domains (after removing $mydomain from mydestination). if you still want to deliver to unix accounts, use virtual_alias_maps to redirect j...@example.com to j...@localhost.example.com, where localhost.example.com is listed in mydestination. You really need to read http://www.postfix.org/BASIC_CONFIGURATION_README.html http://www.postfix.org/VIRTUAL_README.html (at least). > Does this make sense? >