summaryrefslogtreecommitdiff
path: root/NEWS
blob: 586cc8d2e5e8ccfb834791ecbe672ef2c6b45268 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
Evolution-Data-Server 1.11.4 2007-06-18
---------------------------------------

Bug fixes:
	#312854: Fix a hang while renaming folders twice for exchange
	 (Matthew Barnes)
	#331099: Fix calculation of array index to avoid negative values
	 (Matthew Barnes)
	#344728: Add headers for Sun Kerberos v5 (Irene Huang)
	#352284: Do not fetch the message from server - instead use the
	 header information to calculate the expiry period. (Veerapuram
	 Varadhan)
	#437751: Fix time display in Windows (Andreas Köhler)
	#443705: Fixed build break due to incorrect macro (Loïc Minier)
	#443958: Add support for help string. (Sebastien Tandel)
	#447414: Security bugfix - negative index of an array (Philip Van
	 Hoof)
	#447753, #447749: Fix a memory leak (Matthew Barnes)
	#448589: Add support for automake 1.6 (Tobias Mueller)

Other Contributors:
	Check entire IMAP4 summary to remove non-existent messages (Jeffrey
	 Stedfast)
	Fetches "Sent Items" in all folders. Also, fixed some bugs in moving
	 mails across folders. (Sankar P)

Updated Translations:
	Priit Laes (et)
	Pema Geyleg (dz)
	Jorge Gonzalez (es)

Evolution-Data-Server 1.11.3 2007-06-04
---------------------------------------

New in 1.11.3:
	Addressbook optimizations (Ross Burton)
	Introduced search capabilities in calendar (Keshav Upadhyaya,
	 Abhishek Parwal)

Bug fixes:
	#360114: Use g_list_prepend/reverse rather than append (Paolo
	 Borelli)
	#409542: Fix various linking issues in e-d-s (Loic Minier)
	#425129: Added timezone for Asia/Jerusalem, Australia/Perth and 
	 fixed the crash when there is no tzname. (Pascal Terjan)
	#438577: Fix some distcheck errors (Matthew Barnes)
	#438577: Don't install implementation detail headers (Ross Burton)
	#438727: Hide implementation details from public headers (Ross 
	 Burton)
	#438928: Add --disable-calendar to build without any calendar
	 support (Ross Burton)
	#440524: Memory leak fixes (Srinivasa Ragavan)
	#442187: Fix to open default memo component (John Stowers)
	#438928: Ability to build EDS with just addressbook only.

Evolution-Data-Server 1.11.2 2007-05-14
---------------------------------------

New in this release:
	* EContact optimization from (Oystein Gisnas and Milan Crha)

Bug fixes:
	#420496: Add support to cut/copy contacts in composer (Ebby Wiselyn)
	#339160: Implement the sync method for Addressbook backends (Ross Burton)
	#414191: Type fixes for EContact ints (Loïc Minier)
	#433782 and #336574: Optimise vCard folding (Oystein Gisnas and
	 Milan Crha)
	#431135: Fix a crash when modifying a calendar event (Rob
	 Bradford)
	#274035: Importing a Vcard with attached photo data is now possible
	 (Jonty Wareing)
	#361138: Fix a crash when double clicking text widget in calendar
	 in indic locales (Matthew Barnes)

Other Contributors:
	Jules Colding

Updated Translations:
	Jorge Gonzalez (es)


Evolution-Data-Server 1.11.1 2007-04-23
---------------------------------------

Bug fixes:

	#383686: Use g_mkdir_with_parents (Ross Burton)
	#322105: Fix for non-junk messages to learn ham. (Srinivasa Ragavan)
	#418971: E-D-S requires GLib 2.10 now; remove dead
	 backward-compatibility code for GLib < 2.8 (Matthew Barnes)
	#360240: Remove unused variable. (Matthew Barnes)
	#360619: Fix "incompatible pointer type" warnings (Matthew Barnes)
	#405495: Don't mix declarations and code (Jens Granseuer)
	#360807: Fix a couple of memory leaks (Chris Heath)
	#400970: Remove marshallers that are in GLib already (Ross Burton)
	#413173: Fix up the documentation (Ross Burton & Matthew Barnes)
	#420933: Copy the recurrence ID string so it doesn't disappear on us.
	 (Patrick Ohly)
	#426893: Added support from address fields in LDAP addressbook. (Caolan
	 McNamara)
	#422883: Build fix for SUN LDAP (Wang Xin)
	#424837: Allow contact creation to fail, and propagate the error back
	 (Ross Burton)
	#422932: Make EContact extendable (Ross Burton)
	#428183: BDBB backend cleanups (Ross Burton)
	#425512: Fix issue with creating a new addressbook (Xiurong Simon Zheng)
	#426564: Misc cleanups (Ross Burton)
	#385078: Don't go via GObject properties when calling e_contact_get (Ross
	 Burton)
	#425464: e-vcard optimizations (Ross Burton)
	#422652: Return decent error codes, and convert errors to human readable
	 strings for the console. (Ross Burton)
	#421445: Fix build logic for e-name-western-tables.h (Ross Burton)
	#421683: Fix broken dispose/finalise in e-book-backend-file.c (Ross
	 Burton)
	#359806: Non-ascii characters generate trash in address lists (Matthew
	 Barnes and Makuchaku)
	#373117: Use the new ESource color API. (Matthew Barnes)
	#425535: Dont submit path of EDS for segv_handler. (Frederic Crozat)
	#423382: Convert messages from gnupg to UTF-8 (Pascal Terjan)
	#415891: Introduce EFlag in libedataserver (Matthew Barnes)
	#388789: Make the libiconv test program returns a value (Matthew Barnes)
	#388788: Fix autotools checks for iconv (Elijah Newren)

Other Contributors:
	Debug statements should be conditional (Sankar P)
	Fix compiler warnings and other code cleanups (Kjartan Maraas)
	Many IMAP fixes. (Jeffrey Stedfast)
	Improved GroupWise mailer component (Sankar P)

Updated Translations:
	Funda Wang (zh_CN)
	Djihed Afifi (ar)
	Duarte Loreto (pt)
	Laurent Dhima (sq)
	David Lodge (en_GB)

Evolution-Data-Server 1.10.0 2007-03-12
---------------------------------------

Changes since Evolution-Data-Server 1.9.92 :

	Harish Krishnaswamy
	Matthew Barnes
	Ross Burton

Updated Translations:
	
	Igor Nestorivić (sr)
	Mugurel Tudor (ro)
	Tino Meinen (nl)
	Alexander Shopov (bg)
	Jovan Naumovski (mk)
	Takeshi AIHANA (ja)
	Maxim Dziumanenko (uk)
	Gintautas Miliauskas (lt)
	Chao-Hsiung Liao (zh_HK, zh_TW)
	Ankit Patel (gu)
	Leonid Kanter (ru)

Evolution-Data-Server 1.9.92 2007-02-26
---------------------------------------

Updated Translations:
	Gabor Kelemen  (hu)
	Luca Ferretti (it)
	Artur Flinta (pl)
	Priit Laes (et)
	 
Contributors:
	Gilles Dartiguelongue
	Matthew Barnes

Evolution-Data-Server 1.9.91 2007-02-12
---------------------------------------

Updated Translations:
	Duarte Loreto (pt)
	Pema Geyleg (dz)
	Djihed Afifi  (ar)
	Changwoo Ryu (ko)
	Daniel Nylander (sv)
	Raphael Higino (pt_BR)
	Hendrik Richter (de)
	Priit Laes and Ivar Smolin (et)
	 
