mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
12 lines
200 B
Perl
Executable File
12 lines
200 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Start the dovecot server
|
|
|
|
require './dovecot-lib.pl';
|
|
&error_setup($text{'start_err'});
|
|
$err = &start_dovecot();
|
|
&error($err) if ($err);
|
|
&webmin_log("start");
|
|
&redirect("");
|
|
|
|
|