start page | rating of books | rating of authors | reviews | copyrights

sendmail Desktop Reference

sendmail Desktop ReferenceSearch this book
Previous: 4.3 MAILER Declarations Chapter 4
Configuring with m4
Next: 4.5 Mailer Tables
 

4.4 Virtual User Tables

When using FEATURE(virtusertable), sendmail will do translation based on the entire domain name when the address is first read. This is similar, but not identical, to aliasing. It is commonly used to host multiple domains with different (and possibly even overlapping) users on one machine using MX records. The format of the input file (e.g., /etc/virtusertable ) is:

[

virtuser

]
@


virtdomain   address

For example, an input file might read:

[email protected]    foo-info [email protected]    bar-info [email protected]    jdoe [email protected]    [email protected] @bar.com        mary

The first two entries translate [email protected] and [email protected] into different names, which may be user names or aliases. The third and fourth entries alias users to other names. The fifth entry says that [email protected] that wasn't otherwise recognized should go to mary .

You build the database from the input file using the makemap (1) program:

% 

makemap hash 



/etc/virtusertable 



< 



/etc/virtusertable

You declare the database for use with your .mc file, like this:

FEATURE(virtusertable, hash 

/etc/virtusertable

)


Previous: 4.3 MAILER Declarations sendmail Desktop Reference Next: 4.5 Mailer Tables
4.3 MAILER Declarations   4.5 Mailer Tables