Contributors:
	Sankar P
	Harish Krishnaswamy
	Kjartan Maraas
	Priit Laes 
	Patrick Ohly
	Ross Burton
	Trond Myklebust

Evolution-Data-Server 1.9.6 2007-01-22
--------------------------------------

Updated Translations:
Stéphane Raimbault (fr), Priit Laes (et),
Daniel Nylander (sv)

Contributors:
Nickolay V. Shmyrev : #353060
Sankar P : IMAP Configurable Headers
Srinivasa Ragavan: Fallback code for Gnome Keyring
Harish Krishnaswamy: Fixes calling glib methods


Evolution-Data-Server 1.9.5 2007-01-08
--------------------------------------

Updated Translations:
Francisco Javier F. Serrador (es), Djihed Afifi (ar), Kjartan Maraas (nb), 
Theppitak Karoonboonyanan (th), David Lodge (en_GB),  
Christophe Fergeau (fr), Clytie Siddall (vi)

Bug Fixes: 362638, 387397, 387638 and other downstream fixes

Contributors:
Mathew Barnes, Veerapuram Varadhan, Chenthill Palaniswamy, Jeff Cai

Evolution-Data-Server 1.9.4 2006-12-18
--------------------------------------

Updated Translations:
Djihed Afifi (ar), Ilkka Tuohela (fi).

Bug fixes : 349445, 346728, 268412, 363445, 
208395, 222605 (bugzilla.novell.com), memory leak and 
other cleanup fixes.

Contributors: 
Veerapuram Varadhan, Harish Krishnaswamy, Srinivasa Ragavan,
Ross Burton, Tor Lillqvist, Bastien Nocera


Evolution-Data-Server 1.9.3 2006-12-04
--------------------------------------

Updated Translations:
Alexander Shopov (bg), Josep Puigdemont i Casamajó (ca),
Ivar Smolin (et).

Bug fixes : 330157, 350880, 328836, 348123, 365000, 353924. 
174655, 222605, 219729, 208318, 207960. (bugzilla.novell.com)
plus miscellaneous code clean-ups and memory leak fixes.

Contributors :
Harish Krishnaswamy, Sankar, Srinivasa Ragavan, Chenthill, 
Claudio Saavedra, Ross Burton, Matthew Barnes, Andrew Ruthven.

Evolution-Data-Server 1.9.2 2006-11-07
--------------------------------------

Updated Translations:

Ivar Smolin (et), Francisco Javier F. Serrador (es).

Bug fixes : 
330157, 369368, 312348, 365000.

Contributors :
Srinivasa Ragavan, Hans Petter Jansson, Harish Krishnaswamy,
Claudio Saavedra.


Evolution-Data-Server 1.9.1 2006-10-16
--------------------------------------

Updated Translations:
Ilkka Tuohela (fi), Priit Laes (et),
Ignacio Casal Quinteiro (gl),
Ivar Smolin (et)

Contributors:
Steffen Eschenbacher, Tor Lillqvist,
Srinivasa Ragavan, Matthew Barnes, Harish Krishnaswamy

Evolution-Data-Server 1.8.1 2006-10-02
--------------------------------------

Updated Translations:

Ivar Smolin (et), Marco Ciampa (it), Luca Ferretti (it),
Åsmund Skjæveland (nn), David Lodge (en_GB).

Bug fixes :

350907, 350617, 347811, 357666, 351330, 352596, 352872, 356051. 

Contributors:
Li Yuan, Veerapuram Varadhan, Sankar, Chenthill Palanisamy, 
Matthew Barnes, Mikael Nilsson, Devashish Sharma, Ross Burton,
Harish Krishnaswamy.

Evolution-Data-Server 1.8.0 2006-09-04
--------------------------------------
Evolution -Data-Server 1.8 Stable Release for GNOME 2.16.0.

Evolution-Data-Server 1.7.92, 2006-08-21
------------------------------------------

Updated Translations

Hendrik Richter (de), Alexander Shopov (bg), Rahul Bhalerao (mr),
Satoru SATOH (ja), Kjartan Maraas (nb), Artur Flinta (pl),
Žygimantas Beručka (lt), Daniel Nylander (sv), Runa Bhattacharjee (bn_IN),
Gabor Kelemen (hu), Leonid Kanter (ru), Matic Žgur (sl), 
Clytie Siddall (vi), Funda Wang (zh_CN), Changwoo Ryu (ko),
Vladimer Sichinava (ka), Xavier Conde Rueda (ca), Maxim Dziumanenko (uk),
Guntupalli Karunakar (dz), Theppitak Karoonboonyanan (th), 
Priit Laes (et).

Bug Fixes:

Ricardo Markiewicz, Chenthill, Harish, Kjartan Maraas,
j@bitron.ch

Evolution-Data-Server 1.7.91, 2006-08-07
------------------------------------------

Updated Translations

Francisco Javier F. Serrador (es), Inaki Larranaga (eu), Ilkka Tuohela (fi),
Christophe Merlet (fr), Ahmad Riza H Nst (id), Kjartan Maraas	 (nb), 
Vincent van Adrighem (nl), Jovan Naumovski (mk), Theppitak Karoonboonyanan (th)

New in EDS 1.7.91:
- Add filters to Groupwise SOAP calls so that each component fetches items of
  its own type and none other. (Harish)
- Memory fixes in Addressbook (Hans Peters Jansson)  

Bug Fixes:
Matthew Barnes, Chenthill Palanisamy, Devashish Sharma, Srinivasa Ragavan, 
Tor Lillqvist, Harish Krishnaswamy, Ed Catmur, Ross Burton, 
Wouter Bolsterlee

Evolution-Data-Server 1.7.90.1, 2006-07-25
------------------------------------------
Fix a dist bug in tarball.

Evolution-Data-Server 1.7.90, 2006-07-24
----------------------------------------
Updated Translations contributed by:

Funda Wangi (zh_CN), Christophe Merlet (fr),
Jonathan Ernst (fr), Changwoo Ryu (ko),
Kostas Papadimas (el), Dzongkhalinux team, DIT (dz),
Ilkka Tuohela (fi), Ankit Patel (gu), Daniel Nylander (sv),
Priit Laes (et), Francisco Javier F. Serrador (es),
Raivis Dejus (lv).

New in EDS 1.7.90 : 
Support for GW Reminder Notes (Chenthill)
Split cache for less memory, better performance (Harish)
Support for security-classifications in GW send options (Sankar)
Support for default alarms in GW (Harish)
Support for Gadu Gadu IM in Contact Entries 
(Artur Flinta, Fryderyk Dziarmagowski) 
Memory reduction and Performance improvements in Contacts (Ross Burton)

Bug fixes :
Andre Klapper, Shreyas Srinivasan, Sushma Rai, Vandana Shenoy,
Harish Krishnaswamy, Devashish Sharma, Hiroyuki Ikezoe, Srinivasa Ragavan.
Luca Ferretti

Evolution-Data-Server 1.7.4, 2006-07-10
---------------------------------------
Updated Translations contributed by:

Inaki Larranaga, Ilkka Tuohela, 
Vincent van Adrighem, Runa Bhattacharjee,
Changwoo Ryu, I.Felix, Rajesh Ranjan,
Dzongkhalinux, Yair Hershkovitz, Kjartan Maraas,
Chao-Hsiung Liao, Ignacio Casal Quienteiro,
Theppitak Karoonboonyan, Francisco Javier F. Serrador,
Ankit Patel, Hendrik Richter.

