This commit is contained in:
Nick Bebout 2011-03-12 02:43:55 +00:00
parent 8e192052da
commit 5256d44504
7 changed files with 560 additions and 19 deletions

View file

@ -1,15 +1,19 @@
RCS file: RCS/imapsync,v RCS file: RCS/imapsync,v
Working file: imapsync Working file: imapsync
head: 1.88 head: 1.89
branch: branch:
locks: strict locks: strict
access list: access list:
symbolic names: symbolic names:
keyword substitution: kv keyword substitution: kv
total revisions: 88; selected revisions: 88 total revisions: 89; selected revisions: 89
description: description:
---------------------------- ----------------------------
revision 1.89
date: 2004/03/31 17:37:23; author: gilles; state: Exp; lines: +17 -13
Changed debug output
----------------------------
revision 1.88 revision 1.88
date: 2004/03/29 23:33:00; author: gilles; state: Exp; lines: +27 -11 date: 2004/03/29 23:33:00; author: gilles; state: Exp; lines: +27 -11
Added BUGS section about "Multiple copies". Added BUGS section about "Multiple copies".

4
README
View file

@ -2,7 +2,7 @@ NAME
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imapsync - IMAP sync or copy tool. Synchronize mailboxes between two
imap servers. imap servers.
$Revision: 1.88 $ $Revision: 1.89 $
INSTALL INSTALL
imapsync works fine under any Unix OS. imapsync works fine under any Unix OS.
@ -229,5 +229,5 @@ AUTHOR
teaching free open and gratis softwares. Don't hesitate to pay him for teaching free open and gratis softwares. Don't hesitate to pay him for
that services. that services.
$Id: imapsync,v 1.88 2004/03/29 23:33:00 gilles Exp $ $Id: imapsync,v 1.89 2004/03/31 17:37:23 gilles Exp $

View file

@ -1 +1 @@
1.88 1.89

View file

@ -4,7 +4,7 @@
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers. imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers.
$Revision: 1.88 $ $Revision: 1.89 $
=head1 INSTALL =head1 INSTALL
@ -269,7 +269,7 @@ Gilles LAMIRAL earn his living writing, installing,
configuring and teaching free open and gratis configuring and teaching free open and gratis
softwares. Don't hesitate to pay him for that services. softwares. Don't hesitate to pay him for that services.
$Id: imapsync,v 1.88 2004/03/29 23:33:00 gilles Exp $ $Id: imapsync,v 1.89 2004/03/31 17:37:23 gilles Exp $
=cut =cut
@ -307,7 +307,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option. use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.88 2004/03/29 23:33:00 gilles Exp $ '; $rcs = ' $Id: imapsync,v 1.89 2004/03/31 17:37:23 gilles Exp $ ';
$rcs =~ m/,v (\d+\.\d+)/; $rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN"; $VERSION = ($1) ? $1 : "UNKNOWN";
@ -343,8 +343,8 @@ $error=0;
my $banner = join("", my $banner = join("",
'$RCSfile: imapsync,v $ ', '$RCSfile: imapsync,v $ ',
'$Revision: 1.88 $ ', '$Revision: 1.89 $ ',
'$Date: 2004/03/29 23:33:00 $ ', '$Date: 2004/03/31 17:37:23 $ ',
"\n", "\n",
"Mail::IMAPClient version used here is ", "Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported", $VERSION_IMAPClient, " auth md5 : $md5_supported",
@ -615,33 +615,36 @@ FOLDER: foreach my $f_fold (@f_folders) {
my %f_hash = (); my %f_hash = ();
my %t_hash = (); my %t_hash = ();
$debug and print "From Parse\n"; $debug and print "++++ From Parse ++++\n";
foreach my $m (@f_msgs) { foreach my $m (@f_msgs) {
parse_header_msg($m, $from, "F", \%f_hash); parse_header_msg($m, $from, "F", \%f_hash);
} }
$debug and print "To Parse\n"; $debug and print "++++ To Parse ++++\n";
foreach my $m (@t_msgs) { foreach my $m (@t_msgs) {
parse_header_msg($m, $to, "T", \%t_hash); parse_header_msg($m, $to, "T", \%t_hash);
} }
$debug and print "Verifying\n"; $debug and print "++++ Verifying ++++\n";
# messages in "from" that are not good in "to" # messages in "from" that are not good in "to"
MESS: foreach my $m_id (keys(%f_hash)) { MESS: foreach my $m_id (keys(%f_hash)) {
my $f_size = $f_hash{$m_id}{'s'}; my $f_size = $f_hash{$m_id}{'s'};
my $f_msg = $f_hash{$m_id}{'m'}; my $f_msg = $f_hash{$m_id}{'m'};
if (defined $maxsize and $f_size > $maxsize) { if (defined $maxsize and $f_size > $maxsize) {
print "Skipping msg #$f_msg:$f_size in folder $f_fold (exceeds maxsize limit $maxsize bytes)\n"; print "+ Skipping msg #$f_msg:$f_size in folder $f_fold (exceeds maxsize limit $maxsize bytes)\n";
$mess_size_total_skipped += $f_msg; $mess_size_total_skipped += $f_msg;
next MESS; next MESS;
} }
$debug and print "key $m_id #$f_msg\n"; $debug and print "+ key $m_id #$f_msg\n";
unless (exists($t_hash{$m_id})) { unless (exists($t_hash{$m_id})) {
print "NO msg #$f_msg [$m_id] in $t_fold\n"; print "+ NO msg #$f_msg [$m_id] in $t_fold\n";
# copy # copy
print "Copying msg #$f_msg:$f_size to folder $t_fold\n"; print "+ Copying msg #$f_msg:$f_size to folder $t_fold\n";
unless ($dry) { unless ($dry) {
my $string = $from->message_string($f_msg); my $string = $from->message_string($f_msg);
$debug and print "F message content begin next line\n",
$string,
"F message content end previous line\n";
my $d = $from->internaldate($f_msg); my $d = $from->internaldate($f_msg);
$d = "\"$d\""; $d = "\"$d\"";
$debug and print "internal date from 1: [$d]\n"; $debug and print "internal date from 1: [$d]\n";
@ -653,7 +656,7 @@ FOLDER: foreach my $f_fold (@f_folders) {
my $new_id; my $new_id;
print "flags from : [$flags_f][$d]\n"; print "flags from : [$flags_f][$d]\n";
unless($new_id = $to->append_string($t_fold,$string, $flags_f, $d)){ unless($new_id = $to->append_string($t_fold,$string, $flags_f, $d)){
warn "Couldn't append msg #$f_msg (Subject: ".$from->subject($f_msg).") to folder $t_fold: ", warn "Couldn't append msg #$f_msg (Subject:[".$from->subject($f_msg)."]) to folder $t_fold: ",
$to->LastError, "\n"; $to->LastError, "\n";
$error++; $error++;
$mess_size_total_error += $f_size; $mess_size_total_error += $f_size;
@ -726,6 +729,7 @@ stats();
exit(1) if($error); exit(1) if($error);
sub stats { sub stats {
print "++++ Statistics ++++\n";
print "Total bytes transfered : $mess_size_total_trans\n"; print "Total bytes transfered : $mess_size_total_trans\n";
print "Total bytes skipped : $mess_size_total_skipped\n"; print "Total bytes skipped : $mess_size_total_skipped\n";
print "Total bytes error : $mess_size_total_error\n"; print "Total bytes error : $mess_size_total_error\n";

10
learn/imapbyhand Normal file
View file

@ -0,0 +1,10 @@
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

2
memo
View file

@ -22,7 +22,7 @@ NEWS_FILE="/home/gilles/public_html/www.linux-france.org/html/niouzes/niouzes_im
if ! newer VERSION $NEWS_FILE; then if ! newer VERSION $NEWS_FILE; then
echo "$VERSION already announced" echo "$VERSION already announced"
else else
cat >> $NEWS_FILE << EOF cat > $NEWS_FILE << EOF
<news date="`date '+%Y%m%d'`"> <news date="`date '+%Y%m%d'`">
`LANG=fr date '+%A %d %B %Y'` : Synchronisez ou migrez vos boites `LANG=fr date '+%A %d %B %Y'` : Synchronisez ou migrez vos boites

523
zzz Normal file
View file

@ -0,0 +1,523 @@
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 <html><p>If you receive a vast amount of bulk email then please read onX<br><br><br>This is email was sent to you so you may stop unwanted emails from entering your inbox.&nbsp;<br><br>Let me tell you a little bit about myself and why I am imposing on your valuable time.<br><br>My name is Jeffrey and I have been in business on the internet selling health supplements<br>for over 10 years. Can you imagine the amount of spam I used to receive daily after 10<br>years of business? Let me tell youX It was overwhelming to say the least. In a short<br>amount of time was very difficult to operate my online business. My inboxes where filled<br>with advertisements for every product and get rich quick scheme out there.<br><br>Since my email accounts were for business use and all of my customers knew me by them,<br>it was imperative that I kept them. I was determined to stop my inboxes from getting<br>cluttered every day. I tried every method possible to keep my inboxes clean but it was<br>getting worse by the month. After spending hundreds of dollars on spam blockers and<br>countless hours I finally found the perfect solution. It is called Email Box Filter.<br><br>Email Box Filter was a lifesaver for me. I literally stopped the hundreds of unwanted<br>emails I was getting everyday and have not missed one single important email. On top of<br>all that I have eliminated any email virus threat. Here is a link where you can see all the<br>facts. <a href="http://bestemailfilter.com/mbf3"> http://bestemailfilter.biz/mbf3</a><br><br>If I have imposed on you and you never want to hear from me please enter your email<br>address here.<a href="http://bestemailfilter.com/mbfr.htm"> http://bestemailfilter.biz/mbfr.htm</a> or you can write to me at:<br><br>Market Research<br>8721 Santa Monica Boulevard<br>#1105<br>Los Angeles, CA 90069-4507<br><br><br><p><img src="http://bestemailfilter.com/mbf.asp?email=gilles.beres@free.fr" width="1" height="0"></p><br></p></html>
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:<WCBHKUEZWOBIIJPEUTNHDYTEQ@juniaonline.com>
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:<Kimberly@juniaonline.com>
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<PelvicPainblueyoo9998286@blueyoo.net>
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 <coups@blueyoo.net>)
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:<coups@blueyoo.net>
FH Subject:When It's More Than Just Cramps
FH To:gilles.lamiral@free.fr
FH X-SP-Track-ID:<odTXzNapRBt7E>
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" <sunny1098@yahoo.com>
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:<sunny1098@yahoo.com>
FH Subject:Are you entirely happy with your...
FH To:"'Chaptuzgsxf'" <chaptuzgsxf@free.fr>
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 <eshabasu@indiatimes.com>
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 <jorg@free.fr>; 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 <jorg@free.fr>; Wed, 31 Mar 2004 08:44:25 -0100 (EST) (envelope-from eshabasu@indiatimes.com)
FH Return-Path:<eshabasu@indiatimes.com>
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 <jean.claude.noel@tele2.fr>
FH List-Help:<mailto:sympa@listes.linux-france.org?subject=help>
FH List-Id:<gulliver@listes.linux-france.org>
FH List-Owner:<mailto:gulliver-request@listes.linux-france.org>
FH List-Post:<mailto:gulliver@listes.linux-france.org>
FH List-Subscribe:<mailto:sympa@listes.linux-france.org?subject=subscribe%20gulliver>
FH List-Unsubscribe:<mailto:sympa@listes.linux-france.org?subject=unsubscribe%20gulliver>
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 <gulliver@listes.gulliver.eu.org>; 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:<gulliver-owner@listes.linux-france.org>
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" <gilles-letraon@wanadoo.fr>
TH Importance:Normal
TH In-Reply-To:<405DEE82.E5EB3F8A@free.fr>
TH MIME-Version:1.0
TH Message-ID:<NPEGIBEHCOCEGPNDBGFJGEDKCAAA.gilles-letraon@wanadoo.fr>
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 <gilles.lamiral@free.fr>; 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 <gilles@localhost>; 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 <gilles.lamiral@free.fr>; 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:<gilles-letraon@wanadoo.fr>
TH Subject:RE: les boules de gros bill
TH To:"Gilles LAMIRAL" <gilles.lamiral@free.fr>
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" <Patrick.Jehannin@imotus.org>
TH MIME-Version:1.0
TH Message-id:<fc.000f6f7a001c54ea000f6f7a001c54ea.1c5503@imotus.org>
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 <gilles@localhost>; Sun, 28 Mar 2004 18:03:10 +0200 (CEST)
TH Return-Path:<Patrick.Jehannin@imotus.org>
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?= <gisele@cityjeans.fr>
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 <gilles.lamiral@free.fr>; 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 <gilles@localhost>; 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 <gilles.lamiral@free.fr>; 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:<gisele@cityjeans.fr>
TH Subject:Bonjour mon amour
TH To:"Gilles lamiral" <gilles.lamiral@free.fr>
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?= <gerard-louvel-bet@wanadoo.fr>
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 <gilles.lamiral@free.fr>; 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 <gilles@localhost>; 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 <gilles.lamiral@free.fr>; 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:<gerard-louvel-bet@wanadoo.fr>
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 <linux@nnx.com>
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?= <scorbeau@improve.fr>
TH In-Reply-To:<1080667385.6497.9.camel@pompei.newton.fr>
TH List-Archive:<http://listes.nnx.com/wws/arc/linux>
TH List-Help:<mailto:listserv@listes.nnx.com?subject=help>
TH List-Id:<linux@nnx.com>
TH List-Owner:<mailto:linux-request@nnx.com>
TH List-Post:<mailto:linux@nnx.com>
TH List-Subscribe:<mailto:listserv@listes.nnx.com?subject=subscribe%20linux>
TH List-Unsubscribe:<mailto:listserv@listes.nnx.com?subject=unsubscribe%20linux>
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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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:<linux-owner@nnx.com>
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 <john.foo@beabatux.com>
TH In-Reply-To:<406A8181.8060208@improve.fr>
TH List-Archive:<http://listes.nnx.com/wws/arc/linux>
TH List-Help:<mailto:listserv@listes.nnx.com?subject=help>
TH List-Id:<linux@nnx.com>
TH List-Owner:<mailto:linux-request@nnx.com>
TH List-Post:<mailto:linux@nnx.com>
TH List-Subscribe:<mailto:listserv@listes.nnx.com?subject=subscribe%20linux>
TH List-Unsubscribe:<mailto:listserv@listes.nnx.com?subject=unsubscribe%20linux>
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 <linux@nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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 <linux@listes.nnx.com>; 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:<linux-owner@nnx.com>
TH Subject:Re: [MDK] Certificat Webmin
TH To:Neuronexion <linux@nnx.com>
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 <thierry.pinelli@interieur.gouv.fr>
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 <gilles.lamiral@free.fr>; 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:<thierry.pinelli@interieur.gouv.fr>
TH Subject:Re: moderation ou pas
TH To:Gilles LAMIRAL <gilles.lamiral@free.fr>
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 <jean.claude.noel@tele2.fr>
TH List-Help:<mailto:sympa@listes.linux-france.org?subject=help>
TH List-Id:<gulliver@listes.linux-france.org>
TH List-Owner:<mailto:gulliver-request@listes.linux-france.org>
TH List-Post:<mailto:gulliver@listes.linux-france.org>
TH List-Subscribe:<mailto:sympa@listes.linux-france.org?subject=subscribe%20gulliver>
TH List-Unsubscribe:<mailto:sympa@listes.linux-france.org?subject=unsubscribe%20gulliver>
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 <gulliver@listes.gulliver.eu.org>; 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:<gulliver-owner@listes.linux-france.org>
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: <Kimberly@juniaonline.com>
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: <WCBHKUEZWOBIIJPEUTNHDYTEQ@juniaonline.com>
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
<html>
<p>If you receive a vast amount of bulk email then please read on…<br>
<br>
<br>
This is email was sent to you so you may stop unwanted emails from entering your inbox.&nbsp;<br>
<br>
Let me tell you a little bit about myself and why I am imposing on your valuable time.<br>
<br>
My name is Jeffrey and I have been in business on the internet selling health supplements<br>
for over 10 years. Can you imagine the amount of spam I used to receive daily after 10<br>
years of business? Let me tell you… It was overwhelming to say the least. In a short<br>
amount of time was very difficult to operate my online business. My inboxes where filled<br>
with advertisements for every product and get rich quick scheme out there.<br>
<br>
Since my email accounts were for business use and all of my customers knew me by them,<br>
it was imperative that I kept them. I was determined to stop my inboxes from getting<br>
cluttered every day. I tried every method possible to keep my inboxes clean but it was<br>
getting worse by the month. After spending hundreds of dollars on spam blockers and<br>
countless hours I finally found the perfect solution. It is called Email Box Filter.<br>
<br>
Email Box Filter was a lifesaver for me. I literally stopped the hundreds of unwanted<br>
emails I was getting everyday and have not missed one single important email. On top of<br>
all that I have eliminated any email virus threat. Here is a link where you can see all the<br>
facts. <a href="http://bestemailfilter.com/mbf3"> http://bestemailfilter.biz/mbf3</a><br>
<br>
If I have imposed on you and you never want to hear from me please enter your email<br>
address here.<a href="http://bestemailfilter.com/mbfr.htm"> http://bestemailfilter.biz/mbfr.htm</a> or you can write to me at:<br>
<br>
Market Research<br>
8721 Santa Monica Boulevard<br>
#1105<br>
Los Angeles, CA 90069-4507<br>
<br>
<br>
<p><img src="http://bestemailfilter.com/mbf.asp?email=gilles.beres@free.fr" width="1" height="0"></p>
<br>
</p>
</html>
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/