Results 1 to 3 of 3
I created a new user "www". I can login with this user. I can send emails (using sendmail) from this user to other users.
But this user cannot receive any ...
- 07-25-2010 #1Just Joined!
- Join Date
- Jul 2010
- Location
- Hong Kong
- Posts
- 1
problem in new user "www"
I created a new user "www". I can login with this user. I can send emails (using sendmail) from this user to other users.

But this user cannot receive any email. All emails sent to "www" will go to "root" mailbox.
Is "www" a special account under sendmail that all emails will be re-directed to "root"?
- 07-25-2010 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
It should depend upon how your mail system is configured. It may be that way by default.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 07-26-2010 #3
Check /etc/aliases This is a file that is use to create the aliases.db file which is looked at by the mailing agent to determin if mail is to be rerouted to another user.
I see in mine that www is rerouted to webmaster and webmaster is rerouted to root.
After you make changes to this file you need to run run newaliases to update the db.Code:$ cat aliases | grep www www: webmaster $ cat aliases | grep webmaster www: webmaster webmaster: root


Reply With Quote