📄 stop.cgi
字号:
#!/usr/local/bin/perl# stop.cgi# Stop the running sendmail processrequire './sendmail-lib.pl';&ReadParse();$access{'stop'} || &error("You are not allowed to stop sendmail");$whatfailed = "Failed to stop sendmail";if ($config{'sendmail_stop_command'}) { $out = `$config{'sendmail_stop_command'} </dev/null 2>&1`; if ($?) { &error("<tt>$out</tt>"); } }else { kill('KILL', $in{'pid'}); unlink($config{'sendmail_pid'}); }&redirect("");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -