2021-08-10 21:14:47 +01:00
|
|
|
<?php
|
|
|
|
$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;
|
|
|
|
if ($data["emailaddress"]) {
|
|
|
|
$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-11 09:33:06 +01:00
|
|
|
$email_address = explode("=",$query["query"]);
|
|
|
|
if ($email_address[0] == "emailaddress") {
|
|
|
|
$email_address = $email[1];
|
2021-08-10 21:14:47 +01:00
|
|
|
$email_provided = true;
|
2021-08-11 09:33:06 +01:00
|
|
|
$display_name = $email_address;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<clientConfig version="1.1">
|
|
|
|
<emailProvider id="<?php echo Core::$Config["Domain"]?>">
|
|
|
|
<domain><?php echo Core::$Config["Domain"]?></domain>
|
2021-08-11 09:33:06 +01:00
|
|
|
<displayName><?php echo $email_provided ? $display_name : "%EMAILADDRESS%" ;?></displayName>
|
2021-08-10 21:14:47 +01:00
|
|
|
<?php if($conf["InMail"]){
|
|
|
|
$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>
|
|
|
|
<?php } ?>
|
2021-08-10 21:28:00 +01:00
|
|
|
<?php if($conf["OutMail"]){
|
|
|
|
$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>
|
|
|
|
<?php } ?>
|
|
|
|
</emailProvider>
|
|
|
|
</clientConfig>
|