Initial commit
This commit is contained in:
commit
530fbab51c
9 changed files with 297 additions and 0 deletions
37
files/app/templates/autoconfig.xml
Normal file
37
files/app/templates/autoconfig.xml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<clientConfig version="1.1">
|
||||
<emailProvider id="{{domain}}">
|
||||
<domain>{{domain}}</domain>
|
||||
|
||||
<displayName>{{info.name}} Email</displayName>
|
||||
<displayShortName>%EMAILLOCALPART%</displayShortName>
|
||||
|
||||
{%- if imap.host %}
|
||||
<incomingServer type="imap">
|
||||
<hostname>{{imap.host}}</hostname>
|
||||
<port>{{imap.port}}</port>
|
||||
<socketType>{{imap.socket}}</socketType>
|
||||
<authentication>password-cleartext</authentication>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
</incomingServer>
|
||||
{% endif -%}
|
||||
|
||||
{%- if smtp.host %}
|
||||
<outgoingServer type="smtp">
|
||||
<hostname>{{smtp.host}}</hostname>
|
||||
<port>{{smtp.port}}</port>
|
||||
<socketType>{{smtp.socket}}</socketType>
|
||||
<authentication>password-cleartext</authentication>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
</outgoingServer>
|
||||
{% endif -%}
|
||||
|
||||
<documentation url="{{info.url}}">
|
||||
<descr lang="en">Generic settings page</descr>
|
||||
<descr lang="fr">Paramètres généraux</descr>
|
||||
<descr lang="es">Configuraciones genéricas</descr>
|
||||
<descr lang="de">Allgemeine Beschreibung der Einstellungen</descr>
|
||||
<descr lang="ru">Страница общих настроек</descr>
|
||||
</documentation>
|
||||
</emailProvider>
|
||||
</clientConfig>
|
||||
Loading…
Add table
Add a link
Reference in a new issue