mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
- Audit: finalize MainCfDiagnosis API - Doc: document Diagnosis models - Doc: remove hacky imports and replace them with autodoc mock imports - Views: add `email_` prefix to email server templates - Apache: delete unnecessary directives (robots tag, cookie header etc.)
23 lines
754 B
XML
23 lines
754 B
XML
<?xml version="1.0"?>
|
|
<clientConfig version="1.1">
|
|
<emailProvider id="{{ host }}">
|
|
<domain>{{ host }}</domain>
|
|
<displayName>FreedomBox Mail</displayName>
|
|
<displayShortName>FBXMail</displayShortName>
|
|
<incomingServer type="imap">
|
|
<hostname>{{ host }}</hostname>
|
|
<port>993</port>
|
|
<socketType>SSL</socketType>
|
|
<username>%EMAILLOCALPART%</username>
|
|
<authentication>password-cleartext</authentication>
|
|
</incomingServer>
|
|
<outgoingServer type="smtp">
|
|
<hostname>{{ host }}</hostname>
|
|
<port>465</port>
|
|
<socketType>SSL</socketType>
|
|
<username>%EMAILLOCALPART%</username>
|
|
<authentication>password-cleartext</authentication>
|
|
</outgoingServer>
|
|
</emailProvider>
|
|
</clientConfig>
|