$config->auth_pop3host = "127.0.0.1";
}
if (!isset($config->auth_pop3type)) {
- $config->auth_pop3type = "pop3";
+ $config->auth_pop3type = "pop3notls";
}
if (!isset($config->auth_pop3port)) {
$config->auth_pop3port = "110";
<TR VALIGN=TOP BGCOLOR="<?php echo $THEME->cellheading2 ?>">
<TD ALIGN=RIGHT><P>auth_pop3type:</TD>
<TD>
- <?php $pop3types = array("pop3","pop3cert");
+ <?php $pop3types = array("pop3","pop3cert", "pop3notls");
foreach($pop3types as $pop3type) {
$pop3options[$pop3type] = $pop3type;
}
switch ($CFG->auth_pop3type) {
case "pop3":
+ $host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3}INBOX";
+ break;
+ case "pop3notls":
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/notls}INBOX";
break;
case "pop3cert":