{"id":814,"date":"2013-01-22T18:46:01","date_gmt":"2013-01-22T23:46:01","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/22\/locate-spam-activity-by-subject-with-exim\/"},"modified":"2021-08-16T23:23:49","modified_gmt":"2021-08-17T03:23:49","slug":"locate-spam-activity-by-subject-with-exim","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/","title":{"rendered":"Locate spam activity by subject with Exim"},"content":{"rendered":"<p>In this article I&#8217;m going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.<\/p>\n<p>If you&#8217;ve read my previous article on <a href=\"\/support\/email\/locate-email-accounts-being-used-to-spam\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to find email accounts being used to spam<\/a>, you should already know how to track down spam activity by looking for email accounts that send out mail from multiple IP addresses. Now we&#8217;re going to cover finding spam activity by looking at duplicate subjects that are happening on your server.<\/p>\n<p class=\"alert\">To be able to follow along with this guide you&#8217;ll need to already have <a href=\"\/support\/server\/ssh\/root-access-faq\/\" target=\"_blank\" rel=\"noopener noreferrer\">root access<\/a> to your VPS or dedicated server so that you have access to the Exim mail log.<\/p>\n<h2>Locate duplicate subjects in Exim mail log<\/h2>\n<p>Using the steps below<\/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 locate duplicate subjects from your Exim mail log:\n<p><code>   awk -F\"T=\"\" '\/&lt;=\/ {print $2}' \/var\/log\/exim_mainlog | cut -d\" -f1 | 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: 67%; padding: 15px;\">awk -F&#8221;T=&#8221;&#8221; &#8216;\/&lt;=\/ {print $2}&#8217; \/var\/log\/exim_mainlog<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command with the <strong>-F<\/strong>ield seperator set to <strong>T=&#8221;<\/strong> and looking for deliveries leaving the server noted by <strong>&lt;=<\/strong>, then print out the <strong>$2<\/strong>nd set of data which is the subject of the message.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">cut -d&#8221; -f1<\/th>\n<td style=\"padding: 15px;\">Use the <strong>cut<\/strong> command with the <strong>-d<\/strong>elimiter set to double quotes <strong>&#8220;<\/strong> and return the <strong>-f<\/strong>ield of data before the <strong>1st<\/strong> ocurrence. This makes it so we only get back the subjects and nothing else.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">sort | uniq -c | sort -n<\/th>\n<td style=\"padding: 15px;\">Sort the subjects by name, then uniquely count them up, and finally sort them again numerically from lowest to highest.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should get back something that looks like this:<\/p>\n<p><code>285 Out of Office<br \/>\n303 [Forum reply] Please moderate<br \/>\n578 New Account<br \/>\n1764 Melt Fat Naturally   <\/code><br \/>\nSo in this case we can see that by far the subject <strong>Melt Fat Naturally<\/strong> is the most duplicated subject currently in the Exim mail log.<\/li>\n<li>    Now we can search to see what user has been sending out this possible spam message with the following command:\n<p><code>grep \"Melt Fat Naturally\" \/var\/log\/exim_mainlog | awk '{print $6}' | 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: 58%; padding: 15px;\">grep &#8220;Melt Fat Naturally&#8221; \/var\/log\/exim_mainlog<\/th>\n<td style=\"padding: 15px;\">Use the <strong>grep<\/strong> command to search for our subject in the Exim mail log.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 58%; padding: 15px;\">awk &#8216;{print $6}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command to print out the <strong>$6<\/strong>th column of data which is the sending email account.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 58%; padding: 15px;\">sort | uniq -c | sort -n<\/th>\n<td style=\"padding: 15px;\">Sort the email accounts by name, then uniquely count them, and finally sort them again numerically from lowest to highest.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should end up with some results like this:<\/p>\n<p><code>1 test@example.com<br \/>\n1762 user01@example.com   <\/code><br \/>\nSo in this case we can see that it looks like the <strong>user01@example.com<\/strong> account was used to relay this spam message.<\/li>\n<li>    You can now locate all of the IP addresses the <strong>user01@example.com<\/strong> account has been sending mail from, and possibly block them at your server&#8217;s firewall if the activity looks malicious to you.Use the following command to find all the IP addresses the account has been relaying mail with:\n<p><code>grep \"&lt;= user01@example.com\" \/var\/log\/exim_mainlog | grep \"Melt Fat Naturally\" |<br \/>\ngrep -o \"[[0-9.]*]\" | sort -n | uniq -c | sort -n<\/code><\/p>\n<p class=\"alert alert-info\"><b>Note:<\/b> The two lines above should be written as a single line.<\/p>\n<p><strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">grep &#8220;&lt;= user01@example.com&#8221; \/var\/log\/exim_mainlog<\/th>\n<td style=\"padding: 15px;\">Use the <strong>grep<\/strong> command to find outgoing messages from the <strong>user01@example.com<\/strong> account.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">grep &#8220;Melt Fat Naturally&#8221;<\/th>\n<td style=\"padding: 15px;\">Use <strong>grep<\/strong> again to only show messages with the subject we&#8217;re looking for.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">grep -o &#8220;[[0-9.]*]&#8221;<\/th>\n<td style=\"padding: 15px;\">Use <strong>grep<\/strong> one last time with the <strong>-o<\/strong>nly matching flag, to only pull the IP address from the Exim mail log.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 67%; padding: 15px;\">sort -n | uniq -c | sort -n<\/th>\n<td style=\"padding: 15px;\">Sort all of the IP addresses numerically, then uniquely count them up, and finally sort them numerically again from lowest to highest duplicates.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should get back something related to this:<\/p>\n<p><code>1762 [123.123.123.123]<\/code><br \/>\nSo we can see that all <strong>1,763<\/strong> messages the <strong>user01@example.com<\/strong> user sent out, all came from the same <strong>123.123.123.123<\/strong> IP address.<\/li>\n<li>   Now we can go ahead and block this IP address from our server at the server&#8217;s firewall by running the following command:\n<p><code>apf -d 123.123.123.123 \"Sending weight loss spam from user01@example.com\"<\/code><\/li>\n<li>   It would also be recommended to <a href=\"\/support\/email\/changing-email-password-in-cpanel\/\" target=\"_blank\" rel=\"noopener noreferrer\">change the email password in cPanel<\/a> for the email account being used to send this spam. As otherwise the spammer could possibly come back from another computer with a different IP address and still attempt to relay spam out through your account.<\/li>\n<\/ol>\n<p>You should now have learned how to use the Exim mail log on your VPS or dedicated server to track down duplicate subjects being sent out from your server. Then using that knowledge how to track down the responsible user and IP address sending those messages in case they were spamming and needed to be stopped.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;m going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log. If you&#8217;ve read my previous article on how to find email accounts being used to spam, you should already know how to track down spam<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-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-814","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 spam activity by subject with Exim | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.\" \/>\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-spam-activity-by-subject-with-exim\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Locate spam activity by subject with Exim | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-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-22T23:46:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:49+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-spam-activity-by-subject-with-exim\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Locate spam activity by subject with Exim\",\"datePublished\":\"2013-01-22T23:46:01+00:00\",\"dateModified\":\"2021-08-17T03:23:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/\"},\"wordCount\":746,\"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-spam-activity-by-subject-with-exim\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/\",\"name\":\"Locate spam activity by subject with Exim | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-22T23:46:01+00:00\",\"dateModified\":\"2021-08-17T03:23:49+00:00\",\"description\":\"In this article I'm going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Locate spam activity by subject with 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":"Locate spam activity by subject with Exim | InMotion Hosting","description":"In this article I'm going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.","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-spam-activity-by-subject-with-exim\/","og_locale":"en_US","og_type":"article","og_title":"Locate spam activity by subject with Exim | InMotion Hosting","og_description":"In this article I'm going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-22T23:46:01+00:00","article_modified_time":"2021-08-17T03:23:49+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-spam-activity-by-subject-with-exim\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Locate spam activity by subject with Exim","datePublished":"2013-01-22T23:46:01+00:00","dateModified":"2021-08-17T03:23:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/"},"wordCount":746,"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-spam-activity-by-subject-with-exim\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/","name":"Locate spam activity by subject with Exim | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-22T23:46:01+00:00","dateModified":"2021-08-17T03:23:49+00:00","description":"In this article I'm going to review how you can locate possible spam activity by subject on your VPS (Virtual Private Server) or dedicated server using the Exim mail log.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/locate-spam-activity-by-subject-with-exim\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Locate spam activity by subject with 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\/814","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=814"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/814\/revisions"}],"predecessor-version":[{"id":85041,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/814\/revisions\/85041"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=814"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=814"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=814"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}