{"id":801,"date":"2013-01-16T18:14:57","date_gmt":"2013-01-16T23:14:57","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/16\/find-email-delivery-failures-in-exim\/"},"modified":"2021-08-16T23:23:59","modified_gmt":"2021-08-17T03:23:59","slug":"find-email-delivery-failures-in-exim","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/","title":{"rendered":"Find email delivery failures in Exim"},"content":{"rendered":"<p>In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.<\/p>\n<p>Email delivery failures can happen for a large number of reasons, for a more in-depth explanation on these types of issues you can check out my article on <a href=\"\/support\/email\/email-bounce-bounceback-error\/\">why does email bounce<\/a>?<\/p>\n<p class=\"alert\">In order to follow the steps below you&#8217;ll need <a href=\"\/support\/server\/ssh\/root-access-faq\/\">root access<\/a> to your server.<\/p>\n<h2>Locating email delivery failed messages<\/h2>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"\u201d_blank\u201d\" rel=\"noopener noreferrer\">Login to your server via SSH<\/a> as the root user.<\/li>\n<li>Run the following command to get a sorted report of the users with the highest amounts of delivery failures:<br \/>\n<code>grep \"for .*@.*\" \/var\/log\/exim_mainlog | grep \"&lt;= &lt;&gt;\" | awk -F\"T=\" '{print $2}' |<br \/>\nawk '{print $NF,$0}' | awk -F\" for\" '{print $1}' | sort | uniq -c | sort -n<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">grep &#8220;for .*@.*&#8221; \/var\/log\/exim_mainlog<\/th>\n<td style=\"padding: 15px;\">Locate lines in the Exim mail log that include any variation of &#8220;for user@domain.com&#8221;<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">grep &#8220;&lt;= &lt;&gt;&#8221;<\/th>\n<td style=\"padding: 15px;\">Locate lines that are being sent from a null sender, which indicates a bounce back<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk -F&#8221;T=&#8221; &#8216;{print $2}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command with the <strong>F<\/strong>ield seperator set to <strong>T=<\/strong> which is the subject line in the mail log, then only print the <strong>$2<\/strong>nd column of data.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{print $NF,$0}&#8217; | awk -F&#8221; for&#8221; &#8216;{print $1}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use <strong>awk<\/strong> to print <strong>$NF<\/strong> which is the very last column, which is the email address. Then run <strong>awk<\/strong> again with the <strong>F<\/strong>ield seperator set to <strong> for<\/strong> and then print out only the <strong>$1<\/strong>st colum of data (this strips the email user off of the end of the line).<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">sort | uniq -c | sort -n<\/th>\n<td style=\"padding: 15px;\">Sort all of the data by the email users, then uniquely count them, and finally sort those counts by lowest to highest.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This will give you back data looking like this:<br \/>\n<code>573 support@example.com \"<a href=\"\/support\/email\/mail-delivery-failed-returning-message-to-sender\/\">Mail delivery failed: returning message to sender<\/a><br \/>\n663 user@example.com \"Mail delivery failed: returning message to sender<br \/>\n871 test@example.com \"Mail delivery failed: returning message to sender<br \/>\n1282 help@example.com \"Mail delivery failed: returning message to sender<\/code><\/li>\n<\/ol>\n<h2>Investigate cause of delivery failures<\/h2>\n<p>Now that you know one user in particular <strong>help@example.com<\/strong> had the most delivery errors, you can use the steps below to investigate the cause of these problems.<\/p>\n<ol class=\"article_list\">\n<li>Run the following command to find the latest delivery failure:<code>grep \"Mail delivery failed:\" \/var\/log\/exim_mainlog | grep help@example.com | tail -1<\/code><br \/>\nThis should give you back the full line from the Exim mail log that contains that error:<\/p>\n<p><code style=\"white-space: pre-wrap;\">2013-01-16 14:45:34 1TvYvW-0006AC-ER &lt;= &lt;&gt; R=1TvYvW-00069r-Au U=mailnull P=local S=2012<br \/>\nT=\"Mail delivery failed: returning message to sender\" for help@example.com<\/code><br \/>\nCopy the messaged ID following <strong>R=<\/strong>, so in this case it would be <strong>1TvYvW-00069r-Au<\/strong><\/li>\n<li>Using the message ID you copied, run the following command: <code>exigrep -I -l 1TvYvW-00069r-Au \/var\/log\/exim_mainlog<\/code><br \/>\nThis will display the full message transaction for the message that bounced:<br \/>\n<code style=\"white-space: pre-wrap;\">2013-01-16 14:45:34 cwd=\/var\/spool\/exim 3 args: \/usr\/sbin\/exim -Mc 1TvYvW-00069r-Au<br \/>\n2013-01-16 14:45:34 cwd=\/var\/spool\/exim 7 args: \/usr\/sbin\/exim -t -oem -oi -f &lt;&gt; -E1TvYvW-00069r-Au<br \/>\n2013-01-16 14:45:34 1TvYvW-00069r-Au &lt;= help@example.com H=localhost (secure103.inmotionhosting.com) [127.0.0.1]:40726 P=esmtpa A=courier_login:help@example.com S=1172 id=f25ddf5d4e8c56e73ab82081c9011a34@atomlabs.net T=\"Test\" for no-reply@example.com<br \/>\n2013-01-16 14:45:34 1TvYvW-00069r-Au ** no-reply@example.com R=virtual_aliases: No Such User Here\"<br \/>\n2013-01-16 14:45:34 1TvYvW-00069r-Au Completed<br \/>\n2013-01-16 14:45:34 1TvYvW-0006AC-ER &lt;= &lt;&gt; R=1TvYvW-00069r-Au U=mailnull P=local S=2012 T=\"Mail delivery failed: returning message to sender\" for help@example.com<br \/>\n2013-01-16 14:45:34 1TvYvW-0006AC-ER =&gt; help &lt;help@example.com&gt; R=virtual_user T=virtual_userdelivery<br \/>\n2013-01-16 14:45:34 1TvYvW-0006AC-ER Completed<\/code><br \/>\nSo in this case we can see the reason the message bounced was <strong>** no-reply@example.com R=virtual_aliases: No Such User Here<\/strong>. Basically, <strong>help@example.com<\/strong>&nbsp;had tried to send a message to an email address that didn&#8217;t exist so it bounced.<\/li>\n<li>You can repeat the sames steps to investigate other bounces that user has been generating. Or an alternative method would be to directly look at the user&#8217;s mail with the following commands:<br \/>\n<code>grep \"Mail delivery failed\" \/home\/userna5\/mail\/example.com\/help\/{cur,new} -R<\/code><\/p>\n<p>This gives back something like:<br \/>\n<code style=\"white-space: pre-wrap;\">\/home\/userna5\/mail\/example.com\/help\/cur\/1358366803.H952383P10133.ecbiz103.inmotionhosting.com,S=2120:2,:Subject: Mail delivery failed: returning message to sender<br \/>\n\/home\/userna5\/mail\/example.com\/help\/cur\/1358366759.H640077P7532.ecbiz103.inmotionhosting.com,S=2115:2,:Subject: Mail delivery failed: returning message to sender<br \/>\n\/home\/userna5\/mail\/example.com\/help\/cur\/1358365534.H479296P23705.ecbiz103.inmotionhosting.com,S=2107:2,:Subject: Mail delivery failed: returning message to sender<br \/>\n\/home\/userna5\/mail\/example.com\/help\/cur\/1358366776.H336048P8578.ecbiz103.inmotionhosting.com,S=2123:2,:Subject: Mail delivery failed: returning message to sender<\/code><br \/>\nYou can then read one of the bounce backs for further details with this command:<br \/>\n<code>less \/home\/userna5\/mail\/example.com\/help\/cur\/1358366776.H336048P8578.ecbiz103.inmotionhosting.com,S=2123:2,<\/code><br \/>\nWhen you&#8217;re done looking at the file, you can hit <strong>q<\/strong> to quit and get back to the command line.<\/li>\n<\/ol>\n<p>You should now understand how to locate users on your server that are generating a large amount of delivery failures, and also how to investigate those bounces to see the root cause of those issues.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring. Email delivery failures can happen for a large number of reasons, for a more in-depth explanation on these types of issues you can<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-801","post","type-post","status-publish","format-standard","hentry","category-email"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Find email delivery failures in Exim | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find email delivery failures in Exim | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-16T23:14:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:59+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Find email delivery failures in Exim\",\"datePublished\":\"2013-01-16T23:14:57+00:00\",\"dateModified\":\"2021-08-17T03:23:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\"},\"wordCount\":538,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Email\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\",\"name\":\"Find email delivery failures in Exim | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-16T23:14:57+00:00\",\"dateModified\":\"2021-08-17T03:23:59+00:00\",\"description\":\"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find email delivery failures in Exim\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Find email delivery failures in Exim | InMotion Hosting","description":"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/","og_locale":"en_US","og_type":"article","og_title":"Find email delivery failures in Exim | InMotion Hosting","og_description":"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-16T23:14:57+00:00","article_modified_time":"2021-08-17T03:23:59+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Find email delivery failures in Exim","datePublished":"2013-01-16T23:14:57+00:00","dateModified":"2021-08-17T03:23:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/"},"wordCount":538,"commentCount":3,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Email"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/","name":"Find email delivery failures in Exim | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-16T23:14:57+00:00","dateModified":"2021-08-17T03:23:59+00:00","description":"In this article we are going to go over how to quickly review the entire mail log for your VPS or dedicated server in order to find delivery failures that are occurring.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/find-email-delivery-failures-in-exim\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Find email delivery failures in Exim"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/801","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=801"}],"version-history":[{"count":6,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/801\/revisions"}],"predecessor-version":[{"id":85072,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/801\/revisions\/85072"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=801"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=801"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=801"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}