2017-03-02 18:23:23 +08:00
< ? php
2017-05-17 01:20:58 +08:00
require_once 'inc/vars.inc.php' ;
if ( empty ( $mailcow_hostname )) {
exit ();
}
header ( 'Content-Type: application/xml' );
2017-03-02 18:23:23 +08:00
?>
2017-05-17 01:20:58 +08:00
< ? = '<?xml version="1.0"?>' ; ?>
2017-03-02 18:23:23 +08:00
< clientConfig version = " 1.1 " >
2017-05-17 01:20:58 +08:00
< emailProvider id = " <?= $mailcow_hostname ; ?> " >
2017-03-22 20:35:49 +08:00
< domain >% EMAILDOMAIN %</ domain >
2017-03-02 18:23:23 +08:00
< displayName > A mailcow mail server </ displayName >
< displayShortName > mail server </ displayShortName >
< incomingServer type = " imap " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 993 </ port >
< socketType > SSL </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ incomingServer >
< incomingServer type = " imap " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 143 </ port >
< socketType > STARTTLS </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ incomingServer >
< incomingServer type = " pop3 " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 995 </ port >
< socketType > SSL </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ incomingServer >
< incomingServer type = " pop3 " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 110 </ port >
< socketType > STARTTLS </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ incomingServer >
< outgoingServer type = " smtp " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 465 </ port >
< socketType > SSL </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ outgoingServer >
< outgoingServer type = " smtp " >
2017-05-17 01:20:58 +08:00
< hostname >< ? = $mailcow_hostname ; ?> </hostname>
2017-03-02 18:23:23 +08:00
< port > 587 </ port >
< socketType > STARTTLS </ socketType >
< username >% EMAILADDRESS %</ username >
< authentication > password - cleartext </ authentication >
</ outgoingServer >
2017-05-17 01:20:58 +08:00
< enable visiturl = " https://<?= $mailcow_hostname ; ?>/admin.php " >
2017-03-02 18:23:23 +08:00
< instruction > If you didn 't change the password given to you by the administrator or if you didn' t change it in a long time , please consider doing that now .</ instruction >
< instruction lang = " de " > Sollten Sie das Ihnen durch den Administrator vergebene Passwort noch nicht geändert haben , empfehlen wir dies nun zu tun . Auch ein altes Passwort sollte aus Sicherheitsgründen geändert werden .</ instruction >
</ enable >
</ emailProvider >
< webMail >
2017-05-17 01:20:58 +08:00
< loginPage url = " https://<?= $mailcow_hostname ; ?>/SOGo/ " />
2017-03-02 18:23:23 +08:00
</ webMail >
</ clientConfig >