require 'sendmail-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the sendmail module sub acl_security_form { print "<tr> <td><b>$text{'acl_opts'}</b></td> <td>\n"; printf "<input type=radio name=opts value=1 %s> $text{'yes'}\n", $_[0]->{'opts'} ? "checked" : ""; printf "<input type=radio name=opts value=0 %s> $text{'no'}</td>\n", $_[0]->{'opts'} ? "" : "checked"; print "<td><b>$text{'acl_cws'}</b></td> <td>\n"; printf "<input type=radio name=cws value=1 %s> $text{'yes'}\n", $_[0]->{'cws'} ? "checked" : ""; printf "<input type=radio name=cws value=0 %s> $text{'no'}</td> </tr>\n", $_[0]->{'cws'} ? "" : "checked"; print "<tr> <td><b>$text{'acl_masq'}</b></td> <td>\n"; printf "<input type=radio name=masq value=1 %s> $text{'yes'}\n", $_[0]->{'masq'} ? "checked" : ""; printf "<input type=radio name=masq value=0 %s> $text{'no'}</td>\n", $_[0]->{'masq'} ? "" : "checked"; print "<td><b>$text{'acl_trusts'}</b></td> <td>\n"; printf "<input type=radio name=trusts value=1 %s> $text{'yes'}\n", $_[0]->{'trusts'} ? "checked" : ""; printf "<input type=radio name=trusts value=0 %s> $text{'no'}</td> </tr>\n", $_[0]->{'trusts'} ? "" : "checked"; print "<tr> <td><b>$text{'acl_cgs'}</b></td> <td>\n"; printf "<input type=radio name=cgs value=1 %s> $text{'yes'}\n", $_[0]->{'cgs'} ? "checked" : ""; printf "<input type=radio name=cgs value=0 %s> $text{'no'}</td>\n", $_[0]->{'cgs'} ? "" : "checked"; print "<td><b>$text{'acl_relay'}</b></td> <td>\n"; printf "<input type=radio name=relay value=1 %s> $text{'yes'}\n", $_[0]->{'relay'} ? "checked" : ""; printf "<input type=radio name=relay value=0 %s> $text{'no'}</td> </tr>\n", $_[0]->{'relay'} ? "" : "checked"; print "<tr> <td><b>$text{'acl_mailers'}</b></td> <td>\n"; printf "<input type=radio name=mailers value=1 %s> $text{'yes'}\n", $_[0]->{'mailers'} ? "checked" : ""; printf "<input type=radio name=mailers value=0 %s> $text{'no'}</td>\n", $_[0]->{'mailers'} ? "" : "checked"; print "<td><b>$text{'acl_access'}</b></td> <td>\n"; printf "<input type=radio name=access value=1 %s> $text{'yes'}\n", $_[0]->{'access'} ? "checked" : ""; printf "<input type=radio name=access value=0 %s> $text{'no'}</td> </tr>\n", $_[0]->{'access'} ? "" : "checked"; print "<tr> <td><b>$text{'acl_domains'}</b></td> <td>\n"; printf "<input type=radio name=domains value=1 %s> $text{'yes'}\n", $_[0]->{'domains'} ? "checked" : ""; printf "<input type=radio name=domains value=0 %s> $text{'no'}</td>\n", $_[0]->{'domains'} ? "" : "checked"; print "<td><b>$text{'acl_stop'}</b></td> <td>\n"; printf "<input type=radio name=stop value=1 %s> $text{'yes'}\n", $_[0]->{'stop'} ? "checked" : ""; printf "<input type=radio name=stop value=0 %s> $text{'no'}</td> </tr>\n", $_[0]->{'stop'} ? "" : "checked"; print "<tr> <td><b>$text{'acl_manual'}</b></td> <td>\n"; printf "<input type=radio name=manual value=1 %s> $text{'yes'}\n", $_[0]->{'manual'} ? "checked" : ""; printf "<input type=radio name=manual value=0 %s> $text{'no'}</td>\n", $_[0]->{'manual'} ? "" : "checked"; print "<td><b>$text{'acl_mailq'}</b></td> <td><select name=mailq>\n"; printf "<option value=2 %s>$text{'acl_viewdel'}</option>\n", $_[0]->{'mailq'} == 2 ? "selected" : ""; printf "<option value=1 %s>$text{'acl_view'}</option>\n", $_[0]->{'mailq'} == 1 ? "selected" : ""; printf "<option value=0 %s>$text{'no'}</option>\n", $_[0]->{'mailq'} == 0 ? "selected" : ""; print "</select></td> </tr>\n"; print "<tr> <td><b>$text{'acl_qdoms'}</b></td> <td colspan=3>\n"; printf "<input type=radio name=qdoms_def value=1 %s> %s\n", $_[0]->{'qdoms'} ? "" : "checked", $text{'acl_all'}; printf "<input type=radio name=qdoms_def value=0 %s> %s\n", $_[0]->{'qdoms'} ? "checked" : "", $text{'acl_matching'}; printf "<input name=qdoms size=40 value='%s'></td> </tr>\n", $_[0]->{'qdoms'}; print "<tr> <td><b>$text{'acl_qdomsmode'}</b></td> <td colspan=3>\n"; foreach $m (0 .. 2) { printf "<input type=radio name=qdomsmode value=%s %s> %s\n", $m, $_[0]->{'qdomsmode'} == $m ? "checked" : "", $text{'acl_qdomsmode'.$m}; } print "</td> </tr>\n"; print "<tr> <td><b>$text{'acl_flushq'}</b></td> <td>\n"; printf "<input type=radio name=flushq value=1 %s> $text{'yes'}\n", $_[0]->{'flushq'} ? "checked" : ""; printf "<input type=radio name=flushq value=0 %s> $text{'no'}</td>\n", $_[0]->{'flushq'} ? "" : "checked"; print "<td><b>$text{'acl_ports'}</b></td> <td>\n"; printf "<input type=radio name=ports value=1 %s> $text{'yes'}\n", $_[0]->{'ports'} ? "checked" : ""; printf "<input type=radio name=ports value=0 %s> $text{'no'}</td>\n", $_[0]->{'ports'} ? "" : "checked"; # Virtusers print "<tr> <td colspan=4><hr></td> </tr>\n"; print "<tr> <td valign=top><b>$text{'acl_virtusers'}</b></td> <td colspan=3>\n"; printf "<input type=radio name=vmode value=0 %s> $text{'acl_none'}\n", $_[0]->{'vmode'} == 0 ? "checked" : ""; printf "<input type=radio name=vmode value=1 %s> $text{'acl_all'}\n", $_[0]->{'vmode'} == 1 ? "checked" : ""; printf "<input type=radio name=vmode value=3 %s> $text{'acl_vsame'}<br>\n", $_[0]->{'vmode'} == 3 ? "checked" : ""; printf "<input type=radio name=vmode value=2 %s> $text{'acl_matching'}\n", $_[0]->{'vmode'} == 2 ? "checked" : ""; printf "<input name=vaddrs size=40 value='%s'></td> </tr>\n", $_[0]->{'vaddrs'}; print "<tr> <td><b>$text{'acl_vtypes'}</b></td>\n"; print "<td colspan=3>\n"; for($n=0; $n<3; $n++) { printf "<input type=checkbox name=vedit_%s value=1 %s> %s\n", $n, $_[0]->{"vedit_$n"} ? "checked" : "", $text{"acl_vtype$n"}; } print "</td> </tr>\n"; print "<tr> <td><b>$text{'acl_vmax'}</b></td>\n"; printf "<td><input type=radio name=vmax_def value=1 %s> %s\n", $_[0]->{'vmax'} ? "" : "checked", $text{'acl_unlimited'}; printf "<input type=radio name=vmax_def value=0 %s>\n", $_[0]->{'vmax'} ? "checked" : ""; printf "<input name=vmax size=5 value='%s'></td>\n", $_[0]->{'vmax'}; print "<td><b>$text{'acl_vcatchall'}</b></td>\n"; print "<td>",&ui_yesno_radio("vcatchall", int($_[0]->{'vcatchall'})),"</td> </tr>\n"; # Aliases print "<tr> <td colspan=4><hr></td> </tr>\n"; print "<tr> <td valign=top><b>$text{'acl_aliases'}</b></td> <td colspan=3>\n"; printf "<input type=radio name=amode value=0 %s> $text{'acl_none'}\n", $_[0]->{'amode'} == 0 ? "checked" : ""; printf "<input type=radio name=amode value=1 %s> $text{'acl_all'}\n", $_[0]->{'amode'} == 1 ? "checked" : ""; printf "<input type=radio name=amode value=3 %s> $text{'acl_asame'}<br>\n", $_[0]->{'amode'} == 3 ? "checked" : ""; printf "<input type=radio name=amode value=2 %s> $text{'acl_matching'}\n", $_[0]->{'amode'} == 2 ? "checked" : ""; printf "<input name=aliases size=40 value='%s'></td> </tr>\n", $_[0]->{'aliases'}; print "<tr> <td><b>$text{'acl_atypes'}</b></td> <td colspan=3>\n"; for($n=1; $n<=6; $n++) { printf "<input type=checkbox name=aedit_%s value=1 %s> %s\n", $n, $_[0]->{"aedit_$n"} ? "checked" : "", $text{"acl_atype$n"}; } print "</td> </tr>\n"; print "<tr> <td><b>$text{'acl_amax'}</b></td>\n"; printf "<td colspan=3><input type=radio name=amax_def value=1 %s> %s\n", $_[0]->{'amax'} ? "" : "checked", $text{'acl_unlimited'}; printf "<input type=radio name=amax_def value=0 %s>\n", $_[0]->{'amax'} ? "checked" : ""; printf "<input name=amax size=5 value='%s'></td> </tr>\n", $_[0]->{'amax'}; print "<tr> <td><b>$text{'acl_apath'}</b></td>\n"; printf "<td colspan=3><input name=apath size=40 value='%s'> %s</td> </tr>\n", $_[0]->{'apath'}, &file_chooser_button("apath", 1); # Outgoing address mappings print "<tr> <td colspan=4><hr></td> </tr>\n"; print "<tr> <td valign=top><b>$text{'acl_outgoing'}</b></td> <td colspan=3>\n"; printf "<input type=radio name=omode value=0 %s> $text{'acl_none'}\n", $_[0]->{'omode'} == 0 ? "checked" : ""; printf "<input type=radio name=omode value=1 %s> $text{'acl_all'}<br>\n", $_[0]->{'omode'} == 1 ? "checked" : ""; printf "<input type=radio name=omode value=2 %s> $text{'acl_matching'}\n", $_[0]->{'omode'} == 2 ? "checked" : ""; printf "<input name=oaddrs size=40 value='%s'></td> </tr>\n", $_[0]->{'oaddrs'}; # Spam control rules print "<tr> <td colspan=4><hr></td> </tr>\n"; print "<tr> <td valign=top><b>$text{'acl_spam'}</b></td> <td colspan=3>\n"; printf "<input type=radio name=smode value=1 %s> $text{'acl_all'}\n", $_[0]->{'smode'} == 1 ? "checked" : ""; printf "<input type=radio name=smode value=2 %s> $text{'acl_matching'}\n", $_[0]->{'smode'} == 2 ? "checked" : ""; printf "<input name=saddrs size=40 value='%s'></td> </tr>\n", $_[0]->{'saddrs'}; } # acl_security_save(&options) # Parse the form for security options for the sendmail module sub acl_security_save { $_[0]->{'opts'} = $in{'opts'}; $_[0]->{'ports'} = $in{'ports'}; $_[0]->{'cws'} = $in{'cws'}; $_[0]->{'masq'} = $in{'masq'}; $_[0]->{'trusts'} = $in{'trusts'}; $_[0]->{'cgs'} = $in{'cgs'}; $_[0]->{'relay'} = $in{'relay'}; $_[0]->{'manual'} = $in{'manual'}; $_[0]->{'mailq'} = $in{'mailq'}; $_[0]->{'qdoms'} = $in{'qdoms_def'} ? undef : $in{'qdoms'}; $_[0]->{'qdomsmode'} = $in{'qdomsmode'}; $_[0]->{'mailers'} = $in{'mailers'}; $_[0]->{'access'} = $in{'access'}; $_[0]->{'domains'} = $in{'domains'}; $_[0]->{'stop'} = $in{'stop'}; $_[0]->{'vmode'} = $in{'vmode'}; $_[0]->{'vaddrs'} = $in{'vmode'} == 2 ? $in{'vaddrs'} : ""; $_[0]->{'vmax'} = $in{'vmax_def'} ? undef : $in{'vmax'}; foreach $i (0..2) { $_[0]->{"vedit_$i"} = $in{"vedit_$i"}; } $_[0]->{'vcatchall'} = $in{'vcatchall'}; $_[0]->{'amode'} = $in{'amode'}; $_[0]->{'aliases'} = $in{'amode'} == 2 ? $in{'aliases'} : ""; $_[0]->{'amax'} = $in{'amax_def'} ? undef : $in{'amax'}; $_[0]->{'apath'} = $in{'apath'}; foreach $i (1..6) { $_[0]->{"aedit_$i"} = $in{"aedit_$i"}; } $_[0]->{'omode'} = $in{'omode'}; $_[0]->{'oaddrs'} = $in{'omode'} == 2 ? $in{'oaddrs'} : ""; $_[0]->{'flushq'} = $in{'flushq'}; $_[0]->{'smode'} = $in{'smode'}; $_[0]->{'saddrs'} = $in{'smode'} == 2 ? $in{'saddrs'} : ""; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 4.2 KB | 0644 |
|
access-lib.pl | File | 6.41 KB | 0755 |
|
acl_security.pl | File | 9.7 KB | 0755 |
|
aliases-lib.pl | File | 7.93 KB | 0755 |
|
autoreply.pl | File | 12.19 KB | 0755 |
|
backup_config.pl | File | 1.48 KB | 0755 |
|
boxes-lib.pl | File | 80.37 KB | 0755 |
|
build.cgi | File | 1.84 KB | 0755 |
|
cgi_args.pl | File | 1.42 KB | 0755 |
|
config-AlmaLinux-7.0-ALL | File | 685 B | 0644 |
|
config-Amazon-Linux-2-ALL | File | 685 B | 0644 |
|
config-CentOS-Linux-7.0-ALL | File | 685 B | 0644 |
|
config-CentOS-Stream-Linux-8.0-ALL | File | 685 B | 0644 |
|
config-CloudLinux-8.0-ALL | File | 685 B | 0644 |
|
config-Oracle-Linux-8.0-ALL | File | 685 B | 0644 |
|
config-Redhat-Enterprise-Linux-7.0-ALL | File | 685 B | 0644 |
|
config-Rocky-Linux-7.0-ALL | File | 685 B | 0644 |
|
config-Scientific-Linux-7.0-ALL | File | 685 B | 0644 |
|
config-aix | File | 573 B | 0644 |
|
config-cobalt-linux | File | 669 B | 0644 |
|
config-coherent-linux | File | 661 B | 0644 |
|
config-corel-linux | File | 528 B | 0644 |
|
config-debian-linux | File | 607 B | 0644 |
|
config-debian-linux-2.1-2.2 | File | 612 B | 0644 |
|
config-debian-linux-3.0-ALL | File | 616 B | 0644 |
|
config-freebsd | File | 654 B | 0644 |
|
config-freebsd-4.0-ALL | File | 659 B | 0644 |
|
config-generic-linux | File | 672 B | 0644 |
|
config-gentoo-linux | File | 697 B | 0644 |
|
config-hpux | File | 525 B | 0644 |
|
config-irix | File | 668 B | 0644 |
|
config-macos | File | 657 B | 0644 |
|
config-macos-1.3-ALL | File | 662 B | 0644 |
|
config-mandrake-linux | File | 678 B | 0644 |
|
config-mandrake-linux-8.2 | File | 661 B | 0644 |
|
config-mandrake-linux-9.0-ALL | File | 678 B | 0644 |
|
config-msc-linux | File | 576 B | 0644 |
|
config-netbsd | File | 639 B | 0644 |
|
config-open-linux | File | 671 B | 0644 |
|
config-open-linux-2.5 | File | 676 B | 0644 |
|
config-open-linux-3.1e | File | 676 B | 0644 |
|
config-openSUSE-Linux-15.0-ALL | File | 636 B | 0644 |
|
config-openbsd | File | 640 B | 0644 |
|
config-openserver | File | 572 B | 0644 |
|
config-osf1 | File | 538 B | 0644 |
|
config-redhat-linux | File | 654 B | 0644 |
|
config-redhat-linux-10.0-23.0 | File | 685 B | 0644 |
|
config-redhat-linux-24.0-ALL | File | 747 B | 0644 |
|
config-redhat-linux-7.1-7.3 | File | 656 B | 0644 |
|
config-redhat-linux-7.4-9.0 | File | 661 B | 0644 |
|
config-slackware-linux | File | 523 B | 0644 |
|
config-slackware-linux-8.0 | File | 672 B | 0644 |
|
config-slackware-linux-8.1-ALL | File | 699 B | 0644 |
|
config-sol-linux | File | 679 B | 0644 |
|
config-solaris | File | 641 B | 0644 |
|
config-solaris-10-ALL | File | 722 B | 0644 |
|
config-solaris-7 | File | 730 B | 0644 |
|
config-solaris-8-9 | File | 729 B | 0644 |
|
config-suse-linux | File | 592 B | 0644 |
|
config-suse-linux-8.2-ALL | File | 640 B | 0644 |
|
config-turbo-linux | File | 654 B | 0644 |
|
config-united-linux | File | 592 B | 0644 |
|
config-unixware | File | 566 B | 0644 |
|
config.info | File | 2.4 KB | 0644 |
|
config.info.ca | File | 2.78 KB | 0644 |
|
config.info.cs | File | 2.6 KB | 0644 |
|
config.info.de | File | 2.79 KB | 0644 |
|
config.info.es | File | 1.74 KB | 0644 |
|
config.info.fr | File | 2.42 KB | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.nl | File | 2.72 KB | 0644 |
|
config.info.no | File | 2.52 KB | 0644 |
|
config.info.pl | File | 1.13 KB | 0644 |
|
config.info.pt_BR | File | 2.85 KB | 0644 |
|
config.info.ru | File | 2.45 KB | 0644 |
|
config.info.sv | File | 1.06 KB | 0644 |
|
config.info.tr | File | 1.09 KB | 0644 |
|
config.info.uk | File | 2.48 KB | 0644 |
|
config.info.zh | File | 970 B | 0644 |
|
config.info.zh_TW | File | 1.04 KB | 0644 |
|
create_file.cgi | File | 1.41 KB | 0755 |
|
defaultacl | File | 286 B | 0644 |
|
defines | File | 3.77 KB | 0644 |
|
del_mailq.cgi | File | 1.31 KB | 0755 |
|
del_mailqs.cgi | File | 2.82 KB | 0755 |
|
delete_access.cgi | File | 782 B | 0755 |
|
delete_aliases.cgi | File | 800 B | 0755 |
|
delete_domains.cgi | File | 710 B | 0755 |
|
delete_generics.cgi | File | 790 B | 0755 |
|
delete_mailers.cgi | File | 713 B | 0755 |
|
delete_virtusers.cgi | File | 799 B | 0755 |
|
domain-lib.pl | File | 4.25 KB | 0755 |
|
dontblames | File | 3.34 KB | 0644 |
|
edit_access.cgi | File | 505 B | 0755 |
|
edit_afile.cgi | File | 1.08 KB | 0755 |
|
edit_alias.cgi | File | 470 B | 0755 |
|
edit_domain.cgi | File | 433 B | 0755 |
|
edit_feature.cgi | File | 2.98 KB | 0755 |
|
edit_ffile.cgi | File | 2.05 KB | 0755 |
|
edit_file.cgi | File | 2.26 KB | 0755 |
|
edit_generic.cgi | File | 460 B | 0755 |
|
edit_mailer.cgi | File | 435 B | 0755 |
|
edit_rfile.cgi | File | 3.05 KB | 0755 |
|
edit_virtuser.cgi | File | 473 B | 0755 |
|
features-lib.pl | File | 4.25 KB | 0755 |
|
feedback_files.pl | File | 397 B | 0755 |
|
filter.pl | File | 1.99 KB | 0755 |
|
flushq.cgi | File | 714 B | 0755 |
|
generics-lib.pl | File | 4.52 KB | 0755 |
|
index.cgi | File | 4.81 KB | 0755 |
|
install_check.pl | File | 452 B | 0755 |
|
list_access.cgi | File | 3.04 KB | 0755 |
|
list_aliases.cgi | File | 3.48 KB | 0755 |
|
list_cgs.cgi | File | 636 B | 0755 |
|
list_cws.cgi | File | 706 B | 0755 |
|
list_domains.cgi | File | 2.36 KB | 0755 |
|
list_features.cgi | File | 2.97 KB | 0755 |
|
list_generics.cgi | File | 3.83 KB | 0755 |
|
list_mailers.cgi | File | 2.66 KB | 0755 |
|
list_mailq.cgi | File | 3.54 KB | 0755 |
|
list_masq.cgi | File | 1.15 KB | 0755 |
|
list_opts.cgi | File | 4.91 KB | 0755 |
|
list_ports.cgi | File | 2.2 KB | 0755 |
|
list_relay.cgi | File | 938 B | 0755 |
|
list_trusts.cgi | File | 646 B | 0755 |
|
list_us | File | 1 B | 0644 |
|
list_virtusers.cgi | File | 3.75 KB | 0755 |
|
log_parser.pl | File | 1.73 KB | 0755 |
|
mailers-lib.pl | File | 5.32 KB | 0755 |
|
mailq_search.cgi | File | 996 B | 0755 |
|
manual_features.cgi | File | 398 B | 0755 |
|
module.info | File | 646 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 129 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 217 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 218 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 230 B | 0644 |
|
module.info.ca | File | 144 B | 0644 |
|
module.info.ca.auto | File | 24 B | 0644 |
|
module.info.cs | File | 30 B | 0644 |
|
module.info.cs.auto | File | 122 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 137 B | 0644 |
|
module.info.de | File | 130 B | 0644 |
|
module.info.de.auto | File | 17 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 296 B | 0644 |
|
module.info.es | File | 35 B | 0644 |
|
module.info.es.auto | File | 134 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 150 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 229 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 164 B | 0644 |
|
module.info.fr | File | 34 B | 0644 |
|
module.info.fr.auto | File | 133 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 173 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 161 B | 0644 |
|
module.info.hu | File | 37 B | 0644 |
|
module.info.hu.auto | File | 129 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 161 B | 0644 |
|
module.info.ja | File | 27 B | 0644 |
|
module.info.ja.auto | File | 143 B | 0644 |
|
module.info.ko | File | 24 B | 0644 |
|
module.info.ko.auto | File | 141 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 173 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 169 B | 0644 |
|
module.info.ms | File | 127 B | 0644 |
|
module.info.ms.auto | File | 21 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 142 B | 0644 |
|
module.info.nl | File | 30 B | 0644 |
|
module.info.nl.auto | File | 108 B | 0644 |
|
module.info.no | File | 31 B | 0644 |
|
module.info.no.auto | File | 113 B | 0644 |
|
module.info.pl | File | 31 B | 0644 |
|
module.info.pl.auto | File | 122 B | 0644 |
|
module.info.pt | File | 35 B | 0644 |
|
module.info.pt.auto | File | 122 B | 0644 |
|
module.info.pt_BR | File | 39 B | 0644 |
|
module.info.pt_BR.auto | File | 128 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 144 B | 0644 |
|
module.info.ru | File | 42 B | 0644 |
|
module.info.ru.auto | File | 214 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 146 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 153 B | 0644 |
|
module.info.sv | File | 32 B | 0644 |
|
module.info.sv.auto | File | 104 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 294 B | 0644 |
|
module.info.tr | File | 35 B | 0644 |
|
module.info.tr.auto | File | 131 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 228 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 233 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 156 B | 0644 |
|
module.info.zh | File | 24 B | 0644 |
|
module.info.zh.auto | File | 93 B | 0644 |
|
module.info.zh_TW | File | 27 B | 0644 |
|
module.info.zh_TW.auto | File | 99 B | 0644 |
|
move.cgi | File | 559 B | 0755 |
|
negativeacl | File | 8 B | 0644 |
|
prefs.info | File | 147 B | 0644 |
|
qdetach.cgi | File | 1.05 KB | 0755 |
|
rbac-mapping | File | 186 B | 0644 |
|
save_access.cgi | File | 1.98 KB | 0755 |
|
save_afile.cgi | File | 580 B | 0755 |
|
save_alias.cgi | File | 4.12 KB | 0755 |
|
save_cgs.cgi | File | 640 B | 0755 |
|
save_cws.cgi | File | 678 B | 0755 |
|
save_domain.cgi | File | 1.37 KB | 0755 |
|
save_feature.cgi | File | 2.32 KB | 0755 |
|
save_ffile.cgi | File | 860 B | 0755 |
|
save_file.cgi | File | 3.02 KB | 0755 |
|
save_generic.cgi | File | 1.57 KB | 0755 |
|
save_mailer.cgi | File | 1.83 KB | 0755 |
|
save_masq.cgi | File | 1.2 KB | 0755 |
|
save_opts.cgi | File | 3.29 KB | 0755 |
|
save_ports.cgi | File | 2.47 KB | 0755 |
|
save_relay.cgi | File | 710 B | 0755 |
|
save_rfile.cgi | File | 1.25 KB | 0755 |
|
save_trusts.cgi | File | 589 B | 0755 |
|
save_virtuser.cgi | File | 2.81 KB | 0755 |
|
sendmail-lib.pl | File | 17.76 KB | 0755 |
|
start.cgi | File | 248 B | 0755 |
|
stop.cgi | File | 276 B | 0755 |
|
useradmin_update.pl | File | 1.43 KB | 0755 |
|
view_mailq.cgi | File | 3.91 KB | 0755 |
|
virtusers-lib.pl | File | 6.22 KB | 0755 |
|