{"id":812,"date":"2013-01-21T19:10:01","date_gmt":"2013-01-22T00:10:01","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/21\/view-summary-of-mail-from-exim-mail-log\/"},"modified":"2021-08-16T23:23:51","modified_gmt":"2021-08-17T03:23:51","slug":"view-summary-of-mail-from-exim-mail-log","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/","title":{"rendered":"View full summary of mail activity from the Exim mail log"},"content":{"rendered":"\n<p>In this article I&#8217;m going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a <strong>full summary of the mailing activity<\/strong> from a specified time range.<\/p>\n\n<p>If you happened to have read either of my previous articles on either <a href=\"\/support\/email\/manage-the-exim-mail-queue-via-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">managing the Exim mail queue via SSH<\/a>, or <a href=\"\/support\/email\/manage-the-exim-mail-queue-in-whm\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to manage the Exim mail queue in WHM<\/a>, then you should already know how to view and manage the live Exim mail queue on your server. I&#8217;ve also talked about <a href=\"\/support\/email\/view-a-summary-of-the-exim-mail-queue\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to view a summary of the Exim mail queue<\/a> recently, which allows you to get a full summary of the messages currently in your Exim mail queue.<\/p>\n\n<p>Now we&#8217;re going to cover how you can view a summary of all messages that have already left the Exim mail queue and have either been delivered or failed. We&#8217;re going to take advantage of a built in tool for Exim called <b>eximstats<\/b>, and I&#8217;ll also provide you with a small bit of code that will allow you to use that command on just a specified time range instead of your entire Exim mail log.<\/p>\n\n<p class=\"alert\">To be able to follow along with the steps below, you&#8217;ll need <a href=\"\/support\/server\/ssh\/root-access-faq\/\" target=\"_blank\" rel=\"noopener noreferrer\">root access<\/a> to either your VPS or dedicated server so that you have full access to the Exim mail log and the <b>eximstats<\/b> command that we&#8217;ll be using.<\/p>\n\n<h2>View summary of Exim mail activity for a specified time range<\/h2>\n\n<p>Using the steps below I&#8217;ll walk you through what you need to run on your server in order to view a summary of all mail that has gone through your server.<\/p>\n\n\n<ol class=\"article_list\">\n\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">Login to your server via SSH<\/a> as the root user.<\/li>\n\n<li>Run the following commands to get a summary of all Exim mail activity over the last 5 hours and save it into a file:<\/li>\n\n<\/ol>\n\n<\/li>\n\n<\/ol>\n\n<p>First this command will give you back the format of an Exim time stamp from 5 hours ago:<\/p>\n\n<br><code>date --date=\"5 hours ago\" +%Y-%m-%d %H<\/code>\n\n<br><code>2013-01-21 09<\/code><br>\n\n<p>Then this command will give you the current hour:<\/p>\n\n<br><code>date +%Y-%m-%d %H<\/code>\n\n<br><code>2013-01-21 14<\/span><\/code>\n\n<br><p>So now we know we&#8217;re going to be searching between <b>09:00 &#8211; 14:59<\/b> for the last 5 hours of data. This next command will do just that and place all the data into a file called <b>EXIM_LOG<\/b>:<\/p>\n\n<br><code>egrep \"2013-01-21 09|2013-01-21 10|2013-01-21 11|2013-01-21 12|2013-01-21 13|2013-01-21 14\"<br> \/var\/log\/exim_mainlog &gt; EXIM_LOG<\/code><br><br>\n<p class=\"alert alert-info\"><b>Note:<\/b> The code above should be on one line.<\/p>\n\n<p><b>Code breakdown:<\/b><\/p>\n\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">egrep &#8220;2013-01-21 09|2013-01-21 10|2013-01-21 11|2013-01-21 12|2013-01-21 13|2013-01-21 14&#8221; \/var\/log\/exim_mainlog<\/th>\n<td style=\"padding: 15px;\">Locate any lines in the Exim mail log that contain an hour from our 5 hour range.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">&gt; EXIM_LOG<\/th>\n<td style=\"padding: 15px;\">Place the data from our search into a file called <b>EXIM_LOG<\/b> that we&#8217;ll run further commands on.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n<ol class=\"article_list\">\n\n<li>Now you will want to run the following command to get a summary of all the Exim activity from our <b>EXIM_LOG<\/b>\u00c2\u00a0file that we dumped all our data into:\n\n<p><code>eximstats EXIM_LOG | less<\/code><\/p>\n\n<p><b>Code breakdown:<\/b><\/p>\n\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">eximstats EXIM_LOG<\/th>\n<td style=\"padding: 15px;\">Run the <b>eximstats<\/b> command on our <b>EXIM_LOG<\/b> file that we created.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">less<\/th>\n<td style=\"padding: 15px;\">Use the <b>less<\/b> command so that when we get back the summary from our Exim mail log it doesn&#8217;t all scroll by at once. Instead we can use the up and down arrows, or page up and page down to navigate through the data. Press <b>q<\/b> to quit when done reviewing.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n<p>There is a ton of information available in the Exim mail log summary, the things you&#8217;ll be looking through include <b>Grand total summary<\/b>, <b>Deliveries by transport<\/b>, <b>Messages received per hour<\/b>, <b>Deliveries per hour<\/b>, <b>Time spent on the queue<\/b>, <b>Relayed messages<\/b>, <b>Top 50 mail rejection reasons by message count<\/b>, <b>Top 50 mail temporary rejection reasons by message count<\/b>, <b>Top 50 sending hosts by message count<\/b>, <b>Top 50 sending hosts by volume<\/b>, <b>Top 50 local senders by message count<\/b>, <b>Top 50 local senders by volume<\/b>, <b>Top 50 host destinations by message count<\/b>, <b>Top 50 host destinations by volume<\/b>, <b>Top 50 local destinations by message count<\/b>, <b>Top 50 local destinations by volume<\/b>, <b>Top 50 rejected ips by message count<\/b>, <b>Top 50 temporarily rejected ips by message count<\/b>, <b>List of errors<\/b>, and finally <b>Errors encountered<\/b>.<\/p>\n<\/li>\n\n<li>Once you&#8217;re done reviewing the Exim mail queue summary for the time frame we specified, you&#8217;ll want to go ahead and remove the <b>EXIM_LOG<\/b> file we created with the following command:\n\n<p><code>rm -rf .\/EXIM_LOG<\/code><\/p>\n\n<p>If you didn&#8217;t want to specify any sort of time range, and simply wish to see a full Exim summary of everything in the mail log you can simply run the <b>eximstats<\/b> command directly on the main Exim log file with this command:<\/p>\n\n<p><code>eximstats \/var\/log\/exim_mainlog | less<\/code><\/p>\n\n<p class=\"alert\">Your entire Exim mail log could be quite large, so attempting to view a summary of the entire log could take some time to complete if you choose to do it this way.<\/p>\n\n<\/li>\n\n<\/ol>\n\n<p>You should now understand how to login to your server and take a look at the full Exim summary of all of your mail activity that has been happening on your server, by using the Exim mail log and the <b>eximstats<\/b> command.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;m going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range. If you happened to have read either of my previous articles on either managing the Exim mail<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\"> 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-812","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>View full summary of mail activity from the Exim mail log | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.\" \/>\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\/view-summary-of-mail-from-exim-mail-log\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"View full summary of mail activity from the Exim mail log | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\" \/>\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-22T00:10:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:51+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=\"4 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\/view-summary-of-mail-from-exim-mail-log\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"View full summary of mail activity from the Exim mail log\",\"datePublished\":\"2013-01-22T00:10:01+00:00\",\"dateModified\":\"2021-08-17T03:23:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\"},\"wordCount\":828,\"commentCount\":8,\"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\/view-summary-of-mail-from-exim-mail-log\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\",\"name\":\"View full summary of mail activity from the Exim mail log | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-22T00:10:01+00:00\",\"dateModified\":\"2021-08-17T03:23:51+00:00\",\"description\":\"In this article I'm going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"View full summary of mail activity from the Exim mail log\"}]},{\"@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":"View full summary of mail activity from the Exim mail log | InMotion Hosting","description":"In this article I'm going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.","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\/view-summary-of-mail-from-exim-mail-log\/","og_locale":"en_US","og_type":"article","og_title":"View full summary of mail activity from the Exim mail log | InMotion Hosting","og_description":"In this article I'm going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-22T00:10:01+00:00","article_modified_time":"2021-08-17T03:23:51+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"View full summary of mail activity from the Exim mail log","datePublished":"2013-01-22T00:10:01+00:00","dateModified":"2021-08-17T03:23:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/"},"wordCount":828,"commentCount":8,"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\/view-summary-of-mail-from-exim-mail-log\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/","name":"View full summary of mail activity from the Exim mail log | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-22T00:10:01+00:00","dateModified":"2021-08-17T03:23:51+00:00","description":"In this article I'm going to teach you how to use the Exim mail log on your VPS (Virtual Private Server) or dedicated server to get a full summary of the mailing activity from a specified time range.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/view-summary-of-mail-from-exim-mail-log\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"View full summary of mail activity from the Exim mail log"}]},{"@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\/812","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=812"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/812\/revisions"}],"predecessor-version":[{"id":85048,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/812\/revisions\/85048"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=812"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=812"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=812"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}