{"id":821,"date":"2014-10-03T07:24:52","date_gmt":"2014-10-03T05:24:52","guid":{"rendered":"http:\/\/www.robinglauser.ch\/blog\/?p=821"},"modified":"2015-03-06T20:29:15","modified_gmt":"2015-03-06T18:29:15","slug":"create-a-development-mail-server-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/","title":{"rendered":"Create a development mail server on Ubuntu 14.04"},"content":{"rendered":"<p>To get started install the postfix package with apt-get.<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">sudo apt-get install postfix\r\n<\/pre>\n<p>After the installation the package starts the configuration process.<\/p>\n<p><a href=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-830 size-full\" src=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png\" alt=\"Bildschirmfoto2\" width=\"760\" height=\"499\" srcset=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png 760w, https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2-400x262.png 400w\" sizes=\"auto, (max-width: 760px) 100vw, 760px\" \/><\/a><\/p>\n<p>First select Internet-Site and click okay by hitting the tab key.<\/p>\n<p><a href=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-831 size-full\" src=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto.png\" alt=\"Bildschirmfoto\" width=\"760\" height=\"499\" srcset=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto.png 760w, https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto-400x262.png 400w\" sizes=\"auto, (max-width: 760px) 100vw, 760px\" \/><\/a><\/p>\n<p>After that you can select your hostname, from which your mails can be sent. With this the installation should be finished.<\/p>\n<p>To test this create a new PHP file with the following content (Example from <a href=\"http:\/\/php.net\/manual\/en\/function.mail.php\" target=\"_blank\">here<\/a>):<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">&lt;?php\r\n\r\n$to= 'yourmailadress@yourhost.tld';\r\n$subject = 'Testing';\r\n$message = 'Hello';\r\n$header = 'From: dev@yourselectedhostname' . &quot;\\r\\n&quot; .\r\n    'Reply-To: dev@yourselectedhostname' . &quot;\\r\\n&quot; .\r\n    'X-Mailer: PHP\/' . phpversion();\r\n\r\nmail($to, $subject, $message, $header);\r\n<\/pre>\n<p>You can now run this file by opening a shell in the folder where you created the file and run the command &#8220;php file.php&#8221;.<\/p>\n<p>Now you should get the mail in your mailbox. Pretty awesome right?<\/p>\n<p><a href=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/2014-10-02-22_24_14-Testing-robin.glauser@gmail.com-Gmail.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-833 size-full\" src=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/2014-10-02-22_24_14-Testing-robin.glauser@gmail.com-Gmail.png\" alt=\"2014-10-02 22_24_14-Testing - robin.glauser@gmail.com - Gmail\" width=\"474\" height=\"142\" srcset=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/2014-10-02-22_24_14-Testing-robin.glauser@gmail.com-Gmail.png 474w, https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/2014-10-02-22_24_14-Testing-robin.glauser@gmail.com-Gmail-400x119.png 400w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>As always, if you have any questions or if something breaks or doesn&#8217;t work, feel free to leave a comment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">To get started install the postfix package with apt-get. sudo apt-get install postfix After the installation the package starts the configuration process. First select Internet-Site and click okay by hitting the tab key. After that you can select your hostname, from which your mails can be sent. With this the installation should be finished. To test this create a new &#8230; <a class=\"read-more\" href=\"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-821","post","type-post","status-publish","format-standard","hentry","category-fresh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Create a development mail server on Ubuntu 14.04 - Robin Glauser<\/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:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a development mail server on Ubuntu 14.04 - Robin Glauser\" \/>\n<meta property=\"og:description\" content=\"To get started install the postfix package with apt-get. sudo apt-get install postfix After the installation the package starts the configuration process. First select Internet-Site and click okay by hitting the tab key. After that you can select your hostname, from which your mails can be sent. With this the installation should be finished. To test this create a new ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Robin Glauser\" \/>\n<meta property=\"article:published_time\" content=\"2014-10-03T05:24:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-03-06T18:29:15+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png\" \/>\n<meta name=\"author\" content=\"Robin Glauser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:site\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Robin Glauser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/\"},\"author\":{\"name\":\"Robin Glauser\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"headline\":\"Create a development mail server on Ubuntu 14.04\",\"datePublished\":\"2014-10-03T05:24:52+00:00\",\"dateModified\":\"2015-03-06T18:29:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/\"},\"wordCount\":176,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"image\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/Bildschirmfoto2.png\",\"articleSection\":[\"Fresh\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/\",\"name\":\"Create a development mail server on Ubuntu 14.04 - Robin Glauser\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/Bildschirmfoto2.png\",\"datePublished\":\"2014-10-03T05:24:52+00:00\",\"dateModified\":\"2015-03-06T18:29:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/Bildschirmfoto2.png\",\"contentUrl\":\"http:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/10\\\/Bildschirmfoto2.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2014\\\/10\\\/03\\\/create-a-development-mail-server-on-ubuntu-14-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create a development mail server on Ubuntu 14.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/\",\"name\":\"Robin Glauser\",\"description\":\"My Blog about Development, Design and my random thoughts.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\",\"name\":\"Robin Glauser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"contentUrl\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"width\":800,\"height\":530,\"caption\":\"Robin Glauser\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\"},\"description\":\"I'm a web developer.\",\"sameAs\":[\"https:\\\/\\\/www.robinglauser.ch\",\"https:\\\/\\\/www.instagram.com\\\/robinglauser\\\/\",\"https:\\\/\\\/x.com\\\/robinglauser\"],\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/author\\\/robin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create a development mail server on Ubuntu 14.04 - Robin Glauser","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.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"Create a development mail server on Ubuntu 14.04 - Robin Glauser","og_description":"To get started install the postfix package with apt-get. sudo apt-get install postfix After the installation the package starts the configuration process. First select Internet-Site and click okay by hitting the tab key. After that you can select your hostname, from which your mails can be sent. With this the installation should be finished. To test this create a new ... Read More","og_url":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/","og_site_name":"Robin Glauser","article_published_time":"2014-10-03T05:24:52+00:00","article_modified_time":"2015-03-06T18:29:15+00:00","og_image":[{"url":"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png","type":"","width":"","height":""}],"author":"Robin Glauser","twitter_card":"summary_large_image","twitter_creator":"@robinglauser","twitter_site":"@robinglauser","twitter_misc":{"Written by":"Robin Glauser","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/"},"author":{"name":"Robin Glauser","@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"headline":"Create a development mail server on Ubuntu 14.04","datePublished":"2014-10-03T05:24:52+00:00","dateModified":"2015-03-06T18:29:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/"},"wordCount":176,"commentCount":1,"publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png","articleSection":["Fresh"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/","url":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/","name":"Create a development mail server on Ubuntu 14.04 - Robin Glauser","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png","datePublished":"2014-10-03T05:24:52+00:00","dateModified":"2015-03-06T18:29:15+00:00","breadcrumb":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#primaryimage","url":"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png","contentUrl":"http:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2014\/10\/Bildschirmfoto2.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.robinglauser.ch\/blog\/2014\/10\/03\/create-a-development-mail-server-on-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.robinglauser.ch\/blog\/"},{"@type":"ListItem","position":2,"name":"Create a development mail server on Ubuntu 14.04"}]},{"@type":"WebSite","@id":"https:\/\/www.robinglauser.ch\/blog\/#website","url":"https:\/\/www.robinglauser.ch\/blog\/","name":"Robin Glauser","description":"My Blog about Development, Design and my random thoughts.","publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19","name":"Robin Glauser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","width":800,"height":530,"caption":"Robin Glauser"},"logo":{"@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg"},"description":"I'm a web developer.","sameAs":["https:\/\/www.robinglauser.ch","https:\/\/www.instagram.com\/robinglauser\/","https:\/\/x.com\/robinglauser"],"url":"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/821","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/comments?post=821"}],"version-history":[{"count":8,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/821\/revisions"}],"predecessor-version":[{"id":971,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/821\/revisions\/971"}],"wp:attachment":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media?parent=821"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/categories?post=821"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/tags?post=821"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}