correct outgoing server config in moz-auto
This commit is contained in:
parent
a3bc938449
commit
d139c1f2fc
1 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@ if ($data["path"]) {
|
||||||
<displayName><?php echo $email_provided ? $email : "%EMAILADDRESS%" ;?></displayName>
|
<displayName><?php echo $email_provided ? $email : "%EMAILADDRESS%" ;?></displayName>
|
||||||
<?php if($conf["InMail"]){
|
<?php if($conf["InMail"]){
|
||||||
$in = $conf["InMail"]; ?>
|
$in = $conf["InMail"]; ?>
|
||||||
<incomingServer type="<?php echo $in["Type"];?>">
|
<incomingServer type="<?php echo strtolower($in["Type"]);?>">
|
||||||
<hostname><?php echo $in["Server"];?></hostname>
|
<hostname><?php echo $in["Server"];?></hostname>
|
||||||
<port><?php echo $in["Port"];?></port>
|
<port><?php echo $in["Port"];?></port>
|
||||||
<socketType><?php echo $in["SocketType"];?></socketType>
|
<socketType><?php echo $in["SocketType"];?></socketType>
|
||||||
|
@ -25,9 +25,9 @@ if ($data["path"]) {
|
||||||
<authentication><?php echo $in["Authentication"];?></authentication>
|
<authentication><?php echo $in["Authentication"];?></authentication>
|
||||||
</incomingServer>
|
</incomingServer>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if($conf["InMail"]){
|
<?php if($conf["OutMail"]){
|
||||||
$out = $conf["InMail"]; ?>
|
$out = $conf["OutMail"]; ?>
|
||||||
<outgoingServer type="<?php echo $out["Type"];?>">
|
<outgoingServer type="<?php echo strtolower($out["Type"]);?>">
|
||||||
<hostname><?php echo $out["Server"];?></hostname>
|
<hostname><?php echo $out["Server"];?></hostname>
|
||||||
<port><?php echo $out["Port"];?></port>
|
<port><?php echo $out["Port"];?></port>
|
||||||
<socketType><?php echo $out["SocketType"];?></socketType>
|
<socketType><?php echo $out["SocketType"];?></socketType>
|
||||||
|
|
Loading…
Reference in a new issue