2021-08-10 21:14:47 +01:00
|
|
|
<?php
|
2021-08-11 21:29:42 +01:00
|
|
|
|
|
|
|
// Errrrrrrrrgh, this is sooooo messy, I'm going to tidy this up
|
|
|
|
// It's basically configuring the format of the email address dependent on
|
|
|
|
// variables set in the config file.
|
|
|
|
// i.e. if the domain isn't required for authentication then it strips the
|
|
|
|
// username back to just the pre-@ part. Or, if the username requires a different
|
|
|
|
// logon domain, then it replaces the email domain with the localdomain
|
|
|
|
//
|
|
|
|
// TODO: TIDY THIS UP!!
|
2021-08-10 21:14:47 +01:00
|
|
|
$conf = Core::$Config["Services"];
|
|
|
|
$data = Core::get_get_data();
|
|
|
|
$email_provided = false;
|
2021-08-11 09:33:06 +01:00
|
|
|
$display_name = false;
|
|
|
|
$emailaddress = false;
|
2021-08-12 13:41:58 +01:00
|
|
|
if (isset($data["emailaddress"])) {
|
2021-08-11 09:33:06 +01:00
|
|
|
$email_address = $data["emailaddress"];
|
|
|
|
$display_name = $email_address;
|
|
|
|
$email_provided = true;
|
|
|
|
} else if ($data["path"]) {
|
2021-08-10 21:14:47 +01:00
|
|
|
$query = parse_url($data["path"]);
|
2021-08-12 13:41:58 +01:00
|
|
|
if (isset($query["query"])){
|
|
|
|
$email_address = explode("=",$query["query"]);
|
|
|
|
if ($email_address[0] == "emailaddress") {
|
|
|
|
$email_address = $email_address[1];
|
|
|
|
$email_provided = true;
|
|
|
|
$display_name = $email_address;
|
|
|
|
}
|
2021-08-11 09:33:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($email_provided) {
|
|
|
|
if(!Core::$Config["RequireAuthDomain"]) {
|
|
|
|
$email_address = str_ireplace("@".Core::$Config["Domain"],"",$email_address);
|
|
|
|
} else if (Core::$Config["LogonDomain"]) {
|
|
|
|
$email_address = str_ireplace(Core::$Config["Domain"],Core::$Config["LogonDomain"],$email_address);
|
2021-08-10 21:14:47 +01:00
|
|
|
}
|
|
|
|
}
|
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 13:41:58 +01:00
|
|
|
<emailProvider id="<?php echo Core::$Config["Domain"][0]?>">
|
|
|
|
<?php foreach (Core::$Config["Domain"] as $domain){ ?>
|
|
|
|
<domain><?php echo $domain; ?></domain>
|
|
|
|
<?php } ?>
|
2021-08-11 09:33:06 +01:00
|
|
|
<displayName><?php echo $email_provided ? $display_name : "%EMAILADDRESS%" ;?></displayName>
|
2021-08-12 13:41:58 +01:00
|
|
|
<?php if($conf["InMail"]&& $conf["InMail"]["Enabled"]){
|
2021-08-10 21:14:47 +01:00
|
|
|
$in = $conf["InMail"]; ?>
|
2021-08-10 21:28:00 +01:00
|
|
|
<incomingServer type="<?php echo strtolower($in["Type"]);?>">
|
2021-08-10 21:14:47 +01:00
|
|
|
<hostname><?php echo $in["Server"];?></hostname>
|
|
|
|
<port><?php echo $in["Port"];?></port>
|
|
|
|
<socketType><?php echo $in["SocketType"];?></socketType>
|
2021-08-11 09:33:06 +01:00
|
|
|
<username><?php echo $email_provided ? $email_address : "%EMAILADDRESS%";?></username>
|
2021-08-10 21:14:47 +01:00
|
|
|
<authentication><?php echo $in["Authentication"];?></authentication>
|
|
|
|
</incomingServer>
|
2021-08-11 16:59:03 +01:00
|
|
|
<?php }
|
2021-08-12 13:41:58 +01:00
|
|
|
if($conf["OutMail"]&& $conf["OutMail"]["Enabled"]){
|
2021-08-10 21:28:00 +01:00
|
|
|
$out = $conf["OutMail"]; ?>
|
|
|
|
<outgoingServer type="<?php echo strtolower($out["Type"]);?>">
|
2021-08-10 21:14:47 +01:00
|
|
|
<hostname><?php echo $out["Server"];?></hostname>
|
|
|
|
<port><?php echo $out["Port"];?></port>
|
|
|
|
<socketType><?php echo $out["SocketType"];?></socketType>
|
2021-08-11 09:33:06 +01:00
|
|
|
<username><?php echo $email_provided ? $email_address : "%EMAILADDRESS%";?></username>
|
2021-08-10 21:14:47 +01:00
|
|
|
<authentication><?php echo $out["Authentication"];?></authentication>
|
|
|
|
</outgoingServer>
|
2021-08-11 16:59:03 +01:00
|
|
|
<?php }
|
2021-08-12 13:41:58 +01:00
|
|
|
if ($conf["AddressBook"] && $conf["AddressBook"]["Enabled"]) {
|
2021-08-11 16:59:03 +01:00
|
|
|
$card = $conf["AddressBook"]; ?>
|
|
|
|
<addressBook type="<?php echo strtolower($card["Type"]); ?>">
|
|
|
|
<username><?php echo $email_provided ? $email_address : "%EMAILADDRESS%";?></username>
|
|
|
|
<authentication><?php echo $card["Authentication"] ? $card["Authentication"] : "http-basic" ;?></authentication>
|
|
|
|
<serverURL><?php echo $card["Server"];?></serverURL>
|
|
|
|
</addressBook>
|
|
|
|
<?php }
|
2021-08-12 13:41:58 +01:00
|
|
|
if ($conf["Calendar"] && $conf["Calendar"]["Enabled"]){
|
2021-08-11 16:59:03 +01:00
|
|
|
$cal = $conf["Calendar"] ;?>
|
|
|
|
<calendar type="<?php echo strtolower($cal["Type"]);?>">
|
|
|
|
<username><?php echo $email_provided ? $email_address : "%EMAILADDRESS%";?></username>
|
|
|
|
<authentication><?php echo $card["Authentication"] ? $card["Authentication"] : "http-basic" ;?></authentication>
|
|
|
|
<serverURL><?php echo $card["Server"];?></serverURL>
|
|
|
|
</calendar>
|
|
|
|
<?php }
|
2021-08-12 13:41:58 +01:00
|
|
|
if ($conf["WebMail"] && $conf["WebMail"]["Enabled"]) {
|
2021-08-11 16:59:03 +01:00
|
|
|
$wm = $conf["WebMail"]; ?>
|
|
|
|
<webMail>
|
|
|
|
<loginPage url="<?php echo $wm["Server"];?>" />
|
|
|
|
<loginPageInfo url="<?php echo $wm["Server"];?>">
|
|
|
|
<username><?php echo $email_provided ? $email_address : "%EMAILADDRESS%";?></username>
|
|
|
|
<usernameField id="<?php echo $wm["UsernameDivID"];?>" name="<?php echo $wm["UsernameDivName"];?>" />
|
|
|
|
<passwordField name="<?php echo $wm["PasswordDivName"];?>" />
|
|
|
|
<loginButton id="<?php echo $wm["SubmitButtonID"];?>" name="<?php echo $wm["SubmitButtonName"];?>"/>
|
|
|
|
</loginPageInfo>
|
|
|
|
</webMail>
|
|
|
|
<?php } ?>
|
2021-08-10 21:14:47 +01:00
|
|
|
</emailProvider>
|
|
|
|
</clientConfig>
|