| On Tue, May 02, 2000 at 01:31:20PM -0700, James wrote:
| > Is there an RPM for the latest Sendmail? I am trying to install the
| > binary, but it doesn't seem to be an easy installation. My current horror
| > is trying to set up virtual email. I wish this wasn't such a head-ache..
| > all I want to do is make it possible for mail sent to
| > [EMAIL PROTECTED] to reach [EMAIL PROTECTED] Does the new
| > Sendmail make this easier to do?
You can set up a virtusertable to bounce messages. I did this with the
euglug.net domain. The usernames for the emails aren't actually users,
and they don't have an account. But they can still receive emails and
those get bounced to their accounts on other boxes.
Somewhere in the sendmail.cf should be a line similar to the following:
# Virtual user table (maps incoming users)
Kvirtuser hash -o /etc/mail/virtusertable
In the file virtusertable, are lines like this:
[EMAIL PROTECTED] [EMAIL PROTECTED]
Once you have your file, you have to type:
makemap hash virtusertable.db < virtusertable
to make a hash table of your virtual users. The resulting file,
virtusertable.db should be in the directory specified in your
sendmail.cf.
This is coming from a FreeBSD box, so some directories may be slightly
different. This is also Sendmail 8.9.3
-Rob.