diff options
| author | 2026-05-11 15:37:11 -0600 | |
|---|---|---|
| committer | 2026-05-11 15:37:11 -0600 | |
| commit | d84b176fb9f4745d5c189e37abd72b2dbcfb3ed9 (patch) | |
| tree | 33fc0c45d828367d19892e62d9f9e9174f6841bc /static | |
| parent | update wkd (diff) | |
add mail config maybe
Diffstat (limited to 'static')
| -rw-r--r-- | static/.well-known/autoconfig/mail/config-v1.1.xml | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/static/.well-known/autoconfig/mail/config-v1.1.xml b/static/.well-known/autoconfig/mail/config-v1.1.xml new file mode 100644 index 0000000..cb2b57b --- /dev/null +++ b/static/.well-known/autoconfig/mail/config-v1.1.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<clientConfig version="1.1"> + <emailProvider id="steeri.ng"> + <domain>steeri.ng</domain> + <domain>steering.dn42</domain> + <domain>st33ring.dn42</domain> + + <displayName>steering</displayName> + <displayShortName>steering</displayShortName> + + <!-- type= + "imap": IMAP + "pop3": POP3 + --> + <incomingServer type="imap"> + <hostname>mail.steeri.ng</hostname> + <port>993</port> + <!-- "plain": no encryption + "SSL": SSL 3 or TLS 1 on SSL-specific port + "STARTTLS": on normal plain port and mandatory upgrade to TLS via STARTTLS + --> + <socketType>SSL</socketType> + <username>%EMAILLOCALPART%</username> + <!-- Authentication methods: + "password-cleartext", + Send password in the clear + (dangerous, if SSL isn't used either). + AUTH PLAIN, LOGIN or protocol-native login. + "password-encrypted", + A secure encrypted password mechanism. + Can be CRAM-MD5 or DIGEST-MD5. Not NTLM. + "NTLM": + Use NTLM (or NTLMv2 or successors), + the Windows login mechanism. + "GSSAPI": + Use Kerberos / GSSAPI, + a single-signon mechanism used for big sites. + "client-IP-address": + The server recognizes this user based on the IP address. + No authentication needed, the server will require no username nor password. + "TLS-client-cert": + On the SSL/TLS layer, the server requests a client certificate and the client sends one (possibly after letting the user select/confirm one), if available. (Not yet supported by Thunderbird) + "OAuth2": + OAuth2. Works only on specific hardcoded servers, please see below. Should be added only as second alternative. + "none": + No authentication + --> + <authentication>password-cleartext</authentication> + </incomingServer> + + <outgoingServer type="smtp"> + <hostname>mail.steeri.ng</hostname> + <port>465</port> + <socketType>SSL</socketType> <!-- see <incomingServer> --> + <username>%EMAILLOCALPART%</username> <!-- if smtp-auth --> + <!-- smtp-auth (RFC 2554, 4954) or other auth mechanism. + For values, see incoming. + Additional options here: + "SMTP-after-POP": + authenticate to incoming mail server first + before contacting the smtp server. + Compatibility note: Thunderbird 3.0 accepts only "plain", + "secure", "none", and "smtp-after-pop". + It will ignore the whole XML file, if other values are given. + --> + <authentication>password-cleartext</authentication> + <addThisServer>true</addThisServer> + <useGlobalPreferredServer>true</useGlobalPreferredServer> + </outgoingServer> +</clientConfig> |
