{"id":804,"date":"2013-01-17T20:35:47","date_gmt":"2013-01-18T01:35:47","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/17\/locate-email-delivery-times-for-an-email-address\/"},"modified":"2021-08-16T23:23:56","modified_gmt":"2021-08-17T03:23:56","slug":"locate-email-delivery-times-for-an-email-address","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/","title":{"rendered":"Locate email delivery times for an email address"},"content":{"rendered":"<p>In this article I&#8217;m going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.<\/p>\n<p>A good example of when you might want to do this, is lets say that you are expecting an email from&nbsp;<strong>user@example.com<\/strong>, you wait and wait, and the message still hasn&#8217;t shown up in your Inbox yet, even though they swore they&#8217;ve sent it already. Using the Exim mail logs on your server you can double check to ensure that a message from that user actually even attempted to be delivered to your server.<\/p>\n<p class=\"alert\">Please note that for you to follow along with the steps below, you would have to already have <a href=\"\/support\/server\/ssh\/root-access-faq\/\">root access<\/a> on either your VPS or dedicated server, so that you have access to the Exim mail logs.<\/p>\n<h2>Find all delivery times for an incoming message<\/h2>\n<p>Following from our example above, we&#8217;re going to check for incoming messages as far back as our Exim mail logs go for the&nbsp;<strong>user@example.com<\/strong> address. Use the steps below to accomplish this.<\/p>\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 all of the incoming mail activity for <strong>user@example.com<\/strong> and store it in a file called <strong>EMAIL_LOG<\/strong>:<br \/>\n<code>zgrep \"&lt;= user@example.com\" \/var\/log\/exim_mainlog* &gt; EMAIL_LOG<\/code><\/p>\n<p class=\"alert\">This could take some time to complete depending on how large your mail logs are.<\/p>\n<\/li>\n<li>Now to check the time stamps when those incoming messages happened, you can use this pretty long one-liner of code:<br \/>\n<code>cat EMAIL_LOG | awk '{ gsub(\":\",\" \"); print $2,$3,$4}' | awk '{ gsub(\"-\",\" \"); print $0}' |<br \/>\nsort -nk2 -nk3 -nk4 -nk5 | awk '{print $2\"\/\"$3\"\/\"$1\" \"$4\":\"$5}'<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">cat EMAIL_LOG<\/th>\n<td style=\"padding: 15px;\">Read from the <strong>EMAIL_LOG<\/strong> file that we created.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{ gsub(&#8220;:&#8221;,&#8221; &#8220;); print $2,$3,$4}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command along with its <strong>gsub<\/strong> function to globally substitute all of the colons <strong>:<\/strong> with blank spaces. Then print out the <strong>$2<\/strong>nd column which is the date, the <strong>$3<\/strong>rd column which is the hour, and the <strong>$4<\/strong>th column which is the minute from the mail log.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{ gsub(&#8220;-&#8220;,&#8221; &#8220;); print $0}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command again with its <strong>gsub<\/strong> function to globally substitue all of the hyphens <strong>&#8211;<\/strong> with blank spaces, and then print out everything with the <strong>$0<\/strong> variable.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">sort -nk2 -nk3 -nk4 -nk5<\/th>\n<td style=\"padding: 15px;\">Sort numerically first by the <strong>2nd<\/strong> column which is the month, followed by the <strong>3rd<\/strong> column which is the day, then the <strong>4th<\/strong> column which is the hour, and finally the <strong>5th<\/strong> column which is the minute from the logs.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{print $2&#8243;\/&#8221;$3&#8243;\/&#8221;$1&#8243; &#8220;$4&#8221;:&#8221;$5}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command to format the timestamps to make them easier to read.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This will give you back something like this:<br \/>\n<code>01\/03\/2013 12:06<br \/>\n01\/03\/2013 12:07<br \/>\n01\/03\/2013 12:18<br \/>\n01\/16\/2013 17:41<br \/>\n01\/17\/2013 15:35<br \/>\n01\/17\/2013 15:54<br \/>\n<\/code><\/p>\n<p>You can now go ahead and delete the <strong>EMAIL_LOG<\/strong> file that we created with the following command:<br \/>\n<code>rm -rf EMAIL_LOG<\/code><\/p>\n<p>Now you know what times the <strong>user@example.com<\/strong> address attempted to deliver a message to your server. If they said they sent you a message and the date and time they said they sent it at isn&#8217;t showing up in this list. More than likely they had a delivery failure, such as they typed in your email address wrong, so it didn&#8217;t attempt to go to your server.<\/li>\n<\/ol>\n<h2>Find all delivery times for an outgoing message<\/h2>\n<p>Now we can do the same thing to also track down the delivery times for outgoing messages from a certain user.<\/p>\n<ol class=\"article_list\">\n<li>Run the following command to get all of the outgoing mail activity for <strong>user@example.com<\/strong> and store it in a file called <strong>EMAIL_LOG<\/strong>:<br \/>\n<code>zgrep \"=&gt; user@example.com\" \/var\/log\/exim_mainlog* &gt; EMAIL_LOG<\/code><\/p>\n<p class=\"alert\">This could take some time to complete depending on how large your mail logs are.<\/p>\n<\/li>\n<li>Now to check the time stamps when those outgoing messages happened, you can use the same long one-liner of code from above:<br \/>\n<code>cat EMAIL_LOG | awk '{ gsub(\":\",\" \"); print $2,$3,$4}' | awk '{ gsub(\"-\",\" \"); print $0}' |<br \/>\nsort -nk2 -nk3 -nk4 -nk5 | awk '{print $2\"\/\"$3\"\/\"$1\" \"$4\":\"$5}'<\/code><br \/>\nThis will give you back something like this:<\/p>\n<p><code>01\/12\/2013 23:24<br \/>\n01\/13\/2013 10:42<br \/>\n01\/13\/2013 11:06<br \/>\n01\/14\/2013 12:39<br \/>\n01\/16\/2013 17:41<br \/>\n01\/17\/2013 12:48<br \/>\n<\/code><\/p>\n<p>You can go ahead and delete the <strong>EMAIL_LOG<\/strong> file that we created with the following command:<\/p>\n<p><code>rm -rf EMAIL_LOG<\/code><\/p>\n<p>Now you know what times the <strong>user@example.com<\/strong> address delivered a message from your server.<\/li>\n<\/ol>\n<p>You should now know how to track down incoming and outgoing email delivery times from your Exim mail logs to help verify messages are actually being sent.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;m going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address. A good example of when you might want to do this, is lets say that you are expecting an email from&nbsp;user@example.com,<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\"> 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-804","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>Locate email delivery times for an email address | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.\" \/>\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\/locate-email-delivery-times-for-an-email-address\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Locate email delivery times for an email address | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\" \/>\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-18T01:35:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:56+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\/locate-email-delivery-times-for-an-email-address\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Locate email delivery times for an email address\",\"datePublished\":\"2013-01-18T01:35:47+00:00\",\"dateModified\":\"2021-08-17T03:23:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\"},\"wordCount\":687,\"commentCount\":0,\"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\/locate-email-delivery-times-for-an-email-address\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\",\"name\":\"Locate email delivery times for an email address | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-18T01:35:47+00:00\",\"dateModified\":\"2021-08-17T03:23:56+00:00\",\"description\":\"In this article I'm going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Locate email delivery times for an email address\"}]},{\"@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":"Locate email delivery times for an email address | InMotion Hosting","description":"In this article I'm going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.","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\/locate-email-delivery-times-for-an-email-address\/","og_locale":"en_US","og_type":"article","og_title":"Locate email delivery times for an email address | InMotion Hosting","og_description":"In this article I'm going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-18T01:35:47+00:00","article_modified_time":"2021-08-17T03:23:56+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\/locate-email-delivery-times-for-an-email-address\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Locate email delivery times for an email address","datePublished":"2013-01-18T01:35:47+00:00","dateModified":"2021-08-17T03:23:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/"},"wordCount":687,"commentCount":0,"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\/locate-email-delivery-times-for-an-email-address\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/","name":"Locate email delivery times for an email address | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-18T01:35:47+00:00","dateModified":"2021-08-17T03:23:56+00:00","description":"In this article I'm going to walk you through using the Exim mail logs on your VPS (Virtual Private Server) or dedicated server to track down the delivery times for a specified email address.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-email-delivery-times-for-an-email-address\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Locate email delivery times for an email address"}]},{"@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\/804","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=804"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/804\/revisions"}],"predecessor-version":[{"id":85060,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/804\/revisions\/85060"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=804"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=804"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=804"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}