Bug fixes: 
Harish Krishnaswamy, Jeffrey Stedfast, Sankar P,
Tor Lillqvist, Andre Klapper, ,Parthasarathi,
Srinivasa Ragavan, Chenthill, Wang Xin, Ross Burton,
Devashish Sharma, Boby Wang, Simon Zheng, Hiroyuki
Ikezoe, Frederic Peters.


Evolution-Data-Server 1.7.3, 2006-06-12
---------------------------------------
Updated Translations contributed by:

Kjartan Maraas, Francisco Javier F. Serrador,
Gabor Kelemen, Ignacio Casal Quinteiro,
Ankit Patel, Pema Geyleg, Inaki Larranaga, 
Clytie Siddall, Emil Hessman.  

Bug fixes and other changes :
Chris Heath , Tor Lillqvist, Srinivasa Ragavan,
Jeffrey Stedfast, Parthasarathi Susarla,
Sankar P, Harish Krishnaswamy, Ross Burton, Wang Xin
Simon Zheng, Devashish Sharma, Hiroyuki Ikezoe, 
Frederic Peters. 

Evolution-Data-Server 1.7.1, 2006-04-24
----------------------------------------

First release of 1.7 development series.

What is new ?
-------------

* Capability to link dynamically to libdb.
* Integration with gnome-keyring.

Evolution-Data-Server 1.5.92, 2006-02-27
----------------------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.92#Evolution-Data-Server

Updated Translations:

	- ca (Josep Puigdemont i Casamajó)
	- el (Kostas Papadimas)
	- et (Priit Laes)
	- eu (Inaki Larranag)
	- lt (Žygimantas Beručka)
	- pl (Artur Flinta)
	- th (Theppitak Karoonboonyanan)

Evolution-Data-Server 1.5.91, 2006-02-13
----------------------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.91#Evolution-Data-Server

Updated Translations:

	- cs (Lukas Novotny)
	- cs (Miloslav Trmac)
	- cy (Rhys Jones)
	- et (Ivar Smolin)
	- fi (Ilkka Tuohela)
	- ja (Takeshi AIHANA)
	- pt (Duarte Loreto)
	- ru (Leonid Kanter)
	- sq (Laurent Dhima)
	- sr, sr@Latn (Slobodan D. Sredojevic)
	- th (Supranee Thirawatthanasuk)
	- th (Theppitak Karoonboonyanan)

Evolution-Data-Server 1.5.90, 2006-01-30
----------------------------------------

What's new:

Bug fixes sinces 1.5.5 :
http://bugzilla.gnome.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Desktop&product=Evolution-Data-Server&long_desc_type=substring&long_desc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&resolution=WONTFIX&resolution=DUPLICATE&resolution=NOTABUG&resolution=NOTGNOME&resolution=INCOMPLETE&resolution=INVALID&resolution=GNOME1.x&resolution=MOVED&resolution=OBSOLETE&resolution=NOTXIMIAN&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailqa_contact2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&chfieldfrom=2006-01-17&chfieldto=Now&chfield=bug_status&chfieldvalue=RESOLVED&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=

Updated Translations:

	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
        - et (Ivar Smolin)
        - fi (Ilkka Tuohela)
        - gl (Ignacio Casal Quinteiro)
        - gu (Ankit Patel)
        - gu (Ankit Patel)
        - ko (Changwoo Ryu)
        - nb, no (Kjartan Maraas)
        - nl (Tino Meinen)
        - vi (Clytie Siddall)
        - zh_CN (Funda Wang)
	- zh_TW, zh_HK (Chao-Hsiung Liao)

Evolution-Data-Server 1.5.5, 2006-01-16
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#321812 – crash during Draft saving in offline mode (Shreyas)
	#314841 – gw: Don't Mark Trash As New Messages (Parthasarathi)
	#323570 – gw: Forward Of Multiple Messages At Once Loses Formatting (Parthasarathi)
	#320898 – gw: Inserted Images Appears As Broken Link Image (Parthasarathi)
	#303998 – In 'Exchange Connector' GAL should be selected for 'Autocompletion by default (Sushma)
	#323115 – --force-shutdown does not shutdown e-d-s (Harish)
	#326060 – Exchange password expiry handling is broken (Sushma)
	#267402 – can not specify https URL for a remote calendar location (Tony Tsui)
	#324518 – Webcal Entries Duplicated In Calendar (Chenthill)
	#324741 – Critical Warning on Command Line (Chenthill)
	#214977 – Contact lists on LDAP server are broken (Sushma)
	#320065 – Fix GList leaks (Ross Burton)
	#325959 – Subscribe to other user's folder not working (Sushma)
	#242966 – Focus Problem, Screen Entry on "Select Contacts From Address Book" screen (Johnny Jacob)
	

Other Fixes :
	
	- Merge Calendar backend bits from evolution-caldav module into EDS (Harish)
	- Code cleanup (Simon Zheng, Kjartan Maraas, Parthasarathi)
	- Win32 fixes (Tor Lillqvist)
	
	
Updated Translations:

	- bg (Alexander Shopov)
	- ca (Josep Puigdemont i Casamajó)
	- gl (Ignacio Casal Quinteiro)
	- ja (Takeshi AIHANA)
	- lt (Žygimantas Beručka)
	- nl (Vincent van Adrighem)


Evolution-Data-Server 1.5.4, 2006-01-02
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#323106 - IMAP drawers with non-ASCII UTF-8 names do not work (Tor Lillqvist)
	#317794 - Groupwise mail folder not visible (Parthasarathi)
	#324483 - Memory leak in Exchange connector (Sushma)
	#305006 - Fixed vCalendar file import without UID (Chenthill)
	#267330 - Fixed a crash/hang while accepting exchange meeting invititation (Chenthill)
	#324009 - Hang in Evolution Calendar (Chenthill)
	#317411 - Fixed Evolution crash while synchronizing with palm device. (Varadhan)
	#238979 - Added Support to expand contact lists inline in name selector entry
	
Other Fixes :

	- Added option to select emails in contacts/lists in name selector
	  entry (Srinivasa Ragavan)
	- Modifications to use gstdio wrappers (Tor Lillqvist)
	- Exchange fixes (Sushma)
	- Network Manager Support (Shreyas)
	- Win32 fixes (Tor Lillqvist)
	
Updated Translations:

	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- fi (Ilkka Tuohela)
	- gl (Ignacio Casal Quinteiro)
	- gu (Ankit Patel)
	- ja (Takeshi AIHANA)
	- nb, no (Kjartan Maraas)
	- nn (Åsmund Skjæveland)
	- vi (Clytie Siddall)


Evolution-Data-Server 1.5.3, 2005-12-12
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#323433 - Evolution crashes when folding vfolder subfolders while in one,
		  wont restart (Jeff Cai)
	#321139 - evolution will crash on solaris when print error message (Shi Pu)
	#321515 - Lazy-bind loaded modules in camel (Ross Burton)
	#322408 - creating new folder causes evolution to hang on the uw-imapd
		  server (Jeff Cai) 
	#317322 - crash when delete a imported recurrent event (Chenthill)
	#318777 - recurrence editing ... (Chenthill)
	#323349 - Evolution data server, Configuration failed on Solaris (Irene Huang)
	#319592 - Use GLib for determining host endian (Ross Burton)
	#319591 - Use G_DEFINE_TYPE in libedataserver (Ross Burton)
	#321830 - GW - Not All Email In Sent Items Appearing In Evolution (Parthasarathi)

Other Fixes :
	- Numerous fixes in Camel/Libebook/libedataserver for Win32 support (Tor Lillqvist) 
	- Hula provider fixes (Harish)
	- Exchange : Use remembered password for authentication (Irene Huang)
	- Exchange : fix compiler warnings (Sushma)
	- Build fixes (Dave Malcolm)

