I would like to forward the emails received by root to an external email on an Ubuntu node. I have seen this post, but it does not explain much about the procedure to follow. There are some other posts available online, but they are often incomplete or unclear.
Does anyone have a complete procedure to share? Should a mailserver be installed on my node? If yes, which one? What are the configurations steps on the node? I am working strictly with command line (the node is a server).
If
root
is receiving email, then you probably already have a server installed.If this gets an error,
(Re)configure to either deliver directly or use a smarthost. Now add "
root: [email protected]
" (with the correct address, of course) to/etc/aliases
and runnewaliases
. (I think the Ubuntupostfix
package offers to do this automatically duringdpkg-reconfigure
).You'll need a mail server installed on your node, yes. Postfix, exim, and sendmail are my preferences (in that order.)
Note that some mail servers are a bit picky about who they accept mail from. If it's your local mail server, the restrictions are often done by network so you might not have a problem. If it's gmail, for example, you'll have to make sure your domain you send as (/etc/mailname in postfix) matches the IP you send from. Check out DynDNS or other similar services if you need to get a domain which matches your IP (if you don't already have one.)
Check instructions online for relaying to other mail providers.
You can then do one of the following (as root) to get mail sent to root@localhost sent to your external email address:
or
You also have to figure out if you can get out, or if your ISP does port 25 blocking. I made the below script to setup Ubuntu for smarthost email forwarding with username and password. So it will forward the root email to the ISPs SMTP server and not go direct.
Another alternative would be to use
ssmtp
(a small send-only mail "server"). A complete howto is given in the official Ubuntu documentation.