| Server IP : 89.117.53.150 / Your IP : 216.73.216.11 Web Server : Apache System : Linux server2.hostofiraq.site 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : iscmbt-kufa-atu ( 1014) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/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'});