Update config, add nginx config and README
This commit is contained in:
parent
d0e59d0ab7
commit
bccd1038ce
3 changed files with 17 additions and 3 deletions
4
README.md
Normal file
4
README.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Thunderbird autoconfiguration
|
||||||
|
<https://wiki.mozilla.org/Thunderbird:Autoconfiguration>
|
||||||
|
|
||||||
|
Serve to <https://autoconfig.edgarpierre.fr>.
|
10
nginx/autoconfig.conf
Normal file
10
nginx/autoconfig.conf
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
server_name autoconfig.edgarpierre.fr;
|
||||||
|
include conf/00-hsts.conf;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /data/srv/thunderbird_autoconfig/srv/;
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,7 +12,7 @@
|
||||||
-->
|
-->
|
||||||
<incomingServer type="imap">
|
<incomingServer type="imap">
|
||||||
<hostname>imap.edgarpierre.fr</hostname>
|
<hostname>imap.edgarpierre.fr</hostname>
|
||||||
<port>143</port>
|
<port>993</port>
|
||||||
<!-- "plain": no encryption
|
<!-- "plain": no encryption
|
||||||
"SSL": SSL 3 or TLS 1 on SSL-specific port
|
"SSL": SSL 3 or TLS 1 on SSL-specific port
|
||||||
"STARTTLS": on normal plain port and mandatory upgrade to TLS via STARTTLS
|
"STARTTLS": on normal plain port and mandatory upgrade to TLS via STARTTLS
|
||||||
|
@ -48,8 +48,8 @@
|
||||||
|
|
||||||
<outgoingServer type="smtp">
|
<outgoingServer type="smtp">
|
||||||
<hostname>smtp.edgarpierre.fr</hostname>
|
<hostname>smtp.edgarpierre.fr</hostname>
|
||||||
<port>587</port>
|
<port>465</port>
|
||||||
<socketType>STARTTLS</socketType> <!-- see <incomingServer> -->
|
<socketType>SSL</socketType> <!-- see <incomingServer> -->
|
||||||
<username>%EMAILLOCALPART%</username> <!-- if smtp-auth -->
|
<username>%EMAILLOCALPART%</username> <!-- if smtp-auth -->
|
||||||
<!-- smtp-auth (RFC 2554, 4954) or other auth mechanism.
|
<!-- smtp-auth (RFC 2554, 4954) or other auth mechanism.
|
||||||
For values, see incoming.
|
For values, see incoming.
|
Loading…
Reference in a new issue