diff --git a/CREDITS b/CREDITS index 93b9d0b..6d1b9ff 100644 --- a/CREDITS +++ b/CREDITS @@ -1,5 +1,16 @@ #!/bin/cat +David Alix +Suggested order message transfer by uid. +Gave "Simeon Messaging Server from MessagingDirect" and + "Sendmail Advanced Messaging Server (from Sendmail.com)" +Trying to migrate about 150 GBytes of mailstorage. +Will he succeed ? + +Timothy Falconer +Gave "Domino IMAP4 Server Release 5.0.6" + UW "IMAP4rev1 2003.338rh" + Reed Sandberg Added and wrote option --foldersizes diff --git a/ChangeLog b/ChangeLog index a8d10b9..0dbb47e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,15 +1,23 @@ RCS file: RCS/imapsync,v Working file: imapsync -head: 1.96 +head: 1.98 branch: locks: strict access list: symbolic names: keyword substitution: kv -total revisions: 96; selected revisions: 96 +total revisions: 98; selected revisions: 98 description: ---------------------------- +revision 1.98 +date: 2004/09/29 15:49:53; author: gilles; state: Exp; lines: +11 -6 +Ordered message transfer by uid. Thanks to David Alix suggestion. +---------------------------- +revision 1.97 +date: 2004/09/29 15:00:26; author: gilles; state: Exp; lines: +7 -6 +Success stories : Domino 5.0.6 +---------------------------- revision 1.96 date: 2004/07/09 09:08:43; author: gilles; state: Exp; lines: +41 -36 Rewrote foldersizes using size() instead of new and not diff --git a/README b/README index 7e896c3..5b76c61 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers. - $Revision: 1.96 $ + $Revision: 1.98 $ INSTALL imapsync works fine under any Unix OS. @@ -162,13 +162,14 @@ IMAP SERVERS - Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.1.16, 2.2.1, Cyrus 2.2.2-BETA - DBMail 1.2.1 - Dovecot 0.99.10.4 - - Domino (Notes) 6.5 + - Domino (Notes) 6.5, 5.0.6 - iPlanet Messaging server 4.15, 5.1 - IMail 7.15 (Ipswitch/Win2003) - MS Exchange Server 5.5 - Netscape Mail Server 3.6 (Wintel !) - SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System) - UW-imap servers (imap-2000b) rijkkramer IMAP4rev1 2000.287 + (RedHat uses UW like 2003.338rh) - UW - QMail v2.1 Please report to the author any success or bad story with imapsync and @@ -230,5 +231,5 @@ AUTHOR teaching free open and gratis softwares. Don't hesitate to pay him for that services. - $Id: imapsync,v 1.96 2004/07/09 09:08:43 gilles Exp $ + $Id: imapsync,v 1.98 2004/09/29 15:49:53 gilles Exp $ diff --git a/VERSION b/VERSION index 1e71443..a6f5a59 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.96 +1.98 diff --git a/imapsync b/imapsync index a0dc3d1..794d0b8 100755 --- a/imapsync +++ b/imapsync @@ -5,7 +5,7 @@ imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers. -$Revision: 1.96 $ +$Revision: 1.98 $ =head1 INSTALL @@ -187,13 +187,14 @@ Success stories reported (softwares in alphabetic order) : - Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.1.16, 2.2.1, Cyrus 2.2.2-BETA - DBMail 1.2.1 - Dovecot 0.99.10.4 - - Domino (Notes) 6.5 + - Domino (Notes) 6.5, 5.0.6 - iPlanet Messaging server 4.15, 5.1 - IMail 7.15 (Ipswitch/Win2003) - MS Exchange Server 5.5 - Netscape Mail Server 3.6 (Wintel !) - SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System) - UW-imap servers (imap-2000b) rijkkramer IMAP4rev1 2000.287 + (RedHat uses UW like 2003.338rh) - UW - QMail v2.1 Please report to the author any success or bad story with @@ -272,7 +273,7 @@ Gilles LAMIRAL earn his living writing, installing, configuring and teaching free open and gratis softwares. Don't hesitate to pay him for that services. -$Id: imapsync,v 1.96 2004/07/09 09:08:43 gilles Exp $ +$Id: imapsync,v 1.98 2004/09/29 15:49:53 gilles Exp $ =cut @@ -313,7 +314,7 @@ my( use vars qw ($opt_G); # missing code for this will be option. -$rcs = ' $Id: imapsync,v 1.96 2004/07/09 09:08:43 gilles Exp $ '; +$rcs = ' $Id: imapsync,v 1.98 2004/09/29 15:49:53 gilles Exp $ '; $rcs =~ m/,v (\d+\.\d+)/; $VERSION = ($1) ? $1 : "UNKNOWN"; @@ -350,8 +351,8 @@ $error=0; my $banner = join("", '$RCSfile: imapsync,v $ ', - '$Revision: 1.96 $ ', - '$Date: 2004/07/09 09:08:43 $ ', + '$Revision: 1.98 $ ', + '$Date: 2004/09/29 15:49:53 $ ', "\n", "Mail::IMAPClient version used here is ", $VERSION_IMAPClient, " auth md5 : $md5_supported", @@ -677,7 +678,12 @@ FOLDER: foreach my $f_fold (@f_folders) { $debug and print "++++ Verifying ++++\n"; # messages in "from" that are not good in "to" - MESS: foreach my $m_id (keys(%f_hash)) { + my @f_hash_keys_sorted_by_uid + = sort {$f_hash{$a}{'m'} <=> $f_hash{$b}{'m'}} keys(%f_hash); + + #print map { $f_hash{$_}{'m'} . " "} @f_hash_keys_sorted_by_uid; + + MESS: foreach my $m_id (@f_hash_keys_sorted_by_uid) { my $f_size = $f_hash{$m_id}{'s'}; my $f_msg = $f_hash{$m_id}{'m'}; if (defined $maxsize and $f_size > $maxsize) { diff --git a/learn/imapbyhand b/learn/imapbyhand index 14bb04c..295743c 100644 --- a/learn/imapbyhand +++ b/learn/imapbyhand @@ -4,7 +4,8 @@ telnet imap.truc.com 143 a01 CAPABILITY a02 LOGIN toto zorglub a43 SELECT INBOX -a44 UID STORE 60010:60010 +FLAGS (\DELETED) -a45 EXPUNGE -a46 LOGOUT +a54 UID STORE 60010:60010 +FLAGS (\DELETED) +a64 STORE 1:1 +FLAGS (\DELETED) +a75 EXPUNGE +a86 LOGOUT diff --git a/patches/imapsync-ssl.diff b/patches/imapsync-ssl.diff new file mode 100644 index 0000000..8f3300c --- /dev/null +++ b/patches/imapsync-ssl.diff @@ -0,0 +1,131 @@ +--- imapsync Fri Jul 9 11:08:43 2004 ++++ imapsync-ssl Tue Aug 31 12:13:06 2004 +@@ -33,9 +33,9 @@ $Revision: 1.96 $ + imapsync --help + imapsync + +- imapsync [--host1 server1] [--port1 ] ++ imapsync [--host1 server1] [--port1 ] [--ssl1] + [--user1 ] [--passfile1 ] +- [--host2 server2] [--port2 ] ++ [--host2 server2] [--port2 ] [--ssl2] + [--user2 ] [--passfile2 ] + [--folder --folder ...] + [--include ] [--exclude ] +@@ -283,13 +283,15 @@ use Getopt::Long; + use Mail::IMAPClient; + use Digest::MD5 qw(md5_base64); + #use Digest::HMAC_MD5; ++use IO::Socket::INET; ++use IO::Socket::SSL; + + eval { require 'usr/include/sysexits.ph' }; + + + my( + $rcs, $debug, $debugimap, $error, +- $host1, $host2, $port1, $port2, ++ $host1, $host2, $port1, $port2, $ssl1, $ssl2, + $user1, $user2, $password1, $password2, $passfile1, $passfile2, + @folder, $include, $exclude, $prefix2, $regextrans2, + $sep1, $sep2, +@@ -372,13 +374,13 @@ sub missing_option { + } + + $host1 || missing_option("--host1") ; +-$port1 = (defined($port1)) ? $port1 : 143; ++$port1 = (defined($port1)) ? $port1 : ((defined($ssl1)) ? 993 : 143); + $user1 || missing_option("--user1"); + $password1 || $passfile1 || missing_option("--passfile1 or --password1"); + $password1 = (defined($passfile1)) ? firstline ($passfile1) : $password1; + + $host2 || missing_option("--host2") ; +-$port2 = (defined($port2)) ? $port2 : 143; ++$port2 = (defined($port2)) ? $port2 : ((defined($ssl2)) ? 993 : 143); + $user2 || missing_option("--user2"); + $password2 || $passfile2 || missing_option("--passfile2 or --password2"); + $password2 = (defined($passfile2)) ? firstline ($passfile2) : $password2; +@@ -402,38 +404,56 @@ unless ($md5_supported) { + $timestart = time(); + + $debugimap and print "From connection\n"; +-$from = login_imap($host1, $port1, $user1, $password1, $debugimap, $timeout); ++$from = login_imap($host1, $port1, $user1, $password1, $debugimap, $timeout, undef, $ssl1); + + $debugimap and print "To connection\n"; +-$to = login_imap($host2, $port2, $user2, $password2, $debugimap, $timeout); ++$to = login_imap($host2, $port2, $user2, $password2, $debugimap, $timeout, undef, $ssl2); + + sub login_imap { + my($host, $port, $user, $password, +- $debugimap, $timeout, $authmech) = @_; +- my $imap = Mail::IMAPClient->new(); +- $imap->Server($host); +- $imap->Port($port); ++ $debugimap, $timeout, $authmech, $ssl) = @_; ++ my $socket = undef; ++ ++ if (!defined($ssl)) { ++ $socket = IO::Socket::INET->new( PeerAddr => $host, ++ PeerPort => $port, ++ Proto => 'tcp'); ++ } else { ++ $socket = IO::Socket::SSL->new( PeerAddr => $host, ++ PeerPort => $port, ++ Proto => 'tcp'); ++ } ++ if (!$socket) { ++ die "Can not open imap connection on [$host:$port]: $@"; ++ } ++ ++ my $imap = Mail::IMAPClient->new(Server => $host, ++ Port => $port, ++ Socket => $socket, ++ User => $user, ++ Password=> $password); ++ $imap->State($imap->Connected()); ++ + $imap->Fast_io(1); + $imap->Uid(1); + $imap->Peek(1); + $imap->Debug($debugimap); +- $imap->connect() +- or die "Can not open imap connection on [$host] with user [$user] : $@\n"; +- if ($timeout) # whr (ESS/PRW) +- { +- $imap->Timeout($timeout); +- print "Setting imap timeout to $timeout\n"; +- } +- +- $imap->User($user); +- $imap->Password($password); +- md5auth($imap); ++ ++ if ($timeout) # whr (ESS/PRW) ++ { ++ $imap->Timeout($timeout); ++ print "Setting imap timeout to $timeout\n"; ++ } ++ ++ select_auth($imap); ++ + $imap->login() or die "Error login : [$host] with user [$user] : $@"; ++ + return($imap); + } + + +-sub md5auth() { ++sub select_auth() { + my ($imap) = @_; + unless ($md5_supported) { + return; +@@ -810,6 +830,8 @@ sub get_options + "host2=s" => \$host2, + "port1=i" => \$port1, + "port2=i" => \$port2, ++ "ssl1!" => \$ssl1, ++ "ssl2!" => \$ssl2, + "user1=s" => \$user1, + "user2=s" => \$user2, + "password1=s" => \$password1, diff --git a/tests.sh b/tests.sh index 627127a..aa0e36c 100644 --- a/tests.sh +++ b/tests.sh @@ -1,8 +1,11 @@ #!/bin/sh -# $Id: tests.sh,v 1.22 2004/07/09 09:11:28 gilles Exp $ +# $Id: tests.sh,v 1.23 2004/09/07 00:38:36 gilles Exp $ # $Log: tests.sh,v $ +# Revision 1.23 2004/09/07 00:38:36 gilles +# Added noauthmd5 to first_sync test +# # Revision 1.22 2004/07/09 09:11:28 gilles # comment about pl and lp # @@ -132,7 +135,8 @@ first_sync() { --host1 localhost --user1 toto@est.belle \ --passfile1 /var/tmp/secret1 \ --host2 localhost --user2 titi@est.belle \ - --passfile2 /var/tmp/secret2 + --passfile2 /var/tmp/secret2 \ + --noauthmd5 } sendtestmessage() { diff --git a/zzz b/zzz deleted file mode 100644 index e94da09..0000000 --- a/zzz +++ /dev/null @@ -1,523 +0,0 @@ -get options: [1] -$RCSfile: imapsync,v $ $Revision: 1.88 $ $Date: 2004/03/29 23:33:00 $ -Mail::IMAPClient version used here is 2.1.4 auth md5 : 0 -From imap server [imap.free.fr] port [143] user [gilles.lamiral] -To imap server [loul] port [143] user [gilles] -Auth CRAM-MD5 not supported by IMAPClient 2.1.4 -From software : * OK [CAPABILITY IMAP4REV1 X-NETSCAPE LOGIN-REFERRALS AUTH=LOGIN] imap1-q.free.fr IMAP4rev1 2001.315/Proxad at Wed, 31 Mar 2004 18:24:08 +0200 (CEST) -To software : * OK louloutte Cyrus IMAP4 v1.5.19 server ready -From capability : IMAP4REV1 X-NETSCAPE NAMESPACE MAILBOX-REFERRALS SCAN SORT THREAD=REFERENCES THREAD=ORDEREDSUBJECT MULTIAPPEND LOGIN-REFERRALS AUTH=LOGIN -To capability : IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS X-NON-HIERARCHICAL-RENAME NO_ATOMIC_RENAME UNSELECT X-NETSCAPE -Getting separators -Calling namespace capability -Calling namespace capability -From separator : [/] -To separator : [.] -From folders : [INBOX] -To folders : [INBOX] [INBOX.AL] [INBOX.Backup] [INBOX.Backup_ASK] [INBOX.SPAM] [INBOX.Trash] [user.tata] [user.tata.Sent] [user.tata.Trash] [user.tata.ppp] [user.tata.qqq] [user.tata.yop] [user.tata.yop.yap] [user.tata.yop.yup] [user.tata.zz] [user.titi] -From subscribed folders : -From Folder [INBOX] -To Folder [INBOX] -Expunging INBOX and INBOX -LIST FROM : 60010 60045 60052 60059 60103 -LIST TO : 73151 73594 73687 73710 73783 73810 73830 73855 -++++ From Parse ++++ --------------------------------------------------- -MSG 60010 -Head NUM:14 -FH Cc:gilles.fassetta@free.fr, gilles.mobre@free.fr, gilles.lamiral@free.fr, gilive@free.fr -FH Content-Transfer-Encoding:8bit

