暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

var_www_autoconfig_mail_config-v1.1.j2 1.2KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <clientConfig version="1.1">
  3. <emailProvider id="{{ domain }}">
  4. <domain>{{ domain }}</domain>
  5. <displayName>{{ domain }}</displayName>
  6. <displayShortName>{{ domain }}</displayShortName>
  7. <incomingServer type="imap">
  8. <hostname>{{ mail_server_hostname }}</hostname>
  9. <port>993</port>
  10. <socketType>SSL</socketType>
  11. <authentication>password-cleartext</authentication>
  12. <username>%EMAILADDRESS%</username>
  13. </incomingServer>
  14. <incomingServer type="pop3">
  15. <hostname>{{ mail_server_hostname }}</hostname>
  16. <port>995</port>
  17. <socketType>SSL</socketType>
  18. <authentication>password-cleartext</authentication>
  19. <username>%EMAILADDRESS%</username>
  20. </incomingServer>
  21. <outgoingServer type="smtp">
  22. <hostname>{{ mail_server_hostname }}</hostname>
  23. <port>587</port>
  24. <socketType>SSL</socketType>
  25. <authentication>password-cleartext</authentication>
  26. <username>%EMAILADDRESS%</username>
  27. </outgoingServer>
  28. </emailProvider>
  29. </clientConfig>