{"id":754,"date":"2018-04-19T07:43:00","date_gmt":"2018-04-19T05:43:00","guid":{"rendered":"https:\/\/schaal-it.dev\/en\/?p=754"},"modified":"2023-10-23T07:46:34","modified_gmt":"2023-10-23T05:46:34","slug":"ispconfig-automail","status":"publish","type":"post","link":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/","title":{"rendered":"ISPConfig Automail"},"content":{"rendered":"\n<p>With our plugin <strong>ISPConfig Automail<\/strong> you can automatically configure email clients like Thunderbird or Outlook.<\/p>\n\n\n\n<p>If you use one or more mail servers for the domains makes no difference. Just define the appropriate data such as host name and port for each mail server.&nbsp;everything else is done through a small web page that provides an <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Mozilla\/Thunderbird\/Autoconfiguration\" target=\"_blank\" rel=\"noreferrer noopener\">Autoconfig service<\/a> (Thunderbird) or <a href=\"https:\/\/technet.microsoft.com\/en-us\/library\/bb124251(v=exchg.160).aspx\" target=\"_blank\" rel=\"noreferrer noopener\">Autodiscover service<\/a> (Outlook).<\/p>\n\n\n\n<p>Autoconfig and Autodiscover request XML files via different addresses, to configure the email client according to your specifications.<\/p>\n\n\n\n<p>To use the ISPConfig Automail, you only need a current version of ISPConfig and a website (Apache or nginx).<\/p>\n\n\n\n<p>The plugin consists of two parts<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>the interface plugin for ISPConfig to manage the settings<\/li>\n\n\n\n<li>a script to generate the relevant XML documents under the respective domain<\/li>\n<\/ul>\n\n\n\n<p>In this example example.com is your domain, over which the automatic setup of the mail clients will run. You are free to choose this domain. The domain client.com is the domain that queries example.com for the setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install ISPConfig Automail<\/h2>\n\n\n\n<p>cd \/tmp wget https:\/\/download.schaal-it.net\/ispconfig-automail.tgz tar xfz ispconfig-automail.tgz cd automail php install.php<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Activate the plugin<\/h2>\n\n\n\n<p>Log in to ISPConfig as admin, go to <strong>System<\/strong> \/ <strong>CP User<\/strong> and activate the module automail for the user admin. After you have logged off and on again, the module is available for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remote-User<\/h2>\n\n\n\n<p>Create a remote user who can use the &#8220;automail functions&#8221;. If you have a multi-server setup, you may need to allow remote access.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure the plugin<\/h2>\n\n\n\n<p>Under <strong>Provider-ID<\/strong> you enter a unique ID that identifies your setup. You can use the domain name of your server.<\/p>\n\n\n\n<p>The two <strong>Hostnames<\/strong> are the names by which mails are retrieved (IMAP\/POP3) and sent (SMTP). If you run everything on the same server, you must enter the same name in both fields.<\/p>\n\n\n\n<p>For <strong>Ports<\/strong>, enter the ports that should be used for your mail server.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"705\" height=\"406\" src=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png\" alt=\"\" class=\"wp-image-755\" srcset=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png 705w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1-300x173.png 300w\" sizes=\"(max-width: 705px) 100vw, 705px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create the required DNS records<\/h2>\n\n\n\n<p>You need an A-record for autoconfig.example.com and autodiscover.example.com pointing to your web server. If you use IPv6, you should also create AAAA records.<\/p>\n\n\n\n<p>Create two entries in each customer domain. A simple CNAME is enough for autoconfig:autoconfig.client.com. CNAME autoconfig.example.com.<\/p>\n\n\n\n<p>For autodiscover an SRV record is recommended. This will give you a certificate warning during setup, but it is the easiest way to set up any number of customer domains:_autodiscover._tcp.client.com. SRV 0 0 443 autodiscover.example.com.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Create the website in ISPConfig<\/h2>\n\n\n\n<p>Now you have to create the website autoconfig.example.com with PHP support and without auto subdomain in ISPConfig. You should also secure this site using SSL. This is not required for autoconfig, but will be needed later for autodiscover. You can easily use Let&#8217;s Encrypt<\/p>\n\n\n\n<p>You have to set the directives for Apache or nginx accordingly:<\/p>\n\n\n\n<p><strong>Apache<\/strong><\/p>\n\n\n\n<p><code>ServerAlias autoconfig.*<\/code><\/p>\n\n\n\n<p><strong>nginx<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>location ^~ \/config\\.php { deny all; } \n\nlocation \/ { \n\nrewrite autodiscover\\.xml$ \/index.php last; \n\nrewrite Autodiscover\\.xml$ \/index.php last; \n\nrewrite config-v1\\.1\\.xml$ \/index.php last; \n\n} \n\nserver_name autoconfig.*;<\/code><\/pre>\n\n\n\n<p>With alias or server_name this domain can be used later by any customer or email domain.<\/p>\n\n\n\n<p>Create the <strong>alias domain<\/strong> autodiscover.example.com and point it to autoconfig.example.com. You don&#8217;t need any redirects, the important thing is that the domain has an SSL certificate. A-Records in DNS are enough to point to your web server so you can use Let&#8217;s Encrypt.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Upload the script to the webseite<\/h2>\n\n\n\n<p>Upload the files from the <strong>website<\/strong> directory from the archive to the newly created website and adjust the data in config.php. Rename the htaccess to .htaccess. If you use nginx, you can also delete the file directly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Test<\/h2>\n\n\n\n<p>You can easily test Autoconfig via wget:wget http:\/\/autoconfig.client.com\/config-v1.1.xml?emailaddress=test@client.com -O test<\/p>\n\n\n\n<p>In the file test you will find the result. The email address must exist of course.<\/p>\n\n\n\n<p>For Autodiscover there is the <a href=\"https:\/\/testconnectivity.microsoft.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Remote Connectivity Analyzer<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>With our plugin ISPConfig Automail you can automatically configure email clients like Thunderbird or Outlook. If you use one or more mail servers for the&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-754","post","type-post","status-publish","format-standard","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>ISPConfig Automail<\/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:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ISPConfig Automail\" \/>\n<meta property=\"og:description\" content=\"With our plugin ISPConfig Automail you can automatically configure email clients like Thunderbird or Outlook. If you use one or more mail servers for the&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/\" \/>\n<meta property=\"og:site_name\" content=\"schaal @it UG\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-19T05:43:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-23T05:46:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\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:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/person\\\/97112bea38186367c303945fe91f1101\"},\"headline\":\"ISPConfig Automail\",\"datePublished\":\"2018-04-19T05:43:00+00:00\",\"dateModified\":\"2023-10-23T05:46:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/\"},\"wordCount\":633,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/automail_setup_en-705x406-1.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/\",\"name\":\"ISPConfig Automail\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/automail_setup_en-705x406-1.png\",\"datePublished\":\"2018-04-19T05:43:00+00:00\",\"dateModified\":\"2023-10-23T05:46:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#primaryimage\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/automail_setup_en-705x406-1.png\",\"contentUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/automail_setup_en-705x406-1.png\",\"width\":705,\"height\":406},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/ispconfig-automail\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ISPConfig Automail\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\",\"name\":\"schaal @it UG\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\",\"name\":\"schaal@it UG\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/cropped-schaal_it_logo2_2_-_250px.png\",\"contentUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/cropped-schaal_it_logo2_2_-_250px.png\",\"width\":250,\"height\":42,\"caption\":\"schaal@it UG\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/person\\\/97112bea38186367c303945fe91f1101\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/schaal-it.dev\"],\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"ISPConfig Automail","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:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/","og_locale":"en_US","og_type":"article","og_title":"ISPConfig Automail","og_description":"With our plugin ISPConfig Automail you can automatically configure email clients like Thunderbird or Outlook. If you use one or more mail servers for the&hellip;","og_url":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/","og_site_name":"schaal @it UG","article_published_time":"2018-04-19T05:43:00+00:00","article_modified_time":"2023-10-23T05:46:34+00:00","og_image":[{"url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#article","isPartOf":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/"},"author":{"name":"admin","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/person\/97112bea38186367c303945fe91f1101"},"headline":"ISPConfig Automail","datePublished":"2018-04-19T05:43:00+00:00","dateModified":"2023-10-23T05:46:34+00:00","mainEntityOfPage":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/"},"wordCount":633,"commentCount":0,"publisher":{"@id":"https:\/\/schaal-it.dev\/en\/#organization"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#primaryimage"},"thumbnailUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/","url":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/","name":"ISPConfig Automail","isPartOf":{"@id":"https:\/\/schaal-it.dev\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#primaryimage"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#primaryimage"},"thumbnailUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png","datePublished":"2018-04-19T05:43:00+00:00","dateModified":"2023-10-23T05:46:34+00:00","breadcrumb":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#primaryimage","url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png","contentUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/automail_setup_en-705x406-1.png","width":705,"height":406},{"@type":"BreadcrumbList","@id":"https:\/\/schaal-it.dev\/en\/blog\/ispconfig-automail\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/schaal-it.dev\/en\/"},{"@type":"ListItem","position":2,"name":"ISPConfig Automail"}]},{"@type":"WebSite","@id":"https:\/\/schaal-it.dev\/en\/#website","url":"https:\/\/schaal-it.dev\/en\/","name":"schaal @it UG","description":"","publisher":{"@id":"https:\/\/schaal-it.dev\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/schaal-it.dev\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/schaal-it.dev\/en\/#organization","name":"schaal@it UG","url":"https:\/\/schaal-it.dev\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/logo\/image\/","url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/cropped-schaal_it_logo2_2_-_250px.png","contentUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/cropped-schaal_it_logo2_2_-_250px.png","width":250,"height":42,"caption":"schaal@it UG"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/person\/97112bea38186367c303945fe91f1101","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/schaal-it.dev"],"url":"https:\/\/schaal-it.dev\/en\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/754","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/comments?post=754"}],"version-history":[{"count":1,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/754\/revisions"}],"predecessor-version":[{"id":756,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/754\/revisions\/756"}],"wp:attachment":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/media?parent=754"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/categories?post=754"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/tags?post=754"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}