Maddy: Difference between revisions

imported>Onny
mNo edit summary
imported>Onny
Update autoconfig DNS record example
Line 154: Line 154:
</nowiki>}}
</nowiki>}}


You need DNS SRV-record called <code>_autodiscover._tcp.example.org</code> on <code>example.org</code> to get Outlook and Thunderbird working:
Further we need to add an additional DNS record to the <code>nsd</code> service to get Outlook and Thunderbird working:


<syntaxhighlight lang="console">
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
# dig SRV _autodiscover._tcp.example.org
services.nsd.zones."example.org.".data = ''
;; ANSWER SECTION:
  [...]
_autodiscover._tcp.example.org 3600 IN SRV 0 0 443 autoconfig.example.org
  _autodiscover._tcp SRV 0 0 443 autoconfig
</syntaxhighlight>
'';
</nowiki>}}


Of course autoconfig.example.org domain should point to your server running the SSL enabled web service.
Of course autoconfig.example.org domain should point to your server running the SSL enabled web service.


[[Category:Mail Server]]
[[Category:Mail Server]]