Updated Translations:

	- be (Vital Khilko)
	- bg (Alexander Shopov)
	- cs (Miloslav Trmac)
	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- fa (Meelad Zakaria)
	- fr (Christophe Merlet)
	- gl (Ignacio Casal Quinteiro)
	- gu (Ankit Patel)
	- ja (Takeshi AIHANA)
	- nb, no (Kjartan Maraas)
	- zh_CN (Funda Wang)


Evolution-Data-Server 1.5.2, 2005-11-14
---------------------------------------

New Features:
	- Camel Hula Provider (Harish)

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#320095 - Empty Trash Deletes From GW POA, But Doesn't Delete Headers 
		  In Trash Folders (Parthasarathi)
	#314476 - Fixes to inform the Over quota issue in groupwise to
		  user (Sankar)
	#320736 - Fixed a possible crash due to a invalid buffer
		  (Parthasarathi)
	#317804 - Fix Macao timezone issue (Harish)
	#318130 - Fix to include e-cal-time-util.h for
		  e-cal-backend-http.c to solve a build issue. (Matthew Daniel)
	#319612 - Stop warnings from e-destination about xmlChar when
		  compiling using gcc4 (Ross Burton)
	#319848 - Multiple Select for To/CC/BCC in Name selector dialog.
		  (Sushma)

Other Fixes:

	- Changed the string so as to be consistent with Win32 client error 
	  messages. (Sankar)

Update Translations:

	- ca (Adam Weinberger)
	- cs (Miloslav Trmac)	
	- es (Francisco Javier F. Serrador)	
	- fi (Ilkka Tuohela)
	- ja (Takeshi AIHANA)
	- ku (Erdal Ronahi)

Evolution-Data-Server 1.5.1, 2005-10-25
---------------------------------------

New Features : Support for Memos component (Nathan Owens)


Other fixes :

	- Win32 related bits and code clean-up (Tor Lillqvist) 
	- Remove Bonobo/GnomeProgram dependencies in 
	  contact store/name selector (Ross Burton)
	- Fix for API/Base Version mismatches causing issues in
	  Solaris where libdir==libexecdir (Irene Huang)

Updated Translations:

	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- gl (Ignacio Casal Quinteiro)

Evolution-Data-Server 1.3.8, 2005-08-22
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#242032 - color labels stored to imap message store (Michael Zucchi)  
	#247706 - Automatically add comma after autocompleting an address (Devashish)
	#271894 - PGP-encrypted attached messages not displayed (Michael Zucchi)
	#271969 - Synchronize doesn't work for Tasks and Calendar (Armin Bauer, Varadhan, Mubeen)
	#300115 - RFC2047 encoding always separates the last non-ASCII UTF-8 character. (Changwoo)
	#300891 - Now camel should specify the translation domain explicitly to use gettext (Changwoo)
	#302835 - Mailbox does not appear on top in offline mode (Parthasarathi)
	#302963 - Status tracking does not work for some items (Vivek)
	#309499 - Additional mail is sent to delegate(s) in Groupwise. (Chakravarthi)
	#310325 - Meeting request mail cannot be sent for Meeting created in 'Personal' calendar (Vivek)
	#310496 - 'make check' fails on gpg test (Michael Zucchi) 
	#310956 - gw: trying to copy the mailbox folder when online copies the folder below the mailbox folder (Parthasarathi)
	#311078 - Calendar loading progress information goes beyond 100% (Chakravarthi)
	#311639 - mh: Renaming parent folder loses subfolders (Michael Zucchi)
	#311831 - sometimes clicking on a meeting request mail or any mail related to assigned task crashes evolution (Chenthill)
	#312184 - Signature shown as attachment (Parthasarathi)
	#312578 - In GW calendar user should be able to delegate all instances together (Chenthill)
	#312668 - Unable to go back to Online mode after clicking offline button (Michael Zucchi)
	#312715 - Evolution crashes moving IMAP folder to local folder (Michael Zucchi)
	#312831 - crash in camel-folder-thread.c:sort_node when generating message list (Michael Zucchi)
	#312857 - gw: Evolution crashes while starting up (Parthasarathi)
	#312988 - Regressing 274308 - EDS crashed (Sushma)
	#313058 - gw: Unable to create a new folder(subfolder) with names like Mailbox, Sent Items, etc (Vivek)
	#313091 - Useless assignment in e-vcard (Ross Burton)
	#313284 - camel indexing valgrind hits (Michael Zucchi)
	#313381 - gw: evo crashes while trying to refresh the folder (Vivek)
	#313574 - crash viewing IMAP mail (Michael Zucchi)
	#313593 - imap4: sub folders not working (Michael Zucchi)
	#313657 - IOP: Implement Outlook-like handling of recurrence corner-cases (Carsten Guenther)
	#313806 - cannot decrypt an encrypted message (Parthasarathi)

Updated Translations:

	- bg (Rostislav Raykov)
	- ca (Xavier Conde)
	- de (Frank Arnold)
	- de (Kostas Papadimas)
	- el (Kostas Papadimas)
	- et (Ivar Smolin)
	- hu (Gabor Kelemen)
	- lt (Justina Klingaitė)
	- sr, sr@Latn (Igor Nestorivić)
	- sq (Laurent Dhima)

Evolution-Data-Server 1.3.7, 2005-08-08
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	 #274382 - Multiple CC headers are not processed properly (Michael Zucchi)
	 #310198 - Grammar errors failing Sun's compiler 'Vulcan / Forte' (Mengjie Yu)
	 #309237 - broken imap server workaround (Michael Zucchi)
	 #311658 - 1.3.6 lists a pile of old folders (Michael Zucchi)
	 #300048 - configure script fails to detect getaddrinfo (Harish)
	 #312535 - GW: Fwded message headers are not displayed (Parthasarathi)
	 #305304 - Description does not appear completely when using the ITIP FORMATTER plugin (Dinesh Layek)
	 #312190 - problems with junk test in filters (Vivek Jain)
	 #312185 - Configuring same account for IMAP and GroupWise troubles Proxy Login (Sankar)
	 #302968 - GW: Some mails do not get delivered (Sankar)
	 #305590 - GW: don't see schedules from people in other post offices. (Chenthill)
	 #310328 - Cannot create recurring 'All Day event' in groupwise calendar (Chenthill)
	 #311684 - evolution-data-server crashes trying to reply all (Wolfgang Ocker)
	 #303111 - GW long delays & no status (Sushma Rai)
	 #308512 - Key /apps/evolution/lock/mail/accounts/save_password does not work correctly

Updated Translations:

	- cs (Miloslav Trmac)
	- es (Francisco Javier F. Serrador)
	- et (Ivar Smolin)
	- fi (Ilkka Tuohela)
	- gu (Ankit Patel)
	- id (Imam Musthaqim)
	- it (Marco Ciampa)
	- ja (Takeshi AIHANA)
	- nb,no (Terance Sola)
	- nl (Reinout van Schouwen)
	- pl (GNOME PL Team)
	- pt_BR (Raphael Higino)
	- vi (Clytie Siddall)
	- zh_CN (Funda Wang)
	- zh_TW (Chao-Hsiung Liao)

Evolution-Data-Server 1.3.6, 2005-07-26
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

Addressbook :
	 #260851 - "Edit Contact" option in Contact name popup menu (Sushma)
	 #301922 - Composer Section (To: CC: BCC:) Fields Flip Order Of Names (Antony)

