17 lines
424 B
Plaintext
17 lines
424 B
Plaintext
|
{
|
||
|
return "" if $imaps{'status'} eq "enabled";
|
||
|
return "" unless $pop3s{'status'} eq "enabled";
|
||
|
$OUT=<<'string_ending_delimiter';
|
||
|
<Protocol>
|
||
|
<Type>POP3</Type>
|
||
|
<Server><?php echo $_SERVER['SERVER_NAME']; ?></Server>
|
||
|
<Port>995</Port>
|
||
|
<SPA>off</SPA>
|
||
|
<SSL>on</SSL>
|
||
|
<AuthRequired>on</AuthRequired>
|
||
|
<?php echo $LoginName; ?>
|
||
|
|
||
|
</Protocol>
|
||
|
string_ending_delimiter
|
||
|
}
|