mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
13 lines
193 B
Perl
Executable File
13 lines
193 B
Perl
Executable File
|
|
do 'mailcap-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
if ($cgi eq 'edit.cgi') {
|
|
my @mailcap = &list_mailcap();
|
|
return @mailcap ? 'index='.$mailcap[0]->{'index'} : 'new=1';
|
|
}
|
|
return undef;
|
|
}
|