Calendar :
	 #303548 - Missing Calendar Items in GW (Chenthill)
	 #310752 - Multiple mails and multiple appointments created for a non recurring 
	           appointment (Chenthill)
	 #310767 - Cannot Accept GW Appointments Without Error (Chenthill)

Mailer:
	 #301871 - uninitialized variable in evo-data-server pop3 and imap backend
	 (meissner@suse.de)
	 #272505 - GroupWise" spelled inconsistently in evolution-data-server (Parthasarathi)
	 #310953 - reproducible crash trying to "add signature" in preferences (Parthasarathi)
	 #310716 - trying to delete a subfolder crashed evolution (Parthasarathi)

Exchange :
	 #310483 - Check Remember password option, and enter wrong password - Evolution unusable
	 (Arunprakash)

Others :
	 #271837 - handle _PRETTY_FUNCTION_ for Sun compilers
	 (The Written Word)
	- Copy folder contents locally by default. (Shreyas)
	- camel store/folder refactoring (Michael)
	- camel docs breakage fix (Shreyas) 
	- camel imap store - if the folder is on disk, just get it 
	  offline, only go to the server if we need to. (Michael)
	- align ESource uri handling in Exchange addressbook to the
	  calendar uris (Praveen)
	- remove esource removal to exchange plugins code (Sarfraaz)
	- support for timed refresh of GW system addressbook (Sushma)
	- freezing the cache while updating and writing to disk at once
	  (Sushma)
	- make Name selector dialog more intuitive (Vivek)
	- send a cancel reply to kill a e-password dialog (Jedy Wang) 


Updated Translations:

	- cs (Miloslav Trmac)
	- de (Frank Arnold)
	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- et (Ivar Smolin)
	- et (Priit Laes)
	- fi (Ilkka Tuohela)
	- gu (Ankit Patel)
	- hu (Gabor Kelemen)
	- id (Imam Musthaqim)
	- ja (Takeshi AIHANA)
	- nb, no (Kjartan Maraas)
	- nl (Vincent van Adrighem)
	- POTFILES (Adam Weinberger)
	- POTFILES (Sarfraaz Ahmed)
	- pt_BR (Raphael Higino)
	- sr, sr@Latn (Igor Nestorivia)
	- vi (Clytie Siddall)
	- zh_CN (Funda Wang)

Evolution-Data-Server 1.3.5, 2005-07-12
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

	#309175 - Error compiling e-d-s based applications with GCC4 (Sushma)
	#309276 - "is" sexp queries not working with E_CONTACT_UID (Sushma)
	#308209 - SASL LOGIN mechanism protocol violation (Greg Hudson)
	#309684 - Contact text entry leaks threads (Ross Burton)
	#242165 - "search in any field" produces wrong results (Sushma)
	#302965 - Names begin with a comma in GW Sent Items folder (Partha)

New features :
	GroupWise Proxy support (Sankar, Shreyas)

Other fixes and changes :

	- Support for getting e-mail ids from a contact list for GW
	  addressbooks (Sushma)
	- Addressbook memory leak fixes (Kjartan Maraas, Ross Burton) 
	- Update GW address book only if marked for offline usage (Sushma)
	- Optimize e_cal_is_read_only calls (Viren)
	- Handle GW recurrences in Evolution (This and All) as in GW clients
	  (Harish)
	- Optimize calendar attachment retrievals (Chenthill) 
	- Fix miscellaneous compiler versions (Harish)
	- Use read cursors request instead of getQM calls in GW backend (Chen)
	- Improve Junk Mail Handling support (Vivek)
	- Background folder refresh in GW store (Partha)
	- Make name selector dialog modal (Sushma)
	- Remove e-mail addresses more easily in name-selector (Philip Van Hoof)
	- Fetch folder size in Exchange store (Sarfraaz)
	- Exchange Foreign hierarchy support (Shakti Sen)
	- Improved error handling in Exchange store (Arun Prakash)

Updated Translations:

	- bg (Rostislav Raykov)
	- cs (Miloslav Trmac)
	- de (Jens Seidel)
	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- et (Ivar Smolin)
	- nb, no (Terance Sola)
	- vi (Clytie Siddall)
	- zh_TW (Chao Hsiung Liao) 

Evolution-Data-Server 1.3.4, 2005-07-02
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

Camel
	#303225 - Left pane is not updated with maildir (Michael Zucchi)

Addressbook
	#302006 - Autocompletion does not work properly (Hans Petter Jansson)

Calendar
	#309079 Memory leaks when syncing PDA on FC4 (Harish)


Other fixes and changes:

	- Inline PGP signature support (Matt Brown)	
	- Add exchange as a supported backend to e-d-s
	- remove checks for unused fields in camel local provider (Michael
	  Zucchi)
	- Display GW events based on date of appointment not on the received
	  time. (Parthasarathi)
	- Remove redundant linking of http backend to the file (Chen) 
	- Define static capability for delegation to multiple recipients (Chen)
	- Support --no-undefined option on windows while building evolution 
	  and drop superfluous inclusion of pthread.h in Addressbook (Tor Lillqvist)
	- Switch to GThread API instead of pthreads for the main loop in Addressbook
	  (Tor Lillqvist)
	- Ignore 'any field contains' query in LDAP address book refresh
	  (Sushma)
	- Build system addressbook cache if marked for offline usage (Sushma)
	- Update addressbook cache with changes in GW System Address book
	  (Srinivasa Ragavan)
	- Use GtkFileChooserButton instead of GnomeFileEntry (Ross Burton)
	- store the change type of a  Groupwise item while getting the changes
	  (Chenthill)
	- Miscellaneous compiler warning fixes (Harish)

Updated Translations:
	
	- bg (Vladimir Petkov)
	- cs (Miloslav Trmac)
	- da (Martin Willemoes Hansen)
	- en_CA (Adam Weinberger)
	- et (Ivar Smolin)
	- et (Priit Laes)
	- et (Priit Laes)
	- nb, no (Kjartan Maraas)
	- zh_CN (Funda Wang)
	- zh_TW (Abel Cheung)
	- zh_TW (Chao-Hsiung Liao)
	- POTFILES.in (Sarfraaz Ahmed)

Evolution-Data-Server 1.3.3, 2005-06-07
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

IMAP
	#274407 IMAP4rev1: moved message pops up as new (Jeffrey Stedfast)

Groupwise 

	#300599 Mail folders not getting refreshed for GW account (Partha)
	
Addressbook
	#271901 GroupWise naming consistency (Daniel van Eeden)
	#300290 GALview does not show Complete name.(Sushma)


Other Features and Fixes:
	- Added support for delegating meetings in Groupwise (Chenthill)
	- Memory leak in Addressbook File backend (Ross Burton)
	- updates to camel session fixes for Groupwise backend (Parthasarathi)
	- fix incorrect naming of camel function (Jeffrey Stedfast)

Updated Translations:

        - es (Francisco Javier F. Serrador)
	- en_CA (Adam Weinberger)
	- nb (Terance Sola)
	- vi (Clytie Siddall)
	- cs (Miloslav Trmac)
	- zh_CN (Funda Wang)
	- cy (Dafydd Harries)
	- ja (Takeshi AIHANA)
 
Evolution-Data-Server 1.3.2, 2005-05-18
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

Groupwise 

	#274194 Filters do not filter all messages  (Partha)
	#273246 email is visible with mime.822 file attached (Partha)
	#273243 external HTML mail is an attachment not viewed inline (Partha)

	#256874 Anniversaries in B&A calendar have the Birthday category (Shreyas)
	#301116 libedataserverui needs to specify the translation domain explicitly
		(Changwoo Ryu) 

	#303540 F10 + Shift Key' doesn't work in evolution contacts (Mengjie Yu)  
	#272504 spell GW rightly (Chenthill)
	#272503 Typo fix (Thierry Moisan)


