-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathautoconfig.xml
More file actions
26 lines (20 loc) · 950 Bytes
/
autoconfig.xml
File metadata and controls
26 lines (20 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="{{ .Domain }}">
<domain>{{ .Domain }}</domain>
<incomingServer type="{{ .Incoming.Type }}">
<hostname>{{ .Incoming.Host }}</hostname>
<port>{{ .Incoming.Port }}</port>
<socketType>{{ .Incoming.SSLMethod }}</socketType>
<authentication>{{ .Incoming.PasswordType }}</authentication>
<username>{{ .Incoming.Username }}</username>
</incomingServer>
<outgoingServer type="{{ .Outgoing.Type }}">
<hostname>{{ .Outgoing.Host }}</hostname>
<port>{{ .Outgoing.Port }}</port>
<socketType>{{ .Outgoing.SSLMethod }}</socketType>
<authentication>{{ .Outgoing.PasswordType }}</authentication>
<username>{{ .Outgoing.Username }}</username>
</outgoingServer>
</emailProvider>
</clientConfig>