diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-10-17 09:59:46 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-10-17 09:59:46 +0200 |
commit | 4cbd53b6271f3ee616fc383bd03471e370b5a872 (patch) | |
tree | 5a936d0161154304499ddb6e7e998f346ff7fd97 /.well-known/autoconfig | |
parent | f53edd99a02035e244de3833ecfe427bb897e514 (diff) | |
download | site-4cbd53b6271f3ee616fc383bd03471e370b5a872.tar.gz site-4cbd53b6271f3ee616fc383bd03471e370b5a872.zip |
ajout de trucs importants
Diffstat (limited to '.well-known/autoconfig')
-rw-r--r-- | .well-known/autoconfig/mail/config-v1.1.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.well-known/autoconfig/mail/config-v1.1.xml b/.well-known/autoconfig/mail/config-v1.1.xml new file mode 100644 index 0000000..6674526 --- /dev/null +++ b/.well-known/autoconfig/mail/config-v1.1.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<clientConfig version="1.1"> + <emailProvider id="deuxfleurs.fr"> + <domain>deuxfleurs.fr</domain> + <displayName>Deuxfleurs Mail</displayName> + <displayShortName>Deuxfleurs</displayShortName> + <incomingServer type="imap"> + <hostname>imap.deuxfleurs.fr</hostname> + <port>993</port> + <socketType>SSL</socketType> + <authentication>plain</authentication> + <username>%EMAILADDRESS%</username> + </incomingServer> + <outgoingServer type="smtp"> + <hostname>smtp.deuxfleurs.fr</hostname> + <port>465</port> + <socketType>SSL</socketType> + <authentication>plain</authentication> + <username>%EMAILADDRESS%</username> + </outgoingServer> + <documentation url="https://deuxfleurs.fr/Guide/Email.html"> + <descr lang="fr">Documentation générique pour la configuration</descr> + <descr lang="en">Generic settings page</descr> + </documentation> + </emailProvider> +</clientConfig> + |