Other Features and Fixes:

	API docs  (Hans Petter Jansson, Rodrigo Moya) 

	Misc pc file, configure fixes   (Harish)
	GW Backend Memory leaks (Ulrich Neumann)
	const keyword additions to camel files (Ross Burton)  
	Added a new flag CAMEL_PROVIDER_DISABLE_SENT_FOLDER   (Sankar)  
	Memory leak fixes  (Sushma) 
	Checks for Win32 (mingw) (Tor Lillqvist)  
	Copy the flags field when converting from CamelStoreInfo to CamelFolderInfo.
	 (Alessandro Decina)   
	VJOURNAL backend (Rodrigo Moya) 


Updated Translations:

	- bg (Rostislav Raykov) 
        - el (Kostas Papadimas) 
        - da (Martin Willemoes Hansen) 
  

Evolution Data Server 1.3.1, 2005-04-26
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):

* Camel

  #301037 - Handle case where the path doesn't exist in the url (Jeff)
  #273945 - If camel_charset_best() returns NULL, default to UTF-8 (Jeff)
 
* Groupwise Provider

 #274257  - Automatically synchronize account locally option does not work (Jeff)
 #74369   - enable viewing shared folder notifications (Sankar)
 #72032   - update summary with items that have been deleted from the server (Partha)
 #72310   - deleted mail is not visible in Trash Folder (Partha)
 #74183   - Expunge does not expunge all (Sankar)
 #274409  - hang while reading Email (Chenthill)

* Calendar
 
 #270035 - incompatible calendar.ics created with mozilla (Rodrigo)
	
* Addressbook

 #268533 - evolution-alarm-notify appears to cause a leak in e-d-s  (JP)
 #273330 - Crash  adding attendee under gw calendar - (Siva) 
 

Other Bugs 

* Camel 
	- Fix for systems where read is a macro (David Malcolm)
	- don't set exceptions for failed date commands in NNTP (Michael)
	- abort if we fail to get the date in NNTP (Alessandro Decina) 
	- Don't try to EXPUNGE in READ-ONLY mode (Jeff)
	
* Groupwise Provider

	- Remove redundant getQuickMessageRequest (Partha)

* Address Book 
	- multiple authentication prompts for addressbook (Hans)


Updated Translations:
	* et (Ivar Smolin)
 	* fa (Meelad Zakaria)
	* it (Marco Ciampa) 
	* cs (Miloslav Trmac)
	* en_CA (Adam Weinberger)

Evolution Data Server 1.2.0, 2005-03-07
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook
    #73226 - Missing symbol in e-destination (JP)

  * Addressbook
    #72454 - Crash for webcals with gnome proxy setting (Rodrigo)

  * All
    #73010 - Cannot cancel/close 'Category icon' popup (Harry Lu)
	
Updated Translations:
	- pt_BR (Raphael Higino)
	- hu (Laszlo Dvornik)
	- sr (Igor Nestorovic)
	- sr@Latn (Igor Nestorovic)
	- ca (Xavier Conde Rueda)

Evolution Data Server 1.1.6, 2005-02-28
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook
    #72806 - EDS is crashing while trying to add a contact to Groupwise book (Siva)
    #70908 - Can't remove e-mail addresses assigned to types evolution doesn't know about (Siva)
    #67541 - LDAP password not remembered (Siva)

  * Calendar
    #71490 - Events shows up multiple times (Chen)
    #71545 - Crash At Startup of Evolution 2.1 (Rodrigo)
    #72107 - Evolution is hanging if you go offline and then come online (Chen)
    #73008 - Recipients in CC and BCC field gets added into the TO field and not in their intended place (Sankar)
    #72965 - Unable to rename a groupwise folder (Partha)
    #72285 - groupwise backend crashes on a GWPOA generated email (Sankar)
    #72907 - Few mails are not available for offline in groupwise (Siva)

  * Camel
    #68459 - Answering to Usenet article doesn't consider the "Followup-To:" field (Michael)
    #71747 - IMAP host lookup on 'hostname;noselect=yes' (Jeff)
    #71752 - Make sure auth_domain is 'Groupwise' (Vivek)
    #72106 - New mails are in "READ" state (Partha)
    #61468 - From and Subject information is missing from Inbox mailbox (Michael)
    #57185 - MH file mode changes and broken links (Michael)
    #59507 - tries to write junk cmeta in local spool (Michael)
    #71812 - folders are stored way too often (Michael)
    #70590 - Filters mark mail as read when it really isn't (Michael)
    #72609 - Crash everytime when read the article (Michael)

  * All
    #9605  - Let "Delete" remove selected contact from the name selector (Harry Lu)
    #73011 - Evolution crashed when clicked on new category (Rodrigo)

Other bugs

  * Addressbook
    - Make sure editors are always read-only in offline mode (Siva)
    - Destroy groupwise connection hash tables correctly (Chen)
    - Migration issue with non-ASCII quoted printable chars in contact notes (Siva)

  * Calendar
    - Return the weather calendar capabilities properly (Rodrigo)
    - Fix getQM issues in groupwise backend so we don't miss events (Harish, Chen)
    - Locking fixes to prevent races in backend (JP, Rodrigo)
    - Download groupwise calendar attachments only if not already in cache (Harish)
    - Destroy groupwise connection hash tables correctly (Chen)
    - Make sure groupwise item creation date exists before using (Chen)
    - Fix crash during migration if e-d-s is not available (Rodrigo)
    - Set detached instance recurid and start/end properly (Rodrigo)

  * Camel
    - Make junk code use camel debug (Rodo)
    - Use groupwise getQM call with correct timestamp to prevent missing messages (Harish)
    - Fix deletion of groupwise mail (Chen)
    - Fix server version display in warning (Vivek)
    - Show correct time for mails (Partha)
    - Rename inbox/INBOX to Inbox, so it is translatable (Björn Torkelsson)
    - Use XGMOVE if possible in IMAP4 (Jeff)
    - Flag IMAP4 inbox properly (Björn Torkelsson)
    - Just search the cache if IMAP4 is in offline mode (Jeff)

  * All
    - PPC fixes (Hans)
    - Allow name selector to auth books properly (Hans)
    - Leak fix (Kjartan Maraas)
	
Updated Translations:
	- el (Kostas Papadimas, Nikos Charonitakis)
	- nl (Vincent van Adrighem)
	- hu (Laszlo Dvornik)
	- da (Martin Willemoes Hansen)
	- gu (Ankit Patel) <ankit644@yahoo.com>
	- pl (Artur Flinta)
	- uk (Maxim Dziumanenko)
	- fr (Thierry Moisan)
	- pt (Duarte Loreto)
	- it (Marco Ciampa)
	- nb (Kjartan Maraas)
	- no (Kjartan Maraas)
	- bg (Vladimir Petkov)
	- fi (Ilkka Tuohela)
	- ru (Leonid Kanter)
	- sq (Laurent Dhima)
	- bg (Vladimir Petkov)
	- lt (Zygimantas Berucka)
	- en_GB (David Lodge)
	- ja (Takeshi AIHANA)
	- ko (Changwoo Ryu)
	- sv (Christian Rose)
	- en_CA (Adam Weinberger)
	- es (Francisco Javier F. Serrador)
	- de (Frank Arnold)
	- cs (Miloslav Trmac)

