forked from dinhvh/libetpan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5202 lines (4057 loc) · 155 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
2011-07-13 - libetpan-1.1cvs2 - hoa
* src/low-level/imap/mailimap_parser.c
enable a private API to workaround for Zarafa server in etPanKit.
2011-07-12 - libetpan-1.1cvs1 - hoa
* src/low-level/imap/mailimap_parser.c
2011-07-12 - libetpan-1.1b - hoa
* src/low-level/imap/namespace_parser.c
fixed build.
2011-07-12 - libetpan-1.1 - hoa
* release 1.1
features:
implemented IMAP NAMESPACE,
implemented SMTP SIZE,
support for Content-Location,
improved progress report API for IMAP and SMTP.
fixes:
workaround for various IMAP servers,
fixes for IMAP parser,
fixed generation of quoted printable,
fixed memory leaks.
2011-07-11 - libetpan-1.0cvs74 - hoa
* src/low-level/imap/mailimap.c
reduce memory usage.
2011-07-01 - libetpan-1.0cvs73 - hoa
* src/low-level/imap/mailimap.c
fixed memory leak.
2011-06-29 - libetpan-1.0cvs72 - hoa
* src/low-level/mime/mailmime_content.c
interpret message/rfc822 as single part if it's encoded in base64 or quoted-printable.
2011-06-25 - libetpan-1.0cvs71 - hoa
* src/low-level/mime/mailmime_write_generic.c
fixed generation of quoted printable
2011-06-21 - libetpan-1.0cvs70 - hoa
* src/low-level/smtp/mailsmtp.c
fixed error handling.
2011-06-21 - libetpan-1.0cvs69 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Lotus Domino, parse empty body and parse broken param value.
2011-06-21 - libetpan-1.0cvs68 - hoa
* src/low-level/imf/mailimf.c
workaround for MBox mail: twice opening angle bracket generated by MBox mail.
2011-06-20 - libetpan-1.0cvs67 - hoa
* src/low-level/smtp/mailsmtp.c
fixed error handling.
2011-06-13 - libetpan-1.0cvs66 - hoa
* src/low-level/smtp/mailsmtp.c
fixed parser for SIZE extension.
2011-06-04 - libetpan-1.0cvs65 - hoa
* src/driver/implementation/imap/imapdriver_tools.c
fixed parse error from non-compliant servers.
2011-05-29 - libetpan-1.0cvs64 - hoa
* src/low-level/imap/mailimap_keywords.c
* src/low-level/imap/mailimap_parser.c
workaround for mail.maximedia.nl server.
2011-05-23 - libetpan-1.0cvs63 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Citadel IMAP.
2011-05-21 - libetpan-1.0cvs62 - hoa
* src/low-level/imap/mailimap_helper.c
fixed fetch_rfc822, fetch_rfc822_header
2011-05-19 - libetpan-1.0cvs62 - hoa
* src/low-level/imap/xlist.h
fixed build for C++.
2011-05-09 - libetpan-1.0cvs61 - hoa
* src/data-types/clist.h
fixed macro.
2011-05-09 - libetpan-1.0cvs60 - hoa
* src/low-level/imap/mailimap.c
fixed crash.
2011-05-09 - libetpan-1.0cvs59 - hoa
* src/low-level/imap/mailimap.c
fixed memory leak when fetch fails.
2011-05-04 - libetpan-1.0cvs58 - hoa
* src/data-types/mailstream_low.c
* src/data-types/mailstream_low.h
fixed API. Consistent ownership.
2011-05-03 - libetpan-1.0cvs57 - hoa
* src/low-level/imap/namespace_parser.c
fixed clang reports.
2011-05-03 - libetpan-1.0cvs56 - hoa
* src/engine/mailprivacy_gnupg.c
* src/engine/mailprivacy_smime.c
* src/low-level/imap/acl_parser.c
* src/low-level/mime/mailmime_content.c
* src/low-level/mime/mailmime_disposition.c
fixed clang reports.
2011-04-30 - libetpan-1.0cvs55 - hoa
* src/low-level/mime/mailmime_types_helper.c
don't use Content-Transfer-Encoding for MIME multipart.
2011-04-28 - libetpan-1.0cvs54 - hoa
* src/low-level/imap/namespace_parser.c
fixed namespace parser failure.
workaround for Courier-IMAP.
2011-04-27 - libetpan-1.0cvs53 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Yandex IMAP servers.
2011-04-19 - libetpan-1.0cvs52 - hoa
* src/data-types/mailstream_low.[ch]
* src/data-types/mailstream_types.h
identifier for stream connection (useful for logging).
2011-04-15 - libetpan-1.0cvs51 - hoa
* configure.ac
build for debian.
2011-04-15 - libetpan-1.0cvs50 - hoa
* src/data-types/mailstream_socket.[ch]
fixed function name.
2011-04-15 - libetpan-1.0cvs49 - hoa
* src/data-types/mailstream_socket.[ch]
can be configure to use read() for debugging purpose.
2011-04-15 - libetpan-1.0cvs48 - hoa
* src/data-types/mailstream_socket.c
* src/data-types/mailstream_ssl.c
fixed error handling of select().
2011-04-11 - libetpan-1.0cvs47 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Zoho Mail IMAP implementation.
2011-04-06 - libetpan-1.0cvs46 - hoa
* src/low-level/imf/mailimf.c
fallback when parsing Content-ID of Message-ID.
2011-04-02 - libetpan-1.0cvs45 - hoa
* src/low-level/imap/mailimap_parser.c
fixed a crash.
2011-03-30 - libetpan-1.0cvs44 - hoa
* src/low-level/imap/mailimap_extension.c
* src/low-level/imap/mailimap_extension_types.h
* src/low-level/imap/mailimap_parser.[ch]
* src/low-level/imap/xlist.[ch]
fixed XLIST implementation.
2011-03-30 - libetpan-1.0cvs43 - hoa
* src/low-level/imap/Makefile.am
* src/low-level/imap/xlist.c
implemented XLIST (available on Gmail and Zimbra).
2011-03-29 - libetpan-1.0cvs42 - hoa
* src/data-types/charconv.c
korean charset workaround.
2011-03-25 - libetpan-1.0cvs41 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Mbox Mail for Mac.
2011-03-25 - libetpan-1.0cvs40 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Exchange (blank lines between response).
2011-03-24 - libetpan-1.0cvs39 - hoa
* src/low-level/imap/mailimap_parser.c
improved workaround for Exchange servers.
2011-03-24 - libetpan-1.0cvs38 - hoa
* src/low-level/imap/mailimap_parser.c
workaround for Exchange servers that fails providing conformance in regards to Content-Disposition.
2011-03-16 - libetpan-1.0cvs37 - hoa
* src/low-level/imap/mailimap.c
* src/low-level/imap/mailimap_types.c
fixed memory leaks.
2011-03-15 - libetpan-1.0cvs36 - hoa
* src/data-types/charconv.c
fixed charset conversation for hebrew (iso-8859-8-i and iso-8859-8-e)
2011-03-14 - libetpan-1.0cvs35 - hoa
* src/data-types/mmapstring.c
fixed a possible crash.
2011-03-12 - libetpan-1.0cvs34 - hoa
* src/low-level/imf/mailimf.c
fixed MIME Content-ID and Message-ID parser.
2011-03-11 - libetpan-1.0cvs33 - hoa
* src/data-types/mailstream_low.c
revert libetpan-1.0cvs32.
2011-03-11 - libetpan-1.0cvs32 - hoa
* src/data-types/mailstream_low.c
private log identifier is 3.
2011-03-11 - libetpan-1.0cvs31 - hoa
* src/data-types/mailstream.[ch]
* src/data-types/mailstream_low.[ch]
* src/data-types/mailstream_types.h
* src/low-level/imap/mailimap.c
* src/low-level/nntp/newsnntp.c
* src/low-level/pop3/mailpop3.c
* src/low-level/smtp/mailsmtp.c
authentication privacy.
2011-03-10 - libetpan-1.0cvs30 - hoa
* src/low-level/smtp/mailsmtp.c
support for broken AUTH advertisement.
2011-03-07 - libetpan-1.0cvs29 - hoa
* src/low-level/smtp/mailsmtp.c
handle SMTP error code for authentication error.
2011-03-06 - libetpan-1.0cvs28 - hoa
* src/low-level/imap/mailimap_parser.c
implemented workaround for exchange IMAP server (for multipart/signed).
2011-03-04 - libetpan-1.0cvs27 - hoa
* src/low-level/imap/mailimap_parser.c
implemented workaround for exchange IMAP server.
2011-03-03 - libetpan-1.0cvs26 - hoa
* src/low-level/imap/namespace_types.c
fixed memory leak.
2011-02-28 - libetpan-1.0cvs25 - hoa
* src/low-level/smtp/mailsmtp.c
* src/low-level/smtp/mailsmtp_types.h
implements SMTP authentication availability.
2011-02-27 - libetpan-1.0cvs24 - hoa
* src/data-types/connect.c
* src/data-types/mailstream_ssl.c
fixed build for win32.
2011-02-27 - libetpan-1.0cvs23 - hoa
* src/low-level/smtp/mailsmtp.c
fixed error check for SMTP.
2011-02-20 - libetpan-1.0cvs22 - hoa
* src/low-level/imap/namespace_parser.c
fixed build.
2011-02-20 - libetpan-1.0cvs21 - hoa
* src/low-level/imap/namespace_parser.c
workaround Yahoo IMAP server.
2011-02-20 - libetpan-1.0cvs20 - hoa
* src/low-level/imap/namespace.c
* src/low-level/imap/namespace_parser.c
fixed parser.
fixed crash.
2011-02-19 - libetpan-1.0cvs19 - hoa
* configure.ac
* build-mac/libetpan.xcodeproj/project.pbxproj
* src/low-level/imap/Makefile.am
* src/low-level/imap/acl.h
* src/low-level/imap/annotatemore.h
* src/low-level/imap/mailimap.h
* src/low-level/imap/mailimap_extension.c
* src/low-level/imap/mailimap_extension_types.h
* src/low-level/imap/mailimap_parser.[ch]
* src/low-level/imap/quota.[ch]
* src/low-level/imap/quota_sender.h
* src/low-level/nntp/newsnntp.c
* src/low-level/imap/namespace.[ch]
* src/low-level/imap/namespace_parser.[ch]
* src/low-level/imap/namespace_sender.[ch]
* src/low-level/imap/namespace_types.[ch]
implemented namespace.
fixed build system.
fixed some warnings.
2011-01-06 - libetpan-1.0cvs18 - hoa
* src/driver/implementation/imap/imapdriver_tools.c
* src/engine/mailprivacy_tools.c
* src/low-level/imap/mailimap_parser.c
* src/low-level/imap/mailimap_types.[ch]
* src/low-level/mime/mailmime.[ch]
* src/low-level/mime/mailmime_types.[ch]
* src/low-level/mime/mailmime_types_helper.c
support for Content-Location. breaks binary compatibility.
2010-12-15 - libetpan-1.0cvs17 - hoa
* src/low-level/imap/mailimap_parser.c
fixed memory leak.
2010-12-05 - libetpan-1.0cvs16 - hoa
* src/data-types/charconv.c
use GBK instead of GB2312 and GB_2312-80
2010-11-30 - libetpan-1.0cvs15 - hoa
* src/low-level/imap/mailimap_parser.c
fixed IMAP parser
2010-11-28 - libetpan-1.0cvs14 - hoa
* src/data-types/mailstream_helper.[ch]
* src/data-types/mailstream_types.h
* src/low-level/imap/mailimap.[ch]
* src/low-level/imap/mailimap_parser.[ch]
* src/low-level/imap/mailimap_sender.[ch]
* src/low-level/imap/mailimap_types.h
* src/low-level/smtp/mailsmtp.[ch]
* src/low-level/smtp/mailsmtp_helper.[ch]
improved progress report support for SMTP and IMAP.
2010-11-16 - libetpan-1.0cvs13 - hoa
* src/low-level/mime/mailmime_decode.c
backport a fix from etPanKit.
2010-11-16 - libetpan-1.0cvs12 - hoa
* build-windows/libetpan.sln
* build-windows/libetpan/libetpan.vcproj
* build-windows/readmsg/readmsg.vcproj
* build-windows/smtpsend/smtpsend.vcproj
* src/data-types/carray.h
* src/data-types/chash.h
* src/data-types/mailstream_ssl.c
* src/windows/win_etpan.h
* tests/option-parser.c
improved port for win32.
2010-11-10 - libetpan-1.0cvs11 - hoa
* src/low-level/mime/mailmime_decode.c
fixed decode of MIME header.
2010-11-04 - libetpan-1.0cvs10 - hoa
* src/low-level/mime/mailmime_decode.c
fixed parsing of MIME header encoding of headers.
2010-10-21 - libetpan-1.0cvs9 - hoa
* src/low-level/imap/idle.c
fixed function name. Thanks Michael Rasmussen.
2010-09-15 - libetpan-1.0cvs8 - hoa
* src/low-level/imap/mailimap_types_helper.c
fixed search.
2010-09-05 - libetpan-1.0cvs7 - hoa
* src/low-level/imap/mailimap_parser.c
create an empty list in case of empty multipart.
2010-09-04 - libetpan-1.0cvs6 - hoa
* src/low-level/imap/mailimap_parser.c
workaround Gmail IMAP bug: zero bodies in multipart.
2010-09-03 - libetpan-1.0cvs5 - hoa
* build-windows/libetpan_version.h
update version.
* src/data-types/mailstream.[ch]
* src/data-types/mailstream_low.[ch]
* src/low-level/imap/mailimap_parser.c
report parse error.
* build-mac/update.sh
fixed mac update.
* src/data-types/connect.c
fixed memory leak.
2010-07-27 - libetpan-1.0cvs4 - hoa
* src/low-level/smtp/mailsmtp_helper.c
fixed size verification for RFC 1870.
2010-07-27 - libetpan-1.0cvs3 - hoa
* src/low-level/smtp/mailsmtp.[ch]
* src/low-level/smtp/mailsmtp_helper.c
* src/low-level/smtp/mailsmtp_types.h
implements RFC 1870 (SMTP SIZE).
2010-07-22 - libetpan-1.0cvs2 - hoa
* src/low-level/imap/mailimap_sender.c
* src/low-level/imap/mailimap_types.c
fixed date when appending.
2010-05-30 - libetpan-1.0cvs1 - hoa
* src/low-level/imap/mailimap_parser.c
IMAP parser issue in case quoted string contains a CRLF.
2010-04-09 - libetpan-1.0 - hoa
* release 1.0
2010-04-08 - libetpan-0.58cvs27 - hoa
* configure.ac
Fixed --enable-debug flag in configure script.
Support of Berkeley DB 4.8.
Thanks to Tim Harder.
2010-04-05 - libetpan-0.58cvs26 - hoa
* build-mac/update.sh
fixed script.
2010-04-05 - libetpan-0.58cvs25 - hoa
* src/engine/mailprivacy_tools.c
fixed integration of patch (libetpan-0.58cvs22).
* src/low-level/imap/idle.c
fixed error code.
2010-04-05 - libetpan-0.58cvs24 - hoa
* src/low-level/imap/mailimap_sender.c
fixed OR condition in IMAP SEARCH command.
2010-04-05 - libetpan-0.58cvs23 - hoa
* src/driver/implementation/mbox/mboxdriver_cached.c
* src/driver/implementation/mh/mhdriver_cached.c
* src/driver/implementation/pop3/pop3driver.c
* src/driver/implementation/pop3/pop3driver_cached.c
* src/driver/implementation/pop3/pop3driver_tools.c
* src/engine/mailprivacy_tools.c
* src/low-level/imap/mailimap.c
* src/low-level/pop3/mailpop3.c
* tests/readmsg-simple.c
* tests/readmsg-uid.c
fixed some other warnings.
2010-04-05 - libetpan-0.58cvs22 - hoa
* src/data-types/maillock.c
* src/data-types/mailstream_cancel.c
* src/data-types/mailstream_low.c
* src/driver/implementation/db/dbdriver.c
* src/driver/implementation/imap/imapdriver.c
* src/driver/implementation/mbox/mboxdriver_cached.c
* src/driver/implementation/mh/mhdriver_cached.c
* src/driver/implementation/nntp/nntpdriver_cached.c
* src/driver/implementation/pop3/pop3driver.c
* src/engine/mailprivacy.c
* src/engine/mailprivacy_tools.c
* src/low-level/feed/newsfeed.c
* src/low-level/mbox/mailmbox.c
* src/low-level/nntp/newsnntp.c
* src/low-level/pop3/mailpop3.c
* src/low-level/smtp/mailsmtp.c
* tests/decrypt.c
* tests/readmsg-simple.c
* tests/readmsg-uid.c
* tests/smime.c
fixed some warnings. Thanks to Didier Barvaux.
2010-04-05 - libetpan-0.58cvs21 - hoa
* src/driver/implementation/imap/imapdriver.c
fixed memory leak (2941557). Thanks to Juha Paananen.
* src/low-level/imap/mailimap_types_helper.c
fixed IMAP search (2941559). Thanks to Juha Paananen.
2010-04-05 - libetpan-0.58cvs20 - hoa
* configure.ac
* src/driver/interface/mailstorage_tools.c
* tests/smtpsend.c
improved support of Solaris 2.8 (2786623). Thanks to Thomas Wiegner.
2010-04-05 - libetpan-0.58cvs19 - hoa
* build-mac/update.sh
import of OpenSSL (prepare build for iPhone including OpenSSL)
* src/driver/implementation/pop3/pop3driver.c
* src/driver/implementation/pop3/pop3driver_cached.c
* src/driver/implementation/pop3/pop3driver_tools.c
* src/low-level/pop3/mailpop3.[ch]
better error checking (2888850). Thanks to Alexander Shlemin.
API change.
2010-03-21 - libetpan-0.58cvs18 - hoa
* src/data-types/mailstream.h
* src/data-types/mailstream_low.c
log protocol by stream
2010-01-17 - libetpan-0.58cvs17 - hoa
* build-mac/update.sh
* build-mac/libetpan.xcodeproj/project.pbxproj
build mac with quota
2010-01-14 - libetpan-0.58cvs16 - hoa
* src/low-level/imap/Makefile.am
build with quota.
2010-01-04 - libetpan-0.58cvs15 - hoa
* src/low-level/imap/mailimap_extension.c
fixed error code in extension parser (2918352). Thanks to Chris Head.
2010-01-04 - libetpan-0.58cvs14 - hoa
* src/low-level/imap/acl_parser.c
* src/low-level/imap/annotatemore_parser.c
fixed malloc allocation check (2918372). Thanks to Chris Head.
2010-01-03 - libetpan-0.58cvs13 - hoa
* src/low-level/imap/mailimap_extension.c
* src/low-level/imap/mailimap_extension_types.h
* src/low-level/imap/mailimap_parser.[ch]
* src/low-level/imap/quota.[ch] ** NEW FILE **
* src/low-level/imap/quota_parser.[ch] ** NEW FILE **
* src/low-level/imap/quota_sender.[ch] ** NEW FILE **
* src/low-level/imap/quota_types.[ch] ** NEW FILE **
added QUOTA support (RFC 2087, patch 2918500). Thanks to Chris Head.
2009-12-19 - libetpan-0.58cvs12 - hoa
* src/low-level/smtp/mailsmtp.c
better handling for errors.
2009-12-19 - libetpan-0.58cvs11 - hoa
* src/low-level/imf/mailimf_types_helper.c
fixed crash on Win32 (2892730).
2009-12-19 - libetpan-0.58cvs10 - hoa
* src/data-types/mailstream_ssl.c
* src/driver/implementation/imap/imapdriver_tools.c
* src/low-level/imap/mailimap_socket.c
* src/low-level/imap/mailimap_ssl.c
* src/low-level/nntp/newsnntp_socket.c
* src/low-level/nntp/newsnntp_ssl.c
* src/low-level/pop3/mailpop3_socket.c
* src/low-level/pop3/mailpop3_ssl.c
* src/low-level/smtp/mailsmtp_socket.c
fixed socket use on Win32 (2897095).
2009-12-19 - libetpan-0.58cvs9 - hoa
* src/driver/implementation/imap/imapdriver_tools.c
fixed crash (Thanks Gabor for discovering the bug).
2009-12-19 - libetpan-0.58cvs8 - hoa
* mailimap_parser.[ch]
fixed build.
workaround in parser for imap.gmx.com (Thanks Matt Ronge for reproducible case).
2009-11-05 - libetpan-0.58cvs7 - hoa
* src/low-level/imap/idle.c
* src/low-level/imap/mailimap_parser.c
* src/low-level/imap/mailimap_parser.h
fixed IMAP IDLE parser (made public API for the IMAP parser).
2009-09-07 - libetpan-0.58cvs6 - hoa
* build-mac/Info.plist
* build-mac/update.sh
* build-mac/libetpan.xcodeproj/project.pbxproj
added build for Mac OS X (within Xcode).
2009-09-07 - libetpan-0.58cvs5 - hoa
* src/engine/mailprivacy_tools.c
* src/low-level/feed/parser.c
* src/low-level/imap/mailimap_types.c
fixed errors detected by clang static analyzer.
2009-09-06 - libetpan-0.58cvs4 - hoa
* src/low-level/mime/mailmime_disposition.c
fixed warning.
2009-08-29 - libetpan-0.58cvs3 - hoa
* src/driver/implementation/imap/imapdriver_tools.c
* src/low-level/imf/mailimf_types_helper.c
fixed some crash (and workaround of MailCore).
Thanks to Gabor Cselle.
2009-08-29 - libetpan-0.58cvs2 - hoa
* src/driver/implementation/imap/imapdriver_tools.c
* src/driver/implementation/nntp/nntpdriver.c
fixed memory leaks.
Thanks to Pawel Pekala.
2009-07-23 - libetpan-0.58cvs1 - hoa
* configure.ac
fixed build for Mac OS X
* src/driver/implementation/imap/imapdriver_tools.c
fix a crash.
Thanks to Gabor Cselle, Stefano Barbato
* src/driver/implementation/maildir/maildirdriver_cached.c
* src/driver/implementation/pop3/pop3driver.c
* src/driver/implementation/pop3/pop3driver_cached.c
* src/driver/implementation/pop3/pop3storage.c
* src/driver/tools/imfcache.c
* src/low-level/imap/mailimap_parser.c
* src/low-level/imap/mailimap_types.c
fix memory leaks.
bugfixes.
Thanks to Pawel Pekala.
2009-06-16 - libetpan-0.58 - hoa
* release 0.58
Improvements on SSL implementation.
2009-06-16 - libetpan-0.57cvs4 - hoa
* configure.ac
prepare for 0.58
2009-06-12 - libetpan-0.57cvs3 - colin
* src/data-types/mailstream_ssl.c
Gnutls: Better fix (API-compatible with libgnutls13)
2009-06-12 - libetpan-0.57cvs2 - colin
* src/data-types/mailstream_ssl.c
Gnutls: Use compatibility mode to avoid being unable to
connect to some servers. (see Claws Mail's bug #1930)
* configure.ac
Fix error with automake 1.10.2
2008-11-21 - libetpan-0.57cvs1 - colin
* src/data-types/mailstream_ssl.c
Rehandshake if server asks to.
2008-10-08 - libetpan-0.57 - hoa
* release 0.57
- fixed an issue with GnuTLS.
2008-10-05 - libetpan-0.56cvs2 - colin
* src/data-types/mailstream_ssl.c
fixed return value when setting GnuTLS client cert.
2008-09-14 - libetpan-0.56cvs1 - hoa
* src/driver/implementation/imap/imapdriver_cached_message.c
fixed a bug with cached IMAP bodystructure.
2008-09-02 - libetpan-0.56 - hoa
* release 0.56
- fixed a crash
2008-09-01 - libetpan-0.55cvs2 - colin
* src/data-types/mailstream_ssl.c
Check ssl_context to see if it's NULL (fixes crash)
2008-08-30 - libetpan-0.55cvs1 - colin
* src/data-types/mailstream_ssl.c
Fix NULL frees introduced in 0.54cvs15
(Made SSL connections with no callback for client
certificates crash)
2008-08-26 - libetpan-0.55 - hoa
* release 0.55
- better support for client certificate.
- bug fixes
2008-08-26 - libetpan-0.54cvs17 - hoa
* configure.ac
support for db 4.7
2008-07-04 - libetpan-0.54cvs16 - hoa
* src/data-types/mailstream_ssl.c
fixed wait_read() in ssl stream implementation.
2008-07-03 - libetpan-0.54cvs15 - colin
* src/data-types/mailstream_ssl.c
* src/data-types/mailstream_ssl.h
Add API to be able to set a client X509 certificate
and private key:
mailstream_ssl_set_client_certificate_data()
mailstream_ssl_set_client_private_key_data()
To be called from the callback set in
mailstream_ssl_open_with_callback() for example.
2008-06-16 - libetpan-0.54cvs14 - hoa
* src/low-level/imf/mailimf_types_helper.c
Fixed timezone calculation.
2008-06-15 - libetpan-0.54cvs13 - hoa
* src/low-level/mime/mailmime_write_generic.c
Fixed MIME generator, MIME headers of message/rfc822
are no more moved to sub-part, except "MIME-Version".
Thanks to James Smith.
2008-05-27 - libetpan-0.54cvs12 - hoa
* src/low-level/imf/mailimf.h
(re-)fixed 1909672: Date fields parsed as optional field on 64 bit OS.
mailimf_token_case_insensitive_parse() is fixed.
Thanks to James Smith.
* src/low-level/imap/mailimap_parser.c
workarounded bug on lavabit.com server.
2008-05-26 - libetpan-0.54cvs11 - hoa
* configure.ac
* tests/option-parser.c
fixed build of tests where getopt_long is not present.
2008-05-26 - libetpan-0.54cvs10 - hoa
* src/low-level/imap/mailimap_parser.c
workarounded bug on quoted string output on
lavabit.com IMAP server.
2008-05-23 - libetpan-0.54cvs9 - hoa
* libetpan-config.h.in
fixed mingw32 build.
Thanks to Marcus Brinkmann.
2008-05-23 - libetpan-0.54cvs8 - hoa
* src/low-level/imf/mailimf.c
Fixed crash in parser.
Thanks to James Smith.
2008-05-22 - libetpan-0.54cvs7 - hoa
* build-windows/libetpan_version.h
updated version of win32 build
* src/low-level/imf/mailimf.h
fixed 1909672: Date fields parsed as optional field on 64 bit OS.
mailimf_token_case_insensitive_parse() is fixed.
Thanks to James Smith.
2008-04-19 - libetpan-0.54cvs6 - hoa
* rules.mk
fixed 'ln' usage.
* src/driver/interface/maildriver_types.h
fixed headers documentation.
2008-04-11 - libetpan-0.54cvs5 - hoa
* src/driver/implementation/feed/feeddriver.c
fixed charset handling in RSS driver.
2008-04-11 - libetpan-0.54cvs4 - hoa
* src/low-level/feed/parser.c
fixed charset handling in RSS parser.
2008-03-16 - libetpan-0.54cvs3 - colin
* src/driver/implementation/imap/imapdriver_tools.c
fixed collection of IMAP message envelope.
2008-02-28 - libetpan-0.54cvs2 - colin
* src/data-types/mmapstring.c
* src/data-types/mmapstring.h
Export mmap_string_set_tmpdir
Export mmap_string_set_ceil
Fix mmap_string_set_tmpdir prototype
2008-02-21 - libetpan-0.54cvs1 - hoa
* tests/option-parser.c
fixed reference to indx.
2008-02-20 - libetpan-0.54 - hoa
* release 0.54 - Synergy bis
- fixed regression on IMAP APPEND
- cleanup
- version fixes
2008-02-20 - libetpan-0.53cvs6 - hoa
* configure.ac
prepare for 0.54
2008-02-20 - libetpan-0.53cvs5 - hoa
* src/driver/implementation/db/dbdriver.c
* src/driver/implementation/imap/imapdriver_cached.c
* src/driver/tools/mailthread.c
* src/low-level/imap/mailimap.c
* src/low-level/mbox/mailmbox.c
* src/low-level/mbox/mailmbox_types.c
* tests/readmsg.c
additional cleanup.
2008-02-20 - libetpan-0.53cvs4 - hoa
* src/data-types/Makefile.am
* src/data-types/carray.[ch]
* src/data-types/cinthash.[ch] *** REMOVED FILES ***
* src/data-types/clist.[ch]
* src/data-types/mailstream_helper.c
* src/data-types/md5.c
* src/driver/implementation/imap/imapdriver_cached.c
* src/driver/implementation/imap/imapdriver_tools.c
* src/driver/implementation/imap/imapdriver_tools_private.h
* src/driver/implementation/maildir/maildirdriver_cached.c
* src/driver/implementation/mbox/mboxdriver_tools.[ch]
* src/driver/implementation/mh/mhdriver.c
* src/driver/implementation/mh/mhdriver_cached.c
* src/driver/implementation/mh/mhdriver_tools.[ch]
* src/driver/implementation/nntp/nntpdriver_tools.[ch]
* src/driver/implementation/pop3/pop3driver_tools.[ch]
* src/driver/interface/maildriver_tools.c
* src/driver/interface/mailmessage.h
* src/driver/interface/mailstorage.c
* src/driver/tools/generic_cache.[ch]
* src/driver/tools/imfcache.[ch]
* src/low-level/imap/acl_parser.[ch]
* src/low-level/imap/annotatemore_parser.[ch]
* src/low-level/imap/idle.c
* src/low-level/imap/mailimap.c
* src/low-level/imap/mailimap_extension.[ch]
* src/low-level/imap/mailimap_extension_types.h
* src/low-level/imap/mailimap_keywords.[ch]
* src/low-level/imap/mailimap_parser.[ch]
* src/low-level/imap/mailimap_types_helper.[ch]
* src/low-level/imap/uidplus_parser.[ch]
* src/low-level/imf/mailimf.[ch]
* src/low-level/mbox/mailmbox_parse.[ch]
* src/low-level/mbox/mailmbox_types.c
* src/low-level/mh/mailmh.[ch]
* src/low-level/mime/mailmime.[ch]
* src/low-level/mime/mailmime_content.[ch]
* src/low-level/mime/mailmime_decode.[ch]
* src/low-level/mime/mailmime_disposition.[ch]
* src/low-level/nntp/newsnntp.[ch]
* src/low-level/pop3/mailpop3.[ch]
* src/low-level/pop3/mailpop3_helper.[ch]
* tests/option-parser.c
* tests/smtpsend.c
cleanup. Thanks to Daniel Richard G.
removed deprecated cinthash.
2008-02-17 - libetpan-0.53cvs3 - hoa
* configure.ac
* libetpan-config.h.in
* build-windows/libetpan_version.h
* src/data-types/connect.c
* src/data-types/maillock.c
* src/data-types/mailstream.c
* src/data-types/mailstream_ssl.c
* src/driver/implementation/data-message/data_message_driver.c
* src/driver/implementation/db/dbdriver.c
* src/driver/implementation/db/dbdriver_message.c
* src/driver/implementation/db/dbstorage.c
* src/driver/implementation/feed/feeddriver.c
* src/driver/implementation/imap/imapdriver_cached.c
* src/driver/implementation/imap/imapdriver_cached_message.c
* src/driver/implementation/imap/imapdriver_message.c
* src/driver/implementation/imap/imapstorage.c
* src/driver/implementation/maildir/maildirdriver.c
* src/driver/implementation/maildir/maildirdriver_cached.c
* src/driver/implementation/maildir/maildirdriver_cached_message.c
* src/driver/implementation/maildir/maildirdriver_message.c
* src/driver/implementation/maildir/maildirstorage.c
* src/driver/implementation/mbox/mboxdriver.c
* src/driver/implementation/mbox/mboxdriver_cached.c
* src/driver/implementation/mbox/mboxdriver_cached_message.c
* src/driver/implementation/mbox/mboxdriver_message.c
* src/driver/implementation/mbox/mboxstorage.c
* src/driver/implementation/mh/mhdriver.c
* src/driver/implementation/mh/mhdriver_cached.c
* src/driver/implementation/mh/mhdriver_cached_message.c
* src/driver/implementation/mh/mhdriver_message.c
* src/driver/implementation/mh/mhstorage.c
* src/driver/implementation/mime-message/mime_message_driver.c
* src/driver/implementation/nntp/nntpdriver.c
* src/driver/implementation/nntp/nntpdriver_cached.c
* src/driver/implementation/nntp/nntpdriver_cached_message.c
* src/driver/implementation/nntp/nntpdriver_message.c
* src/driver/implementation/nntp/nntpstorage.c
* src/driver/implementation/pop3/pop3driver_cached.c
* src/driver/implementation/pop3/pop3driver_cached_message.c
* src/driver/implementation/pop3/pop3driver_message.c
* src/driver/implementation/pop3/pop3driver_tools.c
* src/driver/implementation/pop3/pop3storage.c
* src/engine/mailprivacy_gnupg.c