{"id":15202,"date":"2025-06-30T17:55:22","date_gmt":"2025-06-30T12:25:22","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15202"},"modified":"2025-07-02T16:36:48","modified_gmt":"2025-07-02T11:06:48","slug":"postal-on-ubuntu-24","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/","title":{"rendered":"How to install Postal on Ubuntu 24"},"content":{"rendered":"\n<p>Postal is an open-source mail server designed for sending large volumes of email reliably while providing complete control over your infrastructure and reputation. Here\u2019s the guide to install Postal on <a href=\"https:\/\/ubuntu.com\/blog\/tag\/ubuntu-24-04-lts\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu 24.04 <\/mark><\/a>using Docker, ensuring you have a stable, scalable mail server for your application needs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ubuntu 24.04 server with root or sudo access.<\/li>\n\n\n\n<li>A domain name pointed to your server.<\/li>\n\n\n\n<li>At least 8GB RAM and sufficient CPU for handling mail queues.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-install-docker-and-system-utilities\"><strong>Step 1:<\/strong><strong> <\/strong>Install Docker and system utilities.<\/h3>\n\n\n\n<p>If Docker is not installed, install it using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install docker.io docker-compose<\/code><\/pre>\n\n\n\n<p>You need to install certain system utilities before you can run some Postal commands.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install git curl jq<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: <\/strong>Clone Postal from Git<\/h3>\n\n\n\n<p>Clone the Postal installation helper repository, which includes essential bootstrapping configurations and other resources to streamline the installation process.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>git clone https:\/\/github.com\/postalserver\/install \/opt\/postal\/install\nsudo ln -s \/opt\/postal\/install\/bin\/postal \/usr\/bin\/postal<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 3:&nbsp; <\/strong>MariaDB (10.6 or higher)<\/h3>\n\n\n\n<p>You can run MariaDB as a container since you have Docker installed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker run -d \\\n   --name postal-mariadb \\\n   -p 127.0.0.1:3306:3306 \\\n   --restart always \\\n   -e MARIADB_DATABASE=postal \\\n   -e MARIADB_ROOT_PASSWORD=postal \\\n   mariadb<\/code><\/pre>\n\n\n\n<p>This will run MariaDB on port 3306. Please change the database name and password according to your choice. Be sure to choose a secure password.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 4:<\/strong> Initialize Postal<\/h3>\n\n\n\n<p>Before starting Postal, some configurations still need to be completed, even though the cloned repository already includes a portion of them. Run the below command and make sure change \u201cpostal.mydomain.com\u201d to your desired hostname:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal bootstrap postal.mydomain.com <\/code><\/pre>\n\n\n\n<p>This process will generate three files in \/opt\/postal\/config:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>postal.yml \u2013 The main configuration file for Postal.<\/li>\n\n\n\n<li>signing.key \u2013 The private key used for signing various components within Postal.<\/li>\n\n\n\n<li>Caddyfile \u2013 The configuration file for the Caddy web server.<\/li>\n<\/ul>\n\n\n\n<p>After these files are created, you should open \/opt\/postal\/config\/postal.yml and update it with the appropriate values for your setup, such as database credentials and other necessary settings.<\/p>\n\n\n\n<p>After this initialize the database for which run the following commands which will create a schema and your first admin user.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal initialize\npostal make-user<\/code><\/pre>\n\n\n\n<p>Now you are all set to run Postal.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal start<\/code><\/pre>\n\n\n\n<p>By executing the above command, you will start a number of containers and you can check the status by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal status<\/code><\/pre>\n\n\n\n<p>To manage SSL termination and handle all web traffic, you&#8217;ll need to set up a web proxy. Here we use Caddy web server which is a lightweight web server that&#8217;s easy to configure and quick to get up and running.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker run -d \\\n   --name postal-caddy \\\n   --restart always \\\n   --network host \\\n   -v \/opt\/postal\/config\/Caddyfile:\/etc\/caddy\/Caddyfile \\\n   -v \/opt\/postal\/caddy-data:\/data \\\n   caddy<\/code><\/pre>\n\n\n\n<p>Caddy will issue SSL for your domain and you can access the Postal web interface after this using the credentials of the admin user you created.<\/p>\n\n\n\n<p><strong>Step 5:<\/strong> Configure DNS Records<\/p>\n\n\n\n<p>To ensure your mail server functions correctly, you need to configure several DNS records. Your postal.yml file includes a set of suggested DNS records you can add directly, or you can adjust the configuration to match the DNS records and domain names you plan to use. Make sure to add your domain names and IP address correctly while adding the records.<\/p>\n\n\n\n<p>Example of your postal.yml file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dns:\n  # Specify the DNS records that you have configured. Refer to the documentation at\n  # https:\/\/github.com\/atech\/postal\/wiki\/Domains-&amp;-DNS-Configuration for further\n  # information about these.\n  mx_records:\n    - mx.postal.mydomain.com\n  spf_include: spf.postal.mydomain.com\n  return_path_domain: rp.postal.mydomain.com\n  route_domain: routes.postal.mydomain.com\n  track_domain: track.postal.mydomain.com<\/code><\/pre>\n\n\n\n<p><strong>A record<\/strong><\/p>\n\n\n\n<p>You need an A record for accessing the Postal web interface.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal.mydomain.com A 78.47.37.198<\/code><\/pre>\n\n\n\n<p>You can specify a dedicated subdomain for mail delivery instead of using postal.mydomain.com for everything.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mx.postal.mydomain.com\tA 78.47.37.198<\/code><\/pre>\n\n\n\n<p><strong>SPF Record<\/strong>&nbsp;<\/p>\n\n\n\n<p>If you send emails from multiple domains, managing SPF records for each domain can become tedious. Postal allows you to configure a global SPF record to simplify this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>spf.postal.mydomain.com\tTXT\tv=spf1 ip4:78.47.37.198 ~all<\/code><\/pre>\n\n\n\n<p><strong>Return Path<\/strong><\/p>\n\n\n\n<p>To handle bounces and improve deliverability, configure a dedicated return path domain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rp.postal.mydomain.com\tMX\t10  postal.mydomain.com\n\nrp.postal.mydomain.com        TXT\tv=spf1 a mx include:spf.postal.mydomain.com ~all\n\npostal._domainkey.rp.postal.mydomain.com\tTXT\tdkim record value<\/code><\/pre>\n\n\n\n<p>The dkim record value can be generated by running the below command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>postal default-dkim-record<\/code><\/pre>\n\n\n\n<p><strong>Route Domain<\/strong><\/p>\n\n\n\n<p>To receive and process incoming emails directly through Postal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>routes.postal.mydomain.com MX 10 postal.mydomain.com<\/code><\/pre>\n\n\n\n<p><strong>Click &amp; Open Tracking<\/strong><\/p>\n\n\n\n<p>To track email opens and link clicks with Postal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>track.postal.mydomain.com A 78.47.37.198<\/code><\/pre>\n\n\n\n<p>This ensures tracking URLs to avoid displaying error pages when users click tracked links and enables accurate open and click tracking for your email campaigns, helping you measure engagement effectively.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>You now have Postal installed on Ubuntu 24.04 using Docker, providing a powerful, self-hosted email server to manage and deliver your transactional or bulk emails efficiently. Postal gives you the flexibility to manage your IP reputation, tracking, and delivery while retaining control over your infrastructure.<\/p>\n\n\n\n<p>If you encounter any issues while trying to install Postal on Ubuntu 24 or need expert assistance in configuring a secure and optimized mail server, our team is here to help. At Skynats, we specialize in end-to-end <strong><a href=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a><\/strong>, ensuring smooth installation, configuration, and ongoing support for your infrastructure.<br><br>Contact us today to get professional support to install Postal on<strong> <\/strong>Ubuntu 24 and keep your mail server running efficiently and securely.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Postal is an open-source mail server designed for sending large volumes of email reliably while providing complete control over your infrastructure and reputation. Here\u2019s the guide to install Postal on Ubuntu 24.04 using Docker, ensuring you have a stable, scalable mail server for your application needs. Prerequisites Step 1: Install Docker and system utilities. If [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1058,302,899],"class_list":["post-15202","post","type-post","status-publish","format-standard","hentry","category-blog","tag-postal-on-ubuntu-24","tag-server-management-services","tag-ubuntu-24-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Postal on Ubuntu 24 \u2013 Step-by-Step Setup Guide<\/title>\n<meta name=\"description\" content=\"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!\" \/>\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.skynats.com\/blog\/postal-on-ubuntu-24\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Postal on Ubuntu 24\" \/>\n<meta property=\"og:description\" content=\"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-30T12:25:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-02T11:06:48+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Merin John\" \/>\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.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to install Postal on Ubuntu 24\",\"datePublished\":\"2025-06-30T12:25:22+00:00\",\"dateModified\":\"2025-07-02T11:06:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/\"},\"wordCount\":725,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"postal on ubuntu 24\",\"server management services\",\"Ubuntu 24.04\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/\",\"name\":\"Install Postal on Ubuntu 24 \u2013 Step-by-Step Setup Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-06-30T12:25:22+00:00\",\"dateModified\":\"2025-07-02T11:06:48+00:00\",\"description\":\"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/postal-on-ubuntu-24\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Postal on Ubuntu 24\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Postal on Ubuntu 24 \u2013 Step-by-Step Setup Guide","description":"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!","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.skynats.com\/blog\/postal-on-ubuntu-24\/","og_locale":"en_US","og_type":"article","og_title":"How to install Postal on Ubuntu 24","og_description":"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!","og_url":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-06-30T12:25:22+00:00","article_modified_time":"2025-07-02T11:06:48+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to install Postal on Ubuntu 24","datePublished":"2025-06-30T12:25:22+00:00","dateModified":"2025-07-02T11:06:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/"},"wordCount":725,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["postal on ubuntu 24","server management services","Ubuntu 24.04"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/","url":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/","name":"Install Postal on Ubuntu 24 \u2013 Step-by-Step Setup Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-06-30T12:25:22+00:00","dateModified":"2025-07-02T11:06:48+00:00","description":"Install Postal on Ubuntu 24 with this easy guide. Get expert help to install Postal on Ubuntu 24 \u2013 contact us for server support!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/postal-on-ubuntu-24\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Postal on Ubuntu 24"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15202","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15202"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15202\/revisions"}],"predecessor-version":[{"id":15204,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15202\/revisions\/15204"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15202"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15202"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15202"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}