{"id":157,"date":"2011-11-24T10:29:00","date_gmt":"2011-11-24T10:29:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=157"},"modified":"2026-05-08T17:54:39","modified_gmt":"2026-05-08T12:24:39","slug":"telnet-to-secured-port-or-ssl-port-465-or-933-or-995","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/","title":{"rendered":"Telnet to secured port or SSL port 465 or 933 or 995"},"content":{"rendered":"<h3>Introduction<\/h3>\n\n\n<p>Secure email communication is essential for protecting sensitive data and ensuring reliable mail delivery. Mail servers commonly use SSL\/TLS encryption on specific ports to provide secure connections for SMTP, IMAP, and POP3 services. When users experience issues sending or receiving emails, one of the first troubleshooting steps is to verify whether these SSL ports are open and functioning properly.<\/p>\n\n\n\n<p>The <code>openssl s_client<\/code> command is a powerful and simple tool that allows system administrators and hosting users to test secure mail ports directly from the command line. By using this command, you can confirm whether the mail server is responding correctly, whether SSL certificates are properly installed, and whether firewall or service-related issues are blocking the connection.<\/p>\n\n\n\n<p>In this guide, we will learn how to check the status of commonly used secure mail ports \u2014 <code>465<\/code> (SMTP SSL), <code>993<\/code> (IMAP SSL), and <code>995<\/code> (POP3 SSL) \u2014 using OpenSSL commands.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why SSL Ports Matter<\/h3>\n\n\n\n<p>Secure mail ports encrypt the connection between the email client and the mail server. This prevents unauthorized access to sensitive information such as usernames, passwords, and email content.<\/p>\n\n\n\n<p>Common SSL\/TLS mail ports include:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Service<\/th><th>Port<\/th><th>Purpose<\/th><\/tr><\/thead><tbody><tr><td>SMTP SSL<\/td><td>465<\/td><td>Sending emails securely<\/td><\/tr><tr><td>IMAP SSL<\/td><td>993<\/td><td>Receiving and managing emails securely<\/td><\/tr><tr><td>POP3 SSL<\/td><td>995<\/td><td>Downloading emails securely<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If any of these ports are blocked, closed, or misconfigured, users may experience connection failures in email applications like Outlook, Thunderbird, or mobile mail apps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Commands to Check SSL Ports<\/h3>\n\n\n\n<p>Use the following commands in your terminal or SSH session to verify whether the SSL ports are working correctly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Check SMTP SSL Port (465)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>openssl s_client -quiet -connect mail.thespirals.com:465<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Purpose<\/h3>\n\n\n\n<p>This command checks whether the SMTP SSL service is active and accepting secure connections on port <code>465<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Successful Connection<\/h3>\n\n\n\n<p>If the port is working, you will see output similar to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CONNECTED(00000003)depth=2 ...220 mail.thespirals.com ESMTP<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Failed Connection<\/h3>\n\n\n\n<p>If the port is blocked or unavailable, you may see errors such as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Connection refusedconnect:errno=111<\/code><\/pre>\n\n\n\n<p>or<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Connection timed out<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Check IMAP SSL Port (993)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>openssl s_client -quiet -connect mail.thespirals.com:993<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Purpose<\/h3>\n\n\n\n<p>This command verifies whether the IMAP secure service is running properly on port <code>993<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Successful Response Example<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>CONNECTED(00000003)* OK IMAP4 ready<\/code><\/pre>\n\n\n\n<p>This confirms that the IMAP SSL service is active and functioning.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Check POP3 SSL Port (995)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>openssl s_client -quiet -connect mail.thespirals.com:995<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Purpose<\/h3>\n\n\n\n<p>This command tests the POP3 secure mail service on port <code>995<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Successful Response Example<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>CONNECTED(00000003)+OK POP3 server ready<\/code><\/pre>\n\n\n\n<p>This indicates that the POP3 SSL port is working correctly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Additional Troubleshooting Tips<\/h3>\n\n\n\n<p>If the ports are not working properly, try the following:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Check Firewall Rules<\/h3>\n\n\n\n<p>Ensure the required ports are open in the server firewall.<\/p>\n\n\n\n<p>Example for CSF firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>465,993,995<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. Verify Mail Services<\/h3>\n\n\n\n<p>Check whether the mail services are running.<\/p>\n\n\n\n<p>For Exim:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>service exim status<\/code><\/pre>\n\n\n\n<p>For Dovecot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>service dovecot status<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. Restart Mail Services<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>service exim restartservice dovecot restart<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4. Confirm DNS Records<\/h3>\n\n\n\n<p>Make sure the mail hostname points to the correct server IP address.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mail.thespirals.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Benefits of Using OpenSSL for Port Testing<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simple and fast troubleshooting<\/li>\n\n\n\n<li>Verifies SSL certificate installation<\/li>\n\n\n\n<li>Confirms secure connectivity<\/li>\n\n\n\n<li>Helps diagnose firewall and service issues<\/li>\n\n\n\n<li>Works on Linux, macOS, and Windows (via OpenSSL tools)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Testing SSL ports using the <code>openssl s_client<\/code> command is an effective way to verify whether secure mail services are functioning correctly. By checking ports <code>465<\/code>, <code>993<\/code>, and <code>995<\/code>, administrators can quickly identify connectivity problems, SSL issues, or firewall restrictions affecting email services.<\/p>\n\n\n\n<p>Regularly testing mail server ports helps ensure secure and uninterrupted email communication for users and clients.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Secure email communication is essential for protecting sensitive data and ensuring reliable mail delivery. Mail servers commonly use SSL\/TLS encryption on specific ports to provide secure connections for SMTP, IMAP, and POP3 services. When users experience issues sending or receiving emails, one of the first troubleshooting steps is to&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Telnet to secured port or SSL port 465 or 933 or 995<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-157","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Secure email communication is essential for protecting sensitive data and ensuring reliable mail delivery. Mail servers commonly use SSL\/TLS encryption on specific ports to provide secure connections for SMTP, IMAP, and POP3 services. When users experience issues sending or receiving emails, one of the first troubleshooting steps is to&hellip; Continue Reading Telnet to secured port or SSL port 465 or 933 or 995\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2011-11-24T10:29:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-08T12:24:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Telnet to secured port or SSL port 465 or 933 or 995\",\"datePublished\":\"2011-11-24T10:29:00+00:00\",\"dateModified\":\"2026-05-08T12:24:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/\"},\"wordCount\":519,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2011-11-24T10:29:00+00:00\",\"dateModified\":\"2026-05-08T12:24:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Telnet to secured port or SSL port 465 or 933 or 995\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Secure email communication is essential for protecting sensitive data and ensuring reliable mail delivery. Mail servers commonly use SSL\/TLS encryption on specific ports to provide secure connections for SMTP, IMAP, and POP3 services. When users experience issues sending or receiving emails, one of the first troubleshooting steps is to&hellip; Continue Reading Telnet to secured port or SSL port 465 or 933 or 995","og_url":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2011-11-24T10:29:00+00:00","article_modified_time":"2026-05-08T12:24:39+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Telnet to secured port or SSL port 465 or 933 or 995","datePublished":"2011-11-24T10:29:00+00:00","dateModified":"2026-05-08T12:24:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/"},"wordCount":519,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/","url":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2011-11-24T10:29:00+00:00","dateModified":"2026-05-08T12:24:39+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/telnet-to-secured-port-or-ssl-port-465-or-933-or-995\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Telnet to secured port or SSL port 465 or 933 or 995"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2x","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/157","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=157"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/157\/revisions"}],"predecessor-version":[{"id":10157,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/157\/revisions\/10157"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=157"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=157"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=157"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}