Evolution Data Server 1.1.5, 2005-02-07
---------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook
    #1069  - Support REV field in VCard (Siva)
    #67267 - Auto-complete misses contacts with 'Title' set (Siva)
    #68172 - Don't include function names in e-d-s messages (Siva)
    #70918 - Importing kontact vcard causes inifinite loop (Siva)
    #71116 - Wrong gettext initialization breaks translation (Christophe)
    #71827 - Search after a contact with Name begins with, only searches
               for first name (Siva)

  * Calendar
    #68541 - Invalid Response From Server Message (Chenthill)
    #64682 - Moving a appts from one calendar to another sends update (Chenthill)
    #72004 - Invalid connection error message (popup) - Suddenly (Chenthill)
    #72117 - EDS crashed - Trying to create meeting appointments (Chenthill)

  * Camel
    #36142 - Don't use acronyms as verbs in messages (Michael)
    #38671 - filtering on specific-headers needs to check each matching header
             (Michael)
    #38791 - GPG can make evo hang if keyserver unreachable (Michael)
    #65329 - Regression in default folder name localisation (Michael)
    #68741 - Evolution 2 hides Junk folder created in 1.4 (Michael)
    #70303 - PGP signature invalid with very short emails (Michael)
    #71847 - IMAP is broken (Jeff)
    #72020 - Error parsing filter: Unknown identifier: adjust-score (Michael)

  * All
    #69909 - EDS logger doesn't restore logging when it shuts down (JP)
    #72172 - Cannot delete a GW Shared folder (Partha)

Other bugs

  * Addressbook
    - Changed default Groupwise port to 7191 (Siva)
    - Online/offline fixes in LDAP backend (Siva)
    - Build backends as modules (Hans Petter)
    - Check Groupwise server version and notify user (Vivek)

  * Calendar
    - Changed default Groupwise port to 7191 (Siva)
    - Fixed idle saving in file backend (Rodrigo)
    - Fixed leak in e_cal_send_objects (JP)
    - Removed categories-related methods in backends (Rodrigo)
    - Improvements in communication with GW servers for tasks (Harish)
    - Build backends as modules (Hans Petter)
    - Fixed conflicts in IDL file (Hans Petter)
    - Check Groupwise server version and notify user (Vivek)
    - getQuickMessages support in GW backend (Chenthill)

  * Camel
    - Added old imap code back to build (Jeff)
    - Improve moving between folders in GW provider (Partha)
    - IMAP/IMAP4 compatibility work (Jeff)
    - Updated tests to use IMAP4 (Jeff)
    - getQuickMessages support in GW provider (Partha)
    - Use GW SOAP mailer code to be the default (Siva)
    - Changed default Groupwise port to 7191 (Siva)
    - GW SOAP mailer code improvements (Partha)

  * All
    - Added 'searchable' flag for categories (Rodrigo)
    - Fixed saving of categories config changes (Rodrigo)
    - Use glib's i18n headers (Ross)
    - Removed useless libgnome use (Ross)
    - a11y improvements (Hao)

Updated Translations:
    - ca (Jordi Mallach)
    - cs (Miloslav Trmac)
    - de (Frank Arnold)
    - el (Kostas Papadimas)
    - en_CA (Adam Weinberger)
    - en_GB (David Lodge)
    - es (Francisco Javier F. Serrador)
    - et (Priit Laes)
    - ja (Takeshi AIHANA)
    - ko (Changwoo Ryu)
    - lt (Žygimantas Beručka)
    - nb (Kjartan Maraas)
    - nl (Vincent van Adrighem)
    - no (Kjartan Maraas)
    - pt (Duarte Loreto)
    - pt_BR (Raphael Higino)
    - sq (Laurent Dhima)
    - sv (Christian Rose)

Evolution Data Server 1.1.4, 2005-01-24
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #57567 - calendar migration speed (Rodrigo)
    #67974 - use proxy if necessary for webcal (Rodrigo)

  * Camel

    #65178 - newly created folder on local maildir doesn't show until evolution restart (Michael)
    #71082 - Authenticated SMTP and TLS work very slowly (Jeff)
    #69024 - Doesn't update NNTP folder in a Virtual folder (Michael)
    #47824 - nested, identical multipart boundaries dont parse properly (Michael)
    #70095 - deleting vfolder causes evo to hang (Michael)

  * All
    #70067 - Mask GW password when GROUPWISE_DEBUG=1 is used (Siva)
    #28532 - Don't allow duplicate categories (Rodrigo)

Other bugs

  * Addressbook
    - Fix full name queries (Siva)
    - Order of magnitude speed fix for fetching list of contacts (Siva)

  * Calendar
    - Comply with new server api changes (Harish)
    - Default to UTC timezone if nothing else (Chen)
    - Handle cancelling instances via itip (Rodrigo)
    - Handle case where events are only instances (no master) (Rodrigo)
    - Don't save unless the file is actually dirty in the file backend (Rodrigo)
    - Use single metric/imperial setting (David Trowbridge)

  * Camel
    - Make imap4 code have the same summary as imap (Jeff)
    - Make imap4 code handle imap:// uri (Jeff)
    - Fix offline syncing and journalling for imap, groupwise and exchange (Jeff)
    - Be able to get the message status in groupwise (Partha)
    - Restrict path lengths to 65k in lock helper (Michael, Max Vozeler)
    - Fix groupwise offline transfers (Jeff)
    - retain label settings in IMAP4 when offline for UIDPLUS servers (Jeff)
    - 64 bit fixes (Michael)

  * All
    - emit source changed property if properties are totally removed (Siva)
    - complete properly if the widget loses focus via tab (Hans)
    - display all email addresses for a user again (Hans)
    - fix crash pressing enter in empty completion widget (Hans)

Updated Translations:
	- it (Marco Ciampa)
	- de (Frank Arnold)
	- et (Priit Laes)
	- cs (Miloslav Trmac)
	- nb (Kjartan Maraas)
	- lt (Zygimantas Berucka)
	- ja (Takeshi AIHANA)
	- es (Francisco Javier F. Serrador)
	- en_CA (Adam Weinberger)

Evolution Data Server 1.1.3, 2005-01-10
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #68533 - evolution-alarm-notify appears to cause an e_data_book leak (Harish)

  * Camel

    #70556 - Unable load messages info from MS Exchange by IMAP (Michael)
    #70919 - Crash during fetching mail (mail has gpg signature) (Michael)
  
Other bugs

  * Addressbook
    - Merge offline support for groupwise, ldap (Siva, Chen, Hans)

  * Calendar
    - Backend attachment support (Harish)
    - Weather calendar (David Trowbridge)
    - Handle send options for groupwise (Chen)
    - Fixed problems when items only had detached instances (Rodrigo)
    - Merge offline support for groupwise, ldap, webcal (Siva, Chen)

  * Camel
    - Merge groupwise SOAP mailer (Partha)
    - IMAP4 offline support (Jeff)
    - Groupwise offline support (JP, Jeff, Partha)
    - 64 bit fixes (David Mosberger-Tang)

  * All
    - move e-categories and rewrite (Rodrigo)
    - emit source_changed signal if properties change (David Trowbridge)
    - implement e-name-selector class, without bonobo (Hans)

Updated Translations:
	- bg (Vladimir Petkov)
	- ja (Takeshi AIHANA)
	- ru (Leonid Kanter)

Evolution Data Server 1.1.2, 2004-12-20
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #70127 - Evolution Calendar does not use a User-Agent (JP)
    #70267 - O(n^2) activity writing cache files when opening an ics webcal
    #file (Rodrigo)

  * Addressbook

    #68454 - Ldap organizationalUnit show up in contact list (Siva)

  * Camel

    #69776 -Signed Mail with attachments displays everything with
     multipart/boundaries stuff (NotZed)
    #69533 - GW imap mail becomes invisble/unavailable (NotZed)
  
