2004-09-12 01:34:24 +00:00
|
|
|
<?php
|
2002-12-31 08:45:37 +00:00
|
|
|
if (!isset($config->auth_nntphost)) {
|
|
|
|
$config->auth_nntphost = "127.0.0.1";
|
|
|
|
}
|
|
|
|
if (!isset($config->auth_nntpport)) {
|
|
|
|
$config->auth_nntpport = "119";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2005-02-09 12:55:34 +00:00
|
|
|
<tr valign="top" class="required">
|
2005-02-08 09:36:21 +00:00
|
|
|
<td align="right">auth_nntphost:</td>
|
2004-09-12 01:34:24 +00:00
|
|
|
<td>
|
|
|
|
<input name="auth_nntphost" type="text" size="30" value="<?php echo $config->auth_nntphost?>" />
|
2003-09-09 05:37:39 +00:00
|
|
|
<?php if (isset($err["auth_nntphost"])) formerr($err["auth_nntphost"]); ?>
|
2004-09-12 01:34:24 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-09-09 05:37:39 +00:00
|
|
|
<?php print_string("auth_nntphost","auth") ?>
|
2004-01-16 09:17:20 +00:00
|
|
|
<?php print_string("auth_multiplehosts","auth") ?>
|
2004-09-12 01:34:24 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2002-11-19 08:51:33 +00:00
|
|
|
|
2005-02-09 12:55:34 +00:00
|
|
|
<tr valign="top" class="required">
|
2005-02-08 09:36:21 +00:00
|
|
|
<td align="right">auth_nntpport:</td>
|
2004-09-12 01:34:24 +00:00
|
|
|
<td>
|
|
|
|
<input name="auth_nntpport" type="text" size="6" value="<?php echo $config->auth_nntpport?>" />
|
2003-09-09 05:37:39 +00:00
|
|
|
<?php if (isset($err["auth_nntpport"])) formerr($err["auth_nntpport"]); ?>
|
2004-09-12 01:34:24 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-09-09 05:37:39 +00:00
|
|
|
<?php print_string("auth_nntpport","auth") ?>
|
2004-09-12 01:34:24 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2002-11-19 08:51:33 +00:00
|
|
|
|
2004-09-12 01:34:24 +00:00
|
|
|
<tr valign="top">
|
2005-02-08 09:36:21 +00:00
|
|
|
<td align="right"><?php print_string("instructions", "auth") ?>:</td>
|
2004-09-12 01:34:24 +00:00
|
|
|
<td>
|
|
|
|
<textarea name="auth_instructions" cols="30" rows="10" wrap="virtual"><?php p($config->auth_instructions) ?></textarea>
|
|
|
|
</td>
|
|
|
|
<td>
|
2003-09-09 05:37:39 +00:00
|
|
|
<?php print_string("authinstructions","auth") ?>
|
|
|
|
<?php helpbutton("text", get_string("helptext")) ?>
|
2004-09-12 01:34:24 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|