If you receive a vast amount of bulk email then please read onX


This is email was sent to you so you may stop unwanted emails from entering your inbox. 

Let me tell you a little bit about myself and why I am imposing on your valuable time.

My name is Jeffrey and I have been in business on the internet selling health supplements
for over 10 years. Can you imagine the amount of spam I used to receive daily after 10
years of business? Let me tell youX It was overwhelming to say the least. In a short
amount of time was very difficult to operate my online business. My inboxes where filled
with advertisements for every product and get rich quick scheme out there.

Since my email accounts were for business use and all of my customers knew me by them,
it was imperative that I kept them. I was determined to stop my inboxes from getting
cluttered every day. I tried every method possible to keep my inboxes clean but it was
getting worse by the month. After spending hundreds of dollars on spam blockers and
countless hours I finally found the perfect solution. It is called Email Box Filter.

Email Box Filter was a lifesaver for me. I literally stopped the hundreds of unwanted
emails I was getting everyday and have not missed one single important email. On top of
all that I have eliminated any email virus threat. Here is a link where you can see all the
facts. http://bestemailfilter.biz/mbf3

If I have imposed on you and you never want to hear from me please enter your email
address here. http://bestemailfilter.biz/mbfr.htm or you can write to me at:

Market Research
8721 Santa Monica Boulevard
#1105
Los Angeles, CA 90069-4507



