{"id":18827,"date":"2023-12-22T14:00:00","date_gmt":"2023-12-22T13:00:00","guid":{"rendered":"https:\/\/contabo.com\/blog\/?p=18827"},"modified":"2026-06-02T18:53:49","modified_gmt":"2026-06-02T16:53:49","slug":"how-to-setup-your-own-mailserver-with-mailcow","status":"publish","type":"post","link":"https:\/\/contabo.com\/blog\/how-to-setup-your-own-mailserver-with-mailcow\/","title":{"rendered":"How to Setup Your Own Mailserver with Mailcow"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14.jpeg.webp\" alt=\"\"\/><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Mailcow is a dockerized open-source mail server that packages everything needed for a complete email stack on Linux. It bundles a mail transfer agent, spam filtering, webmail, and security tools behind one web interface. Want complete control over your email without wrestling with a dozen moving parts? Mailcow handles that. Here&#8217;s what the installation process looks like.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-run-mailcow-as-your-email-server-on-linux\"><strong>Why Run Mailcow as Your Email Server on Linux<\/strong><\/h2>\n\n\n\n<p>Your own SMTP server means nobody else controls your email infrastructure, and mailcow makes the setup reasonable. The open-source codebase gets regular security patches, you&#8217;re not trapped in a vendor&#8217;s ecosystem, and because the platform is built on Docker, it works the same way across Debian, Ubuntu, and most other distributions. No dependency hell, no conflicting system packages. The web interface takes care of domain management, mailbox creation, spam tuning, and TLS settings without forcing you into config files. A solid SMTP server backend paired with an interface that doesn&#8217;t require constant terminal access is what makes mailcow work for solo developers and small teams alike.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-the-mailcow-dockerized-mail-server-suite-actually-does\"><strong>What the Mailcow Dockerized Mail Server Suite Actually Does<\/strong><\/h2>\n\n\n\n<p>Mailcow isn&#8217;t one application. It&#8217;s a dockerized mail server suite that combines Postfix for mail transfer, Dovecot for IMAP and POP3, SOGo for webmail and groupware, Rspamd for spam and virus filtering, and Nginx as the reverse proxy. Docker Compose ties them together. The interface lets you manage the whole thing from a browser. For automation, the platform has a REST API. Plugins and hooks let you customize deeper when needed. The documentation covers enough ground that non-standard setups are manageable. Out of the box, it works. When requirements change, it bends.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-why-mailcow-features-matter-for-self-hosting\"><strong>Why Mailcow Features Matter for Self-Hosting<\/strong><\/h3>\n\n\n\n<p>Hosted alternatives and commercial platforms charge per seat. Self-hosting is free. Since mailcow is a dockerized open-source mail server, upgrades are predictable, rollbacks work, and your config lives in files you can version control. The community catches bugs fast. The forum and GitHub issues are actually useful when something breaks. The interface beats editing Postfix tables and Dovecot configs by hand. That cuts the time cost of running your own mail infrastructure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mailcow-system-requirements-ram-cpu-and-what-else-you-need\"><strong>Mailcow System Requirements: RAM, CPU, and What Else You Need<\/strong><\/h2>\n\n\n\n<p>Check your hardware before starting the install. Skipping this step is why most installations hit performance problems right after launch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-hardware-specs\"><em>Hardware Specs<\/em><\/h3>\n\n\n\n<p>Minimum system requirements start at 6 GB of RAM. For real traffic, 8 GB is the floor. CPU needs are light\u20142 cores handle low-to-medium volume\u2014but RAM matters more because multiple containers run at once. A Contabo VPS or dedicated box with 2 vCPUs and 6 to 8 GB of RAM covers the RAM and CPU needs comfortably. Plan disk space around mailbox usage: 20 GB minimum for system and containers, plus whatever mail storage you expect.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-software-stack\"><em>Software Stack<\/em><\/h3>\n\n\n\n<p>The platform runs on Debian and Ubuntu LTS. Mailcow on Debian 11 or Debian 12 is the standard setup. Mailcow on Ubuntu 22.04 LTS works just as well. You need Docker and Docker Compose, both installed in the steps below. The server needs a fully qualified domain name (FQDN), and ports 25, 80, 110, 143, 443, 465, 587, 993, and 995 must be open to the internet.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mailcow-dockerized-installation-guide\"><strong>Mailcow Dockerized Installation Guide<\/strong><\/h2>\n\n\n\n<p>This is a full installation on Debian 11 with DNS configuration. Following the steps in order avoids the usual installation failures and gets you a working mail server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-system-prep\"><em>System Prep<\/em><\/h3>\n\n\n\n<p>Update packages first:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y\n<\/code><\/pre>\n\n\n\n<p>Install what the stack needs before Docker goes in:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install curl git wget -y\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-docker-and-docker-compose-setup\"><em>Docker and Docker Compose Setup<\/em><\/h3>\n\n\n\n<p>Get Docker from the official script. Don&#8217;t use the Debian or Ubuntu repo versions\u2014they&#8217;re usually outdated:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -fsSL https:\/\/get.docker.com | sh\nsudo systemctl enable docker\nsudo systemctl start docker\n<\/code><\/pre>\n\n\n\n<p>Mailcow uses Docker Compose for its container stack. Install the plugin:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install docker-compose-plugin -y\n<\/code><\/pre>\n\n\n\n<p>Check it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose version\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-dns-records-before-installation\"><em>DNS Records Before Installation<\/em><\/h3>\n\n\n\n<p>Set up DNS records before you install. At minimum:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An A record pointing your mail hostname (mail.example.com) to the server&#8217;s public IP<\/li>\n\n\n\n<li>An MX record pointing your domain (example.com) to the mail hostname<\/li>\n\n\n\n<li>PTR records through your hosting provider matching the A record<\/li>\n\n\n\n<li>SPF, DKIM, and DMARC records (DKIM gets configured after the platform generates the key)<\/li>\n<\/ul>\n\n\n\n<p>The full DNS setup with all record formats and autodiscovery options is at mailcow.github.io\/mailcow-dockerized-docs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-installing-mailcow\"><em>Installing Mailcow<\/em><\/h3>\n\n\n\n<p>Clone the repository:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/opt\nsudo git clone https:\/\/github.com\/mailcow\/mailcow-dockerized\ncd mailcow-dockerized\n<\/code><\/pre>\n\n\n\n<p>Generate the mailcow.conf file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo .\/generate_config.sh\n<\/code><\/pre>\n\n\n\n<p>Enter your mail hostname when asked (mail.example.com). The script detects timezone\u2014confirm it&#8217;s right.<\/p>\n\n\n\n<p>Pull images and start the stack:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo docker compose pull\nsudo docker compose up -d\n<\/code><\/pre>\n\n\n\n<p>This downloads everything and starts the suite. Depending on connection speed, it takes a few minutes.<\/p>\n\n\n\n<p><em>Check the Mailcow UI Login<\/em><\/p>\n\n\n\n<p>See if containers are up:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo docker compose ps\n<\/code><\/pre>\n\n\n\n<p>All should show &#8220;Up&#8221;. If anything&#8217;s restarting or exited, check logs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo docker compose logs &lt;container_name&gt;\n<\/code><\/pre>\n\n\n\n<p>Once healthy, open https:\/\/mail.example.com in a browser.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-initial-setup-default-login-dkim-dmarc\"><strong>Initial Setup: Default Login, DKIM, DMARC<\/strong><\/h3>\n\n\n\n<p>After installation, configure these before using the server.<\/p>\n\n\n\n<p>Open the UI at https:\/\/mail.example.com. The default login is:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Username: admin<\/li>\n\n\n\n<li>Password: moohoo<\/li>\n<\/ul>\n\n\n\n<p>These are the default credentials shipped with every install. The default admin password is public knowledge. Change it now.<\/p>\n\n\n\n<p>Go to Configuration &gt; Mail setup and update the admin password.<\/p>\n\n\n\n<p>For DKIM setup, go to Configuration &gt; ARC\/DKIM keys. Generate a key for your domain. Add the DKIM TXT record to DNS at your registrar.<\/p>\n\n\n\n<p>For DMARC, add a TXT record to the _dmarc subdomain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>v=DMARC1; p=none; rua=mailto:postmaster@example.com<\/code><\/pre>\n\n\n\n<p>Create test mailboxes under Configuration &gt; Mail setup &gt; Mailboxes. Send test messages between them or to an external address before calling it done.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mailcow-setup-domains-and-mailboxes\"><strong>Mailcow Setup: Domains and Mailboxes<\/strong><\/h2>\n\n\n\n<p>Once the installation works, the next part of configuration is adding domains and mailboxes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-adding-domains\"><em>Adding Domains<\/em><\/h3>\n\n\n\n<p>Log into the UI at https:\/\/mail.example.com.<\/p>\n\n\n\n<p>Go to Configuration &gt; Mail setup &gt; Domains.<\/p>\n\n\n\n<p>Click &#8220;Add domain&#8221;. Enter your domain (example.com). Set quota limits, backup MX options, and active status as needed. Backup MX lets you designate a secondary mail server for downtime.<\/p>\n\n\n\n<p>Click &#8220;Add domain&#8221; to save.<\/p>\n\n\n\n<p>The platform checks that DNS points to your server and records are in place.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-creating-mailboxes\"><em>Creating Mailboxes<\/em><\/h3>\n\n\n\n<p>Under Mail setup, go to Mailboxes.<\/p>\n\n\n\n<p>Click &#8220;Add mailbox&#8221;:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Local Part: The part before @ (user for user@example.com)<\/li>\n\n\n\n<li>Domain: Pick the domain you added<\/li>\n\n\n\n<li>Password: Set something strong<\/li>\n\n\n\n<li>Full Name: Display name<\/li>\n\n\n\n<li>Quota: Storage limit based on expected usage<\/li>\n<\/ul>\n\n\n\n<p>Click &#8220;Add mailbox&#8221;.<\/p>\n\n\n\n<p>Repeat for each user.<\/p>\n\n\n\n<p>Users access mailboxes through the webmail interface at https:\/\/mail.example.com or by configuring a client with the SMTP settings shown in the UI. For Contabo webmail or a Contabo email server, the HTTPS URL is the same access point.<\/p>\n\n\n\n<p>Send and receive test emails from each mailbox before handing out access.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-wrapping-up-the-mailcow-mail-server-setup\"><strong>Wrapping Up the Mailcow Mail Server Setup<\/strong><\/h3>\n\n\n\n<p>This tutorial walked through the full process on Debian 11: prepping the environment, installing Docker and Docker Compose, configuring DNS records for SPF, DKIM, and DMARC, cloning and starting the dockerized stack, handling initial configuration, and setting up domains and mailboxes through the interface. A Contabo mail server gives you the hardware mailcow needs to run its full container stack without hitting resource limits.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-keeping-mailcow-healthy\"><strong>Keeping Mailcow Healthy<\/strong><\/h3>\n\n\n\n<p>A few habits keep the installation running smoothly.<\/p>\n\n\n\n<p>Run regular updates. Pull the latest images and restart:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/opt\/mailcow-dockerized\nsudo git pull\nsudo docker compose pull\nsudo docker compose up -d\n<\/code><\/pre>\n\n\n\n<p>The platform pushes updates often. Staying current is the best defense against new vulnerabilities.<\/p>\n\n\n\n<p>Set up an SMTP relay if your host blocks port 25 (common on VPS platforms). A transactional relay service handles outbound delivery and sidesteps port blocks and IP reputation problems.<\/p>\n\n\n\n<p>Back up mail data and config files regularly. The stack stores data in Docker volumes. Your backup needs those volumes plus the mailcow.conf file. Schedule automated backups to off-server storage so hardware failure doesn&#8217;t mean data loss. Include the docker-compose config if you&#8217;ve customized the stack.<\/p>\n\n\n\n<p>Watch the spam filter. Check Rspamd&#8217;s dashboard occasionally to tune rules and catch odd sending patterns early.<\/p>\n\n\n\n<p>TLS certificates renew automatically through Let&#8217;s Encrypt, but verify auto-renewal works after initial setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-common-questions-about-mailcow\"><strong>Common Questions About Mailcow<\/strong><\/h2>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1780419090293\"><strong class=\"schema-faq-question\"><em>How Do Mailcow DNS Records Work (SPF, DKIM, DMARC)?<\/em><\/strong> <p class=\"schema-faq-answer\">You need an A record for the mail hostname, an MX record pointing to it, an SPF TXT record for the sending domain, a DKIM TXT record generated under ARC\/DKIM keys, and a DMARC TXT record on the _dmarc subdomain. Full formats are in the documentation. The platform handles DKIM through the UI\u2014it generates the key and shows you the exact DNS record. SPF and DMARC go in manually at your DNS provider. Getting all three right builds sender reputation and keeps messages out of spam folders.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780419094788\"><strong class=\"schema-faq-question\"><em>Can You Run Mailcow Without Docker?<\/em><\/strong> <p class=\"schema-faq-answer\">No. The platform is Docker-specific. The whole thing runs on containerized services managed through Docker Compose. Updates, backups, tooling\u2014all of it assumes Docker. If you want a mail server without Docker, you&#8217;d need a different project or manual configuration of Postfix, Dovecot, Rspamd, and the rest, which is a lot more work.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780419100933\"><strong class=\"schema-faq-question\"><em>Does Mailcow Support Multiple Domains?<\/em><\/strong> <p class=\"schema-faq-answer\">Yes. Add domains through the UI under Configuration > Mail setup > Domains. Each domain needs its own DNS records: MX, SPF, DKIM, DMARC. Backup MX is per-domain. There&#8217;s no hard cap on domain count\u2014it depends on server resources. One decent server can handle email for multiple domains without extra infrastructure.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780419106412\"><strong class=\"schema-faq-question\"><em>How Do You Update Mailcow?<\/em><\/strong> <p class=\"schema-faq-answer\">A docker update pulls the latest from the GitHub repo and updates container images:<br><code>sudo git pull<br>sudo docker compose pull<br>sudo docker compose up -d<br><\/code><br>The repo includes an update.sh script in the root that handles the process with pre-update checks. Use that script on production servers\u2014it catches edge cases a manual pull might miss.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780419109536\"><strong class=\"schema-faq-question\"><em>How Do You Back Up and Restore Mailcow?<\/em><\/strong> <p class=\"schema-faq-answer\">The stack keeps data in named Docker volumes. A full backup exports those volumes plus mailcow.conf and docker-compose.yml. The documentation has a helper script that exports mail data, databases, and Redis state. Restoration imports volumes to a fresh install using the same script. Schedule backups to off-server storage (object storage bucket or remote server) so hardware failure doesn&#8217;t kill your data. Include the docker-compose file if you&#8217;ve customized the stack.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Learn the essentials in How to Setup Your Own Mailserver with Mailcow &#8211; a comprehensive guide to easily configuring a reliable mail server.<\/p>\n","protected":false},"author":50,"featured_media":18828,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[18],"tags":[],"ppma_author":[1491],"class_list":["post-18827","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"uagb_featured_image_src":{"full":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14.jpeg",1200,630,false],"thumbnail":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14-150x150.jpeg",150,150,true],"medium":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14-600x315.jpeg",600,315,true],"medium_large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14-768x403.jpeg",768,403,true],"large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14.jpeg",1200,630,false],"1536x1536":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14.jpeg",1200,630,false],"2048x2048":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/12\/image-14.jpeg",1200,630,false]},"uagb_author_info":{"display_name":"Tobias Mildenberger","author_link":"https:\/\/contabo.com\/blog\/author\/tobias\/"},"uagb_comment_info":0,"uagb_excerpt":"Learn the essentials in How to Setup Your Own Mailserver with Mailcow - a comprehensive guide to easily configuring a reliable mail server.","authors":[{"term_id":1491,"user_id":50,"is_guest":0,"slug":"tobias","display_name":"Tobias Mildenberger","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/077178d5dce6c3d4c0c0396857a7e544bfdf8adf04145fff5160b33a22e28b1f?s=96&d=mm&r=g","author_category":"","user_url":"https:\/\/contabo.com\/en\/","last_name":"Mildenberger","first_name":"Tobias","job_title":"","description":""}],"_links":{"self":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/18827","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/users\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/comments?post=18827"}],"version-history":[{"count":3,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/18827\/revisions"}],"predecessor-version":[{"id":31102,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/18827\/revisions\/31102"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media\/18828"}],"wp:attachment":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media?parent=18827"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/categories?post=18827"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/tags?post=18827"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=18827"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}