2021-08-10 21:14:47 +01:00
|
|
|
<?php
|
2021-08-12 14:55:54 +01:00
|
|
|
// Get some core information to help with generation.
|
|
|
|
$services = Core::$Config["Services"];
|
2021-08-10 21:14:47 +01:00
|
|
|
$data = Core::get_get_data();
|
2021-08-12 13:41:58 +01:00
|
|
|
if (isset($data["emailaddress"])) {
|
2021-08-11 09:33:06 +01:00
|
|
|
$email_address = $data["emailaddress"];
|
|
|
|
}
|
2021-08-11 16:59:03 +01:00
|
|
|
// The below link has config-v1.1.xml information
|
|
|
|
// https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat
|
2021-08-10 21:14:47 +01:00
|
|
|
?>
|
|
|
|
<clientConfig version="1.1">
|
2021-08-12 14:55:54 +01:00
|
|
|
<emailProvider id="<?php echo Core::$Config["PrimaryDomain"]?>">
|
2021-08-12 13:41:58 +01:00
|
|
|
<?php foreach (Core::$Config["Domain"] as $domain){ ?>
|
|
|
|
<domain><?php echo $domain; ?></domain>
|
|
|
|
<?php } ?>
|
2021-08-12 14:55:54 +01:00
|
|
|
<displayName>%EMAILADDRESS%</displayName>
|
|
|
|
<?php if($services["InMail"]&& $services["InMail"]["Enabled"]){
|
|
|
|
$service = $services["InMail"]; ?>
|
|
|
|
<incomingServer type="<?php echo strtolower($service["Type"]);?>">
|
|
|
|
<hostname><?php echo $service["Server"];?></hostname>
|
|
|
|
<port><?php echo $service["Port"];?></port>
|
|
|
|
<socketType><?php echo $service["SocketType"];?></socketType>
|
|
|
|
<username><?php echo $this->get_username($service,$email_address); ?></username>
|
|
|
|
<authentication><?php echo $service["Authentication"];?></authentication>
|
2021-08-10 21:14:47 +01:00
|
|
|
</incomingServer>
|
2021-08-11 16:59:03 +01:00
|
|
|
<?php }
|
2021-08-12 14:55:54 +01:00
|
|
|
if($services["OutMail"]&& $services["OutMail"]["Enabled"]){
|
|
|
|
$service = $services["OutMail"]; ?>
|
|
|
|
<outgoingServer type="<?php echo strtolower($service["Type"]);?>">
|
|
|
|
<hostname><?php echo $service["Server"];?></hostname>
|
|
|
|
<port><?php echo $service["Port"];?></port>
|
|
|
|
<socketType><?php echo $service["SocketType"];?></socketType>
|
|
|
|
<username><?php echo $this->get_username($service,$email_address);?></username>
|
|
|
|
<authentication><?php echo $service["Authentication"];?></authentication>
|
2021-08-10 21:14:47 +01:00
|
|
|
</outgoingServer>
|
2021-08-11 16:59:03 +01:00
|
|
|
<?php }
|
2021-08-12 14:55:54 +01:00
|
|
|
if ($services["AddressBook"] && $services["AddressBook"]["Enabled"]) {
|
|
|
|
$service = $services["AddressBook"]; ?>
|
|
|
|
<addressBook type="<?php echo strtolower($service["Type"]); ?>">
|
|
|
|
<username><?php echo $this->get_username($service,$email_address);?></username>
|
|
|
|
<authentication><?php echo $service["Authentication"];?></authentication>
|
|
|
|
<serverURL><?php echo $service["Server"];?></serverURL>
|
2021-08-11 16:59:03 +01:00
|
|
|
</addressBook>
|
|
|
|
<?php }
|
2021-08-12 14:55:54 +01:00
|
|
|
if ($services["Calendar"] && $services["Calendar"]["Enabled"]){
|
|
|
|
$service = $services["Calendar"] ;?>
|
|
|
|
<calendar type="<?php echo strtolower($service["Type"]);?>">
|
|
|
|
<username><?php echo $this->get_username($service,$email_address);?></username>
|
|
|
|
<authentication><?php echo $service["Authentication"];?></authentication>
|
|
|
|
<serverURL><?php echo $service["Server"];?></serverURL>
|
2021-08-11 16:59:03 +01:00
|
|
|
</calendar>
|
|
|
|
<?php }
|
2021-08-12 14:55:54 +01:00
|
|
|
if ($services["WebMail"] && $services["WebMail"]["Enabled"]) {
|
|
|
|
$service = $services["WebMail"]; ?>
|
2021-08-11 16:59:03 +01:00
|
|
|
<webMail>
|
2021-08-12 14:55:54 +01:00
|
|
|
<loginPage url="<?php echo $service["Server"];?>" />
|
|
|
|
<loginPageInfo url="<?php echo $service["Server"];?>">
|
|
|
|
<username><?php echo $this->get_username($service,$email_address);?></username>
|
|
|
|
<usernameField id="<?php echo $service["UsernameDivID"];?>" name="<?php echo $service["UsernameDivName"];?>" />
|
|
|
|
<passwordField name="<?php echo $service["PasswordDivName"];?>" />
|
|
|
|
<loginButton id="<?php echo $service["SubmitButtonID"];?>" name="<?php echo $service["SubmitButtonName"];?>"/>
|
2021-08-11 16:59:03 +01:00
|
|
|
</loginPageInfo>
|
|
|
|
</webMail>
|
|
|
|
<?php } ?>
|
2021-08-10 21:14:47 +01:00
|
|
|
</emailProvider>
|
|
|
|
</clientConfig>
|