?¡ëPNG  IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À? ¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/user1137782/www/china1.by/classwithtostring.php on line 86

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
Vm-pop3d ======== *WARNING: Badly done migration will cause your IMAP and/or POP3 clients to re-download all mails. Read page first carefully.* Vm-pop3d uses the Message-ID: header data for UIDL, Dovecot does not support this as it is not unique enough. The following Perl script will take the Message-ID: data from all mails in a mbox and put the data into the X-UIDL: header which Dovecot can use with the 'pop3_reuse_xuidl' setting: ---%<------------------------------------------------------------------------- #!/usr/bin/env perl use Email::Simple; my @totalmail=; my $mail = join("",@totalmail); my $email = Email::Simple->new($mail); my $msg_id = $email->header("Message-Id"); $msg_id =~ s#<##g; $msg_id =~ s#>##g; $email->header_set("X-UIDL", $msg_id); print $email->as_string; ---%<------------------------------------------------------------------------- Requires email::simple, though the default setting in email::simple is to wrap headers at 77 characters, which then causes problems when Outlook clients issue UIDL, the workaround for this is to edit the Perl module, on Debian Etch this involves editing '/usr/share/perl5/Email/Simple.pm', find "sub _fold" and change {0,77} to a suitably higher value. On more recent versions of email::simple, you may need to edit 'Headers.pm' instead, with the line to look for being "_default_fold_at" You then run the script like so: ---%<------------------------------------------------------------------------- formail -q- -s perl script.pl < inbox > newinbox ---%<------------------------------------------------------------------------- When Dovecot now looks at newinbox, it will use the X-UIDL: header and clients will not redownload mail. (This file was created from the wiki on 2011-01-13 04:52)