mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
11 lines
193 B
Perl
Executable File
11 lines
193 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start the qmail rc command in the background
|
|
|
|
require './qmail-lib.pl';
|
|
$err = &start_qmail();
|
|
&error($err) if ($err);
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|