config-v1.1.xml (2049B) - raw
1 <?xml version="1.0" encoding="UTF-8"?> 2 <clientConfig version="1.1"> 3 <emailProvider id="mailbox.org"> 4 <domain>oscarbenedito.com</domain> 5 <displayName>oscarbenedito.com mailserver</displayName> 6 <displayShortName>oscarbenedito.com</displayShortName> 7 8 <incomingServer type="imap"> 9 <hostname>imap.mailbox.org</hostname> 10 <port>993</port> 11 <socketType>SSL</socketType> 12 <authentication>password-cleartext</authentication> 13 <username>%EMAILADDRESS%</username> 14 </incomingServer> 15 <incomingServer type="imap"> 16 <hostname>imap.mailbox.org</hostname> 17 <port>143</port> 18 <socketType>STARTTLS</socketType> 19 <authentication>password-cleartext</authentication> 20 <username>%EMAILADDRESS%</username> 21 </incomingServer> 22 23 <incomingServer type="pop3"> 24 <hostname>pop3.mailbox.org</hostname> 25 <port>995</port> 26 <socketType>SSL</socketType> 27 <authentication>password-cleartext</authentication> 28 <username>%EMAILADDRESS%</username> 29 </incomingServer> 30 <incomingServer type="pop3"> 31 <hostname>pop3.mailbox.org</hostname> 32 <port>110</port> 33 <socketType>STARTTLS</socketType> 34 <authentication>password-cleartext</authentication> 35 <username>%EMAILADDRESS%</username> 36 </incomingServer> 37 38 <outgoingServer type="smtp"> 39 <hostname>smtp.mailbox.org</hostname> 40 <port>465</port> 41 <socketType>SSL</socketType> 42 <authentication>password-cleartext</authentication> 43 <username>%EMAILADDRESS%</username> 44 </outgoingServer> 45 <outgoingServer type="smtp"> 46 <hostname>smtp.mailbox.org</hostname> 47 <port>587</port> 48 <socketType>STARTTLS</socketType> 49 <authentication>password-cleartext</authentication> 50 <username>%EMAILADDRESS%</username> 51 </outgoingServer> 52 53 <documentation url="http://www.mailbox.org/"> 54 <descr lang="de">FAQ und Support-Datenbank</descr> 55 <descr lang="en">Frequently Asked Questions (FAQ)</descr> 56 </documentation> 57 </emailProvider> 58 </clientConfig>