Formatting, Updated Bootstrap/Bootswatch
This commit is contained in:
@@ -1,24 +1,28 @@
|
||||
<?php
|
||||
require_once "inc/vars.inc.php";
|
||||
if (empty($mailcow_hostname)) { exit(); }
|
||||
header("Content-Type: application/xml");
|
||||
require_once 'inc/vars.inc.php';
|
||||
|
||||
if (empty($mailcow_hostname)) {
|
||||
exit();
|
||||
}
|
||||
|
||||
header('Content-Type: application/xml');
|
||||
?>
|
||||
<?='<?xml version="1.0"?>';?>
|
||||
<?= '<?xml version="1.0"?>'; ?>
|
||||
<clientConfig version="1.1">
|
||||
<emailProvider id="<?=$mailcow_hostname;?>">
|
||||
<emailProvider id="<?= $mailcow_hostname; ?>">
|
||||
<domain>%EMAILDOMAIN%</domain>
|
||||
<displayName>A mailcow mail server</displayName>
|
||||
<displayShortName>mail server</displayShortName>
|
||||
|
||||
<incomingServer type="imap">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>993</port>
|
||||
<socketType>SSL</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
<authentication>password-cleartext</authentication>
|
||||
</incomingServer>
|
||||
<incomingServer type="imap">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>143</port>
|
||||
<socketType>STARTTLS</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
@@ -26,14 +30,14 @@ header("Content-Type: application/xml");
|
||||
</incomingServer>
|
||||
|
||||
<incomingServer type="pop3">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>995</port>
|
||||
<socketType>SSL</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
<authentication>password-cleartext</authentication>
|
||||
</incomingServer>
|
||||
<incomingServer type="pop3">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>110</port>
|
||||
<socketType>STARTTLS</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
@@ -41,7 +45,7 @@ header("Content-Type: application/xml");
|
||||
</incomingServer>
|
||||
|
||||
<outgoingServer type="smtp">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>465</port>
|
||||
<socketType>SSL</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
@@ -49,14 +53,14 @@ header("Content-Type: application/xml");
|
||||
</outgoingServer>
|
||||
|
||||
<outgoingServer type="smtp">
|
||||
<hostname><?=$mailcow_hostname;?></hostname>
|
||||
<hostname><?= $mailcow_hostname; ?></hostname>
|
||||
<port>587</port>
|
||||
<socketType>STARTTLS</socketType>
|
||||
<username>%EMAILADDRESS%</username>
|
||||
<authentication>password-cleartext</authentication>
|
||||
</outgoingServer>
|
||||
|
||||
<enable visiturl="https://<?=$mailcow_hostname;?>/admin.php">
|
||||
<enable visiturl="https://<?= $mailcow_hostname; ?>/admin.php">
|
||||
<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>
|
||||
@@ -64,6 +68,6 @@ header("Content-Type: application/xml");
|
||||
</emailProvider>
|
||||
|
||||
<webMail>
|
||||
<loginPage url="https://<?=$mailcow_hostname;?>/SOGo/" />
|
||||
<loginPage url="https://<?= $mailcow_hostname; ?>/SOGo/" />
|
||||
</webMail>
|
||||
</clientConfig>
|
||||
|
Reference in New Issue
Block a user