-FH Content-Type:text/html; charset=us-ascii -FH Date:Wed, 31 Mar 2004 19:11:25 +0400 -FH Delivered-To:online.fr-gilles.lamiral@free.fr -FH From:Sanford@juniaonline.com -FH MIME-Version:1.0 -FH Message-ID: -FH Received:(qmail 8208 invoked from network); 31 Mar 2004 02:10:02 -0000 -FH Received:from 172.130.97.160 by 212.27.42.16; Wed, 31 Mar 2004 13:05:25 -0200 -FH Received:from juniaonline.com (HELO 65.182.134.237) (65.182.134.237) by mrelay2-2.free.fr with SMTP; 31 Mar 2004 02:10:02 -0000 -FH Reply-To:Sanford@juniaonline.com -FH Return-Path: -FH Subject:Finally... Secret breakthrough ends email virus problem -FH To:gilles.beres@free.fr -FH X-Mailer:Rtooth Version 8.5 -F msg 60010:+2BN+Hr4TxUoqUkJp92X5Q:2913 --------------------------------------------------- -MSG 60045 -Head NUM:10 -FH Content-Type:multipart/alternative; boundary="_NextPart_9998286_boundary" -FH Date:Wed, 31 Mar 2004 01:12:57 -0800 -FH Delivered-To:online.fr-gilles.lamiral@free.fr -FH From:Pelvic Pain - blueyoo -FH MIME-Version:1.0 -FH Received:(qmail 16568 invoked from network); 31 Mar 2004 08:49:36 -0000 -FH Received:by loo226.blueyoo.net (PowerMTA(TM) v1.5); Wed, 31 Mar 2004 01:12:57 -0800 (envelope-from ) -FH Received:from loo226.blueyoo.net (69.59.191.226) by mrelay3-1.free.fr with SMTP; 31 Mar 2004 08:49:36 -0000 -FH Return-Path: -FH Subject:When It's More Than Just Cramps -FH To:gilles.lamiral@free.fr -FH X-SP-Track-ID: -F msg 60045:5flqBizIvHVoeCc0+No55Q:9658 --------------------------------------------------- -MSG 60052 -Head NUM:11 -FH Content-Type:multipart/alternative; boundary="--22915472166787050279" -FH Date:Wed, 31 Mar 2004 07:20:12 -0200 -FH Delivered-To:online.fr-gilles.lamiral@free.fr -FH From:"Lazaro Bradshaw" -FH MIME-Version:1.0 -FH Message-ID:<276455c2cl66$1s1p6789$76e5ewal@nankingbuffweepdu21> -FH Received:(qmail 10863 invoked from network); 31 Mar 2004 10:21:44 -0000 -FH Received:from aboundsulfonamidestrifele79 (parliamentarian[21.106.244.64]) by worldnet.att.net (mnacwge64) with SMTP id <23197861767074255200tqy2q> (Authid: MarionSheffield); Wed, 31 Mar 2004 05:15:12 -0400 -FH Received:from cable-68-112-220-117.sli.la.charter.com (68.112.220.117) by mrelay4-2.free.fr with SMTP; 31 Mar 2004 10:21:44 -0000 -FH Received:from ogsjttv36.worldnet.att.net ([22.202.199.152]) by zf9-k19.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Wed, 31 Mar 2004 02:20:12 -0700 -FH Return-Path: -FH Subject:Are you entirely happy with your... -FH To:"'Chaptuzgsxf'" -FH X-Message-Info:PGMUjHO17hMjpOUUs15w3QV1VXIiyGDu -F msg 60052:ZgJknhUn53zmVoaHP1MlMg:4212 --------------------------------------------------- -MSG 60059 -Head NUM:11 -FH Content-Type:multipart/alternative; boundary="--99835886282894991398" -FH Date:Wed, 31 Mar 2004 14:42:25 +0500 (CST) -FH Delivered-To:online.fr-gilles.lamiral@free.fr -FH From:Vickie Moyer -FH MIME-Version:1.0 -FH Message-Id:<216026901235.x8DHnMR81967240@o5.talmud06calumet.com> -FH Received:(from rockford@localhost) by dowager1.cody81alai.com (2.41.9w3/3.02.6/lovebird) id g7TQqPR9525380; Wed, 31 Mar 2004 07:46:25 -0200 (CST) -FH Received:(qmail 19798 invoked from network); 31 Mar 2004 10:48:56 -0000 -FH Received:from [0.16.224.128] (helo=sue0.psychometry72immune.com) by mail.bullyboydoll.com with esmtp (Exim 3.56) id 9ItetP-4911xL-ES for jorg@free.fr; Wed, 31 Mar 2004 04:47:25 -0500 -FH Received:from autocrat-dns.codebreaklaurence.com ([183.21.238.10]) by kh8-s70.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Wed, 31 Mar 2004 12:40:25 +0300 -FH Received:from brigadier8.sensuous14gimpy.com (localhost.digitalis08stopgap.com [127.0.0.1]) by attribution0.fermium15endgame.com (4.12.7w6/8.45.1) with ESMTP id a9VWgSN4637510 for ; Wed, 31 Mar 2004 08:41:25 -0100 (CST) (envelope-from eshabasu@indiatimes.com) -FH Received:from cvg-27-183-186.cinci.rr.com (24.27.183.186) by mx1-1.free.fr with SMTP; 31 Mar 2004 10:48:56 -0000 -FH Received:from mail.stressfulpith.com ([75.42.17.170]) by banana-dns.sachsadriatic.com (1.29.1/5.88.2) with ESMTP id j8EMets5170612 for ; Wed, 31 Mar 2004 08:44:25 -0100 (EST) (envelope-from eshabasu@indiatimes.com) -FH Return-Path: -FH Subject:Are you fully happy with your... -FH To:jorg@free.fr -FH X-Message-Info:GRJNnOE13rGeqtkMCLTCzmBmfNFNda62 -F msg 60059:WoWo7BOmjN/AT75IAG5R0A:4793 --------------------------------------------------- -MSG 60103 -Head NUM:27 -FH Content-Description:clearsigned data -FH Content-Disposition:inline -FH Content-Transfer-Encoding:8bit -FH Content-Type:Text/Plain; charset="iso-8859-1" -FH Date:Wed, 31 Mar 2004 18:21:48 +0200 -FH Delivered-To:online.fr-gilles.lamiral@free.fr -FH From:nono -FH List-Help: -FH List-Id: -FH List-Owner: -FH List-Post: -FH List-Subscribe: -FH List-Unsubscribe: -FH MIME-Version:1.0 -FH Message-Id:<200403311822.09125.jean.claude.noel@tele2.fr> -FH Precedence:list -FH Received:(from sympa@localhost) by tuxinette.linux-france.org (8.11.6/8.11.6/No Relay No Spam) id i2VGMAS11728; Wed, 31 Mar 2004 18:22:10 +0200 -FH Received:(qmail 21365 invoked from network); 31 Mar 2004 16:22:37 -0000 -FH Received:from [213.103.215.153] (HELO 192.168.2.100) by mailfe04.swip.net (CommuniGate Pro SMTP 4.2b2) with ESMTP id 667800 for gulliver@listes.gulliver.eu.org; Wed, 31 Mar 2004 18:22:11 +0200 -FH Received:from mailfe04.swip.net (mailfe04.swip.net [212.247.154.97]) by tuxinette.linux-france.org (8.11.6/8.11.6/No Relay No Spam) with ESMTP id i2VGLwD11713 for ; Wed, 31 Mar 2004 18:21:58 +0200 -FH Received:from tuxinette.linux-france.org (80.247.225.35) by mrelay4-2.free.fr with SMTP; 31 Mar 2004 16:22:37 -0000 -FH Reply-To:gulliver@listes.gulliver.eu.org -FH Return-Path: -FH Subject:[gulliver] debian image iso -FH To:gulliver@listes.gulliver.eu.org -FH User-Agent:KMail/1.5.4 -FH X-Authentication-Warning:tuxinette.linux-france.org: sympa set sender to gulliver-owner@listes.linux-france.org using -f -FH X-Loop:gulliver@listes.linux-france.org -FH X-MIME-Autoconverted:from base64 to 8bit by tuxinette.linux-france.org id i2VGLwD11713 -FH X-Sequence:3433 -FH X-no-archive:yes -F msg 60103:6Wk5nRKyHnEsvfaCsNC7pQ:3046 -++++ To Parse ++++ --------------------------------------------------- -MSG 73151 -Head NUM:18 -TH Content-Transfer-Encoding:8bit -TH Content-Type:text/plain; charset="iso-8859-1" -TH Date:Wed, 24 Mar 2004 09:20:30 +0100 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:"Gilles Le Traon" -TH Importance:Normal -TH In-Reply-To:<405DEE82.E5EB3F8A@free.fr> -TH MIME-Version:1.0 -TH Message-ID: -TH Received:(qmail 1301 invoked from network); 24 Mar 2004 08:56:57 -0000 -TH Received:from begcbpww3orgng (Mix-Rennes303-2-188.w193-248.abo.wanadoo.fr [193.248.10.188]) by mwinf0203.wanadoo.fr (SMTP Server) with SMTP id 3338110001AC for ; Wed, 24 Mar 2004 09:20:37 +0100 (CET) -TH Received:from imap.free.fr [212.27.42.9] by localhost with IMAP (fetchmail-5.9.11) for gilles@localhost (single-drop); Wed, 24 Mar 2004 14:28:13 +0100 (CET) -TH Received:from localhost (localhost [127.0.0.1]) by louloutte.dyndns.org (Postfix) with ESMTP id 95AEB1052C for ; Wed, 24 Mar 2004 14:28:13 +0100 (CET) -TH Received:from mwinf0203.wanadoo.fr (mwinf0203 [172.22.133.25]) by mwinf0205.wanadoo.fr (SMTP Server) with ESMTP id 1BD20600ABB7 for ; Wed, 24 Mar 2004 09:20:38 +0100 (CET) -TH Received:from smtp2.wanadoo.fr (HELO mwinf0205.wanadoo.fr) (193.252.22.29) by mrelay3-1.free.fr with SMTP; 24 Mar 2004 08:56:57 -0000 -TH Return-Path: -TH Subject:RE: les boules de gros bill -TH To:"Gilles LAMIRAL" -TH X-ASK-Info:Our key was found in the mail (2004/03/24 14:36:31) -TH X-MSMail-Priority:Normal -TH X-Mailer:Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) -TH X-MimeOLE:Produced By Microsoft MimeOLE V6.00.2600.0000 -TH X-Priority:3 (Normal) -T msg 73151:iSzLNC/3QkAv9Vo01YR9Mw:3361 --------------------------------------------------- -MSG 73594 -Head NUM:12 -TH Content-Transfer-Encoding:8bit -TH Content-type:text/plain; charset=ISO-8859-1 -TH Date:Sun, 28 Mar 2004 13:26:29 +0200 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:"Patrick Jehannin" -TH MIME-Version:1.0 -TH Message-id: -TH Received:(qmail 31142 invoked from network); 28 Mar 2004 11:21:03 -0000 -TH Received:from imap.free.fr [212.27.42.8] by localhost with IMAP (fetchmail-5.9.11) for gilles@localhost (single-drop); Sun, 28 Mar 2004 18:03:10 +0200 (CEST) -TH Received:from jehannin.net1.nerim.net (HELO mail.imotus.org) (62.4.20.30) by mrelay4-2.free.fr with SMTP; 28 Mar 2004 11:21:03 -0000 -TH Received:from localhost (localhost [127.0.0.1]) by louloutte.dyndns.org (Postfix) with ESMTP id 6FD9F10DE6 for ; Sun, 28 Mar 2004 18:03:10 +0200 (CEST) -TH Return-Path: -TH Subject:=?ISO-8859-1?Q?difficult=E9?= pour se=?ISO-8859-1?Q?_d=E9sinscrire?= -TH To:gilles.lamiral@free.fr -TH X-ASK-Info:Confirmed by User (2004/03/29 20:54:34) -TH X-ASK-Info:Message Queued (2004/03/28 18:41:05) -T msg 73594:orlpYDAb6hHersJNr8zlrg:1539 --------------------------------------------------- -MSG 73687 -Head NUM:14 -TH Content-Type:multipart/alternative; boundary="----=_NextPart_000_0014_01C41642.6C97B230" -TH Date:Tue, 30 Mar 2004 10:33:21 +0200 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:=?iso-8859-1?Q?Gis=E8le?= -TH MIME-Version:1.0 -TH Message-ID:<001701c41631$a95fe860$5b0000c0@AM01> -TH Received:(qmail 32124 invoked from network); 30 Mar 2004 11:05:15 -0000 -TH Received:from AM01 (ARennes-303-1-28-109.w81-53.abo.wanadoo.fr [81.53.113.109]) by mwinf0802.wanadoo.fr (SMTP Server) with SMTP id 13F3E18000B1 for ; Tue, 30 Mar 2004 10:31:58 +0200 (CEST) -TH Received:from imap.free.fr [212.27.42.7] by localhost with IMAP (fetchmail-5.9.11) for gilles@localhost (single-drop); Tue, 30 Mar 2004 14:49:40 +0200 (CEST) -TH Received:from localhost (localhost [127.0.0.1]) by louloutte.dyndns.org (Postfix) with ESMTP id 83F3B10286 for ; Tue, 30 Mar 2004 14:49:40 +0200 (CEST) -TH Received:from mwinf0802.wanadoo.fr (mwinf0802 [172.22.139.24]) by mwinf0805.wanadoo.fr (SMTP Server) with ESMTP id 6613B1805AA4 for ; Tue, 30 Mar 2004 10:31:58 +0200 (CEST) -TH Received:from smtp8.wanadoo.fr (HELO mwinf0805.wanadoo.fr) (193.252.22.23) by mrelay5-2.free.fr with SMTP; 30 Mar 2004 11:05:15 -0000 -TH Return-Path: -TH Subject:Bonjour mon amour -TH To:"Gilles lamiral" -TH X-MSMail-Priority:Normal -TH X-Mailer:Microsoft Outlook Express 6.00.2800.1158 -TH X-MimeOLE:Produced By Microsoft MimeOLE V6.00.2800.1165 -TH X-Priority:3 -T msg 73687:go+bJkm3e1aDIugyL5VdoQ:2906 --------------------------------------------------- -MSG 73710 -Head NUM:13 -TH Content-Type:Multipart/Mixed; boundary="Boundary-00=_wORaAQ/J8bhV+g8" -TH Date:Tue, 30 Mar 2004 06:29:04 +0000 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:Louvel =?iso-8859-1?q?G=E9rard?= -TH MIME-Version:1.0 -TH Message-Id:<200403300629.04549.gerard-louvel-bet@wanadoo.fr> -TH Organization:ECIE -TH Received:(qmail 9865 invoked from network); 30 Mar 2004 06:33:43 -0000 -TH Received:from ARennes-303-1-1-219.w193-252.abo.wanadoo.fr (ARennes-303-1-1-219.w193-252.abo.wanadoo.fr [193.252.110.219]) by mwinf0404.wanadoo.fr (SMTP Server) with ESMTP id 6DF0C3800092 for ; Tue, 30 Mar 2004 08:29:05 +0200 (CEST) -TH Received:from imap.free.fr [212.27.42.8] by localhost with IMAP (fetchmail-5.9.11) for gilles@localhost (single-drop); Tue, 30 Mar 2004 14:33:33 +0200 (CEST) -TH Received:from localhost (localhost [127.0.0.1]) by louloutte.dyndns.org (Postfix) with ESMTP id 9D91B10032 for ; Tue, 30 Mar 2004 14:33:33 +0200 (CEST) -TH Received:from mwinf0404.wanadoo.fr (mwinf0404 [172.22.135.26]) by mwinf0405.wanadoo.fr (SMTP Server) with ESMTP id 06FB8140041A9 for ; Tue, 30 Mar 2004 08:33:42 +0200 (CEST) -TH Received:from smtp4.wanadoo.fr (HELO mwinf0405.wanadoo.fr) (193.252.22.27) by mrelay4-2.free.fr with SMTP; 30 Mar 2004 06:33:43 -0000 -TH Return-Path: -TH Subject:=?iso-8859-1?q?G=E9rard=20LOUVEL=20=20Linux?= =?iso-8859-1?q?=20Foug=E8res?= -TH To:gilles.lamiral@free.fr -TH User-Agent:KMail/1.5.3 -TH X-ASK-Info:Confirmed by User (2004/03/30 20:37:33) -TH X-ASK-Info:Message Queued (2004/03/30 14:45:26) -T msg 73710:zfrlLB09jqlZGSalklUrYA:2850904 --------------------------------------------------- -MSG 73783 -Head NUM:30 -TH Cc:Neuronexion -TH Content-Transfer-Encoding:8bit -TH Content-Type:text/plain; charset=ISO-8859-15; format=flowed -TH Date:Wed, 31 Mar 2004 10:29:53 +0200 -TH Delivered-To:linux@listes.nnx.com -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:=?ISO-8859-15?Q?S=E9bastien_CORBEAU?= -TH In-Reply-To:<1080667385.6497.9.camel@pompei.newton.fr> -TH List-Archive: -TH List-Help: -TH List-Id: -TH List-Owner: -TH List-Post: -TH List-Subscribe: -TH List-Unsubscribe: -TH MIME-Version:1.0 -TH Message-ID:<406A8181.8060208@improve.fr> -TH Precedence:list -TH Received:(qmail 26197 invoked from network); 31 Mar 2004 08:34:31 -0000 -TH Received:by zen.nnx.com (Postfix, from userid 104) id D2563AC4E5; Wed, 31 Mar 2004 10:32:06 +0200 (CEST) -TH Received:from improve.fr (blinux.improve.fr [10.1.3.42]) by mail.improve.fr (Postfix) with ESMTP id B8AAA3E4F; Wed, 31 Mar 2004 10:22:47 +0200 (CEST) -TH Received:from localhost (localhost [127.0.0.1]) by mx1.nnx.com (Postfix) with ESMTP id 99A576024D for ; Wed, 31 Mar 2004 10:29:57 +0200 (CEST) -TH Received:from localhost (zen [127.0.0.1]) by zen.nnx.com (Postfix) with ESMTP id 9910AAC4D3; Wed, 31 Mar 2004 10:34:20 +0200 (CEST) -TH Received:from localhost (zen [127.0.0.1]) by zen.nnx.com (Postfix) with ESMTP id 9B31AAC4B3 for ; Wed, 31 Mar 2004 10:31:42 +0200 (CEST) -TH Received:from mail.improve.fr (host.39.163.23.62.rev.coltfrance.com [62.23.163.39]) by mx1.nnx.com (Postfix) with ESMTP id 98B076023D for ; Wed, 31 Mar 2004 10:29:55 +0200 (CEST) -TH Received:from mx1.nnx.com ([127.0.0.1]) by localhost (hermes [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17277-04 for ; Wed, 31 Mar 2004 10:29:56 +0200 (CEST) -TH Received:from mx1.nnx.com (mx1.neuronnexion.com [212.85.128.3]) by zen.nnx.com (Postfix) with ESMTP id B27ADAC47D for ; Wed, 31 Mar 2004 10:29:57 +0200 (CEST) -TH Received:from zen.nnx.com (212.85.128.14) by mrelay3-1.free.fr with SMTP; 31 Mar 2004 08:34:31 -0000 -TH Received:from zen.nnx.com ([127.0.0.1]) by localhost (zen [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22954-04 for ; Wed, 31 Mar 2004 10:31:41 +0200 (CEST) -TH Received:from zen.nnx.com ([127.0.0.1]) by localhost (zen [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23346-04; Wed, 31 Mar 2004 10:34:19 +0200 (CEST) -TH References:<1080667385.6497.9.camel@pompei.newton.fr> -TH Reply-To:linux@nnx.com -TH Return-Path: -TH Subject:Re: [MDK] Certificat Webmin -TH To:john.foo@beabatux.com -TH User-Agent:Mozilla Thunderbird 0.5 (X11/20040309) -TH X-Accept-Language:en-us, en -TH X-Loop:linux@nnx.com -TH X-NNX-Automated-Bogosity:No, tests=bogofilter, spamicity=0.000000, version=0.15.7 -TH X-Sequence:2187 -TH X-Virus-Scanned:by amavisd-new at nnx.com -TH X-Virus-Scanned:by amavisd-new at nnx.com -TH X-no-archive:yes -T msg 73783:/P6vfvjWUBPUE5Clb1rShA:3800 --------------------------------------------------- -MSG 73810 -Head NUM:29 -TH Content-Transfer-Encoding:8bit -TH Content-Type:text/plain; charset=ISO-8859-15 -TH Date:31 Mar 2004 15:43:04 +0200 -TH Delivered-To:linux@listes.nnx.com -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:John Foo -TH In-Reply-To:<406A8181.8060208@improve.fr> -TH List-Archive: -TH List-Help: -TH List-Id: -TH List-Owner: -TH List-Post: -TH List-Subscribe: -TH List-Unsubscribe: -TH Message-Id:<1080740584.7764.2.camel@pompei.newton.fr> -TH Mime-Version:1.0 -TH Organization:beabatux -TH Precedence:list -TH Received:(qmail 27026 invoked from network); 31 Mar 2004 13:43:37 -0000 -TH Received:(qmail 5196 invoked by uid 504); 31 Mar 2004 13:43:04 -0000 -TH Received:by zen.nnx.com (Postfix, from userid 104) id C7138AC4B8; Wed, 31 Mar 2004 15:43:29 +0200 (CEST) -TH Received:from etna.beabatux.com (etna.beabatux.com [212.180.111.238]) by mx1.nnx.com (Postfix) with SMTP id CFF276020F for ; Wed, 31 Mar 2004 15:43:13 +0200 (CEST) -TH Received:from john.foo@beabatux.com by etna.newton.fr by uid 401 with qmail-scanner-1.20 (clamscan: 20030829. spamassassin: 2.55. Clear:RC:1(192.168.1.7):. Processed in 0.009621 secs); 31 Mar 2004 13:43:04 -0000 -TH Received:from localhost (localhost [127.0.0.1]) by mx1.nnx.com (Postfix) with ESMTP id D0E9060233 for ; Wed, 31 Mar 2004 15:43:14 +0200 (CEST) -TH Received:from localhost (zen [127.0.0.1]) by zen.nnx.com (Postfix) with ESMTP id 24BCDAC479 for ; Wed, 31 Mar 2004 15:43:15 +0200 (CEST) -TH Received:from localhost (zen [127.0.0.1]) by zen.nnx.com (Postfix) with ESMTP id EE531AC4B9; Wed, 31 Mar 2004 15:43:35 +0200 (CEST) -TH Received:from mx1.nnx.com ([127.0.0.1]) by localhost (hermes [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25351-06 for ; Wed, 31 Mar 2004 15:43:14 +0200 (CEST) -TH Received:from mx1.nnx.com (mx1.neuronnexion.com [212.85.128.3]) by zen.nnx.com (Postfix) with ESMTP id DE1B8AC429 for ; Wed, 31 Mar 2004 15:43:14 +0200 (CEST) -TH Received:from pompei.newton.fr (192.168.1.7) by etna.newton.fr with SMTP; 31 Mar 2004 13:43:04 -0000 -TH Received:from zen.nnx.com (212.85.128.14) by mrelay5-2.free.fr with SMTP; 31 Mar 2004 13:43:37 -0000 -TH Received:from zen.nnx.com ([127.0.0.1]) by localhost (zen [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05298-09 for ; Wed, 31 Mar 2004 15:43:15 +0200 (CEST) -TH Received:from zen.nnx.com ([127.0.0.1]) by localhost (zen [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05311-10; Wed, 31 Mar 2004 15:43:34 +0200 (CEST) -TH References:<1080667385.6497.9.camel@pompei.newton.fr> <406A8181.8060208@improve.fr> -TH Reply-To:john.foo@beabatux.com -TH Return-Path: -TH Subject:Re: [MDK] Certificat Webmin -TH To:Neuronexion -TH X-Loop:linux@nnx.com -TH X-Mailer:Ximian Evolution 1.2.4-1.1mdk -TH X-NNX-Automated-Bogosity:No, tests=bogofilter, spamicity=0.000000, version=0.15.7 -TH X-Sequence:2191 -TH X-Virus-Scanned:by amavisd-new at nnx.com -TH X-Virus-Scanned:by amavisd-new at nnx.com -TH X-no-archive:yes -T msg 73810:vOWVw5YLfDju/iOQYja3ag:6333 --------------------------------------------------- -MSG 73830 -Head NUM:16 -TH Content-description:Mail message body -TH Content-transfer-encoding:8BIT -TH Content-type:text/plain; charset=ISO-8859-15 -TH Date:Wed, 31 Mar 2004 12:49:19 +0200 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:PINELLI Thierry SGAP Marseille -TH In-reply-to:<40683589.C4040F6B@free.fr> -TH MIME-Version:1.0 -TH Message-Id:<406ABE4F.1024.EAE9B2@localhost> -TH Organization:De Malfaiteurs -TH Priority:normal -TH Received:(qmail 22992 invoked from network); 31 Mar 2004 10:46:58 -0000 -TH Received:from interieur.gouv.fr (localhost [127.0.0.1]) -TH Received:from interieur.gouv.fr (localhost [127.0.0.1]) id 40629BC10003F4CF for gilles.lamiral@free.fr; Wed, 31 Mar 2004 12:46:55 +0200 -TH Received:from piloux.daum (tigre.interieur.gouv.fr [212.234.218.76]) by tigre.interieur.gouv.fr (8.12.9/8.12.9) with ESMTP id i2VAktwe023842 for ; Wed, 31 Mar 2004 12:46:56 +0200 -TH Received:from puma20.interieur.gouv.fr ([10.253.20.7]) -TH Received:from tigre.interieur.gouv.fr (212.234.218.76) by mrelay5-1.free.fr with SMTP; 31 Mar 2004 10:46:58 -0000 -TH Return-Path: -TH Subject:Re: moderation ou pas -TH To:Gilles LAMIRAL -TH X-mailer:Pegasus Mail for Windows (v4.12a) -T msg 73830:6I4Ea5Vjdzh2sKur4rve4Q:1839 --------------------------------------------------- -MSG 73855 -Head NUM:27 -TH Content-Description:clearsigned data -TH Content-Disposition:inline -TH Content-Transfer-Encoding:8bit -TH Content-Type:Text/Plain; charset="iso-8859-1" -TH Date:Wed, 31 Mar 2004 18:21:48 +0200 -TH Delivered-To:online.fr-gilles.lamiral@free.fr -TH From:nono -TH List-Help: -TH List-Id: -TH List-Owner: -TH List-Post: -TH List-Subscribe: -TH List-Unsubscribe: -TH MIME-Version:1.0 -TH Message-Id:<200403311822.09125.jean.claude.noel@tele2.fr> -TH Precedence:list -TH Received:(from sympa@localhost) by tuxinette.linux-france.org (8.11.6/8.11.6/No Relay No Spam) id i2VGMAS11728; Wed, 31 Mar 2004 18:22:10 +0200 -TH Received:(qmail 21365 invoked from network); 31 Mar 2004 16:22:37 -0000 -TH Received:from [213.103.215.153] (HELO 192.168.2.100) by mailfe04.swip.net (CommuniGate Pro SMTP 4.2b2) with ESMTP id 667800 for gulliver@listes.gulliver.eu.org; Wed, 31 Mar 2004 18:22:11 +0200 -TH Received:from mailfe04.swip.net (mailfe04.swip.net [212.247.154.97]) by tuxinette.linux-france.org (8.11.6/8.11.6/No Relay No Spam) with ESMTP id i2VGLwD11713 for ; Wed, 31 Mar 2004 18:21:58 +0200 -TH Received:from tuxinette.linux-france.org (80.247.225.35) by mrelay4-2.free.fr with SMTP; 31 Mar 2004 16:22:37 -0000 -TH Reply-To:gulliver@listes.gulliver.eu.org -TH Return-Path: -TH Subject:[gulliver] debian image iso -TH To:gulliver@listes.gulliver.eu.org -TH User-Agent:KMail/1.5.4 -TH X-Authentication-Warning:tuxinette.linux-france.org: sympa set sender to gulliver-owner@listes.linux-france.org using -f -TH X-Loop:gulliver@listes.linux-france.org -TH X-MIME-Autoconverted:from base64 to 8bit by tuxinette.linux-france.org id i2VGLwD11713 -TH X-Sequence:3433 -TH X-no-archive:yes -T msg 73855:6Wk5nRKyHnEsvfaCsNC7pQ:3046 -++++ Verifying ++++ -+ key 6Wk5nRKyHnEsvfaCsNC7pQ:3046 #60103 -Message id [6Wk5nRKyHnEsvfaCsNC7pQ:3046] found in t:INBOX -Setting flags -flags from : -flags to : -Looking dates -idate from : 31-Mar-2004 16:22:37 +0000 -idate to : 31-Mar-2004 18:23:51 +0200 -Message 6Wk5nRKyHnEsvfaCsNC7pQ:3046 SZ_GOOD f:60103:3046 t:73855:3046 -Deleting msg #60103 in folder INBOX -+ key ZgJknhUn53zmVoaHP1MlMg:4212 #60052 -+ NO msg #60052 [ZgJknhUn53zmVoaHP1MlMg:4212] in INBOX -+ Copying msg #60052:4212 to folder INBOX -Mail::IMAPClient=HASH(0x815dcec)::message_string: expected 4212 bytes but received 4211 at ./imapsync line 644 -Use of uninitialized value in print at ./imapsync line 645. -F message content begin next line -F message content end previous line -internal date from 1: ["31-Mar-2004 10:22:00 +0000"] -flags from : [\Seen][] -Use of uninitialized value in substitution (s///) at /usr/share/perl5/Mail/IMAPClient.pm line 2128. -Use of uninitialized value in length at /usr/share/perl5/Mail/IMAPClient.pm line 2151. -Error trying to append string: 30 NO Message has no header/body separator - at ./imapsync line 658 -subject is all lower-case. May conflict with future methods. Change method name to be mixed case or all upper case to ensure upward compatability at ./imapsync line 659 -Use of uninitialized value in concatenation (.) or string at ./imapsync line 659. -Couldn't append msg #60052 (Subject:[]) to folder INBOX: Error trying to append string: 30 NO Message has no header/body separator - - -+ key WoWo7BOmjN/AT75IAG5R0A:4793 #60059 -+ NO msg #60059 [WoWo7BOmjN/AT75IAG5R0A:4793] in INBOX -+ Copying msg #60059:4793 to folder INBOX -Mail::IMAPClient=HASH(0x815dcec)::message_string: expected 4793 bytes but received 4792 at ./imapsync line 644 -Use of uninitialized value in print at ./imapsync line 645. -F message content begin next line -F message content end previous line -internal date from 1: ["31-Mar-2004 10:49:09 +0000"] -flags from : [\Seen][] -Use of uninitialized value in substitution (s///) at /usr/share/perl5/Mail/IMAPClient.pm line 2128. -Use of uninitialized value in length at /usr/share/perl5/Mail/IMAPClient.pm line 2151. -Error trying to append string: 31 NO Message has no header/body separator - at ./imapsync line 658 -subject is all lower-case. May conflict with future methods. Change method name to be mixed case or all upper case to ensure upward compatability at ./imapsync line 659 -Use of uninitialized value in concatenation (.) or string at ./imapsync line 659. -Couldn't append msg #60059 (Subject:[]) to folder INBOX: Error trying to append string: 31 NO Message has no header/body separator - - -+ key 5flqBizIvHVoeCc0+No55Q:9658 #60045 -+ NO msg #60045 [5flqBizIvHVoeCc0+No55Q:9658] in INBOX -+ Copying msg #60045:9658 to folder INBOX -Mail::IMAPClient=HASH(0x815dcec)::message_string: expected 9658 bytes but received 9562 at ./imapsync line 644 -Use of uninitialized value in print at ./imapsync line 645. -F message content begin next line -F message content end previous line -internal date from 1: ["31-Mar-2004 08:49:36 +0000"] -flags from : [\Seen][] -Use of uninitialized value in substitution (s///) at /usr/share/perl5/Mail/IMAPClient.pm line 2128. -Use of uninitialized value in length at /usr/share/perl5/Mail/IMAPClient.pm line 2151. -Error trying to append string: 32 NO Message has no header/body separator - at ./imapsync line 658 -subject is all lower-case. May conflict with future methods. Change method name to be mixed case or all upper case to ensure upward compatability at ./imapsync line 659 -Use of uninitialized value in concatenation (.) or string at ./imapsync line 659. -Couldn't append msg #60045 (Subject:[]) to folder INBOX: Error trying to append string: 32 NO Message has no header/body separator - - -+ key +2BN+Hr4TxUoqUkJp92X5Q:2913 #60010 -+ NO msg #60010 [+2BN+Hr4TxUoqUkJp92X5Q:2913] in INBOX -+ Copying msg #60010:2913 to folder INBOX -F message content begin next line -Return-Path: -Delivered-To: online.fr-gilles.lamiral@free.fr -Received: (qmail 8208 invoked from network); 31 Mar 2004 02:10:02 -0000 -Received: from juniaonline.com (HELO 65.182.134.237) (65.182.134.237) - by mrelay2-2.free.fr with SMTP; 31 Mar 2004 02:10:02 -0000 -Received: from 172.130.97.160 by 212.27.42.16; Wed, 31 Mar 2004 13:05:25 -0200 -Message-ID: -From: Sanford@juniaonline.com -Reply-To: Sanford@juniaonline.com -To: gilles.beres@free.fr -Cc: gilles.fassetta@free.fr, gilles.mobre@free.fr, gilles.lamiral@free.fr, gilive@free.fr -Subject: Finally... Secret breakthrough ends email virus problem -Date: Wed, 31 Mar 2004 19:11:25 +0400 -MIME-Version: 1.0 -X-Mailer: Rtooth Version 8.5 -Content-Type: text/html; charset=us-ascii -Content-Transfer-Encoding: 8bit - - -

