Find the answer to your Linux question:
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 ...
  1. #1
    Just Joined!
    Join Date
    Jul 2010
    Location
    Hong Kong
    Posts
    1

    Question 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"?

  2. #2
    Linux Guru Rubberman's Avatar
    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!

  3. #3
    Linux Guru Lazydog's Avatar
    Join Date
    Jun 2004
    Location
    The Keystone State
    Posts
    2,281
    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.

    Code:
    $  cat aliases | grep www
    www:            webmaster
    
    
    $  cat aliases | grep webmaster
    www:            webmaster
    webmaster:      root
    After you make changes to this file you need to run run newaliases to update the db.

    Regards
    Robert

    Linux
    The adventure of a life time.

    Linux User #296285
    Get Counted

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...