|
From: Mr D. <tl...@co...> - 2005-12-09 22:05:53
|
Jamie Cameron wrote:
> That looks OK to me. What does the show__userIgnoreList function contain
> though?
It's pretty straight-forward.
----CODE----
sub show_userIgnoreList
{
my($preta) = '<TEXTAREA NAME="ignore_users" COLS="35" ROWS="4">';
my($postta) = '</TEXTAREA>';
return
$preta .
$config{'ignore_users'} .
$postta .
' ' .
&user_chooser_button("ignore_users", 1);
}
----END-----
I have noticed in the interim that the webmin/conf/mailboxes/config
file does get updated when I save changes using the previously given
parse_ function. However, the webmin/mailboxes/config file does not.
As of this point, I don't know the different between the two.
Mr Duck
|