initial commit of file from CVS for smeserver-autodiscover on Sat Sep 7 20:08:09 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 20:08:09 +10:00
parent 9379997240
commit d6803694bc
35 changed files with 403 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
{
return " <!-- no POP3 server available-->\n" if $pop3s{'status'} eq "disabled" && $pop3s{'status'} eq "disabled";
$port=$pop3s{'TCPPort'} || '995';
$socket="SSL";
if ($pop3s{'status'} eq "disabled" && $pop3{'status'} eq "enabled") {
$port=$pop3{'TCPPort'} || '25';
$socket="STARTTLS";
}
$OUT=<<"string_ending_delimiter";
<incomingServer type="pop3">
<hostname><?php echo \$_SERVER['SERVER_NAME']; ?></hostname>
<port>$port</port>
<socketType>$socket</socketType>
<username>\%EMAILLOCALPART\%</username>
<authentication>password-cleartext</authentication>
<pop3>
<leaveMessagesOnServer>true</leaveMessagesOnServer>
<downloadOnBiff>true</downloadOnBiff>
<daysToLeaveMessagesOnServer>14</daysToLeaveMessagesOnServer>
</pop3>
<!-- <password>optional: the user's password</password>-->
</incomingServer>
string_ending_delimiter
}