{"id":5243,"date":"2014-10-24T15:44:17","date_gmt":"2014-10-24T20:44:17","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=5243"},"modified":"2022-12-08T07:57:20","modified_gmt":"2022-12-08T13:57:20","slug":"how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/","title":{"rendered":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS"},"content":{"rendered":"
<\/div>

\"HowIn the following tutorial we are going to cover the procedure of installing and integrating SpamAssassin with Exim on a CentOS 7 Linux VPS<\/a><\/strong>. Once the set-up is completed, SpamAssassin<\/strong> will be able to scan and mark the emails detected as SPAM.<\/p>\n

What is SpamAssassin?<\/strong><\/p>\n

It is a software program released under the Apache License 2.0 used for e-mail spam filtering<\/strong> based on content-matching rules. It is a very intelligent email filter<\/strong> which uses a diverse range of tests<\/strong> to identify unsolicited bulk email and apply the tests to email headers and content<\/strong> to classify email using advanced statistical methods.<\/p>\n

 <\/p>\n

<\/p>\n

Before proceeding any further, make sure you have a mailserver with Exim<\/strong> setup on your SSD virtual server<\/a>. You can follow our great article on how to setup a mailserver with Exim and Dovecot on a CentOS 7 VPS<\/a> if you don’t have Exim setup already on your Linux VPS<\/a>.<\/p>\n

 <\/p>\n

UPDATE THE SYSTEM<\/b><\/h4>\n

ssh<\/code> to your server and initiate a screen<\/code> session using the command below:<\/p>\n

## screen -U -S exim-spamd<\/pre>\n

once you’re in a screen<\/code> session, update your CentOS 7 VPS<\/a> using yum<\/code> as in:<\/p>\n

## yum update<\/pre>\n

 <\/p>\n

INSTALL SPAMASSASSIN<\/b><\/h4>\n

SpamAssassin<\/strong> is available in CentOS 7<\/strong> base<\/code> repository, so you can easily install it using yum<\/code>:<\/p>\n

## yum install spamassassin<\/pre>\n

Once it’s installed, edit \/etc\/mail\/spamassassin\/local.cf<\/code> using your favorite editor and set the following:<\/p>\n

## vim \/etc\/mail\/spamassassin\/local.cf\r\n\r\nrequired_hits 5\r\nreport_safe 0\r\nrewrite_header Subject [SPAM]\r\nrequired_score 5.0<\/pre>\n

with all that in place, proceed with starting spamassassin up and adding it to your system’s startup using systemctl<\/code><\/p>\n

## systemctl start spamassassin\r\n## systemctl status spamassassin\r\n## systemctl enable spamassassin<\/pre>\n

update spamassassin rules using:<\/p>\n

## sa-update --nogpg<\/pre>\n

next, check if spamassassin is listening on localhost (127.0.0.1) on port 783 using ss<\/code> from iproute2<\/code>:<\/p>\n

## ss -tnlp | grep spamd\r\nLISTEN 0 0 127.0.0.1:783 *:* users:((\"spamd child\",1207,5),(\"spamd child\",1206,5),(\"\/usr\/bin\/spamd \",1205,5))<\/pre>\n

 <\/p>\n

CONFIGURE EXIM WITH SPAMASSASSIN<\/b><\/h4>\n

OK, next thing to do is to configure Exim to utilize Spamassassin<\/strong> for scanning and tagging unsolicited emails as SPAM. So, make a backup of your current Exim configuration file using:<\/p>\n

## cp \/etc\/exim\/exim.conf{,.backup-no-spamd}<\/pre>\n

Next, edit exim.conf<\/code> and add the following line in the beginning of the file:<\/p>\n

## vim \/etc\/exim\/exim.conf\r\nsystem_filter = \/etc\/exim\/filters\r\n<\/pre>\n

Next, add or uncomment the spamd_address<\/code> line as in:<\/p>\n

## vim \/etc\/exim\/exim.conf\r\nspamd_address = 127.0.0.1 783<\/pre>\n

and add the following within the ACLs<\/code> section in your Exim configuration file:<\/p>\n

## vim \/etc\/exim\/exim.conf\r\n\r\n# Bypass SpamAssassin checks if the message is too large.\r\n#\r\naccept  condition  = ${if >={$message_size}{100000} {1}}\r\n      add_header = X-Spam-Note: SpamAssassin run bypassed due to message size\r\n\r\n# Run SpamAssassin, but allow for it to fail or time out. Add a warning message\r\n# and accept the mail if that happens. Add an X-Spam-Flag: header if the SA\r\n# score exceeds the SA system threshold.\r\n#\r\nwarn    spam       = nobody\/defer_ok\r\n       add_header = X-Spam-Flag: YES\r\n       add_header = X-Spam-Subject: [SPAM] $h_Subject\r\n\r\naccept  condition  = ${if !def:spam_score_int {1}}\r\n       add_header = X-Spam-Note: SpamAssassin invocation failed\r\n\r\n# Unconditionally add score and report headers\r\n#\r\nwarn    add_header = X-Spam-Score: $spam_score ($spam_bar)\\n\\\r\n                    X-Spam-Report: $spam_report<\/pre>\n

Next, create the following Exim system filters in \/etc\/exim\/filters<\/code>:<\/p>\n

## vim \/etc\/exim\/filters\r\nif $h_X-Spam-Flag: contains \"YES\"\r\nthen\r\n    headers add \"Old-Subject: $h_subject\"\r\n    headers remove \"Subject\"\r\n    headers add \"Subject: [SPAM] $h_old-subject\"\r\n    headers remove \"Old-Subject\"\r\nendif<\/pre>\n

and restart Exim for the changes to take effect using:<\/p>\n

## systemctl restart exim\r\n## systemctl status exim<\/pre>\n

 <\/p>\n

TEST SPAMASSASSIN<\/b><\/h4>\n

To test the setup, simply send a test email with subject XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X<\/code> to any email account available on the mailserver and you should see the following lines in the email header:<\/p>\n

X-Spam-Flag: YES\r\nX-Spam-Subject: [SPAM] XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X\r\nX-Spam-Score: 1000.0 (+++++++++++++++++++++++++++++++++++++++++++++++++++)\r\nX-Spam-Report: Spam detection software, running on the system \"mail.mydomain.com\", has\r\n identified this incoming email as possible spam.  The original message\r\n has been attached to this so you can view it (if it isn't spam) or label\r\n similar future email.  If you have any questions, see\r\n @@CONTACT_ADDRESS@@ for details.\r\n \r\n Content preview:  nov spam email [...] \r\n \r\n Content analysis details:   (1000.0 points, 5.0 required)\r\n \r\n  pts rule name              description\r\n ---- ---------------------- --------------------------------------------------\r\n -0.0 T_RP_MATCHES_RCVD      Envelope sender domain matches handover relay\r\n                             domain\r\n 1000 GTUBE                  BODY: Generic Test for Unsolicited Bulk Email<\/pre>\n

 <\/p>\n

LET US DO THIS FOR YOU?<\/b><\/h4>\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install and integrate SpamAssassin with Exim<\/strong>. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In the following tutorial we are going to cover the procedure of installing and integrating SpamAssassin with Exim on a … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":5244,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1706,1703,13],"tags":[34,487,177,196,602],"yoast_head":"\nHow to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-10-24T20:44:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-08T13:57:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"334\" \/>\n\t<meta property=\"og:image:height\" content=\"148\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS\",\"datePublished\":\"2014-10-24T20:44:17+00:00\",\"dateModified\":\"2022-12-08T13:57:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\"},\"wordCount\":456,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png\",\"keywords\":[\"centos\",\"exim\",\"linux vps\",\"spamassassin\",\"spamd\"],\"articleSection\":[\"CentOS\",\"Email Servers\",\"Security\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\",\"name\":\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png\",\"datePublished\":\"2014-10-24T20:44:17+00:00\",\"dateModified\":\"2022-12-08T13:57:20+00:00\",\"description\":\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png\",\"width\":334,\"height\":148},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","description":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","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.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","og_description":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-10-24T20:44:17+00:00","article_modified_time":"2022-12-08T13:57:20+00:00","og_image":[{"width":334,"height":148,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS","datePublished":"2014-10-24T20:44:17+00:00","dateModified":"2022-12-08T13:57:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/"},"wordCount":456,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png","keywords":["centos","exim","linux vps","spamassassin","spamd"],"articleSection":["CentOS","Email Servers","Security","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/","name":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png","datePublished":"2014-10-24T20:44:17+00:00","dateModified":"2022-12-08T13:57:20+00:00","description":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/10\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps.png","width":334,"height":148},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-exim-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install and integrate SpamAssassin with Exim on a CentOS 7 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5243"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=5243"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5243\/revisions"}],"predecessor-version":[{"id":43826,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5243\/revisions\/43826"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/5244"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=5243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=5243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=5243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}