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>
|
||||
48
files/app/templates/autodiscover.xml
Normal file
48
files/app/templates/autodiscover.xml
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Autodiscover
|
||||
xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
|
||||
<Response
|
||||
xmlns="{{schema}}">
|
||||
<User>
|
||||
<DisplayName>{{info.name}}</DisplayName>
|
||||
</User>
|
||||
<Account>
|
||||
<AccountType>email</AccountType>
|
||||
<Action>settings</Action>
|
||||
<ServiceHome>{{info.url}}</ServiceHome>
|
||||
{%- if imap.host %}
|
||||
<Protocol>
|
||||
<Type>IMAP</Type>
|
||||
<Server>{{imap.host}}</Server>
|
||||
<Port>{{imap.port}}</Port>
|
||||
{%- if email %}
|
||||
<LoginName>{{email}}</LoginName>
|
||||
{% endif -%}
|
||||
<DomainRequired>on</DomainRequired>
|
||||
<DomainName>{{domain}}</DomainName>
|
||||
<SPA>on</SPA>
|
||||
<SSL>{{ 'on' if imap.socket in ('SSL', 'STARTTLS') else 'off' }}</SSL>
|
||||
<Encryption>{{ 'TLS' if imap.socket == 'STARTTLS' else imap.socket }}</Encryption>
|
||||
<AuthRequired>on</AuthRequired>
|
||||
</Protocol>
|
||||
{% endif -%}
|
||||
|
||||
{%- if smtp.host %}
|
||||
<Protocol>
|
||||
<Type>SMTP</Type>
|
||||
<Server>{{smtp.host}}</Server>
|
||||
<Port>{{smtp.port}}</Port>
|
||||
{%- if email %}
|
||||
<LoginName>{{email}}</LoginName>
|
||||
{% endif -%}
|
||||
<DomainRequired>on</DomainRequired>
|
||||
<DomainName>{{domain}}</DomainName>
|
||||
<SPA>on</SPA>
|
||||
<SSL>{{ 'on' if smtp.socket in ('SSL', 'STARTTLS') else 'off' }}</SSL>
|
||||
<Encryption>{{ 'TLS' if imap.socket == 'STARTTLS' else imap.socket }}</Encryption>
|
||||
<AuthRequired>on</AuthRequired>
|
||||
</Protocol>
|
||||
{% endif -%}
|
||||
</Account>
|
||||
</Response>
|
||||
</Autodiscover>
|
||||
81
files/app/templates/mobileconfig.xml
Normal file
81
files/app/templates/mobileconfig.xml
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>HasRemovalPasscode</key>
|
||||
<false/>
|
||||
<key>PayloadContent</key>
|
||||
<array>
|
||||
{% if imap.host %}
|
||||
<dict>
|
||||
<key>EmailAccountDescription</key>
|
||||
<string>{{email}}</string>
|
||||
<key>EmailAccountName</key>
|
||||
<string>{{email}}</string>
|
||||
<key>EmailAccountType</key>
|
||||
<string>{% if imap.host %}EmailTypeIMAP{% else %}EmailTypePOP{% endif %}</string>
|
||||
<key>EmailAddress</key>
|
||||
<string>{{email}}</string>
|
||||
<key>IncomingMailServerAuthentication</key>
|
||||
<string>EmailAuthPassword</string>
|
||||
<key>IncomingMailServerHostName</key>
|
||||
<string>{{imap.host}}</string>
|
||||
<key>IncomingMailServerPortNumber</key>
|
||||
<integer>{{imap.port}}</integer>
|
||||
<key>IncomingMailServerUseSSL</key>
|
||||
<{{ 'true' if imap.socket in ['SSL', 'STARTTLS'] else 'false' }}/>
|
||||
<key>IncomingMailServerUsername</key>
|
||||
<string>{{email}}</string>
|
||||
<key>OutgoingPasswordSameAsIncomingPassword</key>
|
||||
<true/>
|
||||
<key>OutgoingMailServerAuthentication</key>
|
||||
<string>EmailAuthPassword</string>
|
||||
<key>OutgoingMailServerHostName</key>
|
||||
<string>{{smtp.host}}</string>
|
||||
<key>OutgoingMailServerPortNumber</key>
|
||||
<integer>{{smtp.port}}</integer>
|
||||
<key>OutgoingMailServerUseSSL</key>
|
||||
<{{ 'true' if smtp.socket in ['SSL', 'STARTTLS'] else 'false' }}/>
|
||||
<key>OutgoingMailServerUsername</key>
|
||||
<string>{{email}}</string>
|
||||
<key>SMIMEEnabled</key>
|
||||
<false/>
|
||||
<key>SMIMEEnablePerMessageSwitch</key>
|
||||
<false/>
|
||||
<key>SMIMEEnableEncryptionPerMessageSwitch</key>
|
||||
<false/>
|
||||
<key>disableMailRecentsSyncing</key>
|
||||
<false/>
|
||||
<key>PayloadDescription</key>
|
||||
<string>{{info.name}} Email</string>
|
||||
<key>PayloadDisplayName</key>
|
||||
<string>{{email}}</string>
|
||||
<key>PayloadIdentifier</key>
|
||||
<string>{{mobile.identifier}}.com.apple.mail.managed.{{mobile.mail.uuid}}</string>
|
||||
<key>PayloadType</key>
|
||||
<string>com.apple.mail.managed</string>
|
||||
<key>PayloadUUID</key>
|
||||
<string>{{mobile.mail.uuid}}</string>
|
||||
<key>PayloadVersion</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
{% endif %}
|
||||
</array>
|
||||
<key>PayloadDescription</key>
|
||||
<string>{{info.name}}</string>
|
||||
<key>PayloadDisplayName</key>
|
||||
<string>{{email}}</string>
|
||||
<key>PayloadIdentifier</key>
|
||||
<string>{{mobile.identifier}}</string>
|
||||
<key>PayloadOrganization</key>
|
||||
<string>{{domain}}</string>
|
||||
<key>PayloadRemovalDisallowed</key>
|
||||
<false/>
|
||||
<key>PayloadType</key>
|
||||
<string>Configuration</string>
|
||||
<key>PayloadUUID</key>
|
||||
<string>{{mobile.uuid}}</string>
|
||||
<key>PayloadVersion</key>
|
||||
<integer>2</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
Loading…
Add table
Add a link
Reference in a new issue