2 if (!isset($config->auth_pop3host)) {
3 $config->auth_pop3host = "127.0.0.1";
5 if (!isset($config->auth_pop3type)) {
6 $config->auth_pop3type = "pop3";
8 if (!isset($config->auth_pop3port)) {
9 $config->auth_pop3port = "110";
12 <tr valign="top" BGCOLOR="<?=$THEME->cellheading2 ?>">
13 <TD ALIGN=RIGHT><P>auth_pop3host:</TD>
15 <INPUT name=auth_pop3host TYPE=text SIZE=30 VALUE="<?=$config->auth_pop3host?>">
16 <? if (isset($err["auth_pop3host"])) formerr($err["auth_pop3host"]); ?>
19 <? print_string("auth_pop3host","auth") ?>
23 <TR VALIGN=TOP BGCOLOR="<?=$THEME->cellheading2 ?>">
24 <TD ALIGN=RIGHT><P>auth_pop3type:</TD>
26 <? $pop3types = array("pop3","pop3cert");
27 foreach($pop3types as $pop3type) {
28 $pop3options[$pop3type] = $pop3type;
30 choose_from_menu($pop3options, "auth_pop3type", $config->auth_pop3type, "");
34 <? print_string("auth_pop3type","auth") ?>
38 <TR VALIGN=TOP BGCOLOR="<?=$THEME->cellheading2 ?>">
39 <TD ALIGN=RIGHT><P>auth_pop3port:</TD>
41 <INPUT name=auth_pop3port TYPE=text SIZE=6 VALUE="<?=$config->auth_pop3port?>">
42 <? if (isset($err["auth_pop3port"])) formerr($err["auth_pop3port"]); ?>
45 <? print_string("auth_pop3port","auth") ?>
50 <TD ALIGN=RIGHT><P><? print_string("instructions", "auth") ?>:</TD>
52 <TEXTAREA NAME=auth_instructions COLS=30 ROWS=10 WRAP=virtual><? p($config->auth_instructions) ?></TEXTAREA>
55 <? print_string("authinstructions","auth") ?>
56 <? helpbutton("text", get_string("helptext")) ?>