{"id":1409,"date":"2022-05-18T16:57:15","date_gmt":"2022-05-18T16:57:15","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=1409"},"modified":"2026-05-29T04:08:37","modified_gmt":"2026-05-29T04:08:37","slug":"how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/","title":{"rendered":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Spam Experts provides inbound and outbound email filtering services that help improve email security, spam protection, and mail delivery reliability. In a cPanel\/WHM environment, administrators can configure Exim to route outgoing email traffic through Spam Experts filtering nodes (smarthosts).<\/p>\n\n\n\n<p>This guide explains how to configure Exim in WHM so that all outgoing emails are relayed through the Spam Experts SMTP filtering server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding, ensure the following requirements are met:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-f32414ef1aa829f7a6c15a5354094561\">A server running cPanel\/WHM<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-4e0ae9c6fc1d5c2ff0dfdb383cc93059\">Root access to WHM<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-c4395eed3d1f7090bf9ba01b36d075fb\">Spam Experts SMTP hostname (smarthost)<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-f0039369cdd519db3d1189b2e6a5859d\">Valid DNS and mail configuration<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-18888d6a97fc9d34ba9b5a4733ec0deb\">DKIM enabled for domains (recommended)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Implementation<\/h1>\n\n\n\n<p>Follow the steps below to route email traffic from the cPanel\/WHM server through Spam Experts filtering nodes.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Open Exim Configuration Manager<\/h2>\n\n\n\n<p>Login to WHM as the root user.<\/p>\n\n\n\n<p>Navigate to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>WHM \u2192 Exim Configuration Manager\n<\/code><\/pre>\n\n\n\n<p>Then open:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Exim Configuration Editor\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Select \u201cAdvanced Editor\u201d<\/h2>\n\n\n\n<p>Inside the Exim Configuration Manager, choose:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Advanced Editor\n<\/code><\/pre>\n\n\n\n<p>This allows custom Exim router and transport configurations to be added.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Add Configuration to \u201cSection: POSTMAILCOUNT\u201d<\/h2>\n\n\n\n<p>Locate the section named:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Section: POSTMAILCOUNT\n<\/code><\/pre>\n\n\n\n<p>Add the following configuration.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Replace <code>SMARTHOST<\/code> with your Spam Experts SMTP hostname.<\/p>\n<\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>smarthost_dkim:\n  driver = manualroute\n  domains = !+local_domains\n  require_files = \"+\/var\/cpanel\/domain_keys\/private\/${lookup{$sender_address_domain}dsearch{\/var\/cpanel\/domain_keys\/private\/}}\"\n\n  # Exclude null sender messages from relaying via the smarthost\n  condition = ${if or {{!eq{$sender_address}{}} {!eq{$sender_host_address}{}}}}\n\n  transport = remote_smtp_smart_dkim\n  route_list = $domain SMARTHOST::587\n\nsmarthost_regular:\n  driver = manualroute\n  domains = !+local_domains\n\n  # Exclude null sender messages from relaying via the smarthost\n  condition = ${if or {{!eq{$sender_address}{}} {!eq{$sender_host_address}{}}}}\n\n  transport = remote_smtp_smart_regular\n  route_list = $domain SMARTHOST::587\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Add Configuration to \u201cSection: TRANSPORTSTART\u201d<\/h2>\n\n\n\n<p>Locate the section named:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Section: TRANSPORTSTART\n<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>remote_smtp_smart_dkim:\n  driver = smtp\n  hosts_require_tls = *\n\n  interface = ${if exists {\/etc\/mailips}{${lookup{$sender_address_domain}lsearch*{\/etc\/mailips}{$value}{}}}{}}\n\n  helo_data = ${if exists {\/etc\/mailhelo}{${lookup{$sender_address_domain}lsearch*{\/etc\/mailhelo}{$value}{$primary_hostname}}}{$primary_hostname}}\n\n  dkim_domain = $sender_address_domain\n  dkim_selector = default\n  dkim_private_key = \"\/var\/cpanel\/domain_keys\/private\/${lookup{$dkim_domain}dsearch{\/var\/cpanel\/domain_keys\/private\/}}\"\n  dkim_canon = relaxed\n\n  headers_add = \"${perl{check_mail_permissions_headers}}\"\n\nremote_smtp_smart_regular:\n  driver = smtp\n  hosts_require_tls = *\n\n  interface = ${if exists {\/etc\/mailips}{${lookup{$sender_address_domain}lsearch*{\/etc\/mailips}{$value}{}}}{}}\n\n  helo_data = ${if exists {\/etc\/mailhelo}{${lookup{$sender_address_domain}lsearch*{\/etc\/mailhelo}{$value}{$primary_hostname}}}{$primary_hostname}}\n\n  headers_add = \"${perl{check_mail_permissions_headers}}\"\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Save the Configuration and Restart Exim<\/h2>\n\n\n\n<p>After adding the configuration:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click <strong>Save<\/strong><\/li>\n\n\n\n<li>Allow WHM to rebuild the Exim configuration<\/li>\n\n\n\n<li>Restart the Exim service<\/li>\n<\/ol>\n\n\n\n<p>You can also restart Exim manually via SSH:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart exim\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Verification<\/h2>\n\n\n\n<p>After completing the configuration:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-e41badc74c1568daaf57f608e2961f38\">Send a test email from the server<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-c9a4dc1221e7767e33eb310aeb0653be\">Review the Exim mail logs<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-c58748ea396a310810f89eb76f161e84\">Confirm that the outgoing emails are routed through the Spam Experts smarthost<\/li>\n<\/ul>\n\n\n\n<p>Common Exim log location:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/var\/log\/exim_mainlog\n<\/code><\/pre>\n\n\n\n<p>You can monitor logs using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tail -f \/var\/log\/exim_mainlog\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Routing outgoing email traffic through Spam Experts filtering nodes enhances email security, spam filtering, and delivery reliability. By configuring Exim in WHM using custom routers and transports, administrators can ensure that all outbound mail is securely relayed through the Spam Experts infrastructure with DKIM and TLS support enabled.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Spam Experts provides inbound and outbound email filtering services that help improve email security, spam protection, and mail delivery reliability. In a cPanel\/WHM environment, administrators can configure Exim to route outgoing email traffic through Spam Experts filtering nodes (smarthosts). This guide explains how to configure Exim in WHM so that all outgoing emails are ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[33],"tags":[157,156],"class_list":["post-1409","post","type-post","status-publish","format-standard","hentry","category-whm","tag-filtering-nodes","tag-spam-experts"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction Spam Experts provides inbound and outbound email filtering services that help improve email security, spam protection, and mail delivery reliability. In a cPanel\/WHM environment, administrators can configure Exim to route outgoing email traffic through Spam Experts filtering nodes (smarthosts). This guide explains how to configure Exim in WHM so that all outgoing emails are ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-18T16:57:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-29T04:08:37+00:00\" \/>\n<meta name=\"author\" content=\"knowledge-base\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"knowledge-base\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/\"},\"author\":{\"name\":\"knowledge-base\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"headline\":\"How to Route Traffic from a cPanel\\\/WHM Server to Spam Experts Filtering Nodes\",\"datePublished\":\"2022-05-18T16:57:15+00:00\",\"dateModified\":\"2026-05-29T04:08:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/\"},\"wordCount\":321,\"commentCount\":0,\"keywords\":[\"filtering nodes\",\"Spam Experts\"],\"articleSection\":[\"WHM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/\",\"name\":\"How to Route Traffic from a cPanel\\\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"datePublished\":\"2022-05-18T16:57:15+00:00\",\"dateModified\":\"2026-05-29T04:08:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/05\\\/18\\\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Route Traffic from a cPanel\\\/WHM Server to Spam Experts Filtering Nodes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\",\"name\":\"knowledge-base\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"caption\":\"knowledge-base\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/knowledge-base\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base","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:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/","og_locale":"en_US","og_type":"article","og_title":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base","og_description":"Introduction Spam Experts provides inbound and outbound email filtering services that help improve email security, spam protection, and mail delivery reliability. In a cPanel\/WHM environment, administrators can configure Exim to route outgoing email traffic through Spam Experts filtering nodes (smarthosts). This guide explains how to configure Exim in WHM so that all outgoing emails are ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2022-05-18T16:57:15+00:00","article_modified_time":"2026-05-29T04:08:37+00:00","author":"knowledge-base","twitter_card":"summary_large_image","twitter_misc":{"Written by":"knowledge-base","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/"},"author":{"name":"knowledge-base","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"headline":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes","datePublished":"2022-05-18T16:57:15+00:00","dateModified":"2026-05-29T04:08:37+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/"},"wordCount":321,"commentCount":0,"keywords":["filtering nodes","Spam Experts"],"articleSection":["WHM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/","name":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"datePublished":"2022-05-18T16:57:15+00:00","dateModified":"2026-05-29T04:08:37+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/05\/18\/how-to-route-the-traffic-from-cpanel-whm-server-to-the-spam-experts-filtering-nodes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"How to Route Traffic from a cPanel\/WHM Server to Spam Experts Filtering Nodes"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b","name":"knowledge-base","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","caption":"knowledge-base"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/knowledge-base\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1409","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=1409"}],"version-history":[{"count":4,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1409\/revisions"}],"predecessor-version":[{"id":3687,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1409\/revisions\/3687"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=1409"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=1409"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=1409"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}