Configuring Nagios+Postfix to use AWS SES as relay

04 / Nov / 2015 by Rahul Jaiswal 0 comments

Introduction

Using Postfix to send email notifications to gmail or any such email providers causes relay issue (delay in email delivery) since gmail does not allow multiple emails from non-verified emails. I had to figure out delivering email notifications quickly to avoid any delay in response to the alerts generated by Nagios. AWS has a highly reliable email notification service called SES (Simple Email Service) which can be used to deliver such emails. In this blog I will be configuring postfix to relay the emails alerts from Nagios to use the AWS SES for delivering emails to recipients.This blogs assumes you have a working Nagios (hosts and alerts) configured.

Steps

1. Setting up the AWS SES

Verify your email which will be used to send emails. You can refer the link http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html for detailed steps for email verification on SES.

By default SES requires email verification for both sender and receiver email addresses. To avoid verification for the email addresses of recipients a request has to be generated on AWS Support for moving the your SES instance out of the sandbox into production. For detailed steps check the links below:

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html
– SES Email Sending Limits
(http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html)
– Increasing SES Sending Limits
(http://docs.aws.amazon.com/ses/latest/DeveloperGuide/increase-sending-limits.html)

2. Configuring Postfix

Configure your Postfix setup to work as relay. On Ubuntu it can be done using following command. dpkg-reconfigure postfix On prompting while reconfigure:

  1. Select “Satellite system” as your configuration.
  2. Set you SES smtp server as your relay host. To get your exact smtp host, open AWS SES console and click SMTP settings.
  3. Append below lines in /etc/postfix/main.cf

[js] smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_use_tls = yes
smtp_tls_security_level = encrypt
smtp_tls_note_starttls_offer = yes
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt[/js]

Enter below details in /etc/postfix/sasl_passwd ( Create if file does not exist ):

**Your AWS SES SMTP host **:25 accessid:accesskey

For the username, password, accessid and accesskey you will have to generate a user name and password for the SES. To generate the username and password follow the below steps:-

  1. Open STMP Settings on your AWS SES console.
  2. Click “Create My SMTP Credentials” button and follow the steps.

Download the credentials files. The credential files have your accessid and accesskey  which will be used as username and password.

  1. Execute below commands for further setup:

[js]
sudo chown root:root /etc/postfix/sasl_passwd
sudo chmod 0600 /etc/postfix/sasl_passwd
sudo postmap hash:/etc/postfix/sasl_passwd
sudo chown root:root /etc/postfix/sasl_passwd.db
sudo chmod 0600 /etc/postfix/sasl_passwd.db
sudo postconf -e ‘smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt’
service postfix restart
[/js]

The configuration is complete. To test your setup try sending a test mail.
echo test | mail -s "test message" -a "From: sender@example" recepient@example.com

**If the email fails please check mail log (tailf /var/log/mail.log). If the mail logs shows verification error please check the email ids being used. Both sender and receiver email id should be verified on SES before testing.

3. Configuring Nagios

  • Edit file nagios-installation-dir/nagios/etc/objects/commands.cfg
  • add -r sender@example.com at the end of mail commands wherever required.

[js]Example:

# ‘notify-host-by-email’ command definition

define command{

command_name    notify-host-by-email

command_line    /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /usr/bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ -r sender@example.com

}
[/js]

Restart Nagios :
service nagios restart

Configuration is complete. Try sending a custom notification via Nagios to test.

FOUND THIS USEFUL? SHARE IT

Leave a Reply

Your email address will not be published. Required fields are marked *