{"id":809,"date":"2013-01-21T14:45:50","date_gmt":"2013-01-21T19:45:50","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/21\/process-a-backed-up-exim-mail-queue\/"},"modified":"2021-08-16T23:23:53","modified_gmt":"2021-08-17T03:23:53","slug":"process-a-backed-up-exim-mail-queue","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/","title":{"rendered":"Process a backed up Exim mail queue"},"content":{"rendered":"<p>In this article I&#8217;m going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We&#8217;ll discuss either running the queue in a controlled manor as to not spike the server&#8217;s load, or completely clearing out the mail queue so that new deliveries can be processed quickly.<\/p>\n<p>From time to time emails could back up on your server, as every time a message is attempted to be sent from your server the Exim service which is the MTA (Mail Transfer Agent) on the server, places the message into a mail queue.<\/p>\n<p>If that mail queue begins to get backed up due to delivery errors, this can lead to new messages being delayed, and in some cases an elevated server load, leading to further mail delivery issues as well as affecting the performance of your websites.<\/p>\n<p>If you&#8217;ve read my previous articles on <a href=\"\/support\/email\/manage-the-exim-mail-queue-in-whm\/\" target=\"_blank\" rel=\"noopener noreferrer\">managing the Exim mail queue in WHM<\/a>, or <a href=\"\/support\/email\/manage-the-exim-mail-queue-via-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to manage the Exim mail queue via SSH<\/a>, you should know how to check on the mail queue itself to see if there are failed deliveries. Building upon that knowledge we&#8217;re going to review taking mass action on the mail queue when it&#8217;s more than just a few messages hanging around in the mail queue.<\/p>\n<p class=\"alert\">Please note in order to follow allong with the steps below you&#8217;ll need to have <a href=\"\/support\/server\/ssh\/root-access-faq\/\">root access<\/a> to either your VPS or dedicated server in order to have access directly to the Exim mail queue.<\/p>\n<h2>Safely try to process all messages in the mail queue<\/h2>\n<p>Below we&#8217;ll cover how you can go ahead and try to deliver out all messages in the Exim mail queue. This is something you might want to do if you were blacklisted by a particular service, and you&#8217;ve now verified that you are no longer blacklisted so your messages should go through.<\/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 saftely process all messages in the mail queue for delivery:<br \/>\n<code>for eximID in `exiqgrep -i`; do \/usr\/local\/cpanel\/bin\/cpuwatch .50 exim -M<br \/>\n$eximID; sleep 1; done<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 66%; padding: 15px;\">for eximID in `exiqgrep -i`;<\/th>\n<td style=\"padding: 15px;\">Begin a <strong>bash<\/strong> for loop, setting the variable <strong>eximID<\/strong> for each loop to the value we get back from the <strong>exiqgrep -i<\/strong> command which returns all of the Exim messages IDs currently in the mail queue.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 66%; padding: 15px;\">do \/usr\/local\/cpanel\/bin\/cpuwatch .50 exim -M $eximID;<\/th>\n<td style=\"padding: 15px;\">Run the <strong>cpuwatch<\/strong> command to limit the server&#8217;s load to a <strong>0.50<\/strong> to ensure we&#8217;re not spiking the load with our mail queue processing, then run the <strong>exim<\/strong> command with the <strong>-M<\/strong> flag for sending a message followed by the current <strong>$eximID<\/strong>&nbsp;in our loop.<\/p>\n<p class=\"alert\">You don&#8217;t have to run <strong>cpuwatch<\/strong> at a load of <strong>.50<\/strong>, if you&#8217;re on a VPS you can raise this up to <strong>1.00<\/strong>, and on a dedicated server you can raise it to the number of CPU cores you have.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 66%; padding: 15px;\">sleep 1; done<\/th>\n<td style=\"padding: 15px;\">After sending a message <strong>sleep<\/strong> for 1 second to again ensure we aren&#8217;t overloading the server processing the mail queue, then end our for loop with the <strong>done<\/strong> command.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/li>\n<li>You won&#8217;t see a status of the messages delivering while the loop is running. If it hits the server load limit that you&#8217;ve set with the <strong>cpuwatch<\/strong> command you will see the following message: <code>Waiting for load to go down to continue<\/code>You can keep an eye on the process of your mail deliveries by noting the current working directory you started the loop in. In this example we&#8217;ll say that you are in the directory <strong>\/home\/example<\/strong>:<code>tail -f \/var\/log\/exim_mainlog | grep \"\/home\/example\"<\/code>You should see something similar to:<code>2013-01-21 10:11:26 cwd=\/home\/example 2 args: \/usr\/sbin\/exim -bpu<br \/>\n2013-01-21 10:11:26 cwd=\/home\/example 3 args: exim -M 1TvqIn-0002kE-Cy<br \/>\n2013-01-21 10:11:31 cwd=\/home\/example 3 args: exim -M 1TvqJK-0003Ff-DJ<br \/>\n2013-01-21 10:11:36 cwd=\/home\/example 3 args: exim -M 1TvqO6-00085E-Vn<br \/>\n2013-01-21 10:11:37 cwd=\/home\/example 3 args: exim -M 1TvqRC-0003Nq-BP<br \/>\n<\/code><\/p>\n<p>You can hit <strong>Ctrl-C<\/strong> to stop tailing the log at anytime.<\/li>\n<li>If you were interested in checking on the status of one given delivery attempt that just happened, you can also run the following command on the message ID, in this example we&#8217;ll use <strong>1TvqIn-0002kE-Cy<\/strong> from above:<br \/>\n<code>exigrep -I -l 1TvqIn-0002kE-Cy \/var\/log\/exim_mainlog<\/code>In this case we saw that it attempted to deliver out, but the delivery failed again, so then a bounce back was issued to the original sender:<code>2013-01-21 10:11:28 1TvqIn-0002kE-Cy == support@example.com host example.com [123.123.123.123]:<br \/>\n450 4.1.1 &lt;support@example.com&gt;: Recipient address rejected: unknown user: \"support@example.com\"<br \/>\n2013-01-21 10:11:28 1TvqIn-0002kE-Cy ** support@example.com: retry timeout exceeded<br \/>\n2013-01-21 10:11:28 1TvqIn-0002kE-Cy Completed<\/code><\/p>\n<p><code>2013-01-21 10:11:28 1TxJ20-0007FI-Hg &lt;= &lt;&gt; R=1TvqIn-0002kE-Cy U=mailnull P=local S=2126<br \/>\nT=\"<a href=\"\/support\/email\/mail-delivery-failed-returning-message-to-sender\/\">Mail delivery failed: returning message to sender<\/a>\" for sender@example.com<br \/>\n2013-01-21 10:11:29 1TxJ20-0007FI-Hg =&gt; userna5 &lt;sender@example.com&gt; R=localuser T=local_delivery<br \/>\n2013-01-21 10:11:29 1TxJ20-0007FI-Hg Completed<\/code><\/li>\n<\/ol>\n<h2>Remove all messages in the mail queue<\/h2>\n<p>If you&#8217;ve tried to process your entire mail queue and things are still backed up due to failed deliveries, for instance if our server was trying to send a bounce back message to <strong>sender@example.com<\/strong> to let them know their original delivery failed, but if that account didn&#8217;t exist either the message could get stuck in the mail queue. You can use the following steps to go ahead and delete all of the messages in the mail queue so that new messages can start getting sent out right away.<\/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 queue to remove all messages from the Exim mail queue: <code>exiqgrep -i | xargs exim -Mrm<\/code><strong>Code breakdown:<\/strong><br \/>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">exiqgrep -i<\/th>\n<td style=\"padding: 15px;\">Grab every Exim message ID currently in the mail queue with the <strong>exiqgrep -i<\/strong> command.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">xargs exim -Mrm<\/th>\n<td style=\"padding: 15px;\">Run the <strong>xargs<\/strong> command which allows you to execute another command on something passed to it, in this case we&#8217;re running the command <strong>exim -Mrm<\/strong> which is the Exim remove mail command, and <strong>xargs<\/strong> is pushing each Exim message ID to it from the previous command.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/li>\n<\/ol>\n<p>You should now understand how to effectively clear out your Exim mail queue by either saftely processing the queue, or by clearing the queue. These should hopefully not be things that you have to do often, as if these type of problems are recurring then you probably need to keep closer tabs on what mailing lists your users are sending to that are causing so many delayed or failed deliveries. But at least having this knowledge will help ensure if these events do ocurr that begin to back up your mail queue you&#8217;ll have the knowledge to clear it up.<\/p>\n<p><code><\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;m going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We&#8217;ll discuss either running the queue in a controlled manor as to not spike the server&#8217;s load, or completely clearing out the mail queue so that new deliveries can<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\"> 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-809","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>Process a backed up Exim mail queue | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We&#039;ll discuss either running the queue in a controlled manor as to not spike the server&#039;s load, or completely clearing out the mail queue so that new deliveries can be processed quickly.\" \/>\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\/process-a-backed-up-exim-mail-queue\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Process a backed up Exim mail queue | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We&#039;ll discuss either running the queue in a controlled manor as to not spike the server&#039;s load, or completely clearing out the mail queue so that new deliveries can be processed quickly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\" \/>\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-21T19:45:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:53+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=\"6 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\/process-a-backed-up-exim-mail-queue\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Process a backed up Exim mail queue\",\"datePublished\":\"2013-01-21T19:45:50+00:00\",\"dateModified\":\"2021-08-17T03:23:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\"},\"wordCount\":972,\"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\/process-a-backed-up-exim-mail-queue\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\",\"name\":\"Process a backed up Exim mail queue | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-21T19:45:50+00:00\",\"dateModified\":\"2021-08-17T03:23:53+00:00\",\"description\":\"In this article I'm going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We'll discuss either running the queue in a controlled manor as to not spike the server's load, or completely clearing out the mail queue so that new deliveries can be processed quickly.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Process a backed up Exim mail queue\"}]},{\"@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":"Process a backed up Exim mail queue | InMotion Hosting","description":"In this article I'm going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We'll discuss either running the queue in a controlled manor as to not spike the server's load, or completely clearing out the mail queue so that new deliveries can be processed quickly.","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\/process-a-backed-up-exim-mail-queue\/","og_locale":"en_US","og_type":"article","og_title":"Process a backed up Exim mail queue | InMotion Hosting","og_description":"In this article I'm going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We'll discuss either running the queue in a controlled manor as to not spike the server's load, or completely clearing out the mail queue so that new deliveries can be processed quickly.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-21T19:45:50+00:00","article_modified_time":"2021-08-17T03:23:53+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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Process a backed up Exim mail queue","datePublished":"2013-01-21T19:45:50+00:00","dateModified":"2021-08-17T03:23:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/"},"wordCount":972,"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\/process-a-backed-up-exim-mail-queue\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/","name":"Process a backed up Exim mail queue | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-21T19:45:50+00:00","dateModified":"2021-08-17T03:23:53+00:00","description":"In this article I'm going to review how you can process a backed up Exim mail queue on your VPS (Virtual Private Server) or dedicated server. We'll discuss either running the queue in a controlled manor as to not spike the server's load, or completely clearing out the mail queue so that new deliveries can be processed quickly.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/process-a-backed-up-exim-mail-queue\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Process a backed up Exim mail queue"}]},{"@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\/809","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=809"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/809\/revisions"}],"predecessor-version":[{"id":85052,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/809\/revisions\/85052"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=809"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=809"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=809"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}