Initial commit
This commit is contained in:
28
pages/templates/email_autoconfig.tmpl
Normal file
28
pages/templates/email_autoconfig.tmpl
Normal file
@@ -0,0 +1,28 @@
|
||||
<clientConfig version="1.1">
|
||||
<emailProvider id="{{ .Domain }}">
|
||||
<domain>{{ .Domain }}</domain>
|
||||
<displayName>{{ .DisplayName }}</displayName>
|
||||
<displayShortName>{{ .ShortDisplayName }}</displayShortName>
|
||||
<incomingServer type="imap">
|
||||
<hostname>{{ .ImapServer }}</hostname>
|
||||
<port>993</port>
|
||||
<socketType>SSL</socketType>
|
||||
<authentication>password-cleartext</authentication>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
</incomingServer>
|
||||
<incomingServer type="pop3">
|
||||
<hostname>{{ .PopServer }}</hostname>
|
||||
<port>995</port>
|
||||
<socketType>SSL</socketType>
|
||||
<authentication>password-cleartext</authentication>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
</incomingServer>
|
||||
<outgoingServer type="smtp">
|
||||
<hostname>{{ .SmtpServer }}</hostname>
|
||||
<port>587</port>
|
||||
<socketType>STARTTLS</socketType>
|
||||
<authentication>password-cleartext</authentication>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
</outgoingServer>
|
||||
</emailProvider>
|
||||
</clientConfig>
|
Reference in New Issue
Block a user