From 676f369cd35e3f9924a809aa662220220c6111b4 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sun, 6 Nov 2022 14:17:35 -0800 Subject: [PATCH] ui-lib conversion --- spam/acl_security.pl | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/spam/acl_security.pl b/spam/acl_security.pl index 83c803f9b..e55acc95c 100755 --- a/spam/acl_security.pl +++ b/spam/acl_security.pl @@ -5,49 +5,49 @@ require 'spam-lib.pl'; # Output HTML for editing security options for the spam module sub acl_security_form { +my ($o) = @_; + # Allowed features -print " $text{'acl_avail'}\n"; -print " \n"; +my @opts = ('white', 'score', 'report', 'user', 'header', 'priv', 'setup', + 'procmail', 'amavisd', 'db', 'awl', 'manual'); +print &ui_table_row($text{'acl_avail'}, + &ui_select("avail", + [ split(/,/, $o->{'avail'}) ], + [ map { [ $_, $text{$_."_title"} ] } @opts ], + 6, 1), 3); # Config file to edit -print " $text{'acl_file'}\n"; -print "",&ui_opt_textbox("file", $_[0]->{'file'}, 40, $text{'acl_filedef'}), - " \n"; +print &ui_table_row($text{'acl_file'}, + &ui_opt_textbox("file", $o->{'file'}, 60, $text{'acl_filedef'}), 3); # Allowed auto-whitelist users -print " $text{'acl_awl'}\n"; -print "",&ui_radio("awl_mode", $_[0]->{'awl_groups'} ? 2 : - $_[0]->{'awl_users'} ? 1 : 0, +print &ui_table_row($text{'acl_awl'}, + &ui_radio("awl_mode", $o->{'awl_groups'} ? 2 : + $o->{'awl_users'} ? 1 : 0, [ [ 0, $text{'acl_awl0'}."
\n" ], [ 1, &text('acl_awl1', - &ui_textbox("awl_users", $_[0]->{'awl_users'}, 40). + &ui_textbox("awl_users", $o->{'awl_users'}, 40). &user_chooser_button("awl_users", 1))."
\n" ], [ 2, &text('acl_awl2', - &ui_textbox("awl_groups", $_[0]->{'awl_groups'}, 40). + &ui_textbox("awl_groups", $o->{'awl_groups'}, 40). &group_chooser_button("awl_users", 1))."
\n" ], - ])," \n"; + ])); } # acl_security_save(&options) # Parse the form for security options for the cron module sub acl_security_save { -$_[0]->{'avail'} = join(",", split(/\0/, $in{'avail'})); -$_[0]->{'file'} = $in{'file_def'} ? undef : $in{'file'}; -delete($_[0]->{'awl_users'}); -delete($_[0]->{'awl_groups'}); +my ($o) = @_; +$o->{'avail'} = join(",", split(/\0/, $in{'avail'})); +$o->{'file'} = $in{'file_def'} ? undef : $in{'file'}; +delete($o->{'awl_users'}); +delete($o->{'awl_groups'}); if ($in{'awl_mode'} == 1) { - $_[0]->{'awl_users'} = $in{'awl_users'}; + $o->{'awl_users'} = $in{'awl_users'}; } elsif ($in{'awl_mode'} == 2) { - $_[0]->{'awl_groups'} = $in{'awl_groups'}; + $o->{'awl_groups'} = $in{'awl_groups'}; } }