One can use telnet to test; output will be similar to below. (use your email instead of [email protected])
telnet 172.16.10.100 8081
Trying 172.16.10.100...
Connected to 172.16.10.100.
Escape character is '^]'.
220 mailagent.test.com ESMTP Postfix (Ubuntu)
helo test.com
250 mailagent.test.com
mail from: [email protected]
250 2.1.0 Ok
rcpt to: [email protected]
250 2.1.5 Ok
data
354 End data with <CR><LF>.<CR><LF>
test from direct connection
.
250 2.0.0 Ok: queued as 10533C01CB
Check if email has been received. This will confirm that the relay us working.
Add the mail relay host and port to sendmail.mc and build sendmail.cf file; restart sendmail.
sudo su - # root user
sudo vi sendmail.mc
# Add / edit the lines below
# define(`SMART_HOST',`[172.16.10.100]:8081')dnl
# define(`RELAY_MAILER_ARGS', `TCP $h 8081')dnl
# define(`ESMTP_MAILER_ARGS', `TCP $h 8081')dnl
m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf # Rebuild cf file
systemctl restart sendmail # restart sendmail
echo "Subject: sendmail test" | sendmail -v [email protected]
To: [email protected]
Subject: sendmail test
From: [email protected]
Testing from command line "sendmail"
sendmail -vt < /tmp/testmail.txt
php -r 'mail("[email protected]","Testing php -v ".phpversion(),"php on ".gethostname());'