If you receive a vast amount of bulk email then please read on…
-
-
-This is email was sent to you so you may stop unwanted emails from entering your inbox. 
-
-Let me tell you a little bit about myself and why I am imposing on your valuable time.
-
-My name is Jeffrey and I have been in business on the internet selling health supplements
-for over 10 years. Can you imagine the amount of spam I used to receive daily after 10
-years of business? Let me tell you… It was overwhelming to say the least. In a short
-amount of time was very difficult to operate my online business. My inboxes where filled
-with advertisements for every product and get rich quick scheme out there.
-
-Since my email accounts were for business use and all of my customers knew me by them,
-it was imperative that I kept them. I was determined to stop my inboxes from getting
-cluttered every day. I tried every method possible to keep my inboxes clean but it was
-getting worse by the month. After spending hundreds of dollars on spam blockers and
-countless hours I finally found the perfect solution. It is called Email Box Filter.
-
-Email Box Filter was a lifesaver for me. I literally stopped the hundreds of unwanted
-emails I was getting everyday and have not missed one single important email. On top of
-all that I have eliminated any email virus threat. Here is a link where you can see all the
-facts. http://bestemailfilter.biz/mbf3
-
-If I have imposed on you and you never want to hear from me please enter your email
-address here. http://bestemailfilter.biz/mbfr.htm or you can write to me at:
-
-Market Research
-8721 Santa Monica Boulevard
-#1105
-Los Angeles, CA 90069-4507
-
-
-

-
-

- -F message content end previous line -internal date from 1: ["31-Mar-2004 02:10:02 +0000"] -flags from : [][] -Error trying to append: 33 NO Message contains invalid header - at ./imapsync line 658 -subject is all lower-case. May conflict with future methods. Change method name to be mixed case or all upper case to ensure upward compatability at ./imapsync line 659 -Use of uninitialized value in concatenation (.) or string at ./imapsync line 659. -Couldn't append msg #60010 (Subject:[]) to folder INBOX: Error trying to append: 33 NO Message contains invalid header - - -Total bytes transfered : 0 -Total bytes skipped : 3046 -Total bytes error : 21576 -Detected 4 errors -Please, rate imapsync at http://freshmeat.net/projects/imapsync/