85

I'm getting a lot of mail in my root user's mail account. This appears to be mostly reports and errors from things like cron scripts. I'm trying to work though and solve these things, possibly even have them be piped to some sort of "dashboard" - but until then how can I have these messages go to my personal e-mail account instead?

cwd
  • 45,389
  • You should ask your second question as a separate question if you really want an answer to it. – cjm Dec 13 '11 at 08:40

5 Answers5

96

Any user, including root, can forward their local email by putting the forwarding address in a file called ~/.forward. You can have multiple addresses there, all on one line and separated by comma. If you want both local delivery and forwarding, put root@localhost as one of the addresses.

The system administrator can define email aliases in the file /etc/aliases. This file contains lines like root: cwd@mailhost.example.com, /root/mailbox; the effect is the same as having cwd@mailhost.example.com, /root/mailbox in ~root/.forward. You may need to run a program such as newaliases after changing /etc/aliases.

Note that the workings of .forward and /etc/aliases depend on your MTA. Most MTAs implement the main features provided by the traditional sendmail, but check your MTA's documentation.

17

Simply create /root/.forward and place your email address in this file. It will be forwarded to your external mail address.

1

If you are using the Postfix MTA and own your own domain (example.com), you can configure it to forward to root@example.com alongside any other user account.

In the main.cf configuration file, or with the overrides in master.cf set the following options:

mydomain = example.com
mydestination = localhost.localdomain, localhost, local.$mydomain # Basically, anything but $mydomain

This will have Postfix treat mail to your root account as root@example.com and route it accordingly, whether relay to your relayhost or deliver it to example.com directly. With this configuration Postfix will deliver mail to root@local.example.com to your local mailbox (/var/mail/root or wherever your system delivers system mail).

palswim
  • 5,167
1

in ~/.forward myaddress@example.com, root@thisserver.com

with this I get an email on my box and it is also written to /var/mail/root. (my distribution is Debian with postfix).
Replace "thisserver.com" with the domain name of your server

zoechi
  • 111
Kawa600
  • 11
0

Use this command:

nano /root/.forward 

Insert, edit or remove emails in that text file, Ctrl+X, [Y] to save file.

Dylan B
  • 331