| Server IP : 104.21.25.180 / Your IP : 162.159.115.42 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/usermin/mailbox/ |
Upload File : |
#!/usr/bin/perl
# Show a form for copying or moving all email to another folder
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our (%text, %in, %config);
require './mailbox-lib.pl';
&ReadParse();
my @folders = &list_folders();
my $folder = $folders[$in{'idx'}];
&ui_print_header(undef, $text{'copy_title'}, "");
print &ui_form_start("copy.cgi");
print &ui_hidden("idx", $in{'idx'});
print &ui_table_start($text{'copy_header'}, undef, 2, [ "width=30%" ]);
# Source folder
print &ui_table_row($text{'copy_source'}, &html_escape($folder->{'name'}));
# Destination folder
my @dfolders = grep { !$_->{'nowrite'} && $_->{'index'} != $folder->{'index'} }
&list_folders_sorted();
print &ui_table_row($text{'copy_dest'},
&ui_select("dest", undef,
[ map { [ $_->{'index'}, &html_escape($_->{'name'}) ] } @dfolders ]));
# Move or copy
print &ui_table_row($text{'copy_move'},
&ui_yesno_radio("move", 0));
print &ui_table_end();
print &ui_form_end([ [ "copy", $text{'copy_ok'} ] ]);
&ui_print_footer($config{'mail_system'} == 4 ? "list_ifolders.cgi"
: "list_folders.cgi",
$text{'folders_return'});