Minimal setup for sendmail to send outgoing email only?

I run a simple server that I administrate remotely, and I need it to be able to send an email to my personal email address every time an error occurs. With the default setup on Ubuntu, sendmail just accumulates emails in /var/spool/mail that are to be sent locally, but I need it to go to an external email.

The tutorials I've found all talk about setting up postfix/sendmail as a full-fledged email server, but I just need outgoing only, no external logins. Is there an easy way to do this?


You should also pay attention if you need a relay host and define it (DSmy.relay.host)


Maybe nullmailer is for you.


Assuming you are actually using postfix.

I would run dpkg-reconfigure postfix and select the "internet site" or "internet site with smarthost" (if you want to send the mail through a smarthost) option as a starting point. This will enable you to send mail to and receive mail from the internet.

If you don't want the box to be able to receive mail then I would suggest configuring the SMTP server to listen on localhost only. See https://superuser.com/a/430329/506601


Open /etc/aliases with a text editor (using sudo) and change the root line to be your email address, or add another line with your local user in it on the left hand side, and on the right hand side enter your email address:

root:        [email protected]

then after saving the aliases file, run newaliases command:

$ /usr/bin/newaliases

Both sendmail and postfix are configured by default to send outbound mail on most systems.