mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
13 lines
271 B
Perl
Executable File
13 lines
271 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Have Postfix re-read its config
|
|
|
|
require './postfix-lib.pl';
|
|
|
|
$access{'startstop'} || &error($text{'reload_ecannot'});
|
|
&error_setup($text{'reload_efailed'});
|
|
$err = &reload_postfix();
|
|
&error($err) if ($err);
|
|
&webmin_log("reload");
|
|
&redirect("");
|
|
|