forked from Alinto/sope
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
16521 lines (14598 loc) · 694 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
commit dc3db91aac7b64dd059cb9854520f828efcbc593
Author: Francis Lachapelle <[email protected]>
Date: Mon Jan 25 11:21:37 2016 -0500
Update ChangeLog
M ChangeLog
commit 28d239d0c8589b4d4ce7f49aa7d77f580c7254b7
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 22 14:22:26 2016 -0500
(fix) avoid buffer overruns leading to empty data
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit b76c3bb5eef6f976d0d21378fe9074a7d05c8dbf
Author: Francis Lachapelle <[email protected]>
Date: Mon Jan 18 11:25:04 2016 -0500
Update ChangeLog
M ChangeLog
commit fe0d0c33452ace9aaba13c85c1e2e43d82a345af
Author: Ludovic Marcotte <[email protected]>
Date: Mon Jan 18 10:14:30 2016 -0500
(fix) allow compilation on old gcc
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.m
commit 1f261501a0671fb1cf2ccec5d08cc49f15d0a556
Author: Francis Lachapelle <[email protected]>
Date: Mon Jan 18 09:57:56 2016 -0500
Update ChangeLog
M ChangeLog
commit fc6e0228804ee16b0128384c886475f77d314ce6
Author: Jesús García Sáez <[email protected]>
Date: Mon Dec 21 17:42:01 2015 +0100
Decode QP data allows whitespace between words
M sope-mime/NGMail/NSData+MimeQP.m
commit 905fda34954e378022b1a055d380c67efc04db61
Author: Jesús García Sáez <[email protected]>
Date: Mon Dec 21 13:16:46 2015 +0100
Refactor NGEncodeQuotedPrintableMime
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.m
commit 1071c335b76fa3dcdc32b62534d3d1e113b25135
Author: Jesús García Sáez <[email protected]>
Date: Mon Dec 21 13:16:01 2015 +0100
Add methods to qp encode strings
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.h
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.m
commit f062773c49193bb09e8c4b08964f8cfeea2ab8cd
Author: Ludovic Marcotte <[email protected]>
Date: Thu Jan 7 09:52:54 2016 -0500
(fix) don't consider Outlook/EAS as DAV client
M sope-appserver/NGObjWeb/WEClientCapabilities.m
commit 91dec51286dcfe01701e459f5ed64f6c3e5070d3
Author: Francis Lachapelle <[email protected]>
Date: Tue Jan 5 14:35:59 2016 -0500
Update ChangeLog
M ChangeLog
commit 1343491b3d67760c1cd89881b715a24ac633452f
Author: Ludovic Marcotte <[email protected]>
Date: Tue Jan 5 13:43:35 2016 -0500
(fix) avoid using cString methods (#3425)
M sope-core/NGStreams/NGCTextStream.m
commit d762688e9aa839f626e9bdb663fdf1a0cb724620
Author: Francis Lachapelle <[email protected]>
Date: Tue Dec 15 14:27:04 2015 -0500
Update ChangeLog
M ChangeLog
commit 947a44954249fc1ebd7fa8134e03cb55ff734830
Author: Ludovic Marcotte <[email protected]>
Date: Mon Dec 14 10:22:56 2015 -0500
(fix) don't consider MobileIron Email+ as DAV client
M sope-appserver/NGObjWeb/WEClientCapabilities.m
commit 7380c8869e9eddc5487b85dcab1928775e2e8a1d
Author: Francis Lachapelle <[email protected]>
Date: Wed Nov 11 14:20:56 2015 -0500
Update ChangeLog
M ChangeLog
commit 51ecf2ee16c260075a1ac7375007b765f00d262c
Author: Javier Amor García <[email protected]>
Date: Wed Nov 11 16:58:39 2015 +0100
[NGMIMEType stringEncodingForCharset:] added more ISO charsets
M sope-mime/NGMime/NGMimeType.m
commit e219ef792df5c6a4a3f6fdf0e3ceabb4cb063ce8
Author: Ludovic Marcotte <[email protected]>
Date: Mon Nov 9 14:28:28 2015 -0500
(fix) additional fix for #3356
M sope-mime/NGMime/NGMimeRFC822DateHeaderFieldGenerator.m
commit 36e3816a89fd03261d7a50163a4b36a1fa4baded
Author: hasufell <[email protected]>
Date: Tue Nov 3 17:09:02 2015 +0100
configure: allow more explicit control over dependencies
Previously the 'checkLinking <lib> optional' strings caused
trouble for distributions, because these checks are automagic, as in:
even if the user doesn't want ldap support, but ldap exists on the
system, it will still be used, possibly causing problems if
ldap is removed afterwards.
Making these things explicit fixes those problems. Default is
still automagic, unless --enable-<feature> or --disable-<feature>
is passed.
M configure
commit 162d03325c47868b2323676f4865b64acbcb205b
Author: extrafu <[email protected]>
Date: Mon Nov 2 14:08:50 2015 -0500
Revert "Close all file descriptors on daemon start"
M sope-appserver/NGObjWeb/WOWatchDogApplicationMain.m
commit 39cd5ba93765452918ffb47f11f88103cc02e031
Author: Euan Thoms <[email protected]>
Date: Wed Oct 28 06:48:12 2015 +0800
Stage 9.1, further cleanup after removing EXPOSE_?_IVARS.
M sope-core/NGExtensions/NGBundleManager.m
commit 15a9e33e2c02c31522149ff66bd2a1f7062a917b
Author: Euan Thoms <[email protected]>
Date: Wed Oct 28 05:06:53 2015 +0800
Stage 9 of clang compiler warning patches.
M sope-appserver/NGObjWeb/NSObject+WO.m
M sope-appserver/NGObjWeb/SoObjects/SoSecurityException.h
M sope-appserver/NGObjWeb/SoObjects/SoSecurityException.m
M sope-appserver/NGObjWeb/SoObjects/SoSecurityManager.m
M sope-appserver/NGObjWeb/SoObjects/common.h
M sope-appserver/NGObjWeb/Templates/WOHTMLParser.m
M sope-appserver/NGObjWeb/Templates/common.h
M sope-appserver/NGObjWeb/common.h
M sope-core/NGExtensions/FdExt.subproj/NGPropertyListParser.m
M sope-core/NGExtensions/FdExt.subproj/NSException+misc.m
M sope-core/NGExtensions/NGBundleManager.m
M sope-core/NGExtensions/NGExtensions/NSException+misc.h
M sope-gdl1/GDLAccess/EOFault.h
M sope-gdl1/PostgreSQL/PostgreSQL72DataTypeMappingException.m
M sope-gdl1/PostgreSQL/PostgreSQL72Values.h
commit d06baebfe450a25746a506c9f215b6e676e39616
Author: ethoms <[email protected]>
Date: Mon Oct 26 18:50:44 2015 +0800
Update NGByteCountStream.m
M sope-core/NGStreams/NGByteCountStream.m
commit 7e020ff67e1c49b8fa7a1187b9d1c3b880553aa2
Author: Euan Thoms <[email protected]>
Date: Sun Oct 25 01:34:22 2015 +0800
Stage 8 of clang compiler warning patches.
M sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m
M sope-appserver/NGObjWeb/DynamicElements/WOComponentContent.m
M sope-appserver/NGObjWeb/DynamicElements/WOComponentReference.m
M sope-appserver/NGObjWeb/NSObject+WO.m
M sope-appserver/NGObjWeb/SoObjects/SoSelectorInvocation.m
M sope-appserver/NGObjWeb/WOChildComponentReference.m
M sope-appserver/NGObjWeb/WORunLoop.m
M sope-appserver/NGObjWeb/WOSession.m
M sope-appserver/NGObjWeb/common.h
M sope-core/EOControl/EOKeyComparisonQualifier.m
M sope-core/EOControl/EOKeyValueCoding.m
M sope-core/EOControl/EOKeyValueQualifier.m
M sope-core/EOControl/EOObserver.m
M sope-core/EOControl/EOOrQualifier.m
M sope-core/EOControl/EOSortOrdering.m
M sope-core/EOControl/EOValidation.m
M sope-core/EOControl/common.h
M sope-core/EOCoreData/EOKeyComparisonQualifier+CoreData.m
M sope-core/EOCoreData/EOKeyValueQualifier+CoreData.m
M sope-core/EOCoreData/EOQualifier+CoreData.m
M sope-core/EOCoreData/EOSortOrdering+CoreData.m
M sope-core/EOCoreData/common.h
M sope-core/NGExtensions/EOExt.subproj/EOQualifier+CtxEval.m
M sope-core/NGExtensions/NGExtensions/NGMemoryAllocation.h
M sope-core/NGStreams/NGByteCountStream.m
M sope-core/NGStreams/NGStreamCoder.m
M sope-gdl1/GDLAccess/EOAdaptorDataSource.m
M sope-gdl1/GDLAccess/EOAttribute.m
M sope-gdl1/GDLAccess/EOEntity.m
M sope-gdl1/GDLAccess/EOFault.m
M sope-gdl1/GDLAccess/EOKeyComparisonQualifier+SQL.m
M sope-gdl1/GDLAccess/EOKeyValueQualifier+SQL.m
M sope-gdl1/GDLAccess/EOSQLExpression.m
M sope-gdl1/GDLAccess/common.h
M sope-ldap/NGLdap/EOQualifier+LDAP.m
M sope-mime/NGImap4/EOQualifier+IMAPAdditions.m
M sope-mime/NGImap4/EOSortOrdering+IMAPAdditions.m
M sope-mime/NGImap4/NGImap4Folder.m
M sope-mime/NGImap4/imCommon.h
M sope-mime/NGMime/common.h
commit 89241c40becf566ebde00d097aeacb04babe7f8b
Author: Euan Thoms <[email protected]>
Date: Sat Oct 24 20:07:50 2015 +0800
Stage 7 of clang compiler warning patches.
M sope-core/NGStreams/NGActiveSocket.m
M sope-mime/NGMime/NGMimeRFC822DateHeaderFieldGenerator.m
commit 73254707c39657d4eded1626f3a72c6bc717cb6b
Author: Euan Thoms <[email protected]>
Date: Thu Oct 22 18:28:39 2015 +0800
Stage 6 of clang compiler warning patches. Fix hidden method in NGImap4Client.m required by SOGo.
M sope-mime/NGImap4/NGImap4Client.h
M sope-mime/NGImap4/NGImap4Client.m
commit 635a56d9d583d59ce43431005a1d9fa9a864a455
Author: Euan Thoms <[email protected]>
Date: Thu Oct 22 18:10:36 2015 +0800
Stage 5 of clang compiler warning patches. Missing header file imports.
M sope-core/NGExtensions/FdExt.subproj/NSSet+enumerator.m
M sope-core/NGExtensions/FdExt.subproj/NSString+misc.m
M sope-gdl1/GDLAccess/EOAdaptor.m
M sope-gdl1/GDLAccess/EODatabaseFault.m
M sope-gdl1/GDLAccess/EOSQLExpression.m
M sope-gdl1/GDLAccess/EOSQLQualifier.m
commit a7141312d05b3ca807592ebc81726d4c7624ba44
Author: Euan Thoms <[email protected]>
Date: Thu Oct 22 16:55:11 2015 +0800
Stage 4 of clang compiler warning patches. Various code cleanup and fixes.
M sope-appserver/NGObjWeb/DynamicElements/WOHyperlinkInfo.m
M sope-appserver/NGObjWeb/NGHttp/NGHttpHeaderFieldParser.m
M sope-appserver/NGObjWeb/WOMailDelivery.m
M sope-appserver/NGObjWeb/WebDAV/SoObjectDataSource.m
M sope-core/NGStreams/NGActiveSocket.m
M sope-gdl1/PostgreSQL/NSString+PostgreSQL72.m
M sope-mime/NGImap4/NGImap4Context.m
M sope-mime/NGImap4/NGImap4Folder.m
commit c2b41f5be002d0f67e315c6bc504147ba6abeec8
Author: Euan Thoms <[email protected]>
Date: Thu Oct 22 15:17:44 2015 +0800
Stage 3 of clang compiler warning patches. Replace deprecated 'isa' calls.
M sope-appserver/NGObjWeb/WOComponent+Sync.m
M sope-appserver/NGObjWeb/WOComponent.m
M sope-core/EOControl/EOGlobalID.m
M sope-core/EOControl/EOKeyGlobalID.m
M sope-core/NGExtensions/FdExt.subproj/NSObject+Logs.m
M sope-core/NGExtensions/NGCalendarDateRange.m
M sope-gdl1/GDLAccess/EODatabaseFault.m
M sope-gdl1/GDLAccess/EOFExceptions.m
M sope-gdl1/GDLAccess/EOFault.m
M sope-gdl1/GDLAccess/EOModel.m
M sope-gdl1/GDLAccess/EOPrimaryKeyDictionary.m
M sope-gdl1/GDLAccess/EOSQLQualifier.m
commit 1dad0ae546b5d28d1d7bb51a6c06016ac1b5d83d
Author: Euan Thoms <[email protected]>
Date: Thu Oct 22 13:51:42 2015 +0800
Stage 2 of clang compiler warning patches. Function declaration syntax fixes.
M sope-appserver/NGObjWeb/SoObjects/SoClassSecurityInfo.h
M sope-appserver/NGObjWeb/SoObjects/SoClassSecurityInfo.m
M sope-appserver/NGObjWeb/WebDAV/SoDAVSQLParser.h
M sope-appserver/NGObjWeb/WebDAV/SoDAVSQLParser.m
M sope-appserver/WEExtensions/WETableCalcMatrix.h
M sope-appserver/WEExtensions/WETableCalcMatrix.m
M sope-appserver/WEExtensions/WETableMatrix.m
M sope-core/EOControl/EOSQLParser.h
M sope-core/EOControl/EOSQLParser.m
M sope-gdl1/GDLAccess/EODatabaseChannel.m
M sope-mime/NGMime/NGMimePartGenerator.h
M sope-xml/SaxObjC/SaxObjectDecoder.m
commit 37782867bc35981da0ed8593f9389e9761c3f83a
Author: Ludovic Marcotte <[email protected]>
Date: Wed Oct 21 08:57:55 2015 -0400
(fix) c99 fixes
M sope-core/NGStreams/NGByteCountStream.m
commit 3b820aea61003364dc9835a74668ae882da9b60d
Author: Euan Thoms <[email protected]>
Date: Wed Oct 21 11:15:28 2015 +0800
Stage 1 of clang complier warning patches. These are mostly fixes for data type and casting inconsistencies. Also some string formatting fixes.
M sope-appserver/NGObjWeb/Associations/WOScriptAssociation.m
M sope-appserver/NGObjWeb/Associations/WOValueAssociation.m
M sope-appserver/NGObjWeb/DynamicElements/WOGenericElement.m
M sope-appserver/NGObjWeb/DynamicElements/WOHyperlink.m
M sope-appserver/NGObjWeb/NGHttp/NGHttpResponse.h
M sope-appserver/NGObjWeb/NGHttp/NGUrlFormCoder.m
M sope-appserver/NGObjWeb/SoObjects/SoComponent.m
M sope-appserver/NGObjWeb/SoObjects/SoDefaultRenderer.m
M sope-appserver/NGObjWeb/Templates/WOComponentScriptPart.m
M sope-appserver/NGObjWeb/Templates/WODParser.m
M sope-appserver/NGObjWeb/Templates/WOHTMLParser.m
M sope-appserver/NGObjWeb/Templates/WOTemplate.m
M sope-appserver/NGObjWeb/Templates/WOxElemBuilder.m
M sope-appserver/NGObjWeb/WOComponent.m
M sope-appserver/NGObjWeb/WOHTTPConnection.m
M sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpAdaptor.m
M sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.m
M sope-appserver/NGObjWeb/WOHttpAdaptor/WORequest+Adaptor.m
M sope-appserver/NGObjWeb/WOResponse.m
M sope-appserver/NGObjWeb/WOSessionStore.m
M sope-appserver/NGObjWeb/WOSimpleHTTPParser.m
M sope-appserver/NGObjWeb/WOStatisticsStore.m
M sope-appserver/NGObjWeb/WebDAV/SoDAVSQLParser.m
M sope-appserver/NGObjWeb/WebDAV/SoWebDAVRenderer.m
M sope-appserver/NGObjWeb/WebDAV/SoWebDAVValue.m
M sope-appserver/NGObjWeb/_WOStringTable.m
M sope-appserver/WEExtensions/JSStringTable.m
M sope-appserver/WEExtensions/WEMonthOverview.m
M sope-appserver/WEExtensions/WEResourceKey.m
M sope-appserver/WEExtensions/WEResourceManager.m
M sope-appserver/WEExtensions/WETableCalcMatrix.m
M sope-appserver/WEExtensions/WETableView/WETableView.m
M sope-appserver/WOExtensions/WOTabPanel.m
M sope-core/EOControl/EOFetchSpecification.m
M sope-core/EOControl/EONull.m
M sope-core/NGExtensions/FdExt.subproj/NGPropertyListParser.m
M sope-core/NGExtensions/FdExt.subproj/NSException+misc.m
M sope-core/NGExtensions/FdExt.subproj/NSObject+Values.m
M sope-core/NGExtensions/FdExt.subproj/NSString+Encoding.m
M sope-core/NGExtensions/NGDirectoryEnumerator.m
M sope-core/NGStreams/NGBufferedStream.m
M sope-core/NGStreams/NGByteBuffer.m
M sope-core/NGStreams/NGByteCountStream.m
M sope-core/NGStreams/NGCTextStream.m
M sope-core/NGStreams/NGConcreteStreamFileHandle.m
M sope-core/NGStreams/NGLocalSocketAddress.m
M sope-gdl1/GDLAccess/EOAttribute.m
M sope-gdl1/GDLAccess/EODatabase.m
M sope-gdl1/GDLAccess/EODatabaseChannel.m
M sope-gdl1/GDLAccess/EODatabaseContext.m
M sope-gdl1/GDLAccess/EODatabaseFault.m
M sope-gdl1/GDLAccess/EODatabaseFaultResolver.m
M sope-gdl1/GDLAccess/EOEntity.m
M sope-gdl1/GDLAccess/EOFault.m
M sope-gdl1/GDLAccess/EOModel.m
M sope-gdl1/GDLAccess/EOObjectUniquer.m
M sope-gdl1/GDLAccess/EOPrimaryKeyDictionary.m
M sope-gdl1/GDLAccess/EORecordDictionary.m
M sope-gdl1/GDLAccess/EORelationship.m
M sope-gdl1/PostgreSQL/NSData+PGVal.m
M sope-gdl1/PostgreSQL/PostgreSQL72Channel.m
M sope-gdl1/PostgreSQL/PostgreSQL72DataTypeMappingException.m
M sope-ldap/NGLdap/NGLdapConnection.m
M sope-ldap/NGLdap/NGLdapFileManager.m
M sope-ldap/NGLdap/NGLdapGlobalID.m
M sope-mime/NGImap4/NGImap4Client.m
M sope-mime/NGImap4/NGImap4Connection.m
M sope-mime/NGImap4/NGImap4FileManager.m
M sope-mime/NGImap4/NGImap4FolderGlobalID.m
M sope-mime/NGImap4/NGImap4Functions.m
M sope-mime/NGImap4/NGImap4Message.m
M sope-mime/NGImap4/NGImap4ResponseParser.m
M sope-mime/NGImap4/NGImap4ServerGlobalID.m
M sope-mime/NGImap4/NGSieveClient.m
M sope-mime/NGMail/NGMailAddress.m
M sope-mime/NGMail/NGMailAddressParser.m
M sope-mime/NGMail/NGMimeMessage.m
M sope-mime/NGMime/NGMimeBodyPart.m
M sope-mime/NGMime/NGMimeJoinedData.m
M sope-mime/NGMime/NGMimePartGenerator.m
M sope-mime/NGMime/NGMimePartParser.m
M sope-mime/NGMime/NGMimeRFC822DateHeaderFieldParser.m
M sope-xml/DOM/DOMQueryPathExpression.m
M sope-xml/XmlRpc/NSNotification+XmlRpcCoding.m
commit ad7a88e35e027b1ed6c8fe5e6a275634ac077490
Author: Ludovic Marcotte <[email protected]>
Date: Thu Oct 15 15:55:48 2015 -0400
(fix) support old GNUstep versions
M sope-mime/NGMime/NGMimeRFC822DateHeaderFieldGenerator.m
commit 4ac4809dae92a08e219677a5f67c6575baa8a98e
Author: Ludovic Marcotte <[email protected]>
Date: Wed Oct 14 15:54:59 2015 -0400
(fix) make sure to use the English locale when generating Date headers
M sope-mime/NGMime/NGMimeRFC822DateHeaderFieldGenerator.m
commit a2e2908f9dd0ec90bc6d48c48d4c2d467b29dae7
Author: Juan Vallés <[email protected]>
Date: Wed Oct 7 16:36:35 2015 +0200
Compute the exact string length for IMAP commands
By computing the maximum length and then using `strlen()` we were being
efficient, but if there was a `\0` in the command (e.g. when there is an
attachment in a message and its data has that byte), `strlen()` skipped
the rest of the string and returned a smaller length.
Suggested `NEWS` line:
* `Avoid server freeze due to attached files`
M sope-core/NGStreams/NGCTextStream.m
commit e870145b7ed381c1bdef5945075ed48948b86d5b
Author: Ludovic Marcotte <[email protected]>
Date: Wed Sep 9 14:59:10 2015 -0400
(fix) bug fix for #3309
M sope-mime/NGMime/NGMimePartParser.m
commit 2d1665fd94b5c320c631d5d9231421a0773f890b
Author: Francis Lachapelle <[email protected]>
Date: Tue Sep 8 12:21:30 2015 -0400
Improve parsing of email address
M sope-mime/NGMail/NGMailAddressParser.m
commit 410739bc77e68143734bd2bcaf42bf86eb0719b0
Author: Jesús García Sáez <[email protected]>
Date: Mon Sep 7 16:22:30 2015 +0200
Revert "Remove handleException on requests"
M sope-appserver/NGObjWeb/WORequestHandler.m
commit 7dcb6a244b5cdf5812541d5ddba9c63994ec7eb7
Author: Francis Lachapelle <[email protected]>
Date: Thu Sep 3 14:12:49 2015 -0400
Fix parsing of email that contains a comma
Fixes #3301 #3306
M sope-mime/NGMail/NGMailAddressParser.m
commit 7a4328c1034c3a161bd33082e620fec543ef4ade
Author: Javier Amor García <[email protected]>
Date: Thu Aug 20 14:53:18 2015 +0200
sope-mime: Fixed UTF-8 q-encoding in MIME headers
The q-encoding was broke because it encoded the whole
header line; this made MIME parameters unrecognizable
by client.
This commit makes a more selective encoding.
The error triggered a failure when sending attachments
with no-latin file names.
M sope-mime/NGMail/NGMimeMessageGenerator.m
commit 750e5ec0858eb52fa8d0859028d0277d47f6c543
Author: Ludovic Marcotte <[email protected]>
Date: Thu Jul 23 11:53:33 2015 -0400
Update ChangeLog
M ChangeLog
commit 18d989c142aa6e8fb9e6487b65770033419febe3
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jul 3 09:46:37 2015 -0400
Silenced useless warning
M sope-appserver/NGObjWeb/SoObjects/SoProductResourceManager.m
commit 6d65405dbb6dc9a9cf65970f5436011c1d6a1ae7
Author: Jesús García Sáez <[email protected]>
Date: Thu Jun 18 17:27:55 2015 +0200
Remove handleException on requests
M sope-appserver/NGObjWeb/WORequestHandler.m
commit 1c1bafbf5b38c35650b1138d606fbe99bfe37137
Author: Ludovic Marcotte <[email protected]>
Date: Mon Jun 15 11:28:26 2015 -0400
(fix) improvements to address parsing (#3243, #3254)
M sope-mime/NGMail/NGMailAddressParser.m
commit 986305940779b821df35e4f1219d4de7e0cc1dc3
Author: Francis Lachapelle <[email protected]>
Date: Wed Jun 10 14:58:23 2015 -0400
Add support for the number input type of HTML5
M sope-appserver/NGObjWeb/DynamicElements/WOxHTMLElemBuilder.m
commit 773f984b2e0ce8c0d22040301e5e63de685d6b8e
Author: Ludovic Marcotte <[email protected]>
Date: Wed Jun 10 11:00:30 2015 -0400
(fix) added support for big characters encoding
M sope-core/NGExtensions/FdExt.subproj/NSString+Encoding.m
commit b738adc8abea04c8b6e733e1fd26779f9e2c0fb1
Author: Ludovic Marcotte <[email protected]>
Date: Tue Jun 9 15:58:12 2015 -0400
(fix) force continuation if / is found in the password
M sope-mime/NGImap4/NGImap4Client.m
commit 383de8a96cccb78b16ab166bf5d06c2c49465408
Author: Ludovic Marcotte <[email protected]>
Date: Mon Jun 1 08:38:44 2015 -0400
Update ChangeLog
M ChangeLog
commit b6b71be58813684cfe8a2fbc0a18715c26a042fc
Author: Ludovic Marcotte <[email protected]>
Date: Tue May 26 15:09:43 2015 -0400
(fix) let the code compile on older gcc versions
M sope-mime/NGMime/NGMimeAddressHeaderFieldGenerator.m
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.h
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.m
commit e81575b85fe1a45bdad0ca5160a31fe45c5c9c49
Author: Ludovic Marcotte <[email protected]>
Date: Wed May 20 08:26:14 2015 -0400
improvements over previous commits
M sope-mime/NGMime/NGMimePartGenerator.m
commit f354d85c3e6968252f41fb91956aef0c1fb8a25d
Author: Ludovic Marcotte <[email protected]>
Date: Tue May 19 14:58:03 2015 -0400
very slight enhancements over previous commit
M sope-mime/NGMime/NGMimePartGenerator.m
commit 918ecf623f32b4318545e883b30038ac9a187a79
Author: Ludovic Marcotte <[email protected]>
Date: Tue May 19 14:52:04 2015 -0400
(fix) enforce the 998 chars limit when generating header data (#3085)
M sope-mime/NGMime/NGMimePartGenerator.m
commit 20acefdd4dab607b064e2f3d1ffebd3bae936a66
Author: Javier Amor García <[email protected]>
Date: Mon May 18 14:36:41 2015 +0200
NGLdap: Add LDAP error code to `LDAPException` object.
The error code is stored in the userInfo dictioanry under the key error_code
M sope-ldap/NGLdap/NGLdapConnection.m
commit ed1a58d4bd9241689b49bd83329961f77500cc94
Author: Ludovic Marcotte <[email protected]>
Date: Tue Apr 21 10:57:46 2015 -0400
Fixed code for C99 comptability
M sope-mime/NGImap4/NGImap4Connection.m
commit 984afb7fbc9a46f2df0a86a7114d24c5bce1b532
Author: Jesús García Sáez <[email protected]>
Date: Mon Apr 20 14:24:07 2015 +0200
NGImap4Connection:fetchUids retrieve uids in batches
To prevent 'too long request' error
M sope-mime/NGImap4/NGImap4Connection.m
commit 99a5736d198a5300491d253b273bda437ef35f11
Author: Ludovic Marcotte <[email protected]>
Date: Tue Mar 24 11:10:52 2015 -0400
Update ChangeLog
M ChangeLog
commit 9afc84eb11fd5329bc342e3fadec81a3855b486c
Author: Jesús García Sáez <[email protected]>
Date: Mon Mar 23 17:04:59 2015 +0100
mime/mail: Parse emails with '<' in displayName
M sope-mime/NGMail/NGMailAddressParser.m
commit 67c9c4ff64099e07a239d44ca84cf58c9886dcf8
Author: Jesús García Sáez <[email protected]>
Date: Mon Mar 23 13:38:27 2015 +0100
mime: encode address headers properly
More restrict QP encode based on rfc822, escape all special chars.
This is the way dovecot parses these fields.
M sope-mime/NGMime/NGMimeAddressHeaderFieldGenerator.m
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.h
M sope-mime/NGMime/NGMimeHeaderFieldGenerator.m
commit d0ac78bdab50ae3c5af4e946e6f5ef2e0f284d9b
Author: Francis Lachapelle <[email protected]>
Date: Wed Mar 4 11:59:06 2015 -0500
Add support for date & search input types of HTML5
M sope-appserver/NGObjWeb/DynamicElements/WOxHTMLElemBuilder.m
commit 6452ca58fbd7ee4850ae06bd7228a4feeb21441b
Author: Ludovic Marcotte <[email protected]>
Date: Thu Feb 12 11:09:30 2015 -0500
Update ChangeLog
M ChangeLog
commit d38cce21a6ad2fc872d307a8b99e1bbce9dea729
Author: Ludovic Marcotte <[email protected]>
Date: Mon Feb 9 15:32:36 2015 -0500
Avoid overwriting the content-type for empty EAS responses (#3095)
M sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.m
commit 09dbf543661fdabb7485e2e7d8c8d02984e0f7d1
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 30 11:12:36 2015 -0500
Update ChangeLog
M ChangeLog
commit 6ce6a39e1af5a4161769b9b7d52c19b805b13815
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 30 11:11:51 2015 -0500
Silenced more stuff
M sope-appserver/NGObjWeb/WEClientCapabilities.m
commit 5ddf39f50561d989f418804a51e0f7e293b8b242
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 23 16:18:26 2015 -0500
More cleanups to avoid GNUstep warnings
M sope-appserver/NGObjWeb/WebDAV/SoObjectDataSource.m
commit e9a168ec7b6ef170dcb1b2d24853fc248c6368de
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 23 16:15:06 2015 -0500
More cleanups
M sope-appserver/NGObjWeb/WebDAV/SoObject+SoDAVQuery.m
M sope-core/NGExtensions/GNUmakefile
commit 6c910bc7b5c2150b2315be6b2320a878f0014144
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 23 16:13:07 2015 -0500
More cleanups
M sope-gdl1/PostgreSQL/PostgreSQL72Channel.m
commit 531b118227e395d65947c9dadcb5df37398fe0c8
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 23 16:02:22 2015 -0500
Major cleanups to crappy logging before
M sope-appserver/NGObjWeb/Defaults.plist
M sope-appserver/NGObjWeb/DynamicElements/WOBrowser.m
M sope-appserver/NGObjWeb/DynamicElements/WOCompoundElement.m
M sope-appserver/NGObjWeb/DynamicElements/WOString.m
M sope-appserver/NGObjWeb/SoObjects/SoObject.m
M sope-appserver/NGObjWeb/Templates/WOWrapperTemplateBuilder.m
M sope-appserver/NGObjWeb/Templates/WOxElemBuilder.m
M sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.m
M sope-core/NGExtensions/FdExt.subproj/NSString+Encoding.m
M sope-core/NGExtensions/FdExt.subproj/NSString+URLEscaping.m
M sope-core/NGExtensions/NGBundleManager.m
M sope-mime/NGImap4/NGImap4Connection.m
M sope-mime/NGImap4/NGImap4ConnectionManager.m
M sope-mime/NGImap4/NGImap4FolderMailRegistry.m
M sope-mime/NGMime/NGMimePartGenerator.m
commit 91ae0a61312a1f1b40eff727258b06f15d9d0867
Author: Ludovic Marcotte <[email protected]>
Date: Thu Jan 22 10:40:12 2015 -0500
Removed worthless files
M sope-core/NGExtensions/FdExt.subproj/GNUmakefile
D sope-core/NGExtensions/FdExt.subproj/NSString+German.m
D sope-core/NGExtensions/NGExtensions/NSString+German.h
commit 64e164a20bfda861fdf1df715776b9657ad0feb5
Author: Ludovic Marcotte <[email protected]>
Date: Tue Jan 20 08:37:58 2015 -0500
Update ChangeLog
M ChangeLog
commit 77927f2583ecb26e97256a5e180b96dffa8eacf3
Author: Ludovic Marcotte <[email protected]>
Date: Fri Jan 16 12:53:44 2015 -0500
Slight improvements to ppolicy code
M sope-ldap/NGLdap/NGLdapConnection.m
commit bcbe4afed90dbb00cb406e6d02fc590d0d1243a9
Author: Ludovic Marcotte <[email protected]>
Date: Tue Jan 13 15:40:43 2015 -0500
Fix for bug #2993
M sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.m
commit 0115a39168a7d483f540ba87a2ebe378fb602f76
Author: Ludovic Marcotte <[email protected]>
Date: Tue Dec 30 12:57:03 2014 -0500
Fix for bug #2967
M sope-appserver/WEExtensions/WEDropContainer.m
commit 382cabbaf6c5a9a559c0b7c066dbb52ee9f730ad
Author: Ludovic Marcotte <[email protected]>
Date: Tue Dec 30 08:04:14 2014 -0500
Update ChangeLog
M ChangeLog
commit 0a015d9791a5848f3b0b395a90a085d8a59694b0
Author: Ludovic Marcotte <[email protected]>
Date: Mon Dec 22 15:46:29 2014 -0500
Fix annotation/lstatus to handle separators other than '/'
M sope-mime/NGImap4/NGImap4Client.m
M sope-mime/NGImap4/NGImap4ResponseNormalizer.m
commit 901137b5425579ef6dcf99f731bc9c528a871cd0
Author: Ludovic Marcotte <[email protected]>
Date: Sat Dec 20 15:32:08 2014 -0500
Added hack to avoid bug #3036 on badly encodied mails
M sope-mime/NGMime/NGMimeBodyGenerator.m
commit e1216770ca7067bf03bc95db29da54ca6107504c
Author: Ludovic Marcotte <[email protected]>
Date: Thu Dec 18 08:58:59 2014 -0500
Update ChangeLog
M ChangeLog
commit d6b948e0e4e42246f24c48b12bd2be0a3fac626c
Author: Ludovic Marcotte <[email protected]>
Date: Wed Dec 17 15:02:23 2014 -0500
Now possible to set message headers dynamically
M sope-mime/NGMail/NGMimeMessage.h
M sope-mime/NGMail/NGMimeMessage.m
commit ed5c2c66171220955d36e1094a7aca36d63c2930
Author: Ludovic Marcotte <[email protected]>
Date: Mon Dec 15 19:35:26 2014 -0500
New lstatus method to quickly grab the X-GUID of folders
M sope-mime/NGImap4/NGImap4Client.h
M sope-mime/NGImap4/NGImap4Client.m
M sope-mime/NGImap4/NGImap4ResponseNormalizer.h
M sope-mime/NGImap4/NGImap4ResponseNormalizer.m
commit e49a05fc5544e9775e7e61fca7b93c7c2eea7087
Author: Ludovic Marcotte <[email protected]>
Date: Tue Dec 9 12:59:41 2014 -0500
Added workaround for Precise packaging
M packaging/debian/rules
commit 2dd9a7919c0f4223fb6764bb9658cdb3dcdbf78f
Author: Ludovic Marcotte <[email protected]>
Date: Tue Dec 9 09:12:44 2014 -0500
Update ChangeLog
M ChangeLog
commit 4ed68775f91b6ecb566164babda0d00f0b519d23
Author: Enrique J. Hernández Blasco <[email protected]>
Date: Sat Nov 29 09:23:06 2014 +0100
Use malloc/free as NGAllocAtomic/NGFree are useless
LIB_FOUNDATION_BOEHM_GC is never used and will never be
according to inverse-inc devs
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit b249d8f5c3d0ce5bd765f9ec4270c54d7a870d7d
Author: Enrique J. Hernández Blasco <[email protected]>
Date: Thu Nov 27 17:21:03 2014 +0100
Fix memory leak when failing to parse a quoted printable
Valgrind report:
604 bytes in 1 blocks are definitely lost in loss record 8,010 of 10,179
at 0x4C2AB80: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
by 0x2BF73131: _i_NSData_QuotedPrintableCoding_dataByDecodingQuotedPrintableTransferEncoding (in /usr/lib/libNGExtensions.so.4.9.203)
by 0x3375053E: _i_NSData_SOGoMailUtilities_bodyDataFromEncoding_ (in /usr/lib/GNUstep/SOGo/Mailer.SOGo/Mailer)
by 0x34D23B46: _i_MAPIStoreMailMessage__setBodyContentFromRawData_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34D1DD0A: _i_MAPIStoreMailFolder__lookupMessage_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34CF4312: _i_MAPIStoreFolder__lookupMessageByURL_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34CF497A: _i_MAPIStoreFolder__openMessage_withMID_forWriting_inMemCtx_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x2A5D5013: sogo_folder_open_message (in /usr/lib/x86_64-linux-gnu/mapistore_backends/libMAPIStoreSOGo.so.1.0.0)
In decoding and encoding failing.
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit 75bd8a0105752cee05496efd53b2d4103390a4dc
Author: Enrique J. Hernández Blasco <[email protected]>
Date: Thu Nov 27 17:21:03 2014 +0100
Fix memory leak when failing to parse a quoted printable
Valgrind report:
604 bytes in 1 blocks are definitely lost in loss record 8,010 of 10,179
at 0x4C2AB80: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
by 0x2BF73131: _i_NSData_QuotedPrintableCoding_dataByDecodingQuotedPrintableTransferEncoding (in /usr/lib/libNGExtensions.so.4.9.203)
by 0x3375053E: _i_NSData_SOGoMailUtilities_bodyDataFromEncoding_ (in /usr/lib/GNUstep/SOGo/Mailer.SOGo/Mailer)
by 0x34D23B46: _i_MAPIStoreMailMessage__setBodyContentFromRawData_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34D1DD0A: _i_MAPIStoreMailFolder__lookupMessage_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34CF4312: _i_MAPIStoreFolder__lookupMessageByURL_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x34CF497A: _i_MAPIStoreFolder__openMessage_withMID_forWriting_inMemCtx_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
by 0x2A5D5013: sogo_folder_open_message (in /usr/lib/x86_64-linux-gnu/mapistore_backends/libMAPIStoreSOGo.so.1.0.0)
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit bd194948067c876eafecd9723ae7c544099fb9e5
Author: Enrique J. Hernández Blasco <[email protected]>
Date: Mon Nov 24 23:50:45 2014 +0100
Fix crash when decoding a = at end of the data
In decoding a quoted printable mail. There is a buffer overflow
as we are always parsing two bytes instead of one.
See the full backtrace at:
https://gist.github.com/sixstone-qq/cb8099b66c2911e8aaf2
This patch avoid regressions to manage = at the end of the source.
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit f26ccf1f1380b1a95b8b29e5a30e8edd775a151b
Author: Samuel Cabrero <[email protected]>
Date: Thu Nov 20 17:02:01 2014 +0100
Fix memory leak in file NSString+Imap4.m function stringByDecodingImap4FolderName
Trace:
==26758== 114,980 bytes in 3,551 blocks are definitely lost in loss record 9,847 of 9,930
==26758== at 0x4C2AB80: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==26758== by 0x2D203DBD: ??? (in /usr/lib/libgnustep-base.so.1.24.0)
==26758== by 0x2BA20427: _i_NSString_Imap4_stringByDecodingImap4FolderName (in /usr/lib/libNGMime.so.4.9.3)
==26758== by 0x34D19F77: _i_MAPIStoreMailFolder___imapFolderNameRepresentation_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34D1A11C: _i_MAPIStoreMailFolder___cleanupSubfolderKeys_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34D1A326: _i_MAPIStoreMailFolder__folderKeysMatchingQualifier_andSortOrderings_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34CF76D2: _i_MAPIStoreFolder__folderKeys (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34CF3BFE: _i_MAPIStoreFolder__lookupFolder_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34CF3E27: _i_MAPIStoreFolder__lookupFolderByURL_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x34CF43BF: _i_MAPIStoreFolder__openFolder_withFID_ (in /usr/lib/GNUstep/SOGo/SOGoBackend.MAPIStore/SOGoBackend)
==26758== by 0x2A5D4773: sogo_folder_open_folder (in /usr/lib/x86_64-linux-gnu/mapistore_backends/libMAPIStoreSOGo.so.1.0.0)
==26758== by 0x2917D670: mapistore_backend_folder_open_folder (in /usr/lib/x86_64-linux-gnu/libmapistore.so.2.2)
==26758== by 0x291758C2: mapistore_folder_open_folder (in /usr/lib/x86_64-linux-gnu/libmapistore.so.2.2)
==26758== by 0x28C1204D: emsmdbp_object_open_folder (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C3191F: oxcfxics_fill_transfer_state_arrays (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C319AC: oxcfxics_fill_transfer_state_arrays (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C31D76: oxcfxics_ndr_push_transfer_state (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C3226B: EcDoRpc_RopSyncGetTransferState (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C0D87C: EcDoRpc_process_transaction (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C0F3C7: dcesrv_EcDoRpcExt2 (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x28C0F89A: dcesrv_exchange_emsmdb_dispatch (in /usr/lib/x86_64-linux-gnu/openchange/dcerpc_mapiproxy_server/exchange_emsmdb.so)
==26758== by 0x26BF8E23: mapiproxy_server_dispatch (in /usr/lib/x86_64-linux-gnu/libmapiproxy.so.2.2)
==26758== by 0x268D7213: mapiproxy_op_dispatch (in /usr/lib/x86_64-linux-gnu/samba/dcerpc_server/dcesrv_mapiproxy.so)
==26758== by 0x16267BAF: dcesrv_process_ncacn_packet (in /usr/lib/x86_64-linux-gnu/libdcerpc-server.so.0.0.1)
==26758== by 0x16268980: dcesrv_read_fragment_done (in /usr/lib/x86_64-linux-gnu/libdcerpc-server.so.0.0.1)
==26758== by 0x809ECB6: dcerpc_read_ncacn_packet_done (in /usr/lib/x86_64-linux-gnu/libdcerpc-binding.so.0.0.1)
==26758== by 0xB5137C8: tstream_readv_pdu_readv_done (in /usr/lib/x86_64-linux-gnu/samba/libsamba-sockets.so.0)
==26758== by 0xB5126A5: tstream_readv_done (in /usr/lib/x86_64-linux-gnu/samba/libsamba-sockets.so.0)
==26758== by 0x8B04E13: tevent_common_loop_immediate (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x8B09436: epoll_event_loop_once (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x8B07B26: std_event_loop_once (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x8B045EC: _tevent_loop_once (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x8B0478A: tevent_common_loop_wait (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x8B07AC6: std_event_loop_wait (in /usr/lib/x86_64-linux-gnu/libtevent.so.0.9.19)
==26758== by 0x11DF4685: standard_new_task (in /usr/lib/x86_64-linux-gnu/samba/process_model/standard.so)
==26758== by 0x5D10EF9: task_server_startup (in /usr/lib/x86_64-linux-gnu/samba/libservice.so.0)
==26758== by 0x5D0FBA2: server_service_startup (in /usr/lib/x86_64-linux-gnu/samba/libservice.so.0)
==26758== by 0x111A54: binary_smbd_main.constprop.1 (in /usr/sbin/samba)
==26758== by 0x8D2FEC4: (below main) (libc-start.c:287)
M sope-mime/NGImap4/NSString+Imap4.m
commit 6e8ab27640345febc742397dedc3c68e472166e6
Author: Ludovic Marcotte <[email protected]>
Date: Fri Nov 21 09:22:00 2014 -0500
Update ChangeLog
M ChangeLog
commit bb70653d820450507097230add9fa1fa13b2453c
Author: Ludovic Marcotte <[email protected]>
Date: Thu Nov 20 09:42:42 2014 -0500
Revert "Fix crash when decoding a = at end of the data"
This reverts commit 1544d178c4cf56ee8358f06475c4b3e45dddc11c.
M sope-core/NGExtensions/NGQuotedPrintableCoding.m
commit 67c58bfd91e859c9bf643cf20cc44ed2fe6e389f
Author: Ludovic Marcotte <[email protected]>