Other bugs

  * Addressbook
    - implement is_open accessor on ebook (Hans)
    - move e-destination (Hans)

  * Calendar
    - Merge recurrence work, support for detached instances (Rodrigo)
    - Add support for passing a modified object from sync backends (Anders Carlsson)
    - Add static capabilities for send options (Chen)
    - Leak fixes (Harish)

  * Camel
    - Move camel here (NotZed)
    - Fix non-SSL build (Jeff)
    - Add offline journalling for IMAP4 (Jeff)

  * All
    - implement a gtktreemodel contact store (Hans)

Updated Translations:
	- lt (Zygimantas Berucka)
	- it (Marco Ciampa)

Evolution Data Server 1.1.1, 2004-11-28
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #69624 - make changes in evo corresponding to soap schema changes (Siva)

  * All

    #69056 - Translations set to wrong version (Ryan Skadzberg)
    #68737 - Crash on Migrating (JP)
  
Other bugs

  * Addressbook
    - add API to determine required fields (Siva)

  * All
    - allow access to primary source selector (Harish)

Updated Translations:
	- sr (Danilo Segan)
	- sr@Latn (Danilo Segan)
	- cs (Miloslav Trmac)
	- sq (Laurent Dhima)
	- en_CA (Adam Weinberger)
	- en_GB (David Lodge)

Evolution Data Server 1.1.0, 2004-11-01
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #64673 - Cannot view free/busy for GroupWise users for users outside POA (Harish)
    #67031 - Groupwise task completion not showing (Chen)

  * Address Book

    #42165 - "search in any field" produces wrong results (Siva)
    #64298 - G/W failure to authenticate (Siva)

  * All

    #65200 - GroupWise backend crash
    #67031 - (Partial) show completed status properly for GroupWise tasks
  
Other bugs

  * Address Book
    - Fix e_book_commit_contact multiple usage crash (Diego Gonzalez)
    - Make groupwise IM names searchable (Nat)

  * Calendar
    - Speed up free/busy gathering (Harish)
    - Speed up getting detached instance information (Rodrigo)

  * All
    - loadable backend modules (Toshok)
    - create libedataserverui (JP)

Updated Translations:
	- sr (Danilo Segan)
	- sr@Latn (Danilo Segan)
	- cs (Miloslav Trmac)
	- sq (Laurent Dhima)
	- en_CA (Adam Weinberger)
	- en_GB (David Lodge)

Evolution Data Server 1.0.2, 2004-10-11
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar

    #62868 - Permission denied accepting a GroupWise meeting a second time (Chen)
    #67513 - Evolution corrupts memory if backend autobooks meeting attendees (JP)
    #66230 - tasks from online iCal duplicate after auto-refresh (Rodrigo)

  * Address Book

    #66368 - VCard parser doesn't add "File under" (Hans)
    #66574 - Make e_book_get_self work (Diego Gonzalez
    #67600 - fix e-d-s issues on x86_64 machines (Hans)

  * All

    #65200 - GroupWise backend crash
    #67031 - (Partial) show completed status properly for GroupWise tasks
  
Other bugs

  * Address Book
    - Restrict system address book queries to groupwise server for performance reasons (Siva)

  * Calendar
    - load system tasks backend correctly

Updated Translations:
	- fr (Craig Jeffares)
	- zh_TW (Craig Jeffares)
	- sk (Stanislav Visnovsky)
	- fa (Roozbeh Pournader)
	- id (Mohammad DAMT)
	- ar (Arafat Medini)

Evolution Data Server 1.0.1, 2004-09-24
----------------------------------------
                                                                                                                                                              
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
                                                                                                                                                              
  * Calendar
                                                                                                                                                              
    #66383 - Warning fixes in calendar code (Dave Malcom)
    #64955 - C99-ism in libecal (Vincent Noel)
    #59904 - Calendar query caching (Rodrigo)
    #65167 - Crash sending task to GroupWise (Chen)
    #64685 - Appointment requests that have been replied to give "Invalid Object" error (Chen)
    #63513 - G/W appointment acceptance fails ('invalid object') (Chen)
    #64688 - mixing UTC and localtime in Appointment view (Chen)
                                                                                                                                                              
  * All
                                                                                                                                                              
    #66209 - only first source color change is saved to gconf (Michael)
    #64062 - new all day recurring events do not show busy time or as all day appts (Chen)
                                                                                                                                                              
Other bugs
                                                                                                                                                              
  * Address Book
    - disable debugging noise (William Jon McCann)
    - don't search summary for groupwise system address book (Siva)
                                                                                                                                                              
  * Calendar
    - support groupwise all day events
                                                                                                                                                              
  * All
    - fix e-d-s issues on NPTL and AMD machines (Chris, Frederic Crozat, Hans, Dave Malcolm)
                                                                                                                                                              
Updated Translations:
        - fr (Craig Jeffares)
        - zh_TW (Craig Jeffares)
        - sk (Stanislav Visnovsky)
        - fa (Roozbeh Pournader)
        - id (Mohammad DAMT)
        - ar (Arafat Medini)

Evolution Data Server 1.0.0, 2004-09-13
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #59582 - Contact incompletely updated to LDAP store, address information lost/not editable
    #63385 - Evolution crash - Adding two email ids with same name 

  * Calendar

    #57443 - ics import crashes

Updated Translations:
	
	- da (Martin Willemoes Hansen)
	- ar (Arafat Medini)
	- nn (Åsmund Skjæveland)
	- en_GB (David Lodge)
	- cy (Telsa Gwynne)
	- el (Kostas Papadimas)
	- tr (Baris Cicek)

Evolution Data Server 0.0.99, 2004-08-27
----------------------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #63844 - avoid locking if authentication needed during auto completion (Siva)
    #63255 - ignore name prefixes when completing (Siva)

  * Calendar

    #62857 - display recurring events upon creation for groupwise (Chen)
    #61782 - handle importing objects with no UID (Rodrigo)
    #62655 - don't crash with NULL uri (Hans)

  * All

    #63051 - solaris build fixes (notzed)

Other bugs

  * Calendar

    - add has-alarms-in-range query type (Rodrigo)
    - always set return value for e_cal_set_default_timezone (Frederic Crozat)
    - don't set the same default timezone multiple times (JP)
    - don't get all items from the groupwise server every time (Chen) 

  * Addressbook

    - and thread safety flag for libdb (Toshok)
    - throw error when deleting system address book (Siva)
    - avoid unfiltered system address book searchs (Siva)
    - use cursors to populate the groupwise cache (Siva)
    - prevent groupwise server crash by not doing to cursor requests at the same time (Chen)
    - immediately show meeting status updates in GUI for groupwise (Chen)
	
  * All

    - fix warnings (Frederic Crozat)
    - set cache file name properly (Siva)

Updated Translations:

  - pt_BR (Gustavo Maciel Dias Vieira)
  - es (Francisco Javier F. Serrador)
  - da (Martin Willemoes Hansen)
  - de (Christian Neumair)
  - hu (Laszlo Dvornik)
  - nb (Kjartan Maraas)
  - no (Kjartan Maraas)
  - sq (Laurent Dhima)
  - uk (Maxim Dziumanenko)
  - az (Metin Amiroff)
  - ja (Takeshi AIHANA)
  - pt (Duarte Loreto)
  - fi (Ilkka Tuohela, Tommi Vainikainen)