{"id":28605,"date":"2015-11-04T17:44:04","date_gmt":"2015-11-04T12:14:04","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=28605"},"modified":"2015-11-04T17:45:06","modified_gmt":"2015-11-04T12:15:06","slug":"configuring-nagiospostfix-to-use-aws-ses-as-relay","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/","title":{"rendered":"Configuring Nagios+Postfix to use AWS SES as relay"},"content":{"rendered":"<h3><b>Introduction<\/b><\/h3>\n<p>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.<\/p>\n<h3><b>Steps<\/b><\/h3>\n<h3><b>1. Setting up the AWS SES<\/b><\/h3>\n<p>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.<\/p>\n<p>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:<\/p>\n<p><a href=\"http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/request-production-access.html\">http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/request-production-access.html<\/a><br \/>\n&#8211; SES Email Sending Limits<br \/>\n<i>(<\/i><a href=\"http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/limits.html\"><i>http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/limits.html<\/i><\/a><i>)<\/i><br \/>\n&#8211; Increasing SES Sending Limits<br \/>\n<i>(<\/i><a href=\"http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/increase-sending-limits.html\"><i>http:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/increase-sending-limits.html<\/i><\/a><i>)<\/i><\/p>\n<h3><b>2. Configuring Postfix<\/b><\/h3>\n<p>Configure your Postfix setup to work as relay. On Ubuntu it can be done using following command. <code>dpkg-reconfigure postfix<\/code> On prompting while reconfigure:<\/p>\n<ol>\n<li>Select &#8220;Satellite system&#8221; as your configuration.<\/li>\n<li>Set you SES smtp server as your relay host. To get your exact smtp host, open AWS SES console and click SMTP settings.<\/li>\n<li>Append below lines in \/etc\/postfix\/main.cf<\/li>\n<\/ol>\n<p>[js] smtp_sasl_auth_enable = yes<br \/>\nsmtp_sasl_security_options = noanonymous<br \/>\nsmtp_sasl_password_maps = hash:\/etc\/postfix\/sasl_passwd<br \/>\nsmtp_use_tls = yes<br \/>\nsmtp_tls_security_level = encrypt<br \/>\nsmtp_tls_note_starttls_offer = yes<br \/>\nsmtp_tls_CAfile = \/etc\/ssl\/certs\/ca-certificates.crt[\/js]<\/p>\n<p>Enter below details in \/etc\/postfix\/sasl_passwd ( Create if file does not exist ):<\/p>\n<p><code>**Your AWS SES SMTP host **:25 accessid:accesskey<\/code><\/p>\n<p>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:-<\/p>\n<ol>\n<li>Open STMP Settings on your AWS SES console.<\/li>\n<li>Click &#8220;Create My SMTP Credentials&#8221; button and follow the steps.<\/li>\n<\/ol>\n<p>Download the credentials files. The credential files have your accessid and accesskey \u00a0which will be used as username and password.<\/p>\n<ol>\n<li>Execute below commands for further setup:<\/li>\n<\/ol>\n<p>[js]<br \/>\nsudo chown root:root \/etc\/postfix\/sasl_passwd<br \/>\nsudo chmod 0600 \/etc\/postfix\/sasl_passwd<br \/>\nsudo postmap hash:\/etc\/postfix\/sasl_passwd<br \/>\nsudo chown root:root \/etc\/postfix\/sasl_passwd.db<br \/>\nsudo chmod 0600 \/etc\/postfix\/sasl_passwd.db<br \/>\nsudo postconf -e &#8216;smtp_tls_CAfile = \/etc\/ssl\/certs\/ca-certificates.crt&#8217;<br \/>\nservice postfix restart<br \/>\n[\/js]<\/p>\n<p>The configuration is complete. To test your setup try sending a test mail.<br \/>\n<code>echo test | mail -s \"test message\" -a \"From: sender@example\" recepient@example.com<\/code><\/p>\n<address>**If the email fails please check mail log <i>(tailf \/var\/log\/mail.log)<\/i>. 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.<\/address>\n<h3><b>3. Configuring Nagios<\/b><\/h3>\n<ul>\n<li>Edit file nagios-installation-dir\/nagios\/etc\/objects\/commands.cfg<\/li>\n<li>add -r sender@example.com at the end of mail commands wherever required.<\/li>\n<\/ul>\n<p>[js]Example:<\/p>\n<p># &#8216;notify-host-by-email&#8217; command definition<\/p>\n<p>define command{<\/p>\n<p>command_name \u00a0\u00a0\u00a0notify-host-by-email<\/p>\n<p>command_line \u00a0\u00a0\u00a0\/usr\/bin\/printf &quot;%b&quot; &quot;***** Nagios *****\\n\\nNotification Type: $NOTIFICATIONTYPE$\\nHost: $HOSTNAME$\\nState: $HOSTSTATE$\\nAddress: $HOSTADDRESS$\\nInfo: $HOSTOUTPUT$\\n\\nDate\/Time: $LONGDATETIME$\\n&quot; | \/usr\/bin\/mail -s &quot;** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **&quot; $CONTACTEMAIL$ -r sender@example.com<\/p>\n<p>}<br \/>\n[\/js]<\/p>\n<p>Restart Nagios :<br \/>\n<code>service nagios restart<\/code><\/p>\n<p>Configuration is complete. Try sending a custom notification via Nagios to test.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>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 [&hellip;]<\/p>\n","protected":false},"author":563,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":161,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-28605","post","type-post","status-publish","format-standard","hentry","category-technology"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"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\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Rahul Kumar Jaiswal\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"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\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"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\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#article\",\"name\":\"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog\",\"headline\":\"Configuring Nagios+Postfix to use AWS SES as relay\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rahul-3\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-11-04T17:44:04+05:30\",\"dateModified\":\"2015-11-04T17:45:06+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#webpage\"},\"articleSection\":\"Technology\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#listItem\",\"name\":\"Configuring Nagios+Postfix to use AWS SES as relay\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#listItem\",\"position\":3,\"name\":\"Configuring Nagios+Postfix to use AWS SES as relay\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rahul-3\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rahul-3\\\/\",\"name\":\"Rahul Kumar Jaiswal\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/8d045d56-1367-4c00-ae9f-0263f53917fc_1337-Rahul-Kumar-Jaiswal-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Rahul Kumar Jaiswal\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/\",\"name\":\"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog\",\"description\":\"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\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/configuring-nagiospostfix-to-use-aws-ses-as-relay\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rahul-3\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rahul-3\\\/#author\"},\"datePublished\":\"2015-11-04T17:44:04+05:30\",\"dateModified\":\"2015-11-04T17:45:06+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog","description":"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","canonical_url":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#article","name":"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog","headline":"Configuring Nagios+Postfix to use AWS SES as relay","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rahul-3\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2015-11-04T17:44:04+05:30","dateModified":"2015-11-04T17:45:06+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#webpage"},"articleSection":"Technology"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#listItem","name":"Configuring Nagios+Postfix to use AWS SES as relay"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#listItem","position":3,"name":"Configuring Nagios+Postfix to use AWS SES as relay","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/rahul-3\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/rahul-3\/","name":"Rahul Kumar Jaiswal","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/8d045d56-1367-4c00-ae9f-0263f53917fc_1337-Rahul-Kumar-Jaiswal-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Rahul Kumar Jaiswal"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/","name":"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog","description":"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","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rahul-3\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rahul-3\/#author"},"datePublished":"2015-11-04T17:44:04+05:30","dateModified":"2015-11-04T17:45:06+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog","og:description":"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","og:url":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Configuring Nagios+Postfix to use AWS SES as relay | TO THE NEW Blog","twitter:description":"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","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"28605","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 18:57:51","updated":"2024-02-29 09:30:27","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tConfiguring Nagios+Postfix to use AWS SES as relay\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Configuring Nagios+Postfix to use AWS SES as relay","link":"https:\/\/tothenewco.pro\/blog\/configuring-nagiospostfix-to-use-aws-ses-as-relay\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/28605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/563"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=28605"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/28605\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=28605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=28605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=28605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}