On Thu, 29 Jul 2004 12:16:32 -0400, "Jake McHenry" <linux@xxxxxxxxxxxxxxxxx> wrote: >Hi everyone, > >is there a way I can set up sendmail so that no emails bounce? if someone gets a wrong address or is just trying to find account names, could those emails be set up in an alias or something to be sent to my address? > ============ http://www.sendmail.org/~ca/email/lfaq.html#LUSER How to route mail to unknown users to one account? sendmail 8 has a feature to route all mail which ends up as local on the system but isn't a valid account (or alias), to another system (the so-called LUSER_RELAY), see cf/README (from 8.8). However, this feature is disrecommended, since it can break ``working'' addresses if you introduce new local users. If you want to route all mail to unknown users to one account (instead of giving the standard error reply), you can put in your .mc file the following: define(`LUSER_RELAY',`local:someuser@xxxxxxxxxxx') or in some cases: define(`LUSER_RELAY',`local:someuser') Something similar can be accomplished for virtual domains. ============== -- Steve