This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
forked from imapsync/imapsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3347 lines (3334 loc) · 138 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RCS file: RCS/imapsync,v
Working file: imapsync
head: 1.727
branch:
locks: strict
gilles: 1.727
access list:
symbolic names:
keyword substitution: kv
total revisions: 727; selected revisions: 727
description:
----------------------------
revision 1.727 locked by: gilles;
date: 2016/08/19 10:30:36; author: gilles; state: Exp; lines: +53 -110
Bugfix. Fall back separator to / even when host has no mailbox at all.
Usability. Better warning about default ssl SSL_VERIFY_NONE
----------------------------
revision 1.726
date: 2016/08/16 21:32:35; author: gilles; state: Exp; lines: +19 -19
Changed "Checking --regexflag --skipmess --regexmess --maxlinelengthcmd --pipemess commands" with a space string instead of an empty one. Because pipemess() now fails when output is empty.
----------------------------
revision 1.725
date: 2016/08/16 00:01:48; author: gilles; state: Exp; lines: +122 -83
Some perl critics.
----------------------------
revision 1.724
date: 2016/08/13 11:04:06; author: gilles; state: Exp; lines: +362 -150
Refactor. No more global $pidfile, $pidfilelocking, $nb_errors, $errorsdump, @errors_log.
Refactor. Changed exit_clean. From exit_clean( 0 ) to exit_clean( $sync, $EX_OK ) ;
Refactor. Changed errors_incr. From errors_incr( $error ) to errors_incr( $sync, $error ).
Refactor. From stats( ) to stats( $sync ).
Added constants:
* $EXIT_WITH_ERRORS_MAX
* $EXIT_BY_SIGNAL
* $EXIT_WITH_ERRORS
* $EXIT_PID_FILE_ALREADY_EXIST
* $INTERVAL_TO_EXIT
----------------------------
revision 1.723
date: 2016/07/29 21:57:03; author: gilles; state: Exp; lines: +12 -11
Force Unconnected state with Ctrl-c.
----------------------------
revision 1.722
date: 2016/07/29 21:14:11; author: gilles; state: Exp; lines: +20 -12
Added sub debugsleep()
Changed --debugsleep to take a float parameter. --debugsleep 4.5 add a sleep of 4.5 seconds every folder and before every copied message.
----------------------------
revision 1.721
date: 2016/07/29 17:25:00; author: gilles; state: Exp; lines: +57 -29
Do reconnections when hit by a signal Ctrl-c, aka INT signal.
2 consecutive Ctrl-c within 1 second then exit the program.
----------------------------
revision 1.720
date: 2016/07/29 15:01:38; author: gilles; state: Exp; lines: +324 -225
Some Perl critics "not one of the allowed literal values". Now still 188 violations of ValuesAndExpressions::ProhibitMagicNumbers.
----------------------------
revision 1.719
date: 2016/07/25 19:27:47; author: gilles; state: Exp; lines: +229 -152
Change some print to myprint.
Fixed some perlcritic level 4 & 5
sub pipemess now abort on empty message generated.
sub pipemess prints stderr
----------------------------
revision 1.718
date: 2016/07/20 10:45:51; author: gilles; state: Exp; lines: +21 -13
Added --inet4 to force AF_INET connextion in ssl mode.
Added --inet6 too to force AF_INET6 in ssl mode. Might be useless.
----------------------------
revision 1.717
date: 2016/07/13 14:05:20; author: gilles; state: Exp; lines: +130 -57
Started tests_message_for_host2()
Added cyrillic for hard part --automap
--pipemess test with pipe (cat|cat)
--pipemess tests with arrors
----------------------------
revision 1.716
date: 2016/07/12 09:02:25; author: gilles; state: Exp; lines: +209 -81
Added full mocked tests to sub tests_delete1emptyfolders(). Test::MockObject is really helpful!
Changed pipemess() to return both message and stderr output, in list context. Scalar context stays the same, for now.
Added list context tests to tests_pipemess()
----------------------------
revision 1.715
date: 2016/07/05 21:17:48; author: gilles; state: Exp; lines: +10 -10
Removed from errors list "ignoring folder because it is not in host1 whole folders list". Too hard too.
----------------------------
revision 1.714
date: 2016/07/05 21:12:23; author: gilles; state: Exp; lines: +10 -10
Remove "not selectable" folders from the errors list. Too hard.
----------------------------
revision 1.713
date: 2016/07/05 12:50:35; author: gilles; state: Exp; lines: +21 -18
Added "ignoring folder" in the errors list.
----------------------------
revision 1.712
date: 2016/06/30 01:35:02; author: gilles; state: Exp; lines: +202 -21
Added option --delete1emptyfolders ; 8 hours to write it.
Added module dependency Test::MockObject for some tests. Only require for now.
----------------------------
revision 1.711
date: 2016/06/22 20:23:33; author: gilles; state: Exp; lines: +10 -10
Removed a useless debug output
----------------------------
revision 1.710
date: 2016/06/22 14:47:23; author: gilles; state: Exp; lines: +28 -27
Perlcritic fixes. ValuesAndExpressions::ProhibitMagicNumbers some 3 and is_a_release_number tests.
----------------------------
revision 1.709
date: 2016/06/22 11:32:40; author: gilles; state: Exp; lines: +58 -37
Perlcritic fixes. ValuesAndExpressions::ProhibitMagicNumbers -1 => $LAST or $MINUS_ONE.
----------------------------
revision 1.708
date: 2016/06/22 10:32:45; author: gilles; state: Exp; lines: +193 -192
Perlcritic fixes. ProhibitParensWithBuiltins, Last ones.
----------------------------
revision 1.707
date: 2016/06/18 00:37:24; author: gilles; state: Exp; lines: +64 -81
Perlcritic fixes. ProhibitParensWithBuiltins, exists() => exists. But not all. Need to examine precedence with not or and etc.
Uncommented call to $test_builder->reset( ) Don't know why it was commented but it was bad for knowing tests go wrong.
----------------------------
revision 1.706
date: 2016/06/17 13:34:09; author: gilles; state: Exp; lines: +13 -13
Sugar. "return (" => "return("
----------------------------
revision 1.705
date: 2016/06/17 13:28:23; author: gilles; state: Exp; lines: +422 -422
Replaced all print( calls by myprint( calls.
It prepares better output handling, I hope.
----------------------------
revision 1.704
date: 2016/06/17 13:25:16; author: gilles; state: Exp; lines: +36 -36
Replaced smyprintf by mysprintf
----------------------------
revision 1.703
date: 2016/06/17 13:12:09; author: gilles; state: Exp; lines: +700 -697
Perlcritic fixes. Rmoved parentheses, ProhibitParensWithBuiltins, for defined|scalar|push|keys|unshift|uc
but added parentheses to print.
Replaced printf by myprintf
Replaced sprinf by smyprintf.
----------------------------
revision 1.702
date: 2016/06/15 22:43:35; author: gilles; state: Exp; lines: +495 -495
Fixed perl critic 458 violations of ValuesAndExpressions::ProhibitInterpolationOfLiterals. "Useless interpolation of literal string". 2 left but critic bugs on them. "\1foo" is not '\1foo' but critic suggests equality.
----------------------------
revision 1.701
date: 2016/06/12 23:39:04; author: gilles; state: Exp; lines: +812 -812
Fixed perlcritic "Don't use whitespace at the end of lines". Was 627 violations of CodeLayout::ProhibitTrailingWhitespace. Now 0. For now...
----------------------------
revision 1.700
date: 2016/06/12 20:55:25; author: gilles; state: Exp; lines: +33 -33
Fixed perlcritic latest ouble-sigil dereference $$foo => ${ $ffo } and $#$foo => $#{ $foo }
----------------------------
revision 1.699
date: 2016/06/12 19:51:52; author: gilles; state: Exp; lines: +29 -29
Fixed perlcritic Double-sigil dereference @$foo => @{ $foo }
----------------------------
revision 1.698
date: 2016/06/12 19:39:15; author: gilles; state: Exp; lines: +33 -36
Fixed perlcritic %$foo => %{ $ff }
Double-sigil dereference
----------------------------
revision 1.697
date: 2016/06/12 18:42:18; author: gilles; state: Exp; lines: +53 -24
Perl critic fixes. 10 x "Unnamed numeric literals make code less maintainable.". use Readonly to fix them.
----------------------------
revision 1.696
date: 2016/06/09 23:42:34; author: gilles; state: Exp; lines: +201 -201
Fixed perlcritic 'Quotes used with a string containing no non-whitespace characters'.
"" or '' => q{}
" " or ' ' => q{ }
----------------------------
revision 1.695
date: 2016/06/09 18:17:14; author: gilles; state: Exp; lines: +15 -10
Check connected state in sub create_folder().
----------------------------
revision 1.694
date: 2016/06/08 21:01:15; author: gilles; state: Exp; lines: +43 -17
Added patch: [imapsync/imapsync] Update XOAUTH2 support to work with Google's newer .json files (#68).
----------------------------
revision 1.693
date: 2016/06/07 21:13:03; author: gilles; state: Exp; lines: +38 -28
CGI loaded when needed only.
In CGI mode, Remove all content in unsafe evalued options.
In CGI mode, help solving permission issues.
----------------------------
revision 1.692
date: 2016/05/25 16:34:15; author: gilles; state: Exp; lines: +11 -11
Small typo
----------------------------
revision 1.691
date: 2016/05/24 20:56:34; author: gilles; state: Exp; lines: +25 -18
Fixed -1 false output for big account %d => %s in printf.
Wrote and use getpwuid_any_os. getpwuid breaks on Windows.
----------------------------
revision 1.690
date: 2016/05/14 21:21:56; author: gilles; state: Exp; lines: +33 -23
*** empty log message ***
----------------------------
revision 1.689
date: 2016/05/09 17:58:11; author: gilles; state: Exp; lines: +155 -20
Started to be CGI compatible.
Started package Imapsync::Getopt::Long.
----------------------------
revision 1.688
date: 2016/03/27 22:56:47; author: gilles; state: Exp; lines: +11 -11
Check return code of message_to_file in sub message_for_host2.
----------------------------
revision 1.687
date: 2016/03/24 20:39:33; author: gilles; state: Exp; lines: +10 -10
Replaced message_string() call by message_to_file() and won 1x again.
Now imapsync crunches only 2x biggest message size in memory.
----------------------------
revision 1.686
date: 2016/03/24 20:21:57; author: gilles; state: Exp; lines: +27 -27
Changed append_message_on_host2() to pass message string by reference.
Memory usage passed from 5x to 3x. 3x remains from underlying Mail::IMAPClient module in Mail::IMAPClient::message_string()
----------------------------
revision 1.685
date: 2016/03/24 17:02:13; author: gilles; state: Exp; lines: +65 -35
Added memory debug in order to decrease the 5x message size in memory.
----------------------------
revision 1.684
date: 2016/03/17 08:35:03; author: gilles; state: Exp; lines: +24 -16
Bugfix. No more warning about "Use of uninitialized value $sockargs[7] in join or string at"
in ssl or tls mode. Was due to "'SSL_version' => undef".
----------------------------
revision 1.683
date: 2016/03/07 02:41:11; author: gilles; state: Exp; lines: +22 -10
Added --sslargs1 in documentation.
----------------------------
revision 1.682
date: 2016/03/01 00:47:54; author: gilles; state: Exp; lines: +16 -11
*** empty log message ***
----------------------------
revision 1.681
date: 2016/02/04 03:34:49; author: gilles; state: Exp; lines: +12 -13
Bugfix. Syntax error!
----------------------------
revision 1.680
date: 2016/02/04 02:11:32; author: gilles; state: Exp; lines: +25 -27
Bugfix. Added --expungeaftereach in sub delete_message_on_host1().
Usability. Added "use --noexpungeaftereach to speed up" if --delete is used.
----------------------------
revision 1.679
date: 2016/01/25 01:57:54; author: gilles; state: Exp; lines: +11 -11
Bugfix. "Can't use an undefined value as a HASH reference at /usr/bin/imapsync line 1247."
----------------------------
revision 1.678
date: 2016/01/21 19:47:02; author: gilles; state: Exp; lines: +14 -21
README part check.
----------------------------
revision 1.677
date: 2016/01/19 14:55:06; author: gilles; state: Exp; lines: +295 -289
help message easier to copy in README part.
----------------------------
revision 1.676
date: 2016/01/16 05:30:00; author: gilles; state: Exp; lines: +282 -77
Changed basic option list by --help output.
----------------------------
revision 1.675
date: 2016/01/06 01:10:05; author: gilles; state: Exp; lines: +11 -9
Added --errorsmax in --help message.
----------------------------
revision 1.674
date: 2015/12/28 18:31:06; author: gilles; state: Exp; lines: +17 -10
Added --debugssl int. Default is like --debugssl 1 (Only print out errors).
----------------------------
revision 1.673
date: 2015/12/26 02:00:05; author: gilles; state: Exp; lines: +141 -145
Added --timeout1
Added --timeout2 (--timeout still available to set both with the same value)
Added --sslargs1 to pass any ssl parameter for host1 connection.
Added --sslargs2 to pass any ssl parameter for host2 connection.
Example --sslargs1 SSL_verify_mode=1 --sslargs1 SSL_version=SSLv3
Removed --allow3xx option.
----------------------------
revision 1.672
date: 2015/12/10 10:23:49; author: gilles; state: Exp; lines: +9 -8
Added require Encode::Byte to solve "The locale codeset (cp1252) isn't one that perl can decode" on Win32.
----------------------------
revision 1.671
date: 2015/12/09 03:22:46; author: gilles; state: Exp; lines: +48 -47
Added env_proxy call in sub xoauth2() to read proxy settings from environment variable without PERL_LWP_ENV_PROXY=1
----------------------------
revision 1.670
date: 2015/12/03 02:36:41; author: gilles; state: Exp; lines: +11 -12
Bugfix. logfile missed user2.
----------------------------
revision 1.669
date: 2015/12/03 02:03:53; author: gilles; state: Exp; lines: +138 -83
--logdir --logfile now compatible with old --logfile alone. tests cases.
----------------------------
revision 1.668
date: 2015/12/02 13:23:22; author: gilles; state: Exp; lines: +94 -86
Fixed some perlcritics.
----------------------------
revision 1.667
date: 2015/11/30 02:44:12; author: gilles; state: Exp; lines: +156 -60
--automap implemented.
Added --justautomap to see what will happen with --automap and --f1f2 options.
----------------------------
revision 1.666
date: 2015/11/23 14:56:56; author: gilles; state: Exp; lines: +50 -19
Doc fix. --logfile path inline and in usage().
Added require JSON::WebToken::Crypt::RSA and Crypt::OpenSSL::RSA to a good build on Win32.
Tested OAUTH2 on windows. Works.
Bug fix. Changed "Host1: checking all wanted folders exist" not efficient algorythm
to allow a 2.4 million folders account. Yes, some people have this...
----------------------------
revision 1.665
date: 2015/11/06 00:45:35; author: gilles; state: Exp; lines: +29 -9
Made quota wrnings, quota human usable.
----------------------------
revision 1.664
date: 2015/11/04 18:09:22; author: gilles; state: Exp; lines: +362 -323
Back to require IO::Socket::SSL;
instead of use.
Reformated the usage output.
Added --f1f2 str1=str2 : Force folder str1 to be synced to str2.
--f1f2 overrides any automap mapping and any regextrans2
----------------------------
revision 1.663
date: 2015/10/03 23:59:27; author: gilles; state: Exp; lines: +12 -9
Bugfix. Return with previous Debug when no quota available.
----------------------------
revision 1.662
date: 2015/10/03 22:14:37; author: gilles; state: Exp; lines: +84 -24
Added quota_extract_storage_limit_in_bytes()
Added quota_extract_storage_current_in_bytes()
----------------------------
revision 1.661
date: 2015/09/28 15:36:41; author: gilles; state: Exp; lines: +18 -19
Better prints.
----------------------------
revision 1.660
date: 2015/09/28 14:18:10; author: gilles; state: Exp; lines: +21 -15
IMAP output as an early stage of quota and ID.
----------------------------
revision 1.659
date: 2015/09/21 22:47:50; author: gilles; state: Exp; lines: +107 -29
Better ID format sent. Order terms like in thr RFC.
Added imapsync_id_github, in case.
----------------------------
revision 1.658
date: 2015/09/19 08:56:07; author: gilles; state: Exp; lines: +8 -8
RCS date in id.
----------------------------
revision 1.657
date: 2015/09/19 08:26:04; author: gilles; state: Exp; lines: +206 -77
Started to use global $sync-> in order to reduce number of parameters in routines.
----------------------------
revision 1.656
date: 2015/09/13 16:11:07; author: gilles; state: Exp; lines: +46 -24
Some perlcritic fixes.
----------------------------
revision 1.655
date: 2015/09/11 01:57:51; author: gilles; state: Exp; lines: +15 -12
Bugfix testing automap.
----------------------------
revision 1.654
date: 2015/09/11 01:23:42; author: gilles; state: Exp; lines: +121 -76
Added --automap to implement rfc6154. Turned on by default.
Use --noautomap to avoid it.
----------------------------
revision 1.653
date: 2015/09/05 21:35:56; author: gilles; state: Exp; lines: +27 -25
IO::Socket::SSL mandatory to run.
SSL_VERIFY_NONE in --ssl and --tls
----------------------------
revision 1.652
date: 2015/08/28 14:59:59; author: gilles; state: Exp; lines: +8 -8
"Initial difference" -> "Start difference"
----------------------------
revision 1.651
date: 2015/08/18 22:35:05; author: gilles; state: Exp; lines: +8 -8
fixed xoauth2 calls.
----------------------------
revision 1.650
date: 2015/08/16 00:42:58; author: gilles; state: Exp; lines: +28 -28
Changed some output, added Host1: or Host2 at the begining of line.
----------------------------
revision 1.649
date: 2015/08/10 03:10:15; author: gilles; state: Exp; lines: +7 -7
576 tests.
----------------------------
revision 1.648
date: 2015/08/10 02:58:21; author: gilles; state: Exp; lines: +99 -39
Added guess_prefix() and guess_separator()
Guess prefixes and separators instead of forcing the user to find them.
----------------------------
revision 1.647
date: 2015/08/07 04:35:15; author: gilles; state: Exp; lines: +33 -20
Added folders counting outputs.
----------------------------
revision 1.646
date: 2015/08/07 00:07:39; author: gilles; state: Exp; lines: +16 -6
Added sub imap_utf7_encode( ). Not used.
----------------------------
revision 1.645
date: 2015/07/31 14:48:11; author: gilles; state: Exp; lines: +11 -11
Better outpout in login_imap()
----------------------------
revision 1.644
date: 2015/07/17 01:22:52; author: gilles; state: Exp; lines: +9 -7
Added NOOP in --dry mode during fake APPEND.
----------------------------
revision 1.643
date: 2015/06/24 01:01:00; author: gilles; state: Exp; lines: +17 -10
Added --fetch_hash_set "1:*" to permit Mail2World success.
Need a patched Mail::IMAPClient 3.35 in sub fetch_hash()
See https://rt.cpan.org/Public/Bug/Display.html?id=105456
----------------------------
revision 1.642
date: 2015/05/11 01:07:37; author: gilles; state: Exp; lines: +9 -6
Added JSON::WebToken in modules list.
----------------------------
revision 1.641
date: 2015/05/09 17:52:27; author: gilles; state: Exp; lines: +27 -128
Replaced imap servers software list by a link to the web list.
Added option --subfolder2 SUB Move whole host1 folders hierarchy under folder SUB.
----------------------------
revision 1.640
date: 2015/05/05 01:03:34; author: gilles; state: Exp; lines: +18 -12
No folders sizes if --justfolders, unless really wanted.
----------------------------
revision 1.639
date: 2015/04/16 19:33:59; author: gilles; state: Exp; lines: +7 -7
*** empty log message ***
----------------------------
revision 1.638
date: 2015/04/09 22:47:24; author: gilles; state: Exp; lines: +19 -11
No warning about messages when --dry --justfolders together.
----------------------------
revision 1.637
date: 2015/04/01 01:36:37; author: gilles; state: Exp; lines: +9 -9
Bugfix. Win32 regression with long_path_2_prefix test. Was too long.
----------------------------
revision 1.636
date: 2015/03/31 14:54:41; author: gilles; state: Exp; lines: +107 -65
Added errors dump. By default. Use --noerrorsdump to avoid it.
Added --errorsmax switch. Default is like --errorsmax 50. Exit after 50 errors encountered.
----------------------------
revision 1.635
date: 2015/03/30 07:36:08; author: gilles; state: Exp; lines: +19 -15
Changed basic example to a working one with test1.lamiral.info
----------------------------
revision 1.634
date: 2015/03/25 02:10:56; author: gilles; state: Exp; lines: +10 -7
Bugfix. Remove tmp files upon failure as well.
----------------------------
revision 1.633
date: 2015/03/25 01:14:36; author: gilles; state: Exp; lines: +96 -73
IO::Socket::SSL not mandatory. (Sometimes hard to install).
Bugfix. SKIP sections for Unix or Windows tests. Removed no_plan. 561 non-regression tests.
----------------------------
revision 1.632
date: 2015/03/23 23:29:16; author: gilles; state: Exp; lines: +16 -6
Added tests_live_result() call at the end of --livetests
----------------------------
revision 1.631
date: 2015/03/23 00:04:04; author: gilles; state: Exp; lines: +52 -41
README part review.
----------------------------
revision 1.630
date: 2015/03/20 03:07:59; author: gilles; state: Exp; lines: +93 -52
Bugfix. Made --tests succeed on Windows. At least at home.
----------------------------
revision 1.629
date: 2015/03/19 03:43:24; author: gilles; state: Exp; lines: +10 -16
Usability. Better output of folders excluded by --exclude and folders included by --include
----------------------------
revision 1.628
date: 2015/03/19 03:03:28; author: gilles; state: Exp; lines: +80 -38
Bugfix. tests_imapsync_basename only check substring imapsync in the command name used.
Feature. Added --maxlinelengthcmd that will be called upon when a line over --maxlinelength is detected. --maxlinelengthcmd 'reformime -r7' on Linux.
----------------------------
revision 1.627
date: 2015/03/16 15:55:57; author: gilles; state: Exp; lines: +34 -21
Added --testslive
----------------------------
revision 1.626
date: 2015/03/15 02:52:43; author: gilles; state: Exp; lines: +20 -20
Update tests_skipmess()
----------------------------
revision 1.625
date: 2015/03/14 00:32:41; author: gilles; state: Exp; lines: +31 -15
Bugfix. New disarmreadreceipts was buggy in IMAP. Fixed. \r in the beginning.
----------------------------
revision 1.624
date: 2015/03/13 02:05:12; author: gilles; state: Exp; lines: +41 -18
Searching for "deep recursion" with skipmess on "Partial" messages. Not found.
----------------------------
revision 1.623
date: 2015/03/12 16:33:59; author: gilles; state: Exp; lines: +21 -6
Made check folders exist on host1 independent of checkselectable.
----------------------------
revision 1.622
date: 2015/03/12 16:28:38; author: gilles; state: Exp; lines: +24 -11
Bugfix. --folderfirst and --folderlast generated an error when their value folder does not exist. Existence is checked.
----------------------------
revision 1.621
date: 2015/03/12 10:40:11; author: gilles; state: Exp; lines: +86 -21
Bugfix --disarmreadreceipts last fix was a bad one. In IMAP \n is \r\n.
Added error handling for --pipemess
Adapted tests for "Content-Type: Message/Partial" --slipmess
----------------------------
revision 1.620
date: 2015/03/10 04:07:33; author: gilles; state: Exp; lines: +141 -10
Bugfix. --disarmreadreceipts used to change Disposition-Notification-To in the body when not available in the header. Now never changed in the body in all cases.
----------------------------
revision 1.619
date: 2015/03/10 03:13:30; author: gilles; state: Exp; lines: +301 -22
Use \x00 as a separator to detect --delete 2, instead of ¤.
Added tests for --skipmess, especially for header "Content-Type: Message/Partial"
Bug detected --disarmreadreceipts isn't correct. Added tests and fix in tests.
Added tests in tests_regexmess(). Disposition-Notification-To: better handled.
----------------------------
revision 1.618
date: 2015/03/07 04:38:59; author: gilles; state: Exp; lines: +261 -205
Added --pipemess in order to pass all message to an external filter tool like "reformime -r7".
----------------------------
revision 1.617
date: 2015/03/04 01:09:50; author: gilles; state: Exp; lines: +18 -19
Link to http://www.imap.org/ changed to archive.org.
----------------------------
revision 1.616
date: 2015/03/02 23:14:42; author: gilles; state: Exp; lines: +86 -10
Added xoauth2 support. Thanks to Joaquin Lopez.
----------------------------
revision 1.615
date: 2015/03/01 23:26:10; author: gilles; state: Exp; lines: +76 -46
Fixed tests with "header_line_normalize: remove last blanks".
Remove the last blanks ( Gmail bug ) to identify message with headers.
Term::ReadKey and IO::Socket::SSL now in use statements instead of require (so they became mandatory).
Change list of use pragmas order to facilitate reading.
----------------------------
revision 1.614
date: 2015/02/22 22:43:16; author: gilles; state: Exp; lines: +90 -46
Added inline help.
About --nofoldersizes, foldernames listings, --passfile1 --passfile2.
Change usage order.
----------------------------
revision 1.613
date: 2015/02/22 01:08:51; author: gilles; state: Exp; lines: +23 -10
Fixed issue with 1282658400 and logfile() by and system upgrade. Looks like Ubuntu 10.4 was buggy.
----------------------------
revision 1.612
date: 2015/02/03 23:20:51; author: gilles; state: Exp; lines: +17 -13
Fixed tests_logfile() when TZ is not mine.
Works for epoch 0 but found a difference for 1282658400
----------------------------
revision 1.611
date: 2015/02/02 16:14:43; author: gilles; state: Exp; lines: +18 -18
Started inline help; talk about options everywhere it means and help to lean imapsync.
Change default useheader. Now it is really like --useheader "Message-Id" --useheader "Received"
HMailServer replies two lines with --useheader "Message-Id" --useheader "Message-ID" in older releases.
----------------------------
revision 1.610
date: 2015/01/20 12:07:30; author: gilles; state: Exp; lines: +21 -15
Bugfix in imap_utf7_decode() + must not be escaped.
----------------------------
revision 1.609
date: 2014/11/28 17:06:53; author: gilles; state: Exp; lines: +14 -8
Bugfix. --skipmess was not skipping.
----------------------------
revision 1.608
date: 2014/11/28 16:47:29; author: gilles; state: Exp; lines: +95 -12
Added --skipmess to skip messages matching a regex.
Example --skipmess 'm/[\x80-ff]/'
----------------------------
revision 1.607
date: 2014/11/14 16:25:06; author: gilles; state: Exp; lines: +46 -40
Added several checks if IsUnconnected. Goal avoid imap commands while disconnected.
----------------------------
revision 1.606
date: 2014/11/14 14:49:13; author: gilles; state: Exp; lines: +16 -13
Added total size transferred after each message copied.
Added number of total to be synced as a denominator dddd after each message copied, nnn/dddd, where nnn is the number of messages copied.
----------------------------
revision 1.605
date: 2014/11/11 00:00:37; author: gilles; state: Exp; lines: +40 -10
Bugfix. On Windows file path with brackets [] are special. [a] must be written [[]a[]]
----------------------------
revision 1.604
date: 2014/11/08 00:29:26; author: gilles; state: Exp; lines: +36 -9
Added --skipemptyfolders to skip empty host1 folders. They are not created on host2.
----------------------------
revision 1.603
date: 2014/11/07 22:06:33; author: gilles; state: Exp; lines: +26 -26
Typo from previous save with gedit and ¤
----------------------------
revision 1.602
date: 2014/11/07 21:57:57; author: gilles; state: Exp; lines: +82 -19
Added utf8 output for folder names that use special characters in utf7imap
----------------------------
revision 1.601
date: 2014/10/28 10:48:07; author: gilles; state: Exp; lines: +22 -22
Moved foldersizes call after folders lists print.
----------------------------
revision 1.600
date: 2014/10/27 10:41:52; author: gilles; state: Exp; lines: +8 -8
Remove /x from regex applied with --include and --exclude. Blanks no longer have to be explicit with \ or [ ].
----------------------------
revision 1.599
date: 2014/10/26 23:42:12; author: gilles; state: Exp; lines: +14 -10
Added help usage for --nomixfolders
----------------------------
revision 1.598
date: 2014/10/21 00:27:07; author: gilles; state: Exp; lines: +20 -7
Added tests to check --regextrans2 's,(.*),\L$1,'
Exchange issue with folders with same name and --delete2.
----------------------------
revision 1.597
date: 2014/10/06 10:48:26; author: gilles; state: Exp; lines: +12 -11
Changed --nomixdiffcasefolders to --nomixfolders.
Bugfix. --nomixdiffcasefolders was not parsed in command line so it did not work.
----------------------------
revision 1.596
date: 2014/09/04 17:17:36; author: gilles; state: Exp; lines: +11 -6
Added --logfile in help output.
Added --nolog in help output.
----------------------------
revision 1.595
date: 2014/09/01 19:39:16; author: gilles; state: Exp; lines: +7 -7
Changed output, no examine anymore, only select.
----------------------------
revision 1.594
date: 2014/08/16 22:40:02; author: gilles; state: Exp; lines: +14 -9
Fixed "imapsync doesn't see created folders in stats phase". Second time.
----------------------------
revision 1.593
date: 2014/07/08 11:19:43; author: gilles; state: Exp; lines: +18 -7
Added --nomixdiffcasefolders to avoid merging folders that are considered different on host1 but the same on destination host2 because of case sensitivities and insensitivities.
----------------------------
revision 1.592
date: 2014/05/22 10:03:17; author: gilles; state: Exp; lines: +23 -12
Bugfix. Make TLS works with last IO::Socket::SSL default value (SSL_verify_mode => 'SSL_VERIFY_NONE') in tls.
----------------------------
revision 1.591
date: 2014/05/22 01:32:52; author: gilles; state: Exp; lines: +30 -19
Bugfix. IO::Tee and Open3 in backstic() were incompatible.
FailedBugFix. Tried to fix Tls issue "ERROR: Unable to start TLS: SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed at c:/strawberry/perl/site/lib/Mail/IMAPClient.pm line 455." No success.
----------------------------
revision 1.590
date: 2014/05/20 23:07:14; author: gilles; state: Exp; lines: +12 -6
Added option --disarmreadreceipts to fix resending read receipts with Exchange as host2.
----------------------------
revision 1.589
date: 2014/05/20 21:35:16; author: gilles; state: Exp; lines: +93 -37
Added logging by default in subdirectory LOG_imapsync/.
Added option --log. --log is on by default. --nolog to disable logging.
Added option --logfile. Default is like LOG_imapsync/YYYY_MM_DD_HH_MM_SS_user2.txt
where YYYY_MM_DD_HH_MM_SS is the current date and time like 2014_05_20_23_45_10
Use IO::Tee Perl module for logging.
Fixed bug when creating folders on host2 with sep2 to \\ (Lotus Notes).
Updated the code to easily switch on --noreleasecheck by default.
----------------------------
revision 1.588
date: 2014/05/15 10:36:10; author: gilles; state: Exp; lines: +18 -11
Added FTGate support (no EXAMINE).
----------------------------
revision 1.587
date: 2014/05/09 17:03:27; author: gilles; state: Exp; lines: +14 -7
Typo when advising about prefix.
Easy way to switch releasecheck of by default.
----------------------------
revision 1.586
date: 2014/04/10 16:02:39; author: gilles; state: Exp; lines: +9 -7
Just a test for good_date and pop2imap
----------------------------
revision 1.585
date: 2014/02/17 15:24:34; author: gilles; state: Exp; lines: +39 -34
Warn syncing messges will not be simulated when --dry mode is on and folder on host2 does not exist yet.
Try to get folder size when a folder on host2 has the same name but with a different case like OLD_MAIL -> old_mail. Avoid "does not exist" output.
----------------------------
revision 1.584
date: 2014/02/05 00:40:59; author: gilles; state: Exp; lines: +77 -50
Debug. Print separator given by NAMESPACE even when --sep1 oe --sep2 is used.
Debug. Prints prefix given by NAMESPACE even when --prefix1 or --prefix2 is used.
(Preparation for advising not to use --prefix unless suggested)
----------------------------
revision 1.583
date: 2014/02/04 03:04:35; author: gilles; state: Exp; lines: +15 -11
Bug fix. --ssl1 --tls2 was buggy because of default SSL_VERIFY_PEER. "Can not go to tls encryption on [localhost]:Unable to start TLS: Cannot determine peer hostname for verificationerror:00000000:lib(0):func(0):reason(0)"
----------------------------
revision 1.582
date: 2014/01/24 01:43:19; author: gilles; state: Exp; lines: +20 -12
Bugfix. Check if going to tls is ok, exit otherwise with explicit error message.
Thanks to Dennis Schridde for reporting this ugly bug.
----------------------------
revision 1.581
date: 2014/01/15 02:42:06; author: gilles; state: Exp; lines: +41 -15
Added --debugmaxlinelength
Added --minmaxlinelength to select messages with long lines only.
----------------------------
revision 1.580
date: 2013/12/25 02:52:36; author: gilles; state: Exp; lines: +51 -27
Added --skipcrossduplicates to avoid copying messages that are already copied in another folder.
Added --debugcrossduplicates to print which messages (UIDs) are skipped with --skipcrossduplicates (and in what other folders they are).
----------------------------
revision 1.579
date: 2013/12/18 13:53:19; author: gilles; state: Exp; lines: +9 -8
--maxmessagespersecond, value can be float like 3.2
----------------------------
revision 1.578
date: 2013/12/17 02:14:09; author: gilles; state: Exp; lines: +73 -9
Added --maxbytespersecond to limit byte transfer rate.
Added --maxmessagespersecond to limit messages tranfer rate (office365 throttle limitation).
----------------------------
revision 1.577
date: 2013/12/05 05:57:51; author: gilles; state: Exp; lines: +28 -10
Added tests to play with win32 \\?\C:\TEMP syntax and try to solve long path bug.
----------------------------
revision 1.576
date: 2013/11/19 14:37:24; author: gilles; state: Exp; lines: +19 -14
Added --debugmemory option that prints memory consumption after each message is copied.
----------------------------
revision 1.575
date: 2013/11/06 13:55:38; author: gilles; state: Exp; lines: +12 -7
Do not append message if the fetch failed.
----------------------------
revision 1.574
date: 2013/10/28 16:22:04; author: gilles; state: Exp; lines: +16 -8
Added --create_folder_old in case users want the old behavior of create_folder().
----------------------------
revision 1.573
date: 2013/10/28 14:44:10; author: gilles; state: Exp; lines: +48 -7
Bugfix. Applied patch for create_folder() and nested folders. Thanks to Erik Torsner.
----------------------------
revision 1.572
date: 2013/10/27 02:04:01; author: gilles; state: Exp; lines: +13 -8
Bug fix. Final statistics were avoided for newly created folders.
----------------------------
revision 1.571
date: 2013/10/25 14:34:27; author: gilles; state: Exp; lines: +58 -20
Added --folderfirst <string> : Sync this folder first. --folderfirst "Work"
Added --folderlast <string> : Sync this folder last. --folderlast "[Gmail]/All Mail"
--folderlast <string> : then this one, etc.
----------------------------
revision 1.570
date: 2013/10/25 12:52:02; author: gilles; state: Exp; lines: +7 -7
--delete2foldersonly Junk example.
----------------------------
revision 1.569
date: 2013/10/16 21:58:17; author: gilles; state: Exp; lines: +125 -39
Fixed bug on Windows with --tmpdir "E:\TEMP". The colon was badly converted to _, ending with "E_\TEMP".
The fix also automatically moves the old cache to the new one if the new does not exist yet.
Fix. Example for --delete2foldersonly "/Junk$/" in help message.
----------------------------
revision 1.568
date: 2013/09/28 02:43:51; author: gilles; state: Exp; lines: +25 -13
Bug fix. On Win32 trailing blanc in cache dir name raized an error. Blanc now move to underscore _.
----------------------------
revision 1.567
date: 2013/09/18 20:38:10; author: gilles; state: Exp; lines: +8 -7
Fixed a warning when RFC822.SIZE is null or undef.
----------------------------
revision 1.566
date: 2013/09/13 13:23:41; author: gilles; state: Exp; lines: +11 -12
Added --authmech EXTERNAL. Not tested yet.
----------------------------
revision 1.565
date: 2013/09/13 01:16:20; author: gilles; state: Exp; lines: +8 -6
Fusemail success.
RackSpace success.
----------------------------
revision 1.564
date: 2013/08/18 19:28:47; author: gilles; state: Exp; lines: +114 -22
Adapted behavior for allowing --maxdate --mindate with --noabletosearch. Use internat date instead of Date: header.
----------------------------
revision 1.563
date: 2013/08/16 00:59:30; author: gilles; state: Exp; lines: +8 -7
Added QQMail success.
----------------------------
revision 1.562
date: 2013/08/16 00:41:48; author: gilles; state: Exp; lines: +38 -16
Speed fix. Does not resync the flags when flags on host2 do not respect RFC. \Seen -> \SEEN. imapsync detects this as same flag.
Atmail 6.x [host1] success.
Fix for QQMail IMAP4Server. With --noabletosearch the previous fetch with 1:999999 is replaced by an uidnext request.
----------------------------
revision 1.561
date: 2013/08/09 23:49:23; author: gilles; state: Exp; lines: +15 -8
Added --timeout in the --help output.
Default timeout is 120 seconds now (was nothing by imapsync, 600 with underlying modules).
----------------------------
revision 1.560
date: 2013/08/09 23:06:04; author: gilles; state: Exp; lines: +7 -7
Added --addheader suggestion for messages with no header found.
----------------------------
revision 1.559
date: 2013/08/06 11:33:53; author: gilles; state: Exp; lines: +7 -7
Apply same treatment to --delete2duplicates as --delete2. If --uidexpunge2 can be done, do it, else do --expunge2 (unless --nouidexpunge2 or --noexpunge2).
----------------------------
revision 1.558
date: 2013/08/03 01:13:37; author: gilles; state: Exp; lines: +18 -16
Bugfix. SSL_version was not well treated.
----------------------------
revision 1.557
date: 2013/08/01 19:28:09; author: gilles; state: Exp; lines: +7 -7
Bugfix. max_line_length('a') was wrong.
----------------------------
revision 1.556
date: 2013/08/01 00:10:03; author: gilles; state: Exp; lines: +42 -28
Added --ssl1_SSL_version ssl2_SSL_version option to change default SSL_version.
For example --ssl2_SSL_version SSLv3 fix connection to cmail.cmich.edu on Windows.
Fixed a warning about regex with \E on Perl >= 5.16
----------------------------
revision 1.555
date: 2013/07/23 11:41:10; author: gilles; state: Exp; lines: +7 -6
Fix warning for extract_header()
----------------------------
revision 1.554
date: 2013/07/22 01:23:12; author: gilles; state: Exp; lines: +7 -7
typo - when error printed.
----------------------------
revision 1.553
date: 2013/07/22 01:18:30; author: gilles; state: Exp; lines: +9 -7
Bug fix. Header lines can contain \r\n.
----------------------------
revision 1.552
date: 2013/07/22 00:51:52; author: gilles; state: Exp; lines: +74 -11
Added "Subject: lala" when line length exceeds maxlinelength to help ti find what are those messages. Added also size, flags and internal date.
----------------------------
revision 1.551
date: 2013/07/19 14:05:50; author: gilles; state: Exp; lines: +698 -650
Added option --maxlinelength to skip messages whose max line length is over a number of bytes.
----------------------------
revision 1.550
date: 2013/07/19 00:13:22; author: gilles; state: Exp; lines: +1029 -585
Added success Domino 8.5.2
Added option --messageidnodomain to fix Mailenable bug changing the domain part of Message-Id header, and avoid duplicates
Added option --syncflagsaftercopy to fix Mailenable bug not getting the flags with the APPEND.
Added back the banner of IMAP servers, ie, the first line given after the connection established.
Added --fixInboxINBOX, turned on by default, to map automatically Inbox INBOX folder names.
IMAP server removing consecutive spaces on the header part doesn't generate duplicates (MailEnable does that).
Better output of mailbox sizes in human style (could be 1024.00 Kib, now it is 1.000 Mib). Changed bytes_display_string().
Option --debugflags now prints flags on first sync (the copy) and also the PERMANENTFLAGS outpout.
Fixed nearly 200 perlcritic at level 3, all level 4. Still 5 eval "" at level 5 and 12 critics at level 3.
----------------------------
revision 1.549
date: 2013/07/06 01:09:03; author: gilles; state: Exp; lines: +81 -11
Fixed two bugs coming from adding return( ) at the end of functions.
Added tests to remove Disposition-Notification-To: header with regexmess:.
----------------------------
revision 1.548
date: 2013/07/04 02:25:05; author: gilles; state: Exp; lines: +247 -201
Removed all perlcritic severity 4. Still 5 critics at severity 5.
98 critics severity 4 fixed.
----------------------------
revision 1.547
date: 2013/07/03 01:24:34; author: gilles; state: Exp; lines: +11 -8
DBOX 2.41 success.
Kerio 8 success.
----------------------------
revision 1.546
date: 2013/07/02 03:49:32; author: gilles; state: Exp; lines: +14 -8
Fixed IO::Socket::IP bug on Win32?
Removed SSL::DEBUG
Added "copying.." in dry mode.
----------------------------
revision 1.545
date: 2013/06/06 20:43:56; author: gilles; state: Exp; lines: +27 -125
Rmoved sub starttls()
Removed sub myconnect()
Removed sub RawSocket2()
Applied patch from Jim Klimov to handle proxyauth failures
----------------------------
revision 1.544
date: 2013/06/02 23:36:16; author: gilles; state: Exp; lines: +25 -24
Remove myconnect() use. Replaced by $imap->connect()
Removed sub Split add in Mail::IMAPClient
----------------------------
revision 1.543
date: 2013/05/22 01:22:03; author: gilles; state: Exp; lines: +12 -7
SSL_verify_mode 0 to avoid warning about Man-In-The-Middle.
----------------------------
revision 1.542
date: 2013/05/06 08:30:35; author: gilles; state: Exp; lines: +7 -7
Syntax with "" fix.
----------------------------
revision 1.541
date: 2013/05/06 07:10:29; author: gilles; state: Exp; lines: +111 -74
Started perlcritic corrections. Left 4 eval at level 5.
----------------------------
revision 1.540
date: 2013/04/22 11:05:51; author: gilles; state: Exp; lines: +11 -982
Removed old 2.2.9 Mail::IMAPClient patch stuff.
----------------------------
revision 1.539
date: 2013/04/22 00:54:22; author: gilles; state: Exp; lines: +12 -12
Fixed require namespace with uri_escape() calls.
----------------------------
revision 1.538
date: 2013/04/22 00:46:54; author: gilles; state: Exp; lines: +94 -9
Added XOAUTH authentication. Thanks to Eduardo Bortoluzzi Junior.
----------------------------
revision 1.537
date: 2013/04/19 06:59:17; author: gilles; state: Exp; lines: +9 -9
MDaemon 9.6.5, Surgemail 6.3d-72
----------------------------
revision 1.536
date: 2013/04/17 14:33:12; author: gilles; state: Exp; lines: +7 -7
Added --delete1 as an alias for --delete
----------------------------
revision 1.535
date: 2013/04/17 12:47:58; author: gilles; state: Exp; lines: +42 -33
Updated README part.
----------------------------
revision 1.534
date: 2013/04/16 15:31:50; author: gilles; state: Exp; lines: +26 -17
Added --search1 and --search2 to allow different searches on each host.
----------------------------
revision 1.533
date: 2013/04/10 12:03:39; author: gilles; state: Exp; lines: +8 -6
Comment in select_msgs()
----------------------------
revision 1.532
date: 2013/04/10 08:33:52; author: gilles; state: Exp; lines: +11 -9
Fixed Scott issue again. Was not enough.
----------------------------
revision 1.531
date: 2013/04/09 08:10:38; author: gilles; state: Exp; lines: +7 -7
Fixed Scott issue, took long time (all messages list) even with --useuid --delete --nousecache --maxage 1
----------------------------
revision 1.530
date: 2013/04/09 08:00:54; author: gilles; state: Exp; lines: +13 -14
Clarified select_msgs() a little.
----------------------------
revision 1.529
date: 2013/03/29 14:32:26; author: gilles; state: Exp; lines: +14 -12
Phil patch.
----------------------------
revision 1.528
date: 2013/03/29 03:12:45; author: gilles; state: Exp; lines: +60 -21
Applied Phil patch.
----------------------------
revision 1.527
date: 2013/03/29 01:15:05; author: gilles; state: Exp; lines: +10 -8
Mail2World Server
Zarafa Gateway
----------------------------
revision 1.526
date: 2013/02/27 22:40:45; author: gilles; state: Exp; lines: +9 -7
Apple Server
Zarafa server
----------------------------
revision 1.525
date: 2013/02/05 12:52:10; author: gilles; state: Exp; lines: +9 -9
Typo synchronise -> synchronize.
----------------------------
revision 1.524
date: 2013/01/31 20:41:29; author: gilles; state: Exp; lines: +8 -7
Small fix in help message.
\\D
----------------------------
revision 1.523
date: 2013/01/31 14:12:21; author: gilles; state: Exp; lines: +118 -99
Reorganized the --help message.
----------------------------
revision 1.522
date: 2013/01/28 02:50:49; author: gilles; state: Exp; lines: +13 -13
Printing info with several host1 folder going to one host2 folder is in --debug mode now.
----------------------------
revision 1.521
date: 2013/01/23 07:48:01; author: gilles; state: Exp; lines: +7 -7
Speed. --nocheckmessageexists is activated by default since --checkmessageexists often slow down transfers too much.
----------------------------
revision 1.520
date: 2013/01/23 07:41:48; author: gilles; state: Exp; lines: +103 -30
Fix. Removed reference to DWTFPL since license is NOLIMIT now.
License file is LICENSE now, no longer COPYING.
Fix. Handle the case where several folders on host1 go to one folder on host2 with --delete2 option.
The bug was imapsync was copying messages and deleting them on next folder.
----------------------------
revision 1.519
date: 2012/12/31 09:51:40; author: gilles; state: Exp; lines: +11 -9
Usability fix. --foldersizesatend is on if --foldersizes is on. Off if --nofoldersizesatend
----------------------------
revision 1.518
date: 2012/12/24 00:27:34; author: gilles; state: Exp; lines: +9 -6
Bugfix. When identtifying with header, change tabulations to spaces (Gmail bug on with "Received:" on multilines).
----------------------------
revision 1.517
date: 2012/12/11 07:13:04; author: gilles; state: Exp; lines: +17 -10
Added Deerfield VisNetic MailServer 5.8.6
Bugfix. Automatic --nocheckmessageexists when --noabletosearch is set.
----------------------------
revision 1.516
date: 2012/11/02 22:15:04; author: gilles; state: Exp; lines: +43 -38
Added current date at the beginning of the run, useful when imapsync doesn't end properly or hasn't finished yet.
Better output for diff statistics.
----------------------------
revision 1.515
date: 2012/10/31 12:56:02; author: gilles; state: Exp; lines: +12 -9
Added Initial difference to compare it with Final difference.
----------------------------
revision 1.514
date: 2012/10/31 01:39:38; author: gilles; state: Exp; lines: +32 -16
Added --foldersizesatend and --nofoldersizesatend, on by default.