%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,mail,shell_exec,system,proc_open,popen,ini_alter,dl,proc_close,curl_exec,curl_multi_exec,readfile,parse_ini_file,escapeshellarg,escapeshellcmd,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,mail,php_uname,phpinfo MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/postfix/ |
Upload File : |
#!/usr/bin/perl # Create, update or delete a server process require './postfix-lib.pl'; $access{'master'} || &error($text{'master_ecannot'}); &ReadParse(); &error_setup($text{'master_err'}); $master = &get_master_config(); if ($in{'new'}) { $prog = { }; } else { ($prog) = grep { $_->{'name'} eq $in{'old'} && $_->{'type'} eq $in{'oldtype'} && $_->{'enabled'} == $in{'oldenabled'} } @$master; $prog || &error($text{'master_egone'}); } &lock_file($config{'postfix_master'}); if ($in{'delete'}) { # Just delete this one &delete_master($prog); } else { # Validate and store inputs $prog->{'type'} = $in{'type'}; $prog->{'enabled'} = $in{'enabled'}; $in{'name'} =~ /^\S+$/ || &error($text{'master_ename'}); if (!$in{'host_def'}) { &to_ipaddress($in{'host'}) || &error($text{'master_ehost'}); $in{'type'} eq 'inet' || &error($text{'master_einet'}); $prog->{'name'} = $in{'host'}.":".$in{'name'}; } else { $prog->{'name'} = $in{'name'}; } $in{'command'} =~ /^\S/ || &error($text{'master_ecommand'}); $prog->{'command'} = $in{'command'}; $prog->{'private'} = $in{'private'}; $prog->{'unpriv'} = $in{'unpriv'}; $prog->{'chroot'} = $in{'chroot'}; if ($in{'wakeup'} == 0) { $prog->{'wakeup'} = '-'; } elsif ($in{'wakeup'} == 1) { $prog->{'wakeup'} = '0'; } else { $in{'wtime'} =~ /^\d+$/ || &error($text{'master_ewakeup'}); $prog->{'wakeup'} = $in{'wtime'}.($in{'wused'} ? "?" : ""); } if ($in{'maxprocs'} == 0) { $prog->{'maxprocs'} = '-'; } elsif ($in{'maxprocs'} == 1) { $prog->{'maxprocs'} = '0'; } else { $in{'procs'} =~ /^\d+$/ || &error($text{'master_emaxprocs'}); $prog->{'maxprocs'} = $in{'procs'}; } # Check for clash by name and type, but only between enabled servers if ($in{'enabled'}) { if ($in{'new'} || $in{'name'} ne $in{'old'} || $in{'type'} ne $in{'oldtype'}) { ($clash) = grep { $_->{'name'} eq $in{'name'} && $_->{'type'} eq $in{'type'} && $_->{'enabled'} } @$master; $clash && &error($text{'master_eclash'}); } } # Save or update if ($in{'new'}) { &create_master($prog); } else { &modify_master($prog); } } &unlock_file($config{'postfix_master'}); # Apply config $err = &reload_postfix(); &error($err) if ($err); &webmin_log($in{'delete'} ? "delete" : $in{'new'} ? "create" : "modify", "master", $prog->{'name'}, $prog); &redirect("master.cgi");