Commit | Line | Data |
---|---|---|
3deec619 P |
1 | Source : |
2 | https://developer.mozilla.org/fr/docs/Mozilla/Thunderbird/Autoconfiguration | |
3 | ||
4 | TB fera une requête sur : | |
5 | http://autoconfig.example.com/mail/config-v1.1.xml?emailaddress=fred@example.com | |
6 | (et à terme : http://example.com/.well-known/autoconfig/mail/config-v1.1.xml) | |
7 | ||
8 | Exemple config' Apache : | |
9 | ||
10 | <VirtualHost 10.2.3.4:80> #Must be the first and only virtual host with this ip! | |
11 | DocumentRoot /var/www/autoconfig/ | |
12 | ServerName autoconfig.hoster.com | |
13 | <Directory /var/www/autoconfig> | |
14 | Order allow,deny | |
15 | allow from all | |
16 | </Directory> | |
17 | </VirtualHost> | |
18 | ||
19 | Place the configuration file at the URL /mail/config-v1.1.xml on that host. | |
20 | ||
21 | All config files must be served as Content-Type: text/xml (or application/xml), | |
22 | otherwise the file will be ignored. Also, they must use charset UTF-8 (esp. if | |
23 | there are any non-ASCII-characters). | |
24 | ||
25 | Doc pour faire le fichier de config' : | |
26 | https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration/FileFormat/HowTo | |
27 | ||
28 | Format du fichier de config' : | |
29 | https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat |