{"id":3140,"date":"2014-03-19T16:15:07","date_gmt":"2014-03-19T21:15:07","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3140"},"modified":"2022-06-03T03:47:03","modified_gmt":"2022-06-03T08:47:03","slug":"install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/","title":{"rendered":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/mailman.jpg\"><img decoding=\"async\" class=\"size-medium wp-image-1244 alignleft\" title=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/mailman-300x214.jpg\" alt=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\" width=\"300\" height=\"214\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/mailman-300x214.jpg 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/mailman.jpg 350w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a> In the following article we will guide you through the steps of <strong>installing and configuring a simple mail server using Sendmail and Dovecot<\/strong> on a <strong>Fedora 20<\/strong> <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a>.<\/p>\n<p><strong>What is Sendmail?<\/strong><\/p>\n<p>It is a general purpose email routing facility that supports many kinds of mail-transfer and delivery methods, including the Simple Mail Transfer Protocol (<strong>SMTP<\/strong>) used for email transport over the Internet.<\/p>\n<p><!--more--><\/p>\n<p><strong>What is Dovecot?<\/strong><\/p>\n<p>Dovecot is an open source <strong>IMAP<\/strong> and <strong>POP3<\/strong> server for Linux\/UNIX-like systems. It can work with standard mbox, Maildir, and its own native high-performance dbox formats. It is fully compatible with UW IMAP and Courier IMAP servers&#8217; implementation of them, as well as mail clients accessing the mailboxes directly. Dovecot also includes a Mail delivery agent (called Local delivery agent LDA) with optional Sieve filtering support.<\/p>\n<h3><strong>1. UPDATE THE SYSTEM<\/strong><\/h3>\n<p>Before proceeding any further, make sure you are in a screen session and check if your <strong>Fedora 20<\/strong> <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> is fully up-to-date by running:<\/p>\n<pre>## screen -U -S sendmail-screen\r\n## yum update<\/pre>\n<h3><strong>2. INSTALL AND CONFIGURE SENDMAIL<\/strong><\/h3>\n<p>Install <b>Sendmail MTA<\/b> using the following command<\/p>\n<pre>## yum install sendmail sendmail-cf sendmail-doc cyrus-sasl-{lib,plain}<\/pre>\n<p>change to <code>\/etc\/mail<\/code> directory<\/p>\n<pre>## cd \/etc\/mail<\/pre>\n<p>edit sendmail&#8217;s <code>sendmail.mc<\/code> configuration file and add\/change the following<\/p>\n<pre>## cp sendmail.mc{,.orig}\r\n## vim sendmail.mc<\/pre>\n<pre>define(`PROCMAIL_MAILER_PATH', `\/usr\/bin\/procmail')dnl\r\ndefine(`confAUTH_OPTIONS', `A')dnl\r\nTRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl\r\ndefine(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl\r\n\r\nFEATURE(local_procmail)dnl\r\n\r\nDAEMON_OPTIONS(`Port=smtp,Addr=0.0.0.0, Name=MTA')dnl\r\nDAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea')dnl\r\n\r\nMAILER(procmail)dnl<\/pre>\n<p>save and close the file and <code>make<\/code> sendmail&#8217;s configuration by running the following commands<\/p>\n<pre>## cd \/etc\/mail\r\n## make all<\/pre>\n<p>restart sendmail and add it to your linux vps start-up using <code>systemctl<\/code><\/p>\n<pre>## systemctl restart sendmail saslauthd\r\n## systemctl enable sendmail saslauthd<\/pre>\n<p>for your convenience, below is the complete <code>sendmail.mc<\/code> configuration file:<\/p>\n<pre>divert(-1)dnl\r\ninclude(`\/usr\/share\/sendmail-cf\/m4\/cf.m4')dnl\r\nVERSIONID(`setup for linux')dnl\r\nOSTYPE(`linux')dnl\r\ndefine(`confDEF_USER_ID', ``8:12'')dnl\r\ndefine(`confTO_CONNECT', `1m')dnl\r\ndefine(`confTRY_NULL_MX_LIST', `True')dnl\r\ndefine(`confDONT_PROBE_INTERFACES', `True')dnl\r\ndefine(`PROCMAIL_MAILER_PATH', `\/usr\/bin\/procmail')dnl\r\ndefine(`ALIAS_FILE', `\/etc\/aliases')dnl\r\ndefine(`STATUS_FILE', `\/var\/log\/mail\/statistics')dnl\r\ndefine(`UUCP_MAILER_MAX', `2000000')dnl\r\ndefine(`confUSERDB_SPEC', `\/etc\/mail\/userdb.db')dnl\r\ndefine(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnl\r\ndefine(`confAUTH_OPTIONS', `A')dnl\r\nTRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl\r\ndefine(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl\r\ndefine(`confTO_IDENT', `0')dnl\r\nFEATURE(`no_default_msa', `dnl')dnl\r\nFEATURE(`smrsh', `\/usr\/sbin\/smrsh')dnl\r\nFEATURE(`mailertable', `hash -o \/etc\/mail\/mailertable.db')dnl\r\nFEATURE(`virtusertable', `hash -o \/etc\/mail\/virtusertable.db')dnl\r\nFEATURE(redirect)dnl\r\nFEATURE(always_add_domain)dnl\r\nFEATURE(use_cw_file)dnl\r\nFEATURE(use_ct_file)dnl\r\nFEATURE(local_procmail)dnl\r\nFEATURE(`access_db', `hash -T&lt;TMPF&gt; -o \/etc\/mail\/access.db')dnl\r\nFEATURE(`blacklist_recipients')dnl\r\nEXPOSED_USER(`root')dnl\r\nDAEMON_OPTIONS(`Port=smtp,Addr=0.0.0.0, Name=MTA')dnl\r\nDAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea')dnl\r\nFEATURE(`accept_unresolvable_domains')dnl\r\nLOCAL_DOMAIN(`localhost.localdomain')dnl\r\nMAILER(smtp)dnl\r\nMAILER(procmail)dnl<\/pre>\n<hr \/>\n<h3><strong>3. INSTALL AND CONFIGURE DOVECOT<\/strong><\/h3>\n<p>Install <code>dovecot<\/code> using the command below<\/p>\n<pre>## yum install dovecot<\/pre>\n<p>change to dovecot&#8217;s directory in <code>\/etc\/dovecot<\/code><\/p>\n<pre>## cd \/etc\/dovecot<\/pre>\n<p>and edit the following<\/p>\n<pre>## vim conf.d\/10-mail.conf\r\n...\r\nmail_location = maildir:~\/Maildir<\/pre>\n<pre>## vim conf.d\/10-ssl.conf\r\n...\r\nssl = yes<\/pre>\n<pre>## vim conf.d\/10-auth.conf\r\n...\r\ndisable_plaintext_auth = no\r\nauth_mechanisms = plain login<\/pre>\n<p>next, edit dovecot&#8217;s main configuration file and add\/edit the following<\/p>\n<pre>## vim dovecot.conf\r\n...\r\nprotocols = imap pop3 lmtp\r\nlisten = *<\/pre>\n<p>start Dovecot and add it to your Fedora system&#8217;s start-up using<\/p>\n<pre>## systemctl restart dovecot\r\n## systemctl enable dovecot<\/pre>\n<h3><strong>4. SET-UP PROCMAIL<\/strong><\/h3>\n<p>Add the following to <code>\/etc\/procmailrc<\/code><\/p>\n<pre>## vim \/etc\/procmailrc\r\n\r\nDEFAULT=$HOME\/Maildir\/<\/pre>\n<h3><strong>5. CREATE A NEW USER<\/strong><\/h3>\n<p>Create new user using the following command<\/p>\n<pre>## useradd -m test<\/pre>\n<p>set password for the newly created <code>info<\/code> account<\/p>\n<pre>## passwd test<\/pre>\n<p>add your <code>mydomain.com<\/code> domain name to <code>\/etc\/mail\/local-host-names<\/code><\/p>\n<pre>## echo mydomain.com &gt;&gt; \/etc\/mail\/local-host-names<\/pre>\n<p>and create an alias for the newly created email account, by adding the following to <code>\/etc\/mail\/virtusertable<\/code><\/p>\n<pre>## vim \/etc\/mail\/virtusertable\r\n\r\ntest@mydomain.com  test\r\nsales@mydomain.com test<\/pre>\n<p>rebuild sendmail&#8217;s configuration by running the following commands<\/p>\n<pre>## cd \/etc\/mail\r\n## make all\r\n## systemctl restart sendmail<\/pre>\n<hr \/>\n<p>Of course, if you are one of our Linux VPS Hosting customers, you don\u2019t have to do any of this, simply ask our admins, sit back and relax. Our admins will set this up for you immediately.<\/p>\n<p><strong>PS.<\/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":"<p>In the following article we will guide you through the steps of installing and configuring a simple mail server using &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#more-3140\" aria-label=\"Read more about Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":788,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1706,13],"tags":[71,93,177,384,14],"class_list":["post-3140","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-email-servers","category-tutorials","tag-dovecot","tag-fedora","tag-linux-vps","tag-mail-server","tag-sendmail","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.7 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 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\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\" \/>\n<meta property=\"og:description\" content=\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-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-03-19T21:15:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.png\" \/>\n\t<meta property=\"og:image:width\" content=\"256\" \/>\n\t<meta property=\"og:image:height\" content=\"256\" \/>\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\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\",\"datePublished\":\"2014-03-19T21:15:07+00:00\",\"dateModified\":\"2022-06-03T08:47:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/\"},\"wordCount\":395,\"commentCount\":22,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/07\\\/email.png\",\"keywords\":[\"Dovecot\",\"fedora\",\"linux vps\",\"mail-server\",\"sendmail\"],\"articleSection\":[\"Email Servers\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/\",\"name\":\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/07\\\/email.png\",\"datePublished\":\"2014-03-19T21:15:07+00:00\",\"dateModified\":\"2022-06-03T08:47:03+00:00\",\"description\":\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/07\\\/email.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/07\\\/email.png\",\"width\":\"256\",\"height\":\"256\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"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\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"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\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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 Premium plugin. -->","yoast_head_json":{"title":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting","description":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 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\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS","og_description":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-03-19T21:15:07+00:00","article_modified_time":"2022-06-03T08:47:03+00:00","og_image":[{"width":256,"height":256,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.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\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS","datePublished":"2014-03-19T21:15:07+00:00","dateModified":"2022-06-03T08:47:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/"},"wordCount":395,"commentCount":22,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.png","keywords":["Dovecot","fedora","linux vps","mail-server","sendmail"],"articleSection":["Email Servers","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/","name":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.png","datePublished":"2014-03-19T21:15:07+00:00","dateModified":"2022-06-03T08:47:03+00:00","description":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/email.png","width":"256","height":"256"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-configure-a-simple-mail-server-using-sendmail-and-dovecot-on-a-fedora-20-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install and configure a simple mail server using Sendmail and Dovecot on a Fedora 20 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","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":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"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\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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\/3140","targetHints":{"allow":["GET"]}}],"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=3140"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3140\/revisions"}],"predecessor-version":[{"id":42233,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3140\/revisions\/42233"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/788"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3140"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3140"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}