By Bob Flora
My Ubuntu droplet is sending emails for things like cron output to email address my-user-name@ubuntu. The emails pile up in file /var/mail/my-user-name. How can I change this so the emails go to my external email address instead?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
You can forward root’s mail inbox to your email address. To do this, you can open the /etc/aliases
file with your editor. You will find this inside the file.
# See man 5 aliases for format
postmaster: root
Add the following line to the file. This will forward all emails generated from your system that is sent to root to your specified email address.
# See man 5 aliases for format
postmaster: root
root: user@youremaildomain.com
Afterward, save and close the file. Finally, run the newaliases
command in your terminal to activate the change.
Hope this could be useful. Do not forget to check your Spam folder if you do not receive the expected emails in your inbox.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.