~ubuntu-branches/ubuntu/feisty/evolution-exchange/feisty

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
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
2007-02-12  Srinivasa Ragavan <sragavan@novell.com>

	* NEWS, configure.in: Evolution-Exchange 2.9.91 release updates.

2007-01-23  Veerapuram Varadhan  <vvaradhan@novell.com>

	* NEWS, configure.in: Evolution-Exchange-2.9.6 release updates.

2007-01-22  Veerapuram Varadhan  <vvaradhan@novell.com>

	* configure.in: Check for the availability of libdb devel packages
	and provide "--with-libdb" parameter for custom locations of
	libdb.

	* addressbook/Makefile.am:  Do not hard-code libdb path - breaks
	build when libdb headers are not installed.
	
2007-01-12  Devashish Sharma <sdevashish@novell.com>

	* addressbook/e-book-backend-gal-cache.c : Committing DB based gal 
	cache with summary support.

	* addressbook/e-book-backend-db-cache.[ch] : Commiting the apis for
	using DB for caching.

2007-01-08  Harish Krishnaswamy <kharish@novell.com>

	* NEWS, configure.in: Evolution-Exchange-2.9.5 release updates.

2007-01-08  Veerapuram Varadhan  <vvaradhan@novell.com>

	** Fixes 346728, 268412

	* camel/camel-stub-constants.h: Define
	CAMEL_STUB_FOLDER_NOCHILDREN
	
	* mail/mail-stub-exchange.c: (get_folder_info): Remove commented
	code.  Set CAMEL_STUB_FOLDER_NOCHILDREN, when folders don't have a
	sub-folder - second level optimization for public-folder issue.

	* camel/camel-exchange-store: (make_folder_info): Set
	CAMEL_FOLDER_NOCHILDREN appropriate.
	(postprocess_tree): CAMEL_FOLDER_NOCHILDREN is set in
	make_folder_info.
	
2007-01-08  Matthew Barnes  <mbarnes@redhat.com>

	Fixes #357660
	* calendar/e-cal-backend-exchange-calendar.c: (find_attendee_prop)
	Use g_ascii_str[n]casecmp instead of deprecated g_str[n]casecmp.

2006-12-18  Veerapuram Varadhan  <vvaradhan@novell.com>

	* camel/camel-exchange-store.c: (make_folder_info): Uncoment the
	line that decodes that path.
	
2006-12-18  Veerapuram Varadhan  <vvaradhan@novell.com>

	* NEWS, configure.in: Evolution-Exchange-2.9.4 release updates.
	
2006-12-18  Veerapuram Varadhan  <vvaradhan@novell.com>

	* camel/camel-exchange-store.c: (make_folder_info): Decode path
	name and use it as full_name - reversing the reverted commit.
	
2006-12-18  Veerapuram Varadhan  <vvaradhan@novell.com>

	** Fix for 346728, 268412

	* mail/mail-stub-exchange.c: (get_folder_info):  Don't scan all
	the hierarchies always.  We now load, when not recursive fetch,
	folders on demand.  This reduces both memory and loading time.
	
2006-12-18  Sankar P  <psankar@novell.com>

	* camel/camel-exchange-provider.c:
	Do not check mail in all folders by defalut.
	Make it a configurable option.
	Will be more than useful in case you have a large number of folders

2006-12-04  Veerapuram Varadhan  <vvaradhan@novell.com>

	* camel/camel-exchange-store.c: (make_folder_info): Commented out
	decode path code as e-d-s part of the patch couldn't make it in
	time for 2.9.3
	
2006-12-04  Veerapuram Varadhan  <vvaradhan@novell.com>

	* camel/camel-exchange-store.c: (make_folder_info): Decode path
	name and use it as full_name.
	
2006-12-01  Srinivasa Ragavan  <sragavan@novell.com>

	** Committing GAL Caching implementation from Devashish

	* addressbook/Makefile.am: Added the gconf support to exchange storage
	* addressbook/apps_exchange_addressbook.schemas.in.in: Schema to set
	the cache reload interval
	* addressbook/e-book-backend-gal.c: (gal_reconnect),
	(get_contact_handler), (get_contact), (contact_list_handler),
	(get_contact_list), (build_contact_from_entry), (poll_ldap),
	(ldap_search_handler), (start_book_view), (tool_server_controls),
	(parse_page_control), (dosearch), (generate_cache), (set_mode),
	(load_source), (dispose): Implementation of GAL Cache for Exchange.
	* configure.in:

2006-11-16  Srinivasa Ragavan  <sragavan@novell.com>

	* addressbook/e-book-backend-gal.c: (contact_list_handler): Fix for
	hang while viewing a HTML mail, which has images to be loaded based on
	contacts. Downstream fix from SUSE.

2006-11-15  Chenthill Palanisamy  <pchenthill@novell.com>

	* calendar/e-cal-backend-exchange.c: (open_calendar):
	Set the online status before connecting to the server.
	Notify error messages to evolution.
	Fixes #219729 (bugzilla.novell.com)

2006-11-15  Chenthill Palanisamy  <pchenthill@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c:
	(modify_object_with_href):Removed the deleted link
	properly. Remove the stale X-MOD-PROPS from the instances.
	Send the status properly to indicate errors.
	Fixes #215633 (bugzilla.novell.com)

2006-10-02 Harish Krishnaswamy <kharish@novell.com>

	* NEWS, configure.in: Connector 2.8.1 release.

2006-09-04  Veerapuram Varadhan  <vvaradhan@novell.com>

	* NEWS, configure.in: Connector 2.8.0 release.

2006-08-22  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-store.c: Including camel-exchange-summary.h.
	Fixes build issue with -Werror-implicit-function-declaration flag.
	Patch submitted by "Matthew Barnes  ", Fixes #349949. 

2006-08-21  Srinivasa Ragavan <sragavan@novell.com>

	* NEWS, configure.in: Connector 2.7.92 release.

2006-08-14  Sanlig Badral  <badral@openmn.org>

        * configure.in: Added mn (Mongolian) to ALL_LINGUAS.

2006-08-07  Srinivasa Ragavan <sragavan@novell.com>

	* configure.in: Bumped version to 2.7.91
	* NEWS: Updated changes

2006-08-07  Veerapuram Varadhan  <vvaradhan@novell.com>

	* camel/camel-stub-marshal.c (do_read): Whenever timeout happens,
	just keep reading.  Fixes #344196
	
2006-08-07  Sushma Rai  <rsushma@novell.com>

	* camel/camel-stub.c (connect_to_storage): Handling the error when the
	socket file path has changed and displaying proper error message.
	Fixes #274321

2006-07-31  Sushma Rai  <rsushma@novell.com>

	* camel/camel-stub-marshal.c (do_read): Come out of the loop on
	failure. Fixes the hang.
	(marshal_read): Resetting the byte array size when read fails.
	Patch submitted by "Jeffrey Stedfast <fejj@novell.com>" and
	"Arunprakash <twizst@gmail.com>". Fixes #344196 and Novell
	bugzilla bug https://bugzilla.novell.com/show_bug.cgi?id=179545.

2006-07-27  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes Novell bugzilla bug #170058
	* calendar/e-cal-backend-exchange-calendar.c: 
	(discard_alarm): Check if the icalcomponent is set
	in ECalComponent before removing the alarms.

2006-07-24  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.7.90
	* NEWS : Updated

2006-07-24  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (e_contact_from_props) 
	(build_message)(e_book_backend_exchange_modify_contact):
	Incorporated the changes in EContactPhoto structure. Fixes #347870. 

2006-07-24  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_start_book_view): Rescanning folders to update 
	the folder tree.
	(e_book_backend_exchange_remove): Remove the stale gconf entry of 
	folder deleted from some other client. Fixes #313081.

2006-07-22  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c: Corrected the birthday and
	anniversary date read. Fixes #332304
	patch Submitted by "Vandana Shenoy .B <shvandana@novell.com>"

2006-07-12  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #344651
	* calendar/e-cal-backend-exchange.c: (build_msg):
	avoid crash when importing events with 
	attachements which are MIME references instead of file names by ignoring
	these attachments (e.g. ATTACH:CID:0fd601c67efb$ef66760d$_CDOEX)

	Committed on behalf of Patrick Ohly <patrick.ohly@intel.com> 

2006-07-10  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.7.4
	* NEWS : Updated

2006-06-22  simon.zheng  <simon.zheng@sun.com>

        Fix for #336453

        * acinclude.m4:
        * configure.in:
        * addressbook/e-book-backend-gal.h:
        update patch for adding SunLDAP library support - a variant of 
	Netscape LDAP.

2006-06-17  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Up intltool requirement to 0.35.

2006-06-15  Jeffrey Stedfast  <fejj@novell.com>

	* camel/camel-stub-marshal.c (do_read): Changed 'n' to be of type
	ssize_t rather than size_t so that we can properly catch '-1'
	return values. Still for bug #179566.

2006-06-13  Sankar P  <psankar@novell.com>

	* Reverting the previous patch. As the LDAP support checking
	is done even if I havent given the --with-sunldap option

2006-06-12  simon.zheng  <simon.zheng@sun.com>

        Fix for #336453

	* acinclude.m4:
	* configure.in:
	* addressbook/e-book-backend-gal.h:
        Add SunLDAP library support - a variant of Netscape LDAP.

2006-06-12  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.7.3
	* NEWS : Updated

2006-06-02  Jeffrey Stedfast  <fejj@novell.com>

	* camel/camel-stub-marshal.c (do_read): Patch to my last
	patch. Oops, camel_read() doesn't guarantee that it will read 'n'
	requested bytes (as camel_write() guarantees that it will write
	'n' bytes), it is just a cancellable read() implementation. This
	should fix bug #179566.

2006-05-23  Nancy  <nancy.cai@sun.com>

	Fix #341803
	* storage/Makefile.am:replace "ximian-connector-setup" by
	"exchange-connector-setup"

2006-05-17  Harish Krishnaswamy  <kharish@novell.com>

	* configure.in: Append -DLDAP_DEPRECATED to LDAP_CFLAGS and
	do not overwrite the value.

2006-05-12  Brian Pepple  <bdpepple@gmail.com>

	* po/LINGUAS: New file listing all supported languages.

	* configure.in: Use po/LINGUAS instead of including all languages
	directly in this file. See the wiki for more information:
	http://live.gnome.org/GnomeGoals/PoLinguas

2006-05-12  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.7.2
	* NEWS : Updated

2006-05-12  Sankar P  <psankar@novell.com>

	* Committed on behalf of Patrick Ohly <patrick.ohly@intel.com> 
	* camel-stub.c: (stub_send_internal):
	Adds a NULL check before proceeding further
	
2006-05-11  Chenthill Palanisamy  <pchenthill@novell.com>

	Fix #341229
	* calendar/e-cal-backend-exchange-calendar.c:
	(modify_object_with_href): Set the old object so 
	that it gets refreshed properly.

2006-05-11  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #339561
	* calendar/e-cal-backend-exchange-calendar.c:
	(modify_object_with_href): check for modification of end times.
				   
2006-05-11  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #339827
	* calendar/e-cal-backend-exchange-calendar.c: (add_vevent),
	(get_changed_events), (create_object), (modify_object),
	(modify_object_with_href), (remove_object), (receive_objects),
	(book_resource), (discard_alarm):
	* calendar/e-cal-backend-exchange-tasks.c: (get_changed_tasks),
	(create_task_object), (modify_task_object), (receive_task_objects),
	(remove_task_object):
	* calendar/e-cal-backend-exchange.c:
	(e_cal_backend_exchange_cache_sync_end),
	(e_cal_backend_exchange_cache_lock),
	(e_cal_backend_exchange_cache_unlock), (get_object),
	(get_object_list), (start_query), (init), (finalize):
	* calendar/e-cal-backend-exchange.h: Set the cache lock while
	accessing the components from the hash table.

2006-05-10  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-autoconfig-wizard.c (owa_page_next): Corrected the
	support page URL in the error message. Fixes #334035.

2006-05-10  Vandana Shenoy B  <shvandana@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_address): Added a
	check for modifying a contact. Fixes #330265.

2006-05-10  Sushma Rai  <rsushma@novell.com>

	* mail/mail-stub-exchange.c (subscribe_folder): Not adding the toplevel
	"All Public Folders" to the list of favorite folders. Fixes #339277.

2006-05-10  Sushma Rai  <rsushma@novell.com>

	* mail/mail-stub-exchange.c (unsubscribe_folder): Extracting the folder
	name instead of folder patch. Fixes the issue of unsubscribing the sub
	favorite folders. Related to bug #268412.

2006-05-04  Jeffrey Stedfast  <fejj@novell.com>

	Fix for the hang in Novell bug #166987 and gnome bugzilla bug #322897

	* camel/camel-stub.c (status_main): Create a CamelOperation
	context so our main-loop/reads/writes can all be cancelled.
	(finalize): Call camel_operation_cancel() on the stub's
	CamelOperation so that the status_main thread exits more-or-less
	immediately rather than hanging indefinitely in a system read()
	call.

	* camel/camel-stub-marshal.c (do_read): Use camel_read() so the
	read is cancellable.
	(camel_stub_marshal_flush): Use camel_write().

2006-05-02  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: More LDAP build fixing from Sushuma Rai
	Closes bug #325957

2006-04-26  Sushma Rai  <rsushma@novell.com>

	* configure.in : Corrected the EVOLUTION_API_VERSION and 
	EDS_BASE_VERSION and bumped the version to 2.7.1.1

2006-04-25  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.7.1
	* NEWS : Updated

2006-04-24  Chenthill Palanisamy  <pchenthill@novell.com>

	* calendar/e-cal-backend-exchange.c: (build_msg): Not freeing the
	destination file for attachements. Fixes #330494.

2006-04-18  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #334727
	* calendar/e-cal-backend-exchange-calendar.c: 
	(add_vevent): Return correct status.
	(add_ical), (receive_objects): Pass the duped string.
				       
2006-04-18  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #330674
	* calendar/e-cal-backend-exchange-calendar.c:
	(receive_objects): Passed ECalComponentId for notifying
	clients on objects removed.

2006-04-18  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #334900
	* calendar/e-cal-backend-exchange-calendar.c: (receive_objects):
	Do not remove the instance as exception would be set in the method
	modify_object.
	* calendar/e-cal-backend-exchange.c:
	(e_cal_backend_exchange_modify_object):Set the exception alone instead
	of removing the instance.

2006-04-17  Sushma Rai  <rsushma@novell.com>

	* mail/mail-stub-exchange.c (get_folder): Removed a "full stop" from 
	the error string. Fixes #306116.

2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Remove obsolete entry for no_NO.
	* po/no.po: And the translation.

2006-04-10  Sushma Rai  <rsushma@novell.com>

	* docs/reference/gtk-doc.make: Creating the target docs directory
	only if the source directory is not empty. Fixes #334925.
	Patch submitted by "Jeremy Messenger <mezz@FreeBSD.org>"

2006-04-04  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (create_object):
	Initialize variables location and ru_header to NULL.

	* mail/mail-stub-exchange.c (append_message): Similar.
	Fixes #334391.

2006-03-30  Rhys Jones  <rhys@sucs.org>

	* configure.in: Added Welsh (cy) to ALL_LINGUAS.

2006-03-22  Tommi Vainikainen  <thv@iki.fi>

	* configure.in (ALL_LINGUAS): Added Dzongkha (dz).

2006-03-13  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.6.0
	* NEWS : Updated

2006-03-06  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c 
	(check_owner_partstatus_for_declined): Check for NULL ical property.
	Fixes #323990.

2006-03-06  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #333603.
	* calendar/e-cal-backend-exchange.c:
	(set_mode): Notify the client to authenticate only when
	the mode is changed from offline to online.

2006-03-06  Sushma Rai  <rsushma@novell.com>

	* po/POTFILES.in : Removed the non existing files. 
	Fixes #317432. Patch submitted by Sebastien Bacher <seb128@debian.org>.

2006-03-06  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (update_foreign_uri): Using 
	e_xml_destroy_hash() to free the xml hash, instead of 
	g_hash_table_destroy(). See #329251.

2006-03-06  Sushma Rai  <rsushma@novell.com>
	
	* calendar/e-cal-backend-exchange-tasks.c (create_task_object): Freeing
	from address and names. 

	* mail/mail-stub-exchange.c (unsubscribe_folder): Freeing path at the 
	end. Fixes invalid memory access. See #329251.

2006-03-06  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-offline-listener.c (setup_offline_listener): 
	Freeing GConfValue. See #329251.

2006-03-06  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_removed): Not unrefing 
	the account passed to the signal handler. Fixes #332129.

2006-03-03  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #273057 and problems in modification and deletion
	of instances, Accepting exception instances from mail.
	* calendar/e-cal-backend-exchange-calendar.c: 
	(create_object): Use update_x_properties to remove the X_MOD_PROPS. 
	Server would not allow us to create the object if they are present. 
	(update_x_properties): Add the properties to the list and later remove
	them all, so that all of them are removed.			       
	(modify_object_with_href): Added a parameter to pass the right rid i
	while removing an instance. Set the start and end times of the master 
	object and remove the recurrence id while modifying all instances. 
	Add all the instance to the VCalendar component, else the excluded 
	ones would be removed from the server.
	(modify_object): 
	(remove_object)
	(book_resource): Pass the additional parameter as NULL.
	(receive_objects): Set the CalObjMod property correctly when updates
	for meetings are accepted.
	(discard_alarm): Free the component inside only when its needed.
	* calendar/e-cal-backend-exchange-tasks.c: (modify_task_object):
	* calendar/e-cal-backend-exchange.h:
	* calendar/e-cal-backend-exchange.c:
	(e_cal_backend_exchange_modify_object): Added a boolean variable to 
	indicate the removal of an instance.

2006-03-03  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #272749
	* calendar/e-cal-backend-exchange-calendar.c: (receive_objects):
	Add the timezones from the component to the backend.

2006-03-03  Sankar P  <psankar@novell.com>

	* camel/camel-exchange-folder.c:
	(append_message): Substitutes characters troubling HTTP-url-creation, 
			  like TAB, with a blank.
	Fixes #271567 and a bunch of its duplicates.		  

2006-02-27  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.92
	* NEWS : Updated

2006-02-27  Chenthill Palanisamy  <pchenthill@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c: 
	(add_ical): Notify the client the if a new object gets created.
	(get_changed_events): Make it thread safe.
	(notify_changes): get the change notifications. Do not get 
	notifications for generated instances.
	(open_calendar): Check if the client is already loaded, if so return 
	immediately.
	(ECalBackendExchangeCalendarPrivate): Added a mutex and a is_loaded 
	variable.
	(init): Intialiazed mutex and is_loaded variables.

	* calendar/e-cal-backend-exchange-tasks.c: (get_changed_tasks),
	(notify_changes), (open_task), (init)
	(struct _ECalBackendExchangeTasksPrivate): Same as calendar.

	* calendar/e-cal-backend-exchange.c (open_calendar): Check if the 
	calendar is loaded and dont reload again.
	(init): Intialize cache unseen.

2006-02-25  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c 
	(e_cal_backend_exchange_get_from_string): Freeing name and address.
	(get_attachment): Freeing attachment data.
	(build_msg): Freeing name and email.
	
	* calendar/e-cal-backend-exchange-calendar.c (add_vevent): Freeing ical
	property.
	(add_ical): Freeing attachment list.
	(discard_alarm): Freeing ical component.
	
	* calendar/e-cal-backend-exchange-tasks.c (get_changed_tasks): Freeing
	attachment list.
	(create_task_object): Freeing ical component.
	(modify_task_object): Freeing component string and ical component.
	Cloning ical component and freeing ecal component.
	(remove_task_object): Similar.
	See #329251.	

2006-02-21  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (exchange_camel_urls_is_equal):
	Not freeing camel params, which don't have any memory allocated.
	Fixes #331980.

2006-02-13  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.91
	* NEWS : Updated

2006-02-13  Chenthill Palanisamy  <pchenthill@novell.com> 

	* calendar/e-cal-backend-exchange.c: (match_object): Check for the
	presence of the icalcomp before cloning it.
	Fixes #330663. 

2006-02-13  Sankar P  <psankar@novell.com>

	* Committing on behalf of Arunprakash <arunp@novell.com>
	
	* camel/camel-exchange-store.c (stub_notification) : Added code to
	update the readonly flag of the camel folder.
	* mail/mail-stub-exchange.c (folder_update_linestatus) : Notifies
	the readonly flag change of the folder to camel stub.
	* camel/camel-stub-constants.h : Added the enumeration value 
	CAMEL_STUB_RETVAL_FOLDER_SET_READONLY

	Fixes #311017.

2006-02-13  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c (exchange_conf_entries[]): Added
	mnemonics for checkspin and text entry items.
	Fixes #330504.

2006-02-13  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c (exchange_conf_entries[]): Added
	mnemonics for checkbox entries in receive options page.
	See #330504.

2006-02-10  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes two crashes.
	Fixes #330640
	* calendar/e-cal-backend-exchange-calendar.c: 
	(modify_object_with_href): clone ecomp->icomp while adding it
	to the VCalendar.
	* calendar/e-cal-backend-exchange.c: (get_ldap_attribute):
	Check if the argument passed is valid before setting the value.

2006-02-09  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_address): Not 
	freeing address value, which causes memory corruption. Fixes #330224.

	* calendar/e-cal-backend-exchange.c (set_mode): Removed unused 
	variables.
	(get_attachment)(build_msg)(finalize): Fixed memory leaks.
	See #329251.

2006-02-07  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_date): Handling the
	case when users unsets the b'day and anniversay dates set before.
	Fixes #330221

2006-02-06  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_connect): Initializing nresults to zero and
	freeing E2kResult.
	(e_book_backend_exchange_modify_contact): Similar.

	* mail/mail-stub-exchange.c (get_folder_online)(sync_deletions)
	(get_stickynote)(build_message_from_document)
	(unmangle_delegated_meeting_request): Similar.

	* calendar/e-cal-backend-exchange.c (open_calendar): Similar.
	(get_object): Not cloning alreadry memory allocated icalcomponent.
	(check_change_type): Freeing e-cal component inside the loop.
	
	* calendar/e-cal-backend-exchange-calendar.c (add_ical): Not cloning
	alreadry memory allocated icalcomponent.

	* storage/exchange-config-listener.c (ex_set_relative_uri): Freeing 
	relative URI.
	(migrate_account_esource): Freeing CamelURL, and url_string.
	(exchange_camel_urls_is_equal): Using camel_url_free() to free the 
	CamelURLs instead of g_free().
	Fixes #329251.

2006-02-06  Chenthill Palanisamy  <pchenthill@novell.com>

	* calendar/e-cal-backend-exchange.c: (open_calendar), 
	(is_loaded), (class_init): Added the implementation.
	(set_mode): Notify read only status to the client. 
	
2006-02-02  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_load_source): Not builiding/updating cache in
	load_source, but doing it only after authenticating and setting up the
	folder hierarchy. Fixes #328507.

2006-01-30  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.9.0
	* NEWS : Updated

2006-01-23  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_start_book_view): Return OfflineUnavailable
	status in the offline mode if the book is not marked for offline.
	Fixes #327306, #327318.
	(e_book_backend_exchange_authenticate_user): In online mode, set the
	set the mode on ExchangeAccount before connecting. Fixes the issue of
	not able to access address book on switching to online mode.

2006-01-23  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-gal.c (load_source): Return 
	OfflineUnavailable error code if the mode is offline and GAL is not 
	marked for offline usage. Fixes #327312.

2006-01-23  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-component.c (impl_setLineStatus): Using proper
	status variable, GNOME_Evolution_ShellState, and Setting the offline
	status based on that.
	See #327343.

2006-01-18  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.5.1
	* NEWS : Updated

2006-01-18  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #327305
	* calendar/e-cal-backend-exchange.c: 
	(load_cache): Check if the file is present, if not, just
	return	sucess. The file will be created while saving the 
	items into the cache.

2006-01-18  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c (open_calendar): Calling 
	exchange_account_connect(), if account for given URI is not 
	found. Fixes #327305. 

2006-01-18  Tor Lillqvist  <tml@novell.com>

	* evolution-exchange-zip.in: New file, used to build a zipfile
	Win32 binary distribution of evolution-exchange for developers and
	beta testers.

	* configure.in
	* Makefile.am: Expand and distribute it.
	
	* configure.in: Add evolution-plugin to the EXCHANGE_STORAGE
	dependency list as it uses functions from libeutil, which is in
	evolution-plugin's .pc file.
	
2006-01-18  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c (open_calendar): Trying to get the
	ExchangeAccount for the URI, and if the account is not found calling
	exchange_account_connect. Folder list does not get populated, when 
	account is obtained using NULL uri, and hence loading calendar fails.
	Fixes #327305.

2006-01-18  Sushma Rai  <rsushma@novell.com>

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in: Using API 
	version for DataServer BookFactory and CalFactory. See #323115.

2006-01-16  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.5
	* NEWS : Updated

2006-01-14  Sushma Rai  <rsushma@novell.com>

	* configure.in: Define API_VERSION.

	* storage/Makefile.am: Replace @API_VERSION@

	* storage/exchange-component.h: using API_VERSION for Exchange 
	Connector book and calendar factories. 

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in: Similar.
	See #323115.

2006-01-10  Simon Zheng  <simon.zheng@sun.com>

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct):
	* storage/exchange-migrate.c (cp_r):
	(migrate_contacts):
	(exchange_migrate):
	Delete make_dir() and use the e_util_mkdir_hier() instead of it.
	
	* mail/mail-utils.c (mail_util_extract_transport_headers): Use
	e_util_strstrcase() instead of e_strstrcasea().

2006-01-06  Simon Zheng <simon.zheng@sun.com>

	* storage/exchange-autoconfig-wizard.c:
	* storage/exchange-config-listener.h:
	* storage/exchange-delegates-control.h:
	use libedataserver/e-account-list.h instead of e-util/e-account-list.h.
	use libedataserver/e-account.h instead of e-util/e-account.h.

2006-01-06  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-folder.c (exchange_expunge): Expunge deleted
	items from all folders. Fixes #273546.

2006-01-06  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c (load_cache): Returning error
	code on any failures. Return if fail to read the cache file
	corresponding to the folder.
	(open_calendar): Return the status of load_cache instead of success
	always.
	(set_mode): Set the mode, writable status and notify mode always.
	Fixes.
	In case of local mode, set the account status to offline and call
	exchange_account_connect, so that folder hierarchy is set and loading
	the cache file succeeds.
	Fixes #325717, #325726.

2006-01-04  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes two crashes and appearance of recurring exception events.
	* calendar/e-cal-backend-exchange-calendar.c (get_changed_events):
	Get the changed events for instances and instances with no master 
	object.
	(modify_object_with_href): If modifying a master object of recurrence get
	the object string from updated_comp.
	(receive_objects): check if the rid is present before converting to string.
	* calendar/e-cal-backend-exchange.c: (get_object): Check if it has
	a master component before adding it in the vcalendar.

2006-01-02  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.4
	* NEWS : Updated

2005-12-29  Abel Cheung  <maddog@linuxhall.org>

	* configure.in: Added "ca" "da" "mk" "ru" "vi" "zh_HK" to ALL_LINGUAS.

2005-12-23  Simon Zheng  <simon.zheng@sun.com>

	* storage/exchange-component.c (impl_createView): changed
	from createControls for new shell apis.
 
2005-12-21  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_start_book_view): Added the check for NULL 
	context.
	(e_book_backend_exchange_authenticate_user): Corrected the typo, an if
	condition was terminated by ";".
	(e_book_backend_exchange_load_source): Initializing the writable state
	and notifying the connection status.

2005-12-17  Sushma Rai  <rsushma@novell.com>

	* storage/main.c (setup_calendar_factory): Set the offline/online mode
	of the calendar as it impl_setLineStatus() does not get invoked when
	started in offline mode. This fixes the problem of not loading 
	addressbook contents when started in offline mode.
	(setup_addressbook_factory): Similar.

	* calendar/e-cal-backend-exchange.c (set_mode): Return if failed to 
	retrieve the folder, and set the mode only if successful, in the
	offline mode.
	Fixes #315105.

	* mail/mail-stub-exchange.c (stub_connect): Set the ExchangeAccount
	mode to offline/online based on exchange component mode, as 
	impl_setLineStatus() does not get invoked when started in offline mode.
	This fixes the problem of not loading the folder, after account 
	creation, even if the user is authenticated.
	Fixes #315605, #315333.

2005-12-12  Sushma Rai  <rsushma@novell.com>

	* configure.in : Bumped the version to 2.5.3
	* NEWS : Updated

2005-12-12  Irene Huang <Irene.Huang@sun.com>

	reviewed by Veerapuram Varadhan <vvaradhan@novell.com>
	
	* addressbook/e-book-backend-exchange.c: Change #include
	<e-util/e-uid.h> to #include <libedataserver/e-uid.h>.

2005-12-12  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c (set_mode): Return if failed to 
	retrieve the folder, and set the mode only if successful.

2005-12-10  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange.c (open_calendar): Return
	authentication failure error code if exchange_account_connect() fails.

2005-12-07  Tor Lillqvist  <tml@novell.com>

	* lib
	* xntlm: Remove these directories from CVS. (Not being used, not
	mentioned in Makefile.am. The code from these directories has been
	moved to e-d-s some time ago.)

	* shell: Remove this directory too. It was compiled, and the
	resulting libfoldertree.la was being linked to
	storage/evolution-exchange-storage. But in fact, the code was
	duplicated in e-d-s's libexchange-storage-1.2.la. This caused a
	hard-to-find problem on Win32, but happened not to have any ill
	effects on Linux. Sushma says it's OK to remove it.

	* Makefile.am: Drop shell from SUBDIRS.

	* configure.in: Drop shell/Makefile from here.

	* storage/Makefile.am: Drop shell/libfoldertree.la from
	evolution_exchange_storage_LDADD.

	* addressbook/Makefile.am
	* calendar/Makefile.am
	* mail/Makefile.am
	* storage/Makefile.am: Remove references to the shell directory
	from CFLAGS, too.
	
	* storage/e-folder-exchange.c
	* storage/e-folder-exchange.h
	* storage/exchange-account.c
	* storage/exchange-folder-size.c
	* storage/exchange-folder-size.h
	* storage/exchange-hierarchy.c
	* storage/exchange-hierarchy.h
	* storage/exchange-hierarchy-favorites.c
	* storage/exchange-hierarchy-favorites.h
	* storage/exchange-hierarchy-gal.c
	* storage/exchange-hierarchy-gal.h
	* storage/exchange-hierarchy-somedav.c
	* storage/exchange-hierarchy-somedav.h
	* storage/exchange-hierarchy-webdav.c
	* storage/exchange-hierarchy-webdav.h
	* storage/exchange-types.h
	* storage/exchange-oof.c
	* storage/exchange-oof.h: Remove unused files (have been moved to
	e-d-s).

	* storage/exchange-hierarchy-foreign.c: This was being compiled
	into the executables here, but it has also actually moved to
	e-d-s. Having it duplicated here caused weird problems on Win32,
	even if happened to work on Linux (due to differences in how
	dynamic linking works). So remove.

	* storage/exchange-hierarchy-foreign.h: Ditto, has moved in e-d-s,
	remove.

	* Makefile.am: Remove from here, too.
	
2005-11-23  Veerapuram Varadhan <vvaradhan@novell.com>

	* calendar/e-cal-backend-exchange.c: (match_object_sexp)
	(check_change_type): Calendar components that are just instances
	and without master object, don't have corresponding
	icalcomponent. Check for the existence of icalcomponent before
	adding them to the change list.  Also, process the instances and
	return them.
	(match_recurrence_sexp): Local function added for handling 
	recurrences during a query.
	(get_changes): Use e_xmlhash_foreach_key_remove() instead of 
	e_xmlhash_foreach_key ().
	(e_cal_backend_exchange_compute_changes_foreach_key): Change
	return type to gboolean and don't remove elements from hash as we
	are in "_foreach_" callback.
	(set_default_timezone): Just set the timezone without doing any
	existence check.
	** Fixes #316315 + other recurrence related issues.
	
2005-11-28  Sarfraaz Ahmed  <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (modify_object_with_href):
	Fetch the recurring instance from the cache.
	(receive_objects) : Remove the instance from the master object in the
	cache.

	* calendar/e-cal-backend-exchange.c (e_cal_backend_exchange_add_object):
	Remove the instance from the master object while adding the detatched
	instance.
	(discard_detached_instance): Similar.
	(add_instances_to_vcal) : Added new. Adds the detatched instances to
	the top level vcalendar object.
	(get_object) : Modified to return the detatched instance when the rid
	is requested.
	Fixes #235580.

2005-11-24  Tor Lillqvist  <tml@novell.com>

	* configure.in: Check for Win32, set NO_UNDEFINED and
	SOCKET_LIBS. Invoke EVO_PTHREAD_CHECK. Don't check for LDAP
	support on Win32, it is always present.

	* calendar/e-cal-backend-exchange.c: Include e-time-utils.h from
	libedataserver instead of using evolution's copy which is going
	away.

2005-11-24  Sushma Rai  <rsushma@novell.com>

	* storage/Makefile.am: Removed unused exchange-oof.[ch]

	* storage/exchange-component.c (idle_do_interactive)
	  (exchange_component_is_interactive): Removed. 
	  (impl_interactive): Having just the stub.
	  (config_listener_account_created): Not calling oof_init here also.
	  ExchangeComponentPrivate: Removed unused variable xid.
	 
	* storage/main.c: Not including exchange-oof.h.  	

2005-11-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.5.2
	* NEWS : Updated

2005-10-28  Erdal Ronahi  <erdal.ronahi@gmail.com>

	* configure.in: Added ku (Kurdish) to ALL_LINGUAS

2005-10-27  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* configure.in : Added a new EDS_BASE_VERSION variable
	* storage/GNOME_Evolution_Exchange_Storage.server.in.in : Use 
	EDS_BASE_VERSION for the calendar and addressbook factory interfaces
	* storage/Makefile.am : Add a rule to substitute it in the server file.

2005-10-27  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Use 2.6 as the evolution api version. Fixes a build 
	break.

2005-10-24  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.5.1
	* NEWS : Updated

2005-10-21  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_remove) : Check for the proper return values
	from the server and return the appropriate status back.
	* calendar/e-cal-backend-exchange.c (remove_calendar) : Similar
	* mail/mail-stub-exchange.c (delete_folder) : Similar
	This fixes #312848.

2005-10-19  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* configure.in:
	Added 'th' (Thai) to ALL_LINGUAS.

2005-10-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-migrate.c : Small typo. Fixes #302378

2005-09-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-store.c (make_folder_info): Strip the semicolon
	from the uri. And also create the folder path properly.
	* storage/exchange-component.c (impl_upgradeFromVersion)
	(config_listener_account_created): Create the account_filename
	separately now.
	(exchange_component_get_account_for_uri): Synchronise the rescan tree
	with a lock
	* storage/exchange-config-listener.c (update_foreign_uri)
	(migrate_foreign_hierarchy)(ex_set_relative_uri) : Added new
	(migrate_account_esource) : Update the new relative uri.
	(exchange_config_listener_migrate_esources) : Take care of foreign uri
	as well.

2005-09-28  Arunprakash  <arunp@novell.com>

	* mail/mail-stub-exchange.c (append_message) : Unread flag has to be
	explicitly set for unread messages. Exchange server assumes read as
	default for appended messages.
	** Fixes #239641.

2005-09-21  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (create_object): Fix a
	memory leak. Fixes #314019

2005-09-16  Irene Huang <Irene.Huang@sun.com>

	* camel/Makefile.am: Removed KRB5_LIBS from libcamelexchange_la_LIBADD.
	* configure.in: Removed the Kerberos section for KRB5 configurations.
	* docs/reference/Makefile.am: Removed KRB5_LIBS from GTKDOC_LIBS.
	* storage/Makefile.am: Remove KRB5_CFLAGS from -DG_LOG_DOMAIN, KRB5_LIBS	from evolution_exchange_storage_LDADD, ximian_connector_setup_LDADD and
	migr_test_LDADD.

2005-09-15  Arunprakash  <arunp@novell.com>

	* camel/camel-exchange-folder.c (exchange_expunge) : Checks for
	offline mode and returns an error.
	** Fixes #272987.

2005-09-13  Roozbeh Pournader  <roozbeh@farsiweb.info>

	* configure.in: Added 'fa' (Persian) to ALL_LINGUAS.

2005-09-12  Shakti Sen <shprasad@novell.com>
 
	*addressbook/e-book-backend-exchange.c 
	(http_status_to_pas): Showing the appropriate 
	error message by returning the appropriate status.

	Fixes bug #241499.

2005-09-08  Arunprakash  <arunp@novell.com>

	* camel/camel-exchange-store.c (exchange_get_folder) : Reverted the
	changes made for #314573. Now remove the folder from the hash table
	if the folder construction fails, as the inserted is needed for
	processing the notifications (includes new mail) from the mail stub.
	** Fixes #315342.
	
2005-08-30  Arunprakash  <arunp@novell.com>

	* camel/camel-exchange-store.c (exchange_get_folder) : Insert into the
	hash table only when the folder construction succeeds.
	* mail/mail-stub-exchange.c (get_folder_online) : Changed the return
	type to indicate failure.
	(get_folder) : Returns on failure of online code.
	** Fixes #314573.
	
2005-08-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Updated the version number to 2.4.0

2005-08-28  Praveen Kumar  <kpraveen@novell.com>

	* camel/camel-exchange-provider.c : Reverting the change made in
	revision 1.25 as that fix is broken by some other change in 
	Camel. Adding the hide host mask again.
	
2005-08-27  Sarfraaz Ahmed <asarfraaz@novell.com>

	* AUTHORS : Updated the credits
	* calendar/e-cal-backend-exchange.c (init) : Dont init the mode here.

2005-08-26  Arunprakash  <arunp@novell.com>

	* addressbook/e-book-backend-exchange.c (e_book_backend_exchange_init):
	Set the default mode to local.
	* addressbook/e-book-backend-gal.c (set_mode) : Removed exchange
	account set offline and connect calls, as they should be called
	by appropriate listeners.
	* calendar/e-cal-backend-exchange.c (set_mode) : Similar.
	(init) : Set the default mode to local.
	* camel/camel-exchange-store.c (camel_exchange_forget_password) : Newly
	added to forget the password in case of wrong password.
	(exchange_connect) : Updated to properly ask and forget password in
	needed cases.
	(init) : Added a new connect_lock mutex for offline mode.
	* mail/mail-stub-exchange.c (get_folder_online) : Flushes the status
	channel if called in background.
	(stub_connect) : Updated to return failure only when connection fails.
	Removed the linestatus signal handler as it is done while connecting.
	Also to update each folder's data in online.
	* camel/camel-exchange-journal.c (find_real_source_for_message) : Newly
	added to enable second level offline operation.
	(camel_exchange_journal_transfer) : Uses the new function to create the
	right journal entry.
	
2005-08-26  Dan Damian  <dand@gnome.ro>

	* configure.in: Added "ro" to ALL_LINGUAS.

2005-08-25  Marcel Telka  <marcel@telka.sk>

	* configure.in (ALL_LINGUAS): Added sk.

2005-08-23  Arunprakash  <arunp@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (book_resource) :
	Modified to delete the calendar item for cancelling meetings
	in the resource's calendar. Also sets the participation status
	to accepted before creating the calendar item.
	(send_objects) : Modified to send the partstat parameter of the
	resource to book_resource for setting the status.
	** Fixes #247015.

2005-08-23  Shakti Sen <shprasad@novell.com>

	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_start_book_view): When user starts
	evolution in offline mode and switch back to online mode and tries
	to create a contact, the contact editor hangs.
	Basically it fixes this issue.

	Partially fixes bug #274262.

2005-08-22  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.8
	* NEWS : updated
	* calendar/e-cal-backend-exchange-tasks.c : Fixed a warning

2005-08-22  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-component.h : Include the proper header files to
	fix a build error.
	* storage/exchange-config-listener.c (standard_folder) : Removed.

2005-08-22  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_authenticate_user) : Actually connect to the
	server here.
	(e_book_backend_exchange_get_supported_auth_methods) : Added new
	(e_book_backend_exchange_load_source) : This only loads the local 
	cache now.
	(e_book_backend_exchange_set_mode) : If context is not present, reponds
	to the backend as authentication required.
	* calendar/e-cal-backend-exchange.c (open_calendar) : Authenticate to
	the server if connection is not present. Uses a mutex lock for
	serializing the access across all calendar clients.
	(set_mode) : Checks the context and updates the backend for prompting
	the password. Used another mutex for serialising the clients.
	* camel/camel-exchange-provider.c : Added a new hidden conf key for
	auth-domain.
	* camel/camel-exchange-store.c (camel_exchange_get_password) : New
	(exchange_connect) : Sends the password to the mail backend now.
	* mail/mail-stub-exchange.c (stub_connect) : Now gets the password from
	camel and authenticates to the server.
	* mail/mail-stub.c : Handles the new stub connect interface.
	* mail/mail-stub.h : Similar
	* storage/exchange-component.c (ex_migrate_esources) : New
	(new_connection) : Just create the mail stub. The server connection gets
	postponed to the stub_connect interface.
	* storage/exchange-config-listener.c (migrate_account_esource) : New
	(migrate_esources) : New
	(account_added) : Dont connect here.
	* storage/exchange-config-listener.h : Similar.
	Fixes #309420

2005-08-19  Arunprakash  <arunp@novell.com>

	* mail/mail-stub-exchange.c : Modified to make use of global
	exchange component for linestatus change notification.
	(linestatus_listener) : It now disconnects the signal handler
	when it is no longer needed.
	* storage/Makefile.am : Removed offline listener.
	* storage/exchange-component.c (impl_setLineStatus) : Newly added
	to implement the new offline interface.
	(default_linestatus_notify_handler) : Will call complete for offline
	listener when everything is done.
	(exchange_component_set_factories) : Newly added to set the cal and
	addressbook factories.

2005-08-19  Arunprakash  <arunp@novell.com>

	* camel/camel-exchange-store.c (camel_exchange_store_connected) :
	Newly added to ensure that we are connected when the camel session
	is too online.
	* camel/camel-exchange-folder.c : Updated to make use of the new 
	function camel_exchange_store_connected.
	(camel_exchange_folder_update_message_flags_ex) : Newly added to
	selectively set and unset message flags.
	* camel/camel-exchange-store.c : Updated to use 
	camel_exchange_store_connected.
	(exchange_folder_subscribed) (exchange_subscribe_folder)
	(exchange_unsubscribe_folder) : Changed the type of data for folder
	name from string to folder type while sending to backend. Because the
	other side expects folder type.
	(stub_notification) : Modified to include new retval for setting and
	unsetting specific flags.
	* mail/mail-stub-exchange.c (folder_from_name) : Try using create
	permission for shared folders.
	(get_folder_online) : Newly added by removing the online code from
	get_folder.
	(get_folder) : Updated to use get_folder_online. Also set the readonly
	flag only if it fails for modify and create permissions.
	(expunge_uids) : Report the error in case of failure.
	(process_flags) : Do an expunge for mails in non-personal folders.
	If fails, undo the delete.
	(get_folder_info) : Ensure the top is exactly equal to the path. Also
	added some extra checks.
	(folder_update_linestatus) : Updated to use get_folder_online.
	Fixes #313637, #272751, #310726, #310437, #313797, #313071.

2005-08-18  Praveen Kumar  <kpraveen@novell.com>

	** Fixes bug 273470
	
	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_init): Added creation mutex initialization
	(e_book_backend_exchange_dispose): Added creation mutex freeing
	(e_book_backend_exchange_create_contact): Providing mutex for this
	function in critical path so that it works seemless when invoked 
	as a thread.

2005-08-19  Sarfraaz Ahmed <asarfraaz@novell.com>

	* mail/mail-stub-exchange.c : Fix the name collision for global
	variable name. The same name was being used by GConf and us.
	Fixes #313076

2005-08-17  Not Zed  <NotZed@Ximian.com>

	** See bug #312668.

	* storage/exchange-offline-handler.[ch]: removed, not used anyway.
	Instead some rubbish listning to gconf keys is used, groan.

2005-08-17  Praveen Kumar  <kpraveen@novell.com>

	* addressbook/e-book-backend-exchange.c
	(proppatch_categories): Added a check to see if the categories list is 
	null before adding a property for categories. This fixes the silent 
	failure of copying contacts without categories.

2005-08-17  Praveen Kumar  <kpraveen@novell.com>

	* camel/camel-exchange-provider.c: Removed the mask to hide the
	host name. Fixes the bug 272882.
	
2005-08-17  Arunprakash  <arunp@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (find_attendee_prop)
	(check_owner_partstatus_for_declined) : Newly added to check
	the partstatus of the calendar item owner.
	(remove_object) : Rearranged the code to enable the deletion of
	non-recurring items also.
	(receive_objects) : Included checks to remove the calendar item
	if the request is declined later. Also not to create the item if
	the request is declined.
	* calendar/e-cal-backend-exchange.c 
	(e_cal_backend_exchange_get_owner_email) : Added newly to get the
	email address of the calendar's owner.
	Fixes #310478, #310445.
	
2005-08-17  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c :
	* addressbook/e-book-backend-gal.c : Fixed some typos for build break.

2005-08-17  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (build_cache)(update_cache):
	Freezing the cache update, and writing to the disk at the end.
	Fixes the problem of frequent disk access, and high CPU utilization for 
	huge caches.

	* addressbook/e-book-backend-gal.c (generate_cache_handler): Similar.

2005-08-12  Praveen Kumar  <kpraveen@novell.com>

	* calendar/e-cal-backend-exchange.c:
	(open_calendar): Remove the warning dialog as all UI stuff will
	be handled by the plugin. Fix for the bug 273272.
	
2005-08-11  Praveen Kumar  <kpraveen@novell.com>

	* storage/exchange-config-listener.c
	(exchange_camel_urls_is_equal): Added new
	(account_added): Removed the default folder settings as it will be 
	handled by the plugin.
	(account_changed): Removed the dialog popups as all dialogs are now
	from the plugin
	(account_removed): Removed the ESource deletion and the dialog popup
	as it will be handled by the plugin
	
2005-08-16  Arunprakash  <arunp@novell.com>

	* calendar/e-cal-backend-exchange-tasks.c (get_changed_tasks) :
	Converted the time read from the server to local zone before
	returning. Otherwise it was floating time. Fixes #310449.

2005-08-16  Shakti Sen <shprasad@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_categories)
	(populate_categories): Added support for categories.

	Fixes bug #221030.

2005-08-16  Shakti Sen <shprasad@novell.com>

	* addressbook/e-book-backend-exchange.c:
	Added new functions proppatch_im(), populate_im().
	In brief, contact editor (exchange) supports IM field.

	Fixes bug #257802.

2005-08-08  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.7
	* NEWS : Updated
	Updated the docs as well.

2005-08-05  Arunprakash <arunp@novell.com>

	* camel/camel-exchange-store.c (exchange_get_folder_info) : Reverted
	the changes for constructing the prefix, as the bug was somewhere else
	and got fixed. These changes are wrong and worked for certain cases.
	(stub_notification) : Added code to remove the folder entries from the
	folders hash in case of rename and delete operations. Otherwise they
	represent non-existent folders.
	* mail/mail-stub-exchange.c (init) : Changed to construct the hash 
	table with callback for destroying the values.`
	(get_folder_info) : Cleaned up logic to return the right list of 
	folders for the given store_flags, and setting the folder flags for
	each hierarchy.
	(delete_folder) (rename_folder) : Added code to update the 
	folders_by_name hash to have the valid values. The deleted and renamed
	folder's entries need to be cleaned up.
	(unsubscribe_folder) (is_subscribed_folder) : Modified to make them
	suitable for all personal, favorite and public hierarchies, as they
	are used by all of these hierarchies.
	Fixes #310726, #309439.
	
2005-08-02  Sarfraaz Ahmed <asarfraaz@novell.com>

	* mail/mail-stub-exchange.c (get_folder_info) : Fetch only mail type
	of folders for the mail component. Also cleaned up the logic for 
	identifying public and favorite folders. We should now be setting the 
	folder as inbox based on its uri, since a rescan on the account is 
	always changing the pointers.
	(unsubscribe_folder) : Change the path for the public folder to a 
	favorite folder manually in the backend, since the UI can only support
	a list of public folders.
	(is_subscribed_folder) : Similar
	Fixes #311152

2005-08-01  Arunprakash <arunp@novell.com>

	* mail/mail-stub-exchange.c (set_important_flag) : Newly added to set
	the important flag of a message on the server.
	(process_flags) : Added code to set the important flag on user request.
	* mail/mail-utils.c (mail_util_props_to_camel_flags) : Added code to
	include important flag also in the conversion. Fixes #310718.
	
2005-07-30  Arunprakash <arunp@novell.com>

	* camel/camel-exchange-summary.c (check_for_trash) : Newly added to
	check a folder for trash.
	(expunge_mail) : Sends an expunge command with a single uid of the
	mail to the backend.
	(info_set_flags) : Modified to invoke expunge for mails being
	deleted in trash folder.
	
2005-07-29  Arunprakash <arunp@novell.com>

	* camel/camel-exchange-store.c (exchange_get_folder_info) : Fixed the
	construction of namespace for building the folder hierarchy. Fixes the
	bug #310711.
	(stub_notification) : Changed the events to be emitted to update the
	folder changes. Fixes #311866.
	* mail/mail-stub-exchange.c (subscribe_folder) : Added check for non-
	public hierarchy's folders.
	(unsubscribe_folder) : Added check for non-favorite hierarchy's folders.
	
2005-07-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c 
	(e_cal_backend_exchange_compute_changes_foreach_key) : Fix the callback 
	prototype. Fixes #273975. 
	Patch submitted by prothonotar@tarnation.dyndns.org

2005-07-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.6
	* NEWS : Updated the file.
	* addressbook/e-book-backend-exchange.c :
	* camel/camel-exchange-folder.c :
	* camel/camel-exchange-store.c :
	* mail/mail-stub-exchange.c :
	* mail/mail-stub.c :
	* storage/exchange-component.c : 
	* storage/exchange-config-listener.c : Removed some unwanted dead code
	and also fixed some warnings for all files.

2005-07-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-component.c (impl_createControls) : Reimplemented.
	But we return NULL bonobo interfaces for now, since we dont need a 
	separate Exchange component anymore.
	* storage/GNOME_Evolution_Exchange_Storage.server.in.in : Use the 
	Evolution/Component bonobo interface for exchange process.

2005-07-25  Arunprakash <arunp@novell.com>

	* camel/camel-exchange-folder.c (refresh_info) : Changed to
	replay the journal and send refresh command only when in 
	online mode.
	(transfer_messages_to) : Changed to make use of the "transfer"
	journal entry instead of "append" journal entry.
	* camel/camel-exchange-journal.c (exchange_entry_free)
	(exchange_entry_load) (exchange_entry_write)
	(exchange_entry_play) : Updated for
	the two new journal entry types - "transfer" and "delete".
	(exchange_entry_play_delete) (exchange_entry_play_transfer) : Added
	newly for the two new journal entries.
	(exchange_entry_play_append) : Fixed the copying of the fake message
	info to the original one. Used camel_exchange_folder_remove_message
	instead of removing internally.
	(camel_exchange_journal_transfer) (camel_exchange_journal_delete) :
	Added newly for creating the journal entries.
	* camel/camel-exchange-journal.h : Added two new journal entries and
	the methods for creating them.
	* camel/camel-exchange-store.c (stub_notification) : Skip the
	remove message if the message is already removed in offline.
	* camel/camel-exchange-summary.c (info_set_flags) : Added offline
	support by creating the journal entry.
	* mail/mail-stub-exchange.c (linestatus_listener) : Added newly
	to initialize certain values for the backend in online mode.
	(folder_update_linestatus) : Newly added, to update the flags
	for each folder in online mode.
	(mail_stub_exchange_new) : Modified to hold a reference for the
	exchange stub and connect to the "linestatus-changed" signal.
	* mail/mail-stub.c (connection_handler) : Fixed the call to
	unref without ref for the exchange stub.
	* shell/e-shell-marshal.list : Added an entry for the new
	"linestatus-changed" signal.
	* storage/exchange-component.c (exchange_component_get_offline_listener) :
	Added newly, to return the offline listener.
	* storage/exchange-offline-listener.c (online_status_changed) :
	Modified to emit the new "linestatus-changed" signal.
	(exchange_offline_listener_class_init) : Modified for
	registering the new signal "linestatus-changed".

2005-07-22  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>

	* configure.in: Added 'gl' to ALL_LINGUAS.

2005-07-22  Praveen Kumar <kpraveen@novell.com>

	* storage/exchange-config-listener.c : Removed functions
	add_folder_esource and remove_folder_esource
	
2005-07-21  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_remove): Implemented
	* calendar/e-cal-backend-exchange.c (remove_calendar): Implemented
	* storage/exchange-component.c (exchange_component_get_account_for_uri):
	Do rescan once, if you cant get a folder at the first attempt. This is
	for syncing any new folder creation that happened in the plugin.

2005-07-19  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c (get_static_capabilities): Removed 
	the static capabilities for send options. Fixes #310757

2005-07-15  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-tasks.c (remove_task) : Access href
	of the cached object only if it exists. Fixes #310439

2005-07-13  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.h : No longer is needed here. Moved to e-d-s
	Also updated the docs after the new tarball release.

2005-07-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-component.c : Removed the references to xc-backend
	* configure.in : Bumped the version to 2.3.5
	* NEWS : Updated

2005-07-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/Makefile.am : Include the e-d-s path first
	* addressbook/e-book-backend-gal.c : Use the new 
	exchange_account_connect method.
	* storage/exchange-config-listener.c : Similar
	* storage/exchange-storage.c : Similar
	* storage/GNOME_Evolution_Exchange_Storage.server.in.in : Dont show
	the exchange button now.
	* storage/Makefile.am : Remove xc-backend-view.[ch] and xc-commands.[ch]
	* storage/exchange-component.c : Remove the implementation for
	createControls method and also use the new exchange_account_connect
	method

2005-07-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	Updated the sgml files.

2005-07-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.4
	* NEWS : Updated

2005-07-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-provider.c : Remove the validate calls which
	are no longer used now from the plugin.
	* storage/xc-commands.c : Removed the dead code. All this has been 
	moved to the plugins.
	* docs/reference/Makefile.am : Dont use the libexchange.la from local
	area.
	* docs/reference/ximian-connector.types : Removed references to e2k-sid
	and e2k-user-dialog

2005-07-01  Chenthill Palanisamy <pchenthill@novell.com>
		
	* camel/camel-exchange-provider.c 
	(exchange_validate_user_cb): added the missing
	parameter result for the function e2k_validdate_user
	to avoid the build breaking.
	
2005-07-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-config-listener.c (account_added) : Dont add the 
	esources here. This is done in the plugin now.

2005-06-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-store.c (exchange_folder_subscribed)
	(exchange_subscribe_folder) (exchange_unsubscribe_folder) : Added new
	(get_folder_info) : Return a list of public folders if a list of
	unsubscribed folders is asked.
	* camel/camel-stub-constants.h : Added new enums for handling
	subscriptions.
	* mail/mail-stub-exchange.c (get_folder_info) : This now expects all
	the store flags. Return the public folders when SUBSCRIBED flag is not
	passed.
	(subscribe_folder)(unsubscribe_folder)(is_subscribed_folder): Added new.	* mail/mail-stub.c : Added new cases for handling subscriptions.
	* mail/mail-stub.h : Similar

2005-06-23  Kaushal Kumar  <kakumar@novell.com>

	* configure.in: Added libgnomeprint in required packages list for 
	gal references from evolution.

	Updated the include paths to refer gal related headers from evolution.

2005-06-22  Kaushal Kumar  <kakumar@novell.com>

	* storage/exchange-types.h: Removed re-declarations of 
	ExchangeHierarchyForeign, ExchangeHierarchyForeignPrivate and 
	ExchangeHierarchyForeignClass. Fixed the build.

2005-06-15  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Remove xntlm/Makefile and lib/Makefile from AC_OUTPUT
	* camel/camel-exchange-provider.c : Fix the include paths
	* storage/exchange-config-listener.c : Fixed some warnings
	* storage/exchange-hierarchy-foreign.c :Fixed the include paths
	* storage/exchange-hierarchy-foreign.h : Moved the typedef here
	* storage/exchange-hierarchy-somedav.c : Fixed the include paths
	* storage/exchange-hierarchy-somedav.h : Fixed the include paths
	* storage/xc-commands.c : Disable menu items and fix include paths.

2005-06-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c
	* calendar/e-cal-backend-exchange-calendar.c
	* calendar/e-cal-backend-exchange-tasks.c
	* calendar/e-cal-backend-exchange.c
	* calendar/e-cal-backend-exchange.h
	* calendar/e2k-cal-query.c
	* calendar/e2k-cal-query.h
	* calendar/e2k-cal-utils.c
	* calendar/e2k-cal-utils.h
	* mail/Makefile.am
	* mail/mail-stub-exchange.c
	* mail/mail-stub-exchange.h
	* mail/mail-stub-listener.c
	* mail/mail-stub.c
	* mail/mail-utils.c
	* storage/exchange-autoconfig-wizard.c
	* storage/exchange-autoconfig-wizard.h
	* storage/exchange-config-listener.c
	* storage/exchange-migrate.c
	* storage/main.c
	* storage/ximian-connector-setup.c :
	Use the proper include paths.

2005-06-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Exit configure if e-d-s was not built with Exchange 
	support
	* addressbook/e-book-backend-gal.c : Include e2k-global-catalog-ldap.h

2005-06-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	Initial commit to use Exchange server communication code from e-d-s
	* Makefile.am : Removed xntlm and lib
	* configure.in : Check for libexchange-storage-1.2.pc
	* addressbook/Makefile.am : Dont look for lib in exchange sources
	* calendar/Makefile.am : Similar
	* calendar/e-cal-backend-exchange-tasks.c : Use proper includes
	* camel/Makefile.am : Dont look for xntlm in exchange sources
	* mail/Makefile.am : Dont look for lib in exchange sources
	* mail/mail-stub-exchange.c : Use ExchangeComponent for offline checks
	instead of ExchangeAccount.
	* storage/Makefile.am : Moved out e-folder-exchange.[ch], 
	exchange-account.[ch], exchange-delegates-user.[ch], 
	exchange-delegates.[ch], exchange-folder-size.[ch], 
	exchange-hierarchy-favorites.[ch], exchange-hierarchy-gal.[ch],
	exchange-hierarchy-somedav.[ch], exchange-hierarchy-webdav.[ch],
	exchange-hierarchy.[ch], exchange-permissions-dialog.[ch], 
	exchange-types.h. Also dont look for lib and xntlm in exchange sources.
	* storage/exchange-component.[ch] : Use proper header includes.
	* storage/exchange-config-listener.[ch] : Similar
	* storage/exchange-offline-listener.[ch] : Similar
	* storage/xc-backend-view.c : Similar
	* storage/xc-commands.c : Similar. Disabled delegation and permissions
	for now. These will be moved to plugins.

2005-06-06  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.3
	* NEWS : Updated

2005-06-01  Harry Lu  <harry.lu@sun.com>

	* storage/exchange-component.c: (impl_createControls):
	should add view instead of a NULL control.

2005-05-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-gal.c : Added a mutex for the ldap 
	connection, so that access to the ldap server is locked while 
	gal_reconnect is in progress. Fixes #305398

2005-05-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* e-book-backend-gal.c (last_mod_time_populate)(get_time_stamp): 
	Updates the EContact with the last modified time [ REV field ]
	Patch submitted by Sushma.
	(gal_reconnect) : Added some robustness.

2005-05-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Check for latest libsoup and use it. This might not be
	needed once evolution is fixed to use a proper libsoup.

2005-05-11  Shakti Sen  <shprasad@novell.com>

	* storage/exchange-autoconfig-wizard.c:
	Fixed the build failure by removing EvolutionWizard.

2005-05-11  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (func_match): Forming the search
	filter for contacts with nickname property.

	* addressbook/e-book-backend-gal.c (func_is_or_begins_with): Added 
	mailNickname (alias) attribute to LDAP search filter.
	Also mapping mailNickname to E_CONTACT_NICKNAME in structure prop_info.
	Fixes #255756.

2005-05-10  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Using "sync_offline" in 
	exchange_conf_entries[], instead of "offline_sync".

2005-05-09  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_connect): Added argument
	server name to error message.

2005-05-09  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_connect): Corrected the
	quota warning message and marked it for translation. Fixes #270363.

2005-05-09  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate): Removed the hard coded support url
	from translateable error message. Fixes #272514

2005-05-09  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_removed): Displaying 
	separate warning messages for accoount deletion and account removal.
	Fixes #274066

2005-05-09  Vivek Jain  <jvivek@novell.com>

	**Fixes #273846
		#273878
	* calendar/e-cal-backend-exchange.c: (get_attach_file_contents),
	Modified the function to take length as an argument, so that we
	can return no of bytes in the file.
	(build_msg): pass the len pointer and use this length for writing the
	file

2005-04-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.1
	* NEWS : Updated
	* autogen.sh : Changed the package name to evolution-exchange

2005-04-22  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.[ch] (requires_relogin): Check for
	the change in auth type, only if it is set. 
	
2005-04-22  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.[ch] (add_esources): Removed.
	(add_account_esources): Added new to create e-sources for all the
	folders.
	(add_folder_esource): Added new to create e-source for a given folder.
	(add_sources): Creating a list which contains folder name, uri and type
	for all the folders, which is used in add_account_sources(). Moved 
	finding the source list and list_sync() in add_account_esources() 
	instead of add_sources().
	(remove_esource): Removed.
	(remove_account_esources): Added new to remove e-sources for all the 
	folders.
	(remove_account_esource): Added new to remove e-sources for all folders
	of given type.
	(remove_folder_esource): Added new, to remove e-source for a specified 
	folder. 
	(requires_relogin): Checking for auth-mechanism and SSL.	
	(account_changed): Calling remove_account_esources().
	
	* storage/e-folder-exchange.c (e_folder_exchange_delete): Calling 
	remove_folder_esource().
	(e_folder_exchange_new): Calling add_folder_esource().
	
	* storage/exchange-hierarchy-gal.c (exchange_hierarchy_gal_new): 
	Similar. 

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Similar.

	* storage/exchange-hierarchy-favorites.c (remove_folder): Similar.

	* storage/exchange-hierarchy-foreign.c (remove_folder): Similar.
	(exchange_hierarchy_foreign_add_folder): Similar.

2005-04-21  Sushma Rai  <rsushma@novell.com>

	* configure.in: Using libsoup-2.2 instead of libsoup-2.4

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in: Changed the 
	book and cal factory versions to 1.4

2005-04-12  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.3.0

2005-04-06  Vivek Jain  <jvivek@novell.com>

	**Fixes #74218
	* calendar/e-cal-backend-exchange-calendar.c
	(modify_object_with_href):dup the string before assigning the 
	value returned by icaltimezone_get_tzid. 

2005-04-05  Ahmad Riza H Nst  <ari@160c.afraid.org>

	* configure.in: Added id (Indonesian) to ALL_LINGUAS line.


2005-04-05  Vivek Jain  <jvivek@novell.com>

       **Fixes #42376
       * storage/exchange-account.c :
       (exchange_account_remove_folder):
       (exchange_account_xfer_folder): check whether the folder being
       renamed/moved/removed is a standard one. throw error as an
       unsupported operation.

2005-04-05  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne in ALL_LINGUAS

2005-04-01  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #74227
	* calendar/e-cal-backend-exchange-calendar.c
       	(remove_object): Removed the check for the presence of object 
	and assign proper values to old_object and object.
	(receive_objects), (book_resource): Do not send NULL for the 
	last argument in remove_object.
	
2005-04-01  Adi Attar  <aattar@cvs.gnome.org>

	* configure.in: Added "xh" to ALL_LINGUAS.

2005-03-31  Steve Murphy  <murf@e-tools.com>

	* configure.in: Added "rw" to ALL_LINGUAS.

2005-03-31  Sushma Rai  <rsushma@novell.com>

	Patch by Sarfraaz Ahmed for a exchange-storage crash while exiting 
	Evolution. 
	* storage/exchange-account.c (exchange_account_set_online): Not setting 
	"account_online" flag, as it gets initialized in 
	exchange_account_connect().

	* storage/exchange-hierarchy-somedav.c (scan_subtree): Using the 
	offline mode parameter for the function, instead of reading it again.

	* storage/exchange-offline-listener.c (setup_offline_listener): Reading
	the connection id returned for online/offline status change.
	(exchange_offline_listener_dispose): Using the connection ID returned 
	by gconf_client_notify_add() while removing the notification.

2005-03-31  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_connect): Setting is_writable flag of 
	EBookBackendExchangePrivate based on user's access permissions. Also
	notifying the writable state.
	(e_book_backend_exchange_load_source): In case of offline mode, setting
	the writable state of FALSE. Calling the update_cache() after 
	e_book_backend_exchange_connect() so that is_writable flag is set 
	according to the user's access rights.
	(e_book_backend_exchange_set_mode): In case of offline mode, marking 
	the addressbook as not writable. In online mode, Setting writable and 
	notifying writable state based on users access permissions.

2005-03-31  Chenthill Palanisamy  <pchenthill@novell.com>

	Fixes #73969
	* calendar/e-cal-backend-exchange-calendar.c: (receive_objects): If the 
	rid is not present and the method is CANCEL remove the recurrence event
       	completely.

2005-03-29  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-folder-size.[ch] (free_fsize_table): Freeing the key
	and returning boolean.
	(free_row_refs): Added new. Frees row reference.
	(finalize): Freeing hash tables and private structure.
	(init): Creating the hash table, using g_hash_table_new()
	(exchange_folder_size_update): strdup of the key, before inserting into
	the hash table.
	(exchange_folder_size_remove): Added new. Removes the specifed folder
	entry from the hash table and updates GtkListStore.
	(exchange_folder_size_get): Added new. Returns the folder size of
	specified folder from the cache.

	* storage/exchange-hierarchy-webdav.c (e_folder_webdav_new): For the
	folders without internal uri (newly created folder), creating the
	internal uri with trailing slash.
	(create_folder): Updating folder size for newly created folder.
	(remove_folder): Removing folder size entry for the folder removed.
	(xfer_folder): Finding whether the folder is renamed or moved. In case
	of folder rename, removing the old entry from hash table and updating
	the hash table with new folder name.
	(rescan): Finding the folder size for all type for folders and not only
	the personal folders. Also, considering only the personal folder sizes
	for finding the total mail box size.
	(exchange_hierarchy_webdav_parse_folder): Removed the folder size check
	done here, now doing it in scan_subtree().
	(scan_subtree): Finding the folder size and mail box size.
	Fixes #73494 and #72100.

2005-03-29  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate): If the OWA url entered has wrong
	protocol during account creation, displaying error message instead
	of correcting the url and proceeding with the account creation. 
	Fixes #74050. 
	Also, prefixing the owa path with the slash. See #73627. 

	* camel/camel-exchange-provider.c (exchange_validate_user_cb): Freeing
	mailbox parameter, after setting the value to camel url.

2005-03-29  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (add_esource): Fixed the problem
	where e-source was being accessed after the unref. Also Selecting
	calendar and tasks folders only if e-source is created. 
	Should fix #74029

2005-03-17  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c (exchange_validate_user_cb): Setting
	the authentication mechanism parameter in camel url.
	
	* lib/e2k-autoconfig.c (get_ctx_auth_handler): Initializing saw_ntlm
	and saw_basic flags and setting saw ntlm if the response header begins
	with "NTLM ".
	(validate): Setting the is_ntlm flag if the user is authenticated.	

2005-03-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* docs/reference/Makefile.am : Link to krb5 libs as well
	* storage/Makefile.am : Similar
	Fixes a build break on SuSE machines.

2005-03-16  Jeffrey Stedfast  <fejj@novell.com>

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct):
	Set the state file path and load it. Fixes bug #73498.
	(transfer_messages_to): Updated to use journal_append()
	(refresh_info): Replay the journal here. Fixes bug #72968.
	
	* camel/camel-exchange-journal.c (exchange_entry_play_transfer):
	Removed (not used).
	(camel_exchange_journal_transfer): Removed.
	(exchange_entry_play_append): restore back the message info from the
	journal cache to the real cache.

2005-03-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-store.c (construct): Move back the stub creation
	code to exchange_connect and invoke connect to fix the timing issue.
	(exchange_connect) : Create a stub if it already not created.
	(exchange_get_folder) (exchange_get_trash) (exchange_get_folder_info) :
	Check if stub is created, if not then create it.
	Fixes #73673

2005-03-15 Sivaiah Nallagatla <snallagatla@novell.com>
										
	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_create_contact)
	(e_book_backend_exchange_modify_contact)
	(e_book_backend_exchange_remove_contacts) :
	Make sure new or modified objects are added
	to cache and deleted ones are actually deleted
	from cache.
	Fixes #73712

2005-03-15  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c (exchange_validate_user_cb): Using
	ExchangeParams structure to store the parameters values to read from
	server during user validation, and adding them to camel url.

	* lib/e2k-autoconfig.c (e2k_validate_user): Using ExchangeParams.
	(validate): If the user is validated finding "mailbox" and "owa_path"
	values. Using ExchangeParams for returning the values.

	* lib/e2k-validate.h: Defined ExchangeParams.

2005-03-15  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c (open_calendar): Return proper
	error message when authentication fails. This happens when we start
	evolution in calendar view without remembering the password.

2005-03-15  Sushma Rai  <rsushma@novell.com>

	* shell/e-folder-misc-dialogs.c (do_foreign_folder_dialog): Fixed the
	way e-mail ids were being read from the user name entry.

2005-03-14  Sivaiah Nallagatla <snallagatla@novell.com>

       * addresbook/e-book-backend-excahnge.c
       (e_book_backend_exchange_create_contact)
       (e_book_backend_exchange_modify_contact)
       (e_book_backend_exchange_remove_contacts)
       (e_book_backend_exchange_get_changes)
       (e_book_backend_exchange_get_contact) : added misc. stuff
       like returning proper error code, assigning
       NULL to out params and not using e_data_book_view etc
       to offline case error handling
       Don't know if it fixes any bug in bugzilla


2005-03-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (add_ical) : Make sure we
	check for attachments in subcomponents of a vcalendar as well.
	(get_attachment) : Moved to e-cal-backend-exchange.c
	(build_msg) : Moved to e-cal-backend-exchange.c
	(create_object) : Minor leak fixed.
	(modify_object_with_href) : Dont loose the attachments while modifying.
	* calendar/e-cal-backend-exchange-tasks.c (put_body): Handle attachments
	(get_changed_tasks) : Check for attachments and fetch them from server.
	(create_task_object) : Check for attachments and send them to server.
	(modify_task_object) : Similar
	* calendar/e-cal-backend-exchange.c (load_cache) : Create the local
	attachment store for the GUI to store exchange attachments
	(save_attach_file) : Make a local copy of the attachment in the backend
	(get_attachment) : Extract the attachment from the server object.(Moved
	from calendar.c)
	(get_attach_file_contents) : Store the attachment in a file.
	(build_msg) : Build the mime part to send to the server (Moved from
	calendar.c)
	* calendar/e-cal-backend-exchange.h : Export the attachment utility
	functions.

2005-03-11  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (func_match): Handling the
	query which beginswith full name or email id without any value.
	Fixes the problem of listing items of Exchange personal contacts
	from user selection dialog.

2005-03-11  Sushma Rai  <rsushma@novell.com>
	
	* storage/exchange-account.c (is_password_expired)
	(exchange_account_set_password): If kerberos calls with windows domain
	and domain extracted from e-mail id fail, trying again with NT domain.
	(exchange_account_connect): Storing the NT domain value in exchange
	account.
	(init): Initializing NT domain paramenter.
	(finalize): Clearing NT domain value stored.
	Fixes #72801

2005-03-11 Sivaiah Nallagatla <snallagatla@novell.com>
											   
	* calendar/e-cal-backend-exchange-calendar.c
	(add_timezone_cb) (modify_object_with_href) :
	initialize the izone to NULL before passing it
	to get_timzone.
											   
	Fixes #73505, #67740  and surely something else

2005-03-07  Jeffrey Stedfast  <fejj@novell.com>

	Fixes bug #72889, #72943 and probably others.

	* camel/camel-exchange-store.c (exchange_disconnect): Removed the
	logic, put it into finalize() instead. Simply return TRUE here.
	(exchange_connect): Moved the logic into construct().
	(construct): Init the strub and connect it. This needs to happen
	here or offline mode breaks.

2005-03-10 Sivaiah Nallagatla <snallagatla@novell.com>

	* calendar/backends/e-cal-backend-exchange.c
	(remove_objects) : Make sure object is non NULL before deferencing
	it.  Fixes #73059

2005-03-10  Sushma Rai  <rsushma@novell.com>

	* calendar/e-cal-backend-exchange-tasks.c (create_task_object):
	Finding the UID from the ical component and using it while checking
	the cache, and also returning the UID back. Fixes #72041
	Changed the parameter name from comp_uid to return_uid.

	* calendar/e-cal-backend-exchange-calendar.c (create_object): Similar
	to tasks, here also reading the UID value from ical component and 
	returning it back.

2005-03-09 Sivaiah Nallagatla <snallagatla@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_get_contact_list) : 
	Don't free the vcard you just added to list !!!
	That gets freed elsewhere.
	Fixes #73470, #73030 #73025 and may be something 
	else which i don't know

2005-03-09 Sivaiah Nallagatla <snallagatla@novell.com>

	* addresbook/e-book-backend-exchange.c
	(build_message) : make sure note is non NULL
	before processing. Basically added robustness against
	ote being NULL.
	Fixes #72044

2005-03-09  Sushma Rai  <rsushma@novell.com>
	
	* storage/exchange-account.h: mbox_size definition. Missed in previous
	commit.

2005-03-09  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-global-catalog.c (get_quota_values): Reading "mDBUseDefaults"
	attribute to check if the user level quota settings are enabled or not.
	(e2k_global_catalog_lookup): Added "mDBUseDefaults" attribute to quota
	attribute list.

	* storage/exchange-account.c (setup_account_hierarchies): Reading total
	size for all the personal folders. Not returning "FALSE" in case 
	favorite folders does not exist. Not an error condition.
	(exchange_account_connect): Printing the quota warning, only if user's
	mail box size exceeds the quota limit set. Fixes #72389

	* storage/exchange-hierarchy-webdav.[ch](init): Initializing the total
	folder size.
	(exchange_hierarchy_webdav_get_total_folder_size): Returns total size 
	of all the folders.
	(rescan)(exchange_hierarchy_webdav_get_folder_size): Calculates the 
	total size for all the folders.
	
2005-03-08  Sushma Rai  <rsushma@novell.com>

	* shell/e-folder-misc-dialogs.c (do_foreign_folder_dialog): Removed the
	corba method which was still being used to retrieve user's e-mail
	address.
	(user_clicked): Making name selector dialog modal.
	(setup_name_selector): Adding the user name entry widget to the name
	selector dialog.
	 Fixes #73218

2005-03-07 Sivaiah Nallagatla <snallagatla@novell.com>

	* calendar/e-cal-backend-exchange.c (set_mode) :
	make sure we set proper value to priv->read_only 
	Atleast should Fix #72168 & #72951 

2005-03-07  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* configure.in : Bumped the version to 2.2.0
	* NEWS : Updated

2005-03-07  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_new): Setting the
	porotcol based on OWA URL specified by the user, instead of use_ssl
	parameter. Since we don't have a SSL section now, use_ssl is getting
	lost when user does modifications to his account settings.
	Fixes #73202, #72834, #73017, #72836, and #72881

2005-03-03  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Added mail filters and junk mail
	filters settings to "Options" section in exchange_conf_entries[] 
	structure so that they appear in receive options page.
	Fixes #73237	
 
2005-03-03  Rajesh Ranjan  <rranjan@redhat.com>

	* configure.in : Added hi to ALL_LINGUAS.

2005-02-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.6
	* NEWS : Updated
	* Updated the po files and the docs

2005-02-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-webdav.c (scan_subtree): Removed an object
	getting unrefed twice. Fixed #73079
	* camel/camel-exchange-folder.c (class_init): There was a duplicate
	declaration for refresh_info

2005-02-28  Sushma Rai  <rsushma@novell.com>
	
	* lib/e2k-autoconfig.c (validate): Reverted fix for #72514, as it
	breaks string freeze.

2005-02-28  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_changed): Checks if
	user needs to authenticate again, based on the url changes.
	(requires_relogin): Compares the current url with the modified 
	url, to see if user needs to relogin.

2005-02-28  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-oof.c (sync_oof_info): Checking for NULL OOF 
	message. Fixes the crash when oof_info file gets created here.

2005-02-28  Sarfraaz Ahmed <asarfraaz@novell.com>

	* exchange-oof.h (exchange_oof_set) : This got missed in the previous 
	commit.

2005-02-27  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-oof.c (sync_oof_info): If oof_info file exists and
	has more recent data set using account editor updates the server with
	this information. If server has more recent oof data, entered either
	through out of office assistant dialog from exchange component or
	through any other client, then updates oof_info file, so that account
	editor displayes the proper state and message, reading this file.
	(exchange_oof_init)(update_state): Calls exchange_oof_set() with
	"updated" flag set to TRUE, based on which the oof_info files gets
	updated.
	(exchange_oof_get): Invokes sync_oof_info().
	(exchange_oof_set): Calls sync_oof_info() to write the data to the file,
	when file contents need to be updated.
	(exchange_oof): Checks for oof message and sets the buffer.
	Fixes #72709.

2005-02-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c : The mode on the backend was not
	being set back to REMOTE when turned online. Fixed this now.
	* camel/camel-exchange-folder.c (get_message_data): Dont contact mailer
	in offline mode.
	(camel_exchange_folder_update_message_tag): Similar
	* camel/camel-exchange-folder.h : Similar
	* camel/camel-exchange-store.c (exchange_get_folder): Send the offline
	state while creating the new folder
	* mail/mail-stub-exchange.c: Modified to use the new offline checking
	method.
	(refresh_folder_internal): Return the data in the stub if offline.
	* storage/exchange-account.c : Use the new offline checking method
	(exchange_account_is_offline_sync_set): Make it return the proper error
	values using the enums for offline.
	* storage/exchange-account.h : Use the new offline checking method
	* storage/exchange-component.c : Similar
	* storage/exchange-component.h : Similar
	* storage/exchange-config-listener.c: Similar
	* storage/exchange-hierarchy-favorites.c : Similar
	* storage/exchange-hierarchy-somedav.c : Similar
	* storage/exchange-hierarchy-webdav.c : Similar
	* storage/exchange-offline-listener.c : Should now send a proper value
	for an error condition. 
	* storage/exchange-offline-listener.h : Added new enum for this.
	Fixes #71519

2005-02-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (add_ical) : Now updates
	the cache with the status tracking info
	(get_changed_events): Added the enums for tracking info to be sent to
	add_ical

2005-02-26  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (get_password): Forgetting temporarily
	stored password, once the exchange component is set to interactive.
	Fixes #73017.

2005-02-26  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate): Removed the hard coded support url
	from translateable error message. Fixes #72514

2005-02-26  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate):
	* camel/camel-exchange-provider.c (exchange_validate_user_cb): Removed
	unnecessary memory allocation.

2005-02-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-folder-size.c : Modified most of the code for
	displaying the folder sizes in a sorted order. Also added code to
	update the store with new folder sizes, called after a refresh.
	* storage/exchange-folder-size.h : Similar
	* storage/exchange-hierarchy-webdav.c (rescan) : Fetch the folder
	sizes during a rescan as well.
	(exchange_hierarchy_webdav_parse_folder) : Now send a double value
	instead of a string for the folder size.
	Fixes #72104

2005-02-24  Sivaiah Nallagatla <snallagatla@novell.com>
										
	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_get_contact_list) :
	We should not be using e_data_book_respond_ calls, as we are
	a sync backend. Fixes #72946
	(e_book_backend_exchange_create_contact) :
	Don't use e_data_book_respond and don't
	return success here. We are in offline
	mode.
	Fixes #72945

2005-02-24  Hans Petter Jansson  <hpj@novell.com>

	* lib/e2k-autoconfig.c:
	* lib/test-utils.c:
	* storage/exchange-account.c:
	* storage/exchange-autoconfig-wizard.c:
	* storage/exchange-hierarchy-webdav.c:
	* storage/main.c:
	* storage/ximian-connector-setup.c:
	Update the includes for e-passwords.h to reflect its new location.

2005-02-20  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-gal.c (func_is_or_begins_with): Allowing
	the query "beginswith fileAs" without any value, which is formed for
	building GAL cache. Fixes #72170
	(generate_cache_handler): Checking for the LDAP message type while 
	building the cache.
	(set_mode): Setting GAL addressbook not editable, when turning online
	from offline mode.

2005-02-20  Sushma Rai <rsushma@novell.com>
	
	* storage/exchange-account.[ch] (exchange_account_is_offline_sync_set):
	Added new, to read the offline_sync value set for the account.
	(exchange_account_new): Checking for the account level offline sync setting
	and storing it.

	* storage/exchange-config-listener.c (add_esource): Checking for the 
	account level and folder level offline sync values and updating the 
	e-sources.

2005-02-19  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/Makefile.am : Now link camel with krb5 for working around
	libtool glitch on SuSE.

2005-02-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/xc-commands.c (do_folder_size_menu): Enable popping of
	folder size dialog from the menu. Fixes #72099

2005-02-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c : Fixed a build break

2005-02-10  Jeffrey Stedfast  <fejj@novell.com>

	* camel/camel-exchange-search.c (exchange_body_contains): Check
	network availability. If unavail, fall back to parent search class
	body_contains() method.

2005-02-12  Arafat Medini <kinryu@silverpen.de>

	* configure.in  Readded Arabic locale ar to ALL_LINGUAS

2005-02-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (add_vevent) : Always
	set the TRANSP property from the busy status. Fixes #70283
	(receive_objects) : Fixed a memory leak. Fixes #72482

2005-02-11  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_changed): Removing the 
	esources for the account before asking for restart, if owa url is 
	modified. Fixes #71995.

2005-02-10  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate): Changed the support URL value.
	Fixes #71800

2005-02-10  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c (exchange_auto_detect_cb): Adding
	GC server to the table of auto detected values.
	(exchange_validate_user_cb): Setting ad_server paramemter value in
	CamelUrl.

	* lib/e2k-autoconfig.c (e2k_validate_user)(validate): Reading the GC
	server value.
	Fixes #71878

2005-02-10  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Setting HIDDEN_AUTH in 
	exchange_provider structure, so that it auth section doesn't
	appear while creating an account.

2005-02-09  Sushma Rai  <rsushma@novell.com>
	
	* storage/exchange-account.c (change_passwd_cb): Setting the new
	password entered when change password is invoked by password expiry
	check. Fixes #72091

2005-02-09  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_new): Not setting
	default warning period, if user has not selected password expiry
	warning option. 
	(find_passwd_exp_period): Finding the password expiry period and showing
	warning, only if user has selected that option. 
	Fixes #72093

2005-02-08  David Malcolm  <dmalcolm@redhat.com>

	* addressbook/Makefile.am, calendar/Makefile.am,
	camel/Makefile.am,  mail/Makefile.am, shell/Makefile.am,
	storage/Makefile.am, lib/Makefile.am:

	Use appropriate libtool macro for convenience libraries
	(_LTLIBRARIES, rather than _LTLIBRARIES), since some architectures
	do not allow using static libraries this way.

2005-02-08  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct): 
	Storing tag information in summary file. Fixes #71555 

2005-02-07  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.5
	* NEWS : Updated
	* Updated the po files	

2005-02-07  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-gal.c (func_contains): Handling the
	query with the attribute fileAs. Fixes Gal lookup from user selection
	dialog, which was was not working as the query now is having 
	fileAs=username.

2005-02-04  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* po/POTFILES.in : Updated with the missing files.

2005-02-04  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c (set_mode): Fix the race by 
	having a local variable.
	* camel/camel-exchange-store.c (exchange_get_folder_info): The check
	for offline check should actually be done in mail.
	* mail/mail-stub-exchange.c (get_folder)(sync_deletions)
	(refresh_folder_internal)(mail_stub_exchange_new) : Dont contact server 
	when in	offline mode.
	* storage/exchange-account.c (exchange_account_open_folder): Check for 
	offline mode. 
	(exchange_account_is_offline) : A wrapper around the component check
	for offline mode.
	(setup_account_hierarchies) : Extracted this code to be used in offline
	and online modes.
	(exchange_account_connect) : Move code and fix warnings.
	* storage/exchange-account.h : Similar
	* storage/exchange-component.c (new_connection) : check for offline
	(exchange_component_get_account_for_uri) : Dont check for offline here.
	(exchange_component_is_offline) : Returns the component's current state. 
	* storage/exchange-component.h : Similar
	* storage/exchange-hierarchy-favorites.c (get_hrefs) : Scan the offline
	tree when in offline.
	(add_hrefs) : A callback helper method for offline scanning of folders.
	* storage/exchange-hierarchy-foreign.c (scan_subtree) : Pass the online
	and offline status of the component.
	* storage/exchange-hierarchy-somedav.c (scan_subtree) : Similar
	* storage/exchange-hierarchy-webdav.c (create_folder)(remove_folder)
	(xfer_folder)(rescan) : Dont contact server if offline.
	(scan_subtree) : Scan the offline tree stored on disk when offline
	(add_folders) : A helper callback method for offline scanning
	* storage/exchange-hierarchy.c (scan_subtree)
	(exchange_hierarchy_scan_subtree) : Pass on the offline state
	* storage/exchange-hierarchy.h : Similar
	* storage/exchange-storage.c (account_to_storage_result)
	(idle_open_folder) : Set the errors for describing offline mode.

2005-02-04  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-gal.c :
	* lib/e2k-types.h :
	* shell/e-folder-creation-dialog.c :
	* shell/e-folder-dnd-bridge.c :
	* shell/e-folder-misc-dialogs.c :
	* shell/e-folder-selection-dialog.c :
	* shell/e-storage.c :
	Should now be using gi18n.h/gi18n-lib.h

2005-02-04  Kostas Papadimas <pkst@gnome.org>

	* configure.in (ALL_LINGUAS): Added 'el' (Greek).

2005-02-02  JP Rosevear  <jpr@novell.com>

	* storage/main.c (main): bind to the GETTEXT_PACKAGE domain, not
	PACKAGE

2005-02-02  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (discard_alarm):
	Fixed a leak
	* calendar/e-cal-backend-exchange.c : Removed a typo.
	* camel/camel-exchange-store.c (make_folder_info): Mark the inbox
	flag which is newly added in camel.
	* camel/camel-stub-constants.h : Declare the new camel flags.
	* mail/mail-stub-exchange.c (get_folder_info): Set the flag for
	inbox folder

2005-02-01  Rodrigo Moya <rodrigo@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (create_object,
	modify_object_with_href, remove_object): removed usage of
	removed categories API.

2005-01-29  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-webdav.c (hierarchy_new_folder):
	Check for duplicate entried being added into the hashtable.
	Fixes #68330

2005-01-28  Žygimantas Beručka  <uid0@akl.lt>

	* configure.in (ALL_LINGUAS): Added 'lt' (Lithuanian).

2005-01-27  Sushma Rai  <rsushma@novell.com>

	* exchange-config-listener.[ch] (add_esource)(remove_esource): 
	Changed the arguments for the function. Now reading folder type,
	instead of is_contact_folder flag. 
	Defined Gconf Key values in the header file so that it need not be
	defined by every function calling add/remove esource functions.
	Selecting calendar and tasks automatically, when the account or folder
	is created and unsetting when account or folder is removed.
	(add_sources)(remove_sources): Sending folder type to add_esource()/
	remove_esource() functions. Fixes #71432
	
	* storage/e-folder-exchange.c (e_folder_exchange_new)
	(e_folder_exchange_delete): Similar.

	* storage/exchange-hierarchy-gal.c (exchange_hierarchy_gal_new): Similar
	
	* storage/exchange-hierarchy-foreign.c (remove_folder)
	(exchange_hierarchy_foreign_add_folder): Similar.

	* storage/exchange-hierarchy-favorites.c (remove_folder): Similar.

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Similar.

2005-01-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (exchange_account_connect): Properly
	set use_ntlm when reconnecting to server. This now tries either
	Basic or Plaintext authentication if one of them fails. Patch submitted
	by Soren Hansen and fixes #70730

2005-01-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.4
	* NEWS : Updated
	* addressbook/e-book-backend-exchange.c : fixed some warnings
	* Updated the po files

2005-01-24  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Added CAMEL_URL_ALLOW_AUTH to
	provider structure.

2005-01-24  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-folder.c (transfer_messages_to):
	We should now call journal_transfer instead of journal_append
	* camel/camel-exchange-journal.c : Handle transfer of messages
	and also updating the flags.

2005-01-24  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c: Added offline support
	for personal addressbook. 

2005-01-23  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Changed owa_url variable type.

	* lib/e2k-autoconfig.c: similar.

	* lib/e2k-validate.h: similar.

2005-01-22  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_new): Added owa_url
	parameter to ExchangeAccount structure and reading it's value.
	(finalize): free for owa_url

	* lib/urltest.c: Added new. Test program which takes url as input
	and prints E2kUri structure parameters.

	* lib/Makefile.am: Handling urltest.c

2005-01-20  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* calendar/e-cal-backend-exchange-calendar.c : Add a check to not fetch
	data from server in offline mode.
	* calendar/e-cal-backend-exchange.c : Modify the error message string.
	* storage/e-folder-exchange.c : This is a hack right now. A better fix
	needs to be done down the line.
	* storage/exchange-offline-listener.c : Minor argument checks.

2005-01-19  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Added one more parameter to
	user validation function, for reading remember password flag value.

	* lib/e2k-validate.h: Similar.

	* lib/e2k-autoconfig.c (e2k_validate_user): Forming the password hash
	key once we read the hostname. And remembering the password if the 
	user is a valid user, so that account setup will not prompt for
	password second time at the end.

	* storage/exchange-account.c (get_password): If the password is 
	remembered, and user has not sleceted remember password option,
	forgetting the password remembered.
	 
2005-01-18  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-autoconfig.c (validate): Handling error coders, and
	displaying warning messages when user is not authenticated
	to the server. Fixes #71389
	(e2k_validate_user): In case of wrong credentials forgetting the
	password so that, password dialog pops up when user presses
	OK button without changing any input values. 

2005-01-18  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* calendar/e-cal-backend-exchange-calendar.c : Ordered the code to now
	build the proper mime message for attachments to be sent to the server.
	* calendar/e-cal-backend-exchange-tasks.c : Fixed some warnings	
	* calendar/e-cal-backend-exchange.c : Re-ordered some code and fixed
	some warnings.

2005-01-17  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Moved password expiry warning 
	period and offline sync options under one section.

2005-01-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c : Fixed the add_ical and
	get_changed_events functions to now geenrically fetch the attachments
	created either from Outlook or OWA.

2005-01-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (modify_object_with_href):
	Fixed a memory leak causing a crash on modifying an appointment.

2005-01-15  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Enabled offline sync
	check box for Exchange provider in exchange_conf_entries[].

	* calendar/e-cal-backend-exchange.c (open_calendar):
	Handling offline_sync esource property.

	* storage/exchange-account.c: (exchange_account_new): Reading 
	and storing offline sync. and password expiry warning period value set.
	(finalize): Freeing offline sync variable.
	(find_passwd_exp_period): Using the password expiry warning period
	value set instead of default value.

2005-01-12  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-provider.c: Added private function
	to validate user credentials.

2005-01-10  Not Zed  <NotZed@Ximian.com>

	* mail/mail-stub.c (mail_stub_read_args): long/int ->uint32.
	(mail_stub_return_data): "

	* camel/camel-stub.c (stub_send_internal): uint32 should be a
	uint32, not a long.
	(stub_send_internal): same for uint32array and int

2005-01-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-journal.c : Added a new file for handling
	offline journaling. Implemented the class members.
	* camel/camel-exchange-journal.h : Similar
	* camel/camel-exchange-folder.c (append_message): Handle offline
	message appending
	(transfer_messages_to): Handle offline copying/moving of messages
	(camel_exchange_folder_construct): Create the journal entry file.
	* camel/camel-exchange-folder.h : Include journal object.
	* camel/Makefile.am : Included camel-exchange-journal.[ch]

2005-01-10  Jeffrey Stedfast  <fejj@novell.com>

	* camel/camel-exchange-folder.c (exchange_sync): Implemented.
	(exchange_sync_online): Removed.
	(exchange_expunge_uids_online): Removed.
	(exchange_cache_message): Removed.

	* camel/camel-exchange-store.c (exchange_connect_online): Removed.
	(exchange_connect_offline): Removed.
	(exchange_disconnect_online): Removed.
	(exchange_disconnect_offline): Removed.
	(exchange_get_folder_online): Removed.
	(exchange_get_folder_info_online): Removed.
	(exchange_get_folder): Handle offline folder getting.
	(exchange_get_folder_online): Removed.

2005-01-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.3
	* NEWS : Updated
	* addressbook/e-book-backend-gal.c :
	* calendar/e-cal-backend-exchange-calendar.c : 
	* calendar/e-cal-backend-exchange.h :
	* camel/Makefile.am :
	* lib/Makefile.am : Added e2k-validate.h
	* storage/exchange-folder-size.c : 
	* storage/main.c : Fixed warnings in all these files.
	Updated the po files as well.

2005-01-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c : Enable send options.

2005-01-10  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* calendar/e-cal-backend-exchange.c : Fixed a warning
	* calendar/e-cal-backend-exchange-calendar.c (add_ical): Sets the
	icalattach property
	(get_attachment) : Fetched the attachment from the server.
	(get_changed_events): Calls get_attachment is object has attachment
	(build_attachment): Builds the attachment mime part
	(create_object): This now adds the attachment

2005-01-10  Hans Petter Jansson  <hpj@novell.com>

	* addressbook/e-book-backend-gal.c (gal_connect): Store the account for
	future reference.
	(ldap_op_finished): Add robustness check.
	(get_contact_handler): Ditto.
	(get_contact): Implement offline case.
	(contact_list_handler): Add robustness check.
	(get_contact_list): Implement offline case.
	(poll_ldap): Set poll_timeout to -1 if we disconnect the poll.
	(ldap_search_handler): Add robustness check.
	(start_book_view): Implement offline case.
	(generate_cache_handler): Implement.
	(generate_cache_dtor): Implement.
	(generate_cache): Implement.
	(ldap_cancel_op): Add robustness check.
	(set_mode): Implement online/offline switching.
	(get_required_fields): Silence a warning.
	(load_source): Implement offline case. Initialize cache.
	(dispose): Free cache.

2005-01-08  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-tasks.c : Return error messages
	for operations not supported in offline.
	* calendar/e-cal-backend-exchange.c : Similar

2005-01-07  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-folder.c : Now implements the CamelFolderDisco
	class methods. Needed for making folders available when offline.
	* camel/camel-exchange-folder.h : Similar
	* camel/camel-exchange-store.c : CamelExchangeStore is now derived
	from CamelDiscoStoreClass. Implemented the virtual functions for this.
	* camel/camel-exchange-store.h : Similar

2005-01-07  Sarfraaz Ahmed <asarfraaz@novell.com>

	Patch submitted by JP Rosevear for SelectNames fix.
	* configure.in : Now check for libedataserverui as well.
	* lib/Makefile.am : Removed the IDL files.
	* shell/Makefile.am : Similar
	* lib/e2k-user-dialog.c : Replaced the CORBA methods with the 
	e-name-selector methods.
	* shell/e-folder-misc-dialogs.c : Similar

2005-01-05  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c : Enabled offline support
	* addressbook/e-book-backend-gal.c : Similar
	* calendar/e-cal-backend-exchange-tasks.c : Similar
	* storage/exchange-account.c : Similar
	* storage/exchange-component.c : Similar
	* storage/exchange-component.h : Similar
	* storage/exchange-offline-listener.c : Similar
	* storage/main.c : Similar
	* calendar/e-cal-backend-exchange-calendar.c : Similar. Also fixed 
	some memory leaks
	* calendar/e-cal-backend-exchange.c : Offline and memory leak fixes.

2004-12-21  Sarfraaz Ahned <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c: Added offline error handling
	changes.
	* addressbook/e-book-backend-gal.c : Similar
	* calendar/e-cal-backend-exchange.c (e_cal_backend_exchange_add_object):
	The cache now checks for duplicate detatched instances before adding
	them. This fixes #70414
	(discard_detached_instance): Small leak fixed.
	* storage/e-folder-exchange.c : Added error checks
	* storage/exchange-folder-size.c : Object freeing code added.

2004-12-21  JP Rosevear  <jpr@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c: update for
	remove/modify api changes

	* calendar/e-cal-backend-exchange-tasks.c: ditto

	* calendar/e-cal-backend-exchange.c: ditto	
	
2004-12-20  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.2
	* NEWS : Updated

2004-12-20  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Now checking for camel-provider

2004-12-16  Sushma Rai <rsushma@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c : Fixed some memory leaks. 
	* calendar/e-cal-backend-exchange.c: ditto
	* storage/exchange-hierarchy-foreign.c: ditto
	* storage/exchange-hierarchy-webdav.c: ditto

2004-12-15  Rodrigo Moya <rodrigo@novell.com>

	* addressbook/e-book-backend-exchange.c: use libedataserver's e-sexp.h.

	* calendar/e-cal-backend-exchange.c (receive_objects, book_resource):
	pass correct number of arguments to e_cal_backend_notify_object_removed.

	* storage/Makefile.am: removed exchange-offline-utils.[ch] from build.

2004-12-15  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c : Fixed some memory leaks.
	* calendar/e-cal-backend-exchange-tasks.c : Modified a structure member
	* calendar/e-cal-backend-exchange.h : Similar

2004-12-15  Sushma Rai <rsushma@novell.com>

	* configure.in: Corrected camel provider directory path.

2004-12-15  Sushma Rai <rsushma@novell.com>
	
	* calendar/e-cal-backend-exchange-calendar.c:
	Fixed several memory leaks.

2004-12-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	* lib/e2k-path.c : Moved this from evolution/e-util as this is no
	longer present there after camel moved to e-d-s.
	* lib/e2k-path.h : Similar
	* lib/Makefile.am : Included the above files
	* storage/exchange-offline-utils.c : Has the utility functions used
	by offline code.
	* storage/exchange-offline-utils.h : Similar
	* storage/Makefile.am : Added the above files
	*  camel/camel-exchange-store.c : Fixed to make use of e2k-path methods
	(exchange_path_to_physical : Added this new function from e-path.c
	* storage/exchange-hierarchy-webdav.c : Now includes e2k-path.h
	* storage/exchange-offline-listener.c : Marked for offline.
	* storage/e-folder-exchange.c : Now makes use of e2k-path.h 

2004-12-14  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_address)
	(e_book_backend_exchange_modify_contact)(notify_remove):
	Fixed some memory leaks.

	* addressbook/e-book-backend-gal.c (contact_list_handler)
	(start_book_view)(load_source): ditto

	* storage/exchange-migrate.c (make_dir)(form_dir_path)
	(get_contacts_dir_from_filename): ditto

2004-12-11  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Fix up camel version to now be 1.2
	* camel/Makefile.am : Include the GLIB_CFLAGS

2004-12-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (add_ical): Fixed some
	memory leaks
	* calendar/e-cal-backend-exchange.c : Some more here.

2004-12-09  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (open_calendar)
	(create_object)(send_objects) : Return appropriate error messages
	when in offline
	* calendar/e-cal-backend-exchange-tasks.c (open_task)
	(create_task_object) : Similar
	* calendar/e-cal-backend-exchange.c (get_cal_address) (get_mode)
	(set_mode) (e_cal_backend_exchange_get_cal_address) : Handle special
	cases when in offline.
	(open_calendar)(load_cache) : Modify to actually load only the cache
	when in offline
	(e_cal_backend_exchange_is_online) : Return the online/offline status
	of the calendar.
	* calendar/e-cal-backend-exchange.h : Added the prototype of
	e_cal_backend_exchange_is_online
	

2004-12-09  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (exchange_account_set_offline): Prepares 
	the account for offline caching in all the data necessary and sets it 
	to offline.
	(exchange_account_set_online): Sets the account to online mode and 
	tries to setup a connection with the server.
	(exchange_account_connect): This should now connect only if online.
	* storage/exchange-account.h : Added the function declarations.
	* storage/exchange-component.c (exchange_component_set_offline_listener):
	Sets a reference of the OfflineListener in the global ExchangeComponent 
	object.
	(exchange_component_get_account_for_uri) : This returns the defaul 
	account when in offline. This needs to be further fixed to handle 
	multiple accounts based on the uri passed.
	* storage/exchange-component.h : Similar
	* storage/exchange-offline-listener.c : Fixed some namespace issues.
	* storage/exchange-offline-listener.h : Similar
	* storage/main.c (main): This now instantiates an OfflineListener object
	instead of the previous procedural methods.

2004-12-09  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-offline-listener.c : Added this new file which now
	contains the offline-listener class implementation
	* storage/exchange-offline-listener.h : Similar
	* storage/Makefile.am : Included the above 2 files.

2004-12-09  Sushma Rai <rsushma@novell.com>

	* storage/main.c (main): Calling camel_init with the 
	camel_cert.db file path.  Fixes #66932

2004-12-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* mail/mail-stub-exchange.c (get_folder): Do not set the FILTER_JUNK
	flag for Trash folder. This fixes #66963

2004-11-30  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_set_mode) : This sets the mode to either 
	online/offline.

2004-11-30  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c (get_mode): Now returns the proper
	mode of the calendar [ online/offline ]
	(set_mode) : Sets the calendar mode to online/offline

2004-11-30  Sarfraaz Ahmed <asarfraaz@novell.com>

	* Updated the po files

2004-11-30  Sushma Rai <rsushma@novell.com>

	* storage/exchange-account.c (find_passwd_exp_period): Calling
	password expiry warning dialog.
	
	* storage/exchange-account.c (display_passwd_expiry_message)
	(change_passwd_cb): Added new, to display password expiry warning
	dialog, which can be used to invoke change password dialog.

	* storage/exchange-passwd-expiry.glade: Dialog for displaying 
	password expiry warning.

	* storage/Makefile.am: Added glade files exchange-folder-tree.glade
	and exchange-passwd-expiry.glade

	* lib/gctest.c (do_lookup): Finding password expiry period.

2004-11-30  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Removed the DEPRECATED symbols. This is for building
	against Gnome 2.9

2004-11-30  Sushma Rai <rsushma@novell.com>

	* storage/e-folder-exchange.c (e_folder_exchange_get_folder_size)
	(e_folder_exchange_save_to_file): Handling return value on error.

	* storage/exchange-folder-size.c (exchange_folder_size_display)
	Fixed a compile time warning.

2004-11-29  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_get_required_fields): Added new
	* addressbook/e-book-backend-gal.c
	(get_required_fields): Added new
	The above two methods were added for the required_field support by
	Sivaiah.

2004-11-27  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-webdav.c:
	(exchange_hierarchy_webdav_parse_folder): Calling
	exchange_folder_size_update() only if permanenturl is
	not NULL. Fixes the crash while bringing up
	exchange-storage.
	Also fixed couple of compile time warnings.

2004-11-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Bumped the version to 2.1.1
	* NEWS : Updated
	* storage/e-folder-exchange.c : Fixed some warnings.
	* storage/exchange-folder-size.c : Similar
	* storage/exchange-hierarchy-webdav.c : Similar
	* storage/main.c : Similar

2004-11-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/xc-commands.c (do_folder_size_menu) : Have a dummy place
	holder for the menu item for fodler sizes.

2004-11-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-webdav.c (init): Was not instantiating
	the FolderSize object properly. Fixed this now.

2004-11-24  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* storage/main.c (set_online_status)(online_status_changed)
	(setup_offline_listener) : Implemented
	(main) : Added code to invoke the offline listener. As of now this
	does not get compiled unless OFFLINE_SUPPORT is defined manually
	in the Makefile. Planning to remove this once the code is fully done.
	* storage/xc-commmands.c : Removed some unused variables.

2004-11-23  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-folder-size.c (exchange_folder_size_update):
	Fixed a crash. The private member was being used uninitialised.
	* storage/exchange-hierarchy-webdav.c : Similar
	* storage/exchange-hierarchy-webdav.h : Similar
	* docs/debug : Added some more examples.

2004-11-23  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/xc-commands.c (do_folder_size): Hook for showing the folder
	sizes. Missed this out in my previous commits.

2004-11-12  Not Zed  <NotZed@Ximian.com>

	** merged notzed-messageinfo-branch.

2004-11-10  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* po/POTFILES.in : Added storage/exchange-folder-size.c and
	storage/exchange-folder-tree.glade

2004-11-10  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-webdav.c (dispose): Added
	(class_init): Now instantiates the ExchangeFolderSize class
	(exchange_hierarchy_get_folder_size): Returns the foldersize object
	(exchange_hierarchy_webdav_parse_folder): Fetches and updates the 
	folder size
	* storage/exchange-hierarchy-webdav.h : Similar
	* storage/Makefile.am : Added the new files

2004-11-11  Not Zed  <NotZed@Ximian.com>

	* camel/camel-exchange-folder.c
	(camel_exchange_folder_add_message): make it work with message_id
	rather than references->references[0] again.

2004-11-10  Not Zed  <NotZed@Ximian.com>

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct):
	update for camel api changes, don't handle info set methods
	anymore, and handle the message_id -> references[0] change.

	* camel/camel-exchange-summary.c: updated for camel
	implemenentation changes, now emit folder changed events from
	here, and handle the tag and flags set methods, and set the folder
	on the summary.

2004-11-09  Sarfraaz Ahmed <asarfraaz@novell.com>

	* MAINTAINERS : Added a new file

2004-11-08  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-folder-size.c : Revamped the code to now be a class
	so other hierarchy classes can now instantiate this as an object and
	this class handles only the displaying of the folder tree
	* storage/exchange-folder-size.h : Similar

2004-11-04  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-folder-size.c : Added a new file. This handles the
	displaying of the folder sizes
	* storage/exchange-folder-size.h : Similar
	* storage/exchange-folder-tree.glade : The dialog for displaying the 
	folder tree and the folder sizes

2004-11-04  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-account.c (exchange_account_connect): Finding
	password expiry period. Removed unused variables.
	(find_passwd_exp_period): Finds the days left for password to expire
	and displys the warning. 

	* lib/e2k-global-catalog.[ch] (e2k_global_catalog_lookup)
	(get_account_control_values): Finding the value of the attribute 
	userAccountControl.
	(find_domain_dn): Forming the base DN for the LDAP search for maxPwdAge
	from domain name.
	(lookup_passwd_max_age): Finds the value of the attribute maxPwdAge.

	* lib/gctest.c (do_lookup): Looking up for userAccountControl and maxPwdAge
	attributes.

2004-11-03  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (exchange_account_connect)(exchange_account_new)
	: Check if the user has provided a domain as part of the username field and
	store it for connecting to the server using form-based-authentication
	(finalize) : Cleanup the private member.

2004-11-01  JP Rosevear  <jpr@novell.com>

	* storage/Makefile.am (DISTCLEANFILES): dist clean the server file

	* Makefile.am: add intltool-* to distclean files

2004-10-21  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-factory.c (_todos_new_backend) :
	Changed the object type from ECalBackendExchange to 
	ECalBackendExchangeTask
	(_events_new_backend) : Similarly changed to ECalBackendExchangeCalendar

2004-10-18  Sarfraaz Ahmed <asarfraaz@novell.com>

	* lib/Makefile.am: Reorder the LDAP_LIBS
	* storage/Makefile.am: Similar
	* docs/debug : Added an example for gctest

2004-10-18  Sushma Rai  <rsushma@novell.com>

	* configure.in: version 2.1.0

2004-10-14  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* camel/camel-exchange-provider.c: (camel_provider_module_init):
	Initialize codeset here too.

2004-10-13  Sarfraaz Ahmed <asarfraaz@novell.com>

	* lib/e2k-propnames.h.in : Added a new mapi proptag for folder size.
	* storage/e-folder-exchange.c (e_folder_exchange_get_folder_size)
	(e_folder_exchange_set_folder_size): Implemented
	(e_folder_exchange_save_to_file) (e_folder_exchange_new_from_file):
	Now take care of the folder size as well
	* storage/e-folder-exchange.h: Similar
	* storage/exchange-account.c (exchange_account_connect): Check
	for quota information.
	* storage/exchange-hierarchy-webdav.c (hierarchy_new_folder) (add_href)
	: Add check for some warnings.
	(exchange_hierarchy_webdav_parse_folder): Set the folder size for the
	folder
	* storage/xc-commands.c (do_folder_size): Implementated
	* storage/ximian-connector.xml: Added the verb for folder size

2004-10-12  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/main.c: (main):
	* storage/ximian-connector-setup.c: (main):
	Initialize codeset for textdomain. Patch by Frederic Crozat.

2004-10-08  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (book_resource): Make
	connector actually create the meeting for the resource without
	sending a mail.
	(send_objects): Send the proper users list back to the client.
	(modify_object_with_href): This now enables to send a meeting for
	a specific href. This fixes #67510

2004-10-08  Sushma Rai  <rsushma@novell.com>
	
	* camel/camel-exchange-folder.c: Include camel-i18n.h

	* camel/camel-exchange-store.c: ditto

	* camel/camel-exchange-transport.c: ditto

	* camel/camel-stub.c: ditto

2004-10-05  Sushma Rai  <rsushma@novell.com>

	* storage/main.c (setup_addressbook_factory): Registering
	GAL backend.

	* addressbook/e-book-backend-gal-factory.h: Added missed out semicolon.

	* addressbook/Makefile.am: Added missed out slash, compiles gal
	factory files.
 
	* addressbook/e-book-backend-exchange-factory.c
	(e_book_backend_exchange_factory_get_type): Indented properly.
 
	* addressbook/e-book-backend-gal-factory.c : Added Copyright info
	(e_book_backend_gal_factory_get_type): Making the type static.
	
	* calendar/e-cal-backend-exchange-factory.c
	(events_backend_exchange_factory_get_type)
	(todos_backend_exchange_factory_get_type): Likewise

2004-10-05  Sushma Rai  <rsushma@novell.com>

	* storage/main.c (setup_calendar_factory)(setup_addressbook_factory):
	Changed registering the factory.

	* addressbook/Makefile.am: add e-book-backend-exchange-factory.[ch]
	and e-book-backend-gal-factory.[ch]

	* calendar/Makefile.am: add e-cal-backend-exchange-factory.[ch]

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in:
	Changed BookFactory and CalFactory version to 1.2

2004-10-05  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-exchange-factory.[ch]: New files.
	EBookBackendFactory for exchange addressbook backend.

	* addressbook/e-book-backend-gal-factory.[ch]: New files.
	EBookBackendFactory for exchange gal backend.

	* calendar/e-cal-backend-exchange-factory.[ch]: New files.
	ECalBackendFactory for exchange calendar backend.

2004-10-03  Alexander Shopov  <ash@contact.bg>

	* configure.in (ALL_LINGUAS): Added "bg" (Bulgarian)

2004-10-01  Sushma Rai <rsushma@novell.com>

	* storage/main.c (setup_calendar_factory)(setup_addressbook_factory):
	Removed factory_register_methods for registering exchange
	and gal backends, and added e_data_cal_factory_register_backends()
	and e_data_book_factory_register_backends() so that 
	the compilation goes through. 

2004-10-01  Sushma Rai <rsushma@novell.com>

	* configure.in : Changed the libedata-book version to 1.2
 
2004-10-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* camel/camel-exchange-provider.c: Include camel-i18n.h now

2004-10-01  Sarfraaz Ahmed <asarfraaz@novell.com>

	* configure.in : Updated changes to now build with the head
	of evolution. Changed 2.0 to 2.2 versions.

2004-09-30  Dan Winship  <danw@novell.com>

	* mail/mail-stub-exchange.c (send_message): Remove code that was
	setting the message to use HTTP 1.0, which isn't needed with
	libsoup 2.2, and which was probably causing 65685.

2004-09-24  Christophe Merlet  <redfox@redfoxcenter.org>

	* configure.in: Added 'fr' (French) to ALL_LINGUAS

2004-09-23  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-user-dialog.c (addressbook_clicked_cb): Setting
	the window non-modal, so that the user selection dialog
	gets the focus. Fixes #65047

2004-09-22  Craig Jeffares <cjeffares@novell.com>

	* configure.in: Added 'it, zh_CN & zh_TW' to ALL_LINGUAS

2004-09-20  Sushma Rai  <rsushma@novell.com>

	* storage/xc-commands.c (xc_commands_context_menu): 
	Initialized disable_mask and hide_mask, to kill compile
	time warnings.	
	
2004-09-14  Dan Winship  <danw@novell.com>

	* camel/*.c, mail/*.c, addressbook/*.c: documentate

	* camel/camel-stub-constants.h (CamelStubFolderFlags): make this
	an enum rather than #defines, for gtk-doc goodness

	* camel/camel-stub.h (CamelStub): Remove a bunch of unused fields
	(CamelStubNewMessage, CamelStubRemovedMessage,
	CamelStubChangedMessage): Remove unused struct types

2004-09-14  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-favorites.c 
	(exchange_hierarchy_favorites_add_folder): Checking for 
	permanent_uri being NULL. Fixes #65850

2004-09-11  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_changed):
	Removing the just the e-sources if the user changes the 
	account name, and not forgetting the password and 
	displaying account removal warning message.
	Fixes #64188

2004-09-11  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-gal.c (build_query):
	Added check to not to return all contacts, when user 
	tries to get the mail ID from GAL,  while composing mail,
	by perfoming empty query in "Select Contacts form Addressbook"
	dialog. Fixes #41647 
	
2004-09-11  Baris Cicek <baris@teamforce.name.tr>

	* configure.in: Added 'tr' to ALL_LINGUAS

2004-09-06  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_remove): Moved unused variables
	to kill warnings. 

2004-09-06  Sushma Rai  <rsushma@novell.com>

	* storage/xc-commands.c: Disabled menu options for 
	move and copy folders.  See #62440

2004-09-02  Dan Winship  <danw@novell.com>

	* lib/*: Various updates to doc comments, with a few changes to
	data structures as well, to appease gtk-doc.

2004-08-30  Dan Winship  <danw@novell.com>

	* configure.in: 1.5.94.1: brown paper bag release to sync with
	evolution 1.5.94.1

2004-08-29  Hasbullah Bin Pit <sebol@my-penguin.org>

	* configure.in: Added "ms" to ALL_LINGUAS.

2004-08-27  Dan Winship  <danw@novell.com>

	* configure.in: version 1.5.94

	* NEWS: Update

2004-08-27  Dan Winship  <danw@novell.com>

	* lib/e2k-context.c (e2k_soup_message_new,
	e2k_soup_message_new_full, e2k_context_queue_message,
	e2k_context_send_message): Remove anachronisms from the docs
	(e2k_context_put_new): s/POST/PUT/ in docs.
	(e2k_context_bproppatch_start): define BPROPPATCH
	
2004-08-27  Dan Winship  <danw@novell.com>

	* lib/e2k-global-catalog.c (e2k_global_catalog_reconnect): Hm,
	remove this. It's not The Right Thing any more.

	* addressbook/e-book-backend-gal.c (gal_reconnect): Use
	e2k_global_catalog_get_ldap instead of
	e2k_global_catalog_reconnect. #63546
	(get_contact, get_contact_list, start_book_view): Use
	bl->priv->ldap rather than caching it in a local variable since it
	may change after a call to gal_reconnect.

2004-08-27  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (hierarchy_removed_folder): Typo error fix

2004-08-27  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (hierarchy_new_folder): Avoid duplications
	in the folders hashtable. The internal uri for favorites and public
	folders are same and should not be overwritten. Also emit the signal
	only if the hashtable was updated. This fixes #64235.
	(hierarchy_removed_folder): Do not remove the internal_uri entry for
	favourite folders, since this is shared by the public folder as well.

2004-08-27  Dan Winship  <danw@novell.com>

	* addressbook/e-book-backend-gal.c: More un-debug-spewing

2004-08-26  Dan Winship  <danw@novell.com>

	* addressbook/e-book-backend-exchange.c (d): Turn off debug macro

	* addressbook/e-book-backend-gal.c (d): Likewise

2004-08-25  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (send_objects): Modified 
	the code to now send the proper attendee list. Also, removed some 
	unwanted code.

2004-08-25  Changwoo Ryu  <cwryu@debian.org>

	* configure.in: Added "ko" to ALL_LINGUAS.

2004-08-24  Rodney Dawes  <dobey@novell.com>

	* configure.in: Fix GETTEXT_PACKAGE to include -${BASE_VERSION} again
	Was accidentally removed on 2004-06-01 with "no" addition
	
2004-08-23  Danilo Šegan  <dsegan@gmx.net>

	* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2004-08-23  Jayaradha  <njaya@redhat.com>

	* configure.on: Added 'ta' Tamil to ALL_LINGUAS

2004-08-23  Sushma Rai  <rsushma@novell.com>

	* shell/e-storage-set-view.c (init): Disabling dnd.
	See #62442

2004-08-23  Takeshi AIHANA <aihana@gnome.gr.jp>

	* configure.in: Added 'ja' (Japanese) to ALL_LINGUAS.

2004-08-21  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Add «nb» to ALL_LINGUAS.

2004-08-20  Dan Winship  <danw@novell.com>

	* addressbook/e-book-backend-gal.c: Pull up various fixes from
	e-book-backend-ldap.c

2004-08-19  Dan Winship  <danw@novell.com>

	* lib/e2k-autoconfig.c (e2k_autoconfig_get_context): Make the "is
	this really an Exchange server" checks more lenient; the current
	code fails against E2k SP2 (which people shouldn't be running any
	more, but...)
	(e2k_autoconfig_check_exchange): Try the "append /exchange if the
	path was empty" trick for E2K_AUTOCONFIG_FAILED too.

2004-08-18  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* configure.in: Added uk to ALL_LINGUAS

2004-08-19  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange.c 
	(e_cal_backend_exchange_add_timezone): This was returning an invalid
	type. This fixes #61053
	* calendar/e-cal-backend-exchange.h : Similar

2004-08-19  Sushma Rai  <rsushma@novell.com>

	* camel/camel-exchange-folder.c (transfer_messages_to): 
	Not calling cache_xfer if destination uids not found.
	Fixes #63315

2004-08-18  Ilkka Tuohela  <hile@iki.fi>

	* configure.in: Added fi to ALL_LINGUAS

2004-08-16  Dan Winship  <danw@novell.com>

	* storage/exchange-hierarchy-somedav.c (scan_subtree): Bail out if
	the subclass returns 0 urls, rather than spewing g_warnings

2004-08-15  Artur Flinta  <aflinta@cvs.gnome.org>

	* configure.in: Added pl to ALL_LINGUAS.

2004-08-13  Dan Winship  <danw@novell.com>

	* configure.in: Bump version to 1.5.93

2004-08-13  Rodney Dawes  <dobey@novell.com>

	* acinclude.m4: Revert previous EVO_LDAP_CHECK changes, aren't working
	as well as expceted and determined in testing

2004-08-13  Rodney Dawes  <dobey@novell.com>

	* acinclude.m4: Remove EVO_CHECK_LIB
	Update EVO_LDAP_CHECK to support --with-openldap-{libs,includes}
	Sync with e-d-s acinclude.m4 (Adds GTK_DOC_CHECK)

2004-08-13  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* configure.in:
	Add another krb5 headers options, fix small errors
	in previous commit.

2004-08-13  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-delegates.c (exchange_delegates): Checking for NULL
	account. The tree view was returning a NULL account. This fixes #62248
	* calendar/e-cal-backend-exchange-calendar.c (update_x_properties):
	Fixed a build break.

2004-08-13  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-autoconfig-wizard.c: (autoconfig_gui_apply)
	Not allowing the user to create new account if already one
	account exists. 
	(is_active_exchange_account): Checks if account exists and active.
	Fixes #61330

2004-08-12  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* configure.in:
	Add option to specify location of kerberos 5 libraries.
	Needed for 64bits support.

2003-08-12  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c: (update_x_properties)
	Modified the logic to now use separate flags. This fixes #62852

2003-08-12  Sushma Rai  <rsushma@novell.com>
	
	* storage/exchange-account.c (get_password): Incoporated
	e_passwords_ask_password() API change.

2004-08-12  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (remove_object): Remove
	recurrences only if rid is not NULL. This fixes the crash in #62631

2004-08-12  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (discard_alarm):
	Moved this from e-cal-backend-exchange.c, since this should be in the
	calendar derived class and not in the abstract class. This fixes #45103
	* calendar/e-cal-backend-exchange.c (discard_alarm): Now just returns
	an error
	(remove_calendar): Removed some warnings.
 
2004-08-12  Sushma Rai  <rsushma@novell.com>

	* lib/e2k-context.c (write_prop): Checking for value of property
	being NULL. This fixes the crash #62259, But Internet Newsgroup 
	folder disappears from favorite folders list on restart, which 
	needs to be fixed.

2004-08-11  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (account_changed):
	Removing the source groups with old account name, when account
	name is changed.  Fixes #61332

2004-08-09  Ankit Patel <ankit@redhat.com>

	* configure.in: Added Gujarati & Panjabi

2004-08-07  Runa Bhattacharjee <runab@redhat.com>

	* configure.in: Added Bengali (bn) Locale

2004-08-07  Sushma Rai  <rsushma@novell.com>

	* mail/mail-stub-exchange.c (get_folder_info): Handling 
	favorite folder and foreign folder hierarchies, to display
	users favorite public mail folders and subscribed mail folders.	
	(account_new_folder): ditto
	(account_removed_folder): ditto 

2004-08-05  Dan Winship  <danw@novell.com>

	* lib/e2k-context.c (e2k_context_transfer_start): Make this split
	the source_hrefs into groups of E2K_CONTEXT_MAX_BATCH_SIZE so that
	we don't freak out the server when moving large numbers of
	messages. (Eg, deleting everything in my Spam folder.)

2004-08-05  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_remove): Returning error, instead of 
	disabling delete option in contacts view. 
	
	* calendar/e-cal-backend-exchange.c (remove_calendar): ditto
	Temporary fix for #57129.

2004-08-05  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* calendar/e-cal-backend-exchange.c (discard_alarm): Implemented
	Fixes #45103

2004-08-04  Dan Winship  <danw@novell.com>

	* README: remove "this is SOOOO beta" message since we've been
	shipping snaps for quite a while now

2004-08-04  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (book_resource): 
	Implemented the code to book the calendar of a resource object.
	(send_objects): Added code to send mails to all attendees.

2004-08-03  Sushma Rai <rsushma@novell.com>

	* storage/exchange-hierarchy-foreign.c (remove_folder): Emitting the 
	"removed_folder" signal after ESource cleanup. Fixes a crash while
	unsubscribing other user's folder.

2004-08-03  Nicel KM  <mnicel@novell.com>

	* configure.in: 1.5.92

	* NEWS: update

2004-08-02  Adam Weinberger  <adamw@FreeBSD.org>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-08-02  Sushma Rai <rsushma@novell.com>

	* storage/exchange-hierarchy-somedav.[ch] 
	(exchange_hierarchy_somedav_add_folder): Removed the third
	parameter folder_out, which was always set to NULL and 
	hence this function was throwing the error "generic error".
	* storage/exchange-hierarchy-favorites.c 
	(exchange_hierarchy_favorites_add_folder): Likewise
	Fixes #62257

2004-07-30  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* storage/exchange-hierarchy-foreign.c 
	(exchange_hierarchy_foreign_add_folder): Remove unused variables.

2004-07-30  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-foreign.c (add_href): Allocate memory
	for uri before storing it in the hrefs array. Fixes #61950
	(exchange_hierarchy_foreign_add_folder): Now uses a cleaner way to
	get the foreign user's name.
	(hierarchy_foreign_new): Removed unwanted checks for input args.
	(exchange_hierarchy_foreign_new): Add checks for input args.
	(exchange_hierarchy_foreign_new_from_dir): Similar
	* storage/exchange-hierarchy-gal.c (exchange_hierarchy_gal_new):
	Add checks for input args.
	* storage/exchange-hierarchy-somedav.c (scan_subtree): Cleaned up
	code to use a local variable in the while loop.
	(exchange_hierarchy_somedav_add_folder): Input args checks
	* storage/exchange-hierarchy-webdav.c 
	(exchange_hierarchy_webdav_offline_scan_subtree)
	(exchange_hierarchy_webdav_construct)(exchange_hierarchy_webdav_new):
	Input args checks.
	* storage/exchange-hierarchy.c (exchange_hierarchy_new_folder): Similar
	(exchange_hierarchy_removed_folder)(exchange_hierarchy_create_folder)
	(exchange_hierarchy_remove_folder)(exchange_hierarchy_xfer_folder)
	(exchange_hierarchy_construct): Similar

2004-07-27  Dan Winship  <danw@novell.com>

	* mail/mail-stub-exchange.c (account_new_folder): if the new
	folder is the "ignore_new_folder" folder, ignore it.
	(account_removed_folder): if the removed folder is the
	"ignore_removed_folder" folder, ignore it.
	(create_folder): Don't return a FOLDER_CREATED response; the
	signal handler attached to the ExchangeAccount will do that.
	(delete_folder): Likewise for FOLDER_DELETED.
	(rename_folder): Don't return FOLDER_RENAMED (since
	camel_store_rename_folder does it automatically), and set
	ignore_new_folder and ignore_removed_folder so we don't emit
	deleted/created signals too. #58802

2004-07-26  Dan Winship  <danw@novell.com>

	* calendar/e-cal-backend-exchange.c (d): Turn off debug macro
	* calendar/e-cal-backend-exchange-calendar.c (d): Likewise
	* calendar/e-cal-backend-exchange-tasks.c (d): Likewise

2004-07-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-hierarchy-foreign.c 
	(exchange_hierarchy_foreign_add_folder)(remove_folder): Added code to
	create and remove esources for the other user's subscribed folders.
	This fixes #60964

2004-07-24  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* configure.in: Added "es" to ALL_LINGUAS

2004-07-23  Dan Winship  <danw@novell.com>

	* camel/camel-exchange-folder.c (init): Fix
	folder->permanent_flags definition
	(camel_exchange_folder_update_message_flags): Fix the list of
	flags to not unset because they aren't set on the server to
	include "JUNK" (since it's never set on the server).
	(camel_exchange_folder_construct): Don't pass the non-server flags
	to the server, or it will think they've changed and waste time
	telling us so.

2004-07-23  Åsmund Skjæveland  <aasmunds@fys.uio.no>

	* configure.in: Added "nn" to ALL_LINGUAS.
	* po/nn.po: Started Norwegian Nynorsk translation.

2004-07-22  Dan Winship  <danw@novell.com>

	* storage/ximian-connector.xml: Remove the quota command, since it
	wasn't implemented.

2004-07-19  Dan Winship  <danw@novell.com>

	* configure.in: 1.5.91

	* NEWS: Update

2004-07-16  Dan Winship  <danw@novell.com>

	* lib/e2k-kerberos.c (krb5_result_to_e2k_kerberos_result):
	"KRB5KDC_ERR_KEY_EXPIRED" is apparently a heimdal-only-ism. Use
	"KRB5KDC_ERR_KEY_EXP" instead.
	(e2k_kerberos_change_password): Likewise, use
	krb5_free_data_contents instead of krb5_data_free.

2004-07-15  Dan Winship  <danw@novell.com>

	* lib/e2k-kerberos.c: Lots of changes: properly namespace the
	functions (now "e2k_kerberos_check_password" and
	"e2k_kerberos_change_password"), remove the code that dealt with
	the local krb5.conf file (libkrb5 can autodetect the servers given
	the realm name), return status code enums rather than arbitrary
	krb5 error codes, and plug a few memory leaks.

	* lib/e2k-global-catalog.c (ntlm_bind): Fill in gc->domain with
	the name of the Windows 2000 domain.

	* lib/test-utils.c (test_ask_password): Split this (the
	password-asking routine) out of test_get_password so it can be
	used by cptest

	* lib/cptest.c: Update for e2k-kerberos changes, don't hard-code
	domain, and ask for the new password rather than taking it on the
	command line.

	* storage/exchange-account.c: Keep a copy of the e-passwords key
	around, rather than recomputing it in 5 different places.
	(is_password_expired): Update for e2k-kerberos changes
	(exchange_account_set_password): Update for e2k-kerberos changes.
	Pop up an error dialog if changing the password fails.
	(exchange_account_connect): When handling a forced password
	change, let the user "Cancel" if he wants.

	* storage/exchange-change-password.glade: HIGify a bit

	* storage/exchange-change-password.c (exchange_get_new_password):
	Clarify this by doing all the handling here rather than in signal
	handlers on the buttons.

	* storage/xc-commands.c (do_change_password): Plug leaks

2004-07-14  Dan Winship  <danw@novell.com>

	* lib/e2k-xml-utils.c (e2k_parse_html): Fix the #ifdef for old
	libxmls to avoid both new calls, not just one of them.

2004-07-09  Dan Winship  <danw@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (set_freebusy_info):
	Set the start/end of the spans correctly so the freebusy component
	doesn't end up effectively empty
	(get_free_busy): Fix the email address in the ORGANIZER props.
	#61045

2004-07-07  Alfred Peng <alfred.peng@sun.com>

	Fix for bugzilla BUG #59196.

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in:
	Replace "Unknown" with "Exchange" in View->Window submenu.

2004-07-05  Nicel KM  <mnicel@novell.com>

	* configure.in : Bump version to 1.5.90

	* po/*.po: latest .po files

2004-07-03  Nicel KM  <mnicel@novell.com>

	* storage/exchange-account.c (get_password): In case of remembering
	password, no need to save the complete account_list. Fixes an 
	evolution crash that happens on adding the exchange account with 
	remember password option checked. 

2004-07-03  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (modify_object):
	Killed some type mismatch warnings.

2004-06-29  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Finding the
	folder type before removing the folder and also removing e-sources
	during rename/move only in case of success.
	Fixes #60685

2004-06-28  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (remove_object):
	Handle deletions of individual occurences of a recurring event.
	In case of deleting single occurance, remove the instance from 
	the component and modify_object.

2004-06-23  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (create_object):
	Update the categories list with the ref for the new component.
	Removed some commented code.
	(modify_object): remove the old and add new category in the category 
	list
	(remove_object): remove ref for component from the category list


2004-06-22  Dan Winship  <danw@novell.com>

	* lib/e2k-uri.c (e2k_uri_append_encoded, e2k_uri_encode): add a
	"wss_encode" flag, saying whether or not to use the Web Storage
	System URI-encoding rules ("/" becomes "_xF8FF_", etc), since some
	places don't want them.

	* lib/e2k-context.c (e2k_context_fba): Don't put multiple &s
	between flags, and use "normal" URI encoding rules without the
	extra goofy WSS rules. Fixes FBA to E2k3 SP1.
	(e2k_context_put_new, e2k_context_proppatch_new): Set wss_encode
	flag to e2k_uri_encode

	* lib/e2k-global-catalog.c (e2k_global_catalog_lookup): Translate
	LDAP_INVALID_CREDENTIALS to E2K_GLOBAL_CATALOG_AUTH_FAILED.

	* lib/e2k-autoconfig.c (reset_owa_derived): Only reset the NT
	domain if it was autodetected
	(e2k_autoconfig_set_username): If setting the NT domain, note that
	it wasn't autodetected.
	(get_ctx_auth_handler): If the NT domain isn't set, set it, and
	note that it *was* autodetected. #60548
	(e2k_autoconfig_check_global_catalog): If using plaintext LDAP
	auth, handle an E2K_GLOBAL_CATALOG_AUTH_FAILED by returning
	E2K_AUTOCONFIG_AUTH_ERROR_TRY_DOMAIN.
	(set_account_uri_string): Update for e2k_uri_append_encoded
	changes

	* lib/actest.c (test_main): handle
	E2K_AUTOCONFIG_AUTH_ERROR_TRY_DOMAIN from
	e2k_autoconfig_check_global_catalog().

	* lib/e2k-freebusy.c (fb_uri_for_dn): Set wss_encode flag to
	e2k_uri_append_encoded

	* lib/gctest.c (do_lookup): add a message for
	E2K_GLOBAL_CATALOG_AUTH_FAILED.

	* storage/exchange-autoconfig-wizard.c (gc_page_next): Likewise

	* storage/exchange-account.c (exchange_account_new): Update for
	e2k_uri_encode change

	* storage/exchange-oof.c (exchange_oof_set): Likewise

2004-06-22  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Removing 
	ESources in both successful and failure cases of renaming 
	folder.
	Fix for #60531
 
2004-06-22  Sarfraaz Ahmed <asarfraaz@novell.com>

	Fix for #60327
	* calendar/e-cal-backend-exchange.c
	(e_cal_backend_exchange_extract_components): Added new. This creates 
	a list of objects [VEVENTS/VTODO] from a calendar object.
	(receive_objects): Removed. This is now done separately in calendar
	and tasks code.
	(e_cal_backend_exchange_receive_objects): Removed. This is not being
	used anywhere
	* calendar/e-cal-backend-exchange.h : Likewise
	* calendar/e-cal-backend-exchange-calendar.c (receive_objects): This
	now makes use of the extract_component method.
	* calendar/e-cal-backend-exchange-tasks.c (receive_task_objects):
	Implemented

2004-06-21  Dan Winship  <danw@novell.com>

	* addressbook/e-book-backend-exchange.c (e_contact_from_props): if
	the contact has an attachment, load the message body and see if
	the attachment is a contact picture, and set the E_CONTACT_PHOTO
	property if so. #57801.
	(do_put): if the contact has a photo, put that too. Except that
	this code doesn't work right yet. (Outlook doesn't recognize the
	photo like it should.) So for now, I'm leaving E_CONTACT_PHOTO out
	of supported_fields, so the editor won't let you edit it.
	(e_book_backend_exchange_create_contact): call do_put if there's
	either a note or a photo.
	(e_book_backend_exchange_modify_contact): Make this actually call
	do_put rather than just having a FIXME. 

	* configure.in (ADDRESSBOOK_CFLAGS, EXCHANGE_STORAGE_LIBS): add
	camel

	* storage/main.c (main): Call camel_init()

2004-06-19  Sarfraaz Ahmed <asarfraaz@novell.com>

	Fix for #57868
	* calendar/e-cal-backend-exchange.c (e_cal_backend_exchange_in_cache):
	Modified to now take in the href and update it in the cache
	* calendar/e-cal-backend-exchange.h : Likewise
	* calendar/e-cal-backend-exchange-calendar.c (get_changed_events):
	Pass the href to the new e_cal_backend_exchange_in_cache method.
	* calendar/e-cal-backend-exchange-tasks.c (get_changed_tasks)
	(create_task_object): Likewise

2004-06-18  Sarfraaz Ahmed <asarfraaz@novell.com>

	* addressbook/e-book-backend-exchange.c : Modified the backend 
	members to now accept "opid".
	* addressbook/e-book-backend-gal.c : Similar

2004-06-18  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c (proppatch_date): Freeing
	the date entered only after forming the time stamp.
	Fixes #60342
 
2004-06-17  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_get_static_capabilites): Added the 
	static capability "no-contactlist-option" to disable the menu
	option to create contact lists for the exchange account.
	FIX for #57130 

2004-06-16  Dan Winship  <danw@novell.com>

	* camel/camel-exchange-provider.c (exchange_conf_entries): Add
	junk flags

	* storage/exchange-account.c (exchange_account_new): Record the
	"filter_junk" and "filter_junk_inbox" flag values.

	* mail/mail-stub-exchange.c (get_folder): Set the "filter junk"
	flag on the folder if appropriate

	* camel/camel-exchange-store.c (construct): If "filter_junk" is
	enabled, set the VJUNK flag on the store.

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct):
	If the backend set the "filter junk" flag, set that on the folder.

2004-06-16  Dan Winship  <danw@novell.com>

	* addressbook/e-book-backend-gal.c (query_prop_to_ldap): If the
	prop is "email", translate it to "email_1" so it matches
	correctly.
	(get_contact_list): If build_query returns a NULL query, just
	return success immediately (with no matches) rather than searching
	the entire GC.

	(ldap_search_dtor): we don't need to lock/unlock the view's mutex
	anymore. [copied from e-book-backend-ldap.c]

	(ldap_search_handler): remove the ref/unref of the book view here.
	(e_book_backend_ldap_search): move the ref of the book view
	here.
	(ldap_search_dtor): and the unref to here. [copied from
	e-book-backend-ldap.c]

2004-06-16  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-autoconfig-wizard.glade: Made the activate_defaults
	for the GtkEntries to be TRUE so that the sensitized Forward button
	gets pressed when the user presses Enter key while the focus is in the
	GtkEntry. This fixes #58201

2004-06-14  Dan Winship  <danw@novell.com>

	* shell/e-storage-set-view.c (etree_value_at): Remove unused
	variable

2004-06-14  Sushma Rai  <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_remove_contacts): Handling bulk removal of
	contacts.

	* addressbook/e-book-backend-exchange.c :
	(e_book_backend_exchange_get_static_capabilites): Added "bulk-removes"
	to the static capabilities.
	Fixes #59927

2004-06-12  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-component.c (impl_upgradeFromVersion): Made as
	void function.

	* storage/exchange-migrate.[ch] (exchange_migrate): ditto
 
2004-06-12  Sushma Rai  <rsushma@novell.com>

	* storage/migr-test.c (main): Removed hard coded values, and
	changes to usage and error messages.

2004-06-12  David Malcolm  <dmalcolm@redhat.com>

	* storage/migr-test.c (main): Fixed command-line arg parsing
	of major, minor and revision

2004-06-10  Dan Winship  <danw@novell.com>

	* shell/e-storage-set-view.c (etree_value_at): Remove support for
	unread count

	* storage/exchange-account.c (exchange_account_update_folder):
	Remove this (and the associated signal).

	* storage/exchange-hierarchy.c
	(exchange_hierarchy_updated_folder): Likewise

	* storage/exchange-hierarchy-webdav.c (rescan): Remove call to
	exchange_hierarchy_updated_folder.

	* mail/mail-stub-exchange.c (folder_changed): Just set the
	folder's unread count. Don't worry about telling the
	ExchangeAccount.

2004-06-10  Dan Winship  <danw@novell.com>

	* camel/camel-exchange-transport.c (exchange_send_to): Fix
	camel_session_get_password() args

	* calendar/e-cal-backend-exchange.c (match_recurrence_sexp):
	Unused, remove.

	* calendar/e-cal-backend-exchange-tasks.c: Remove a bunch of
	unused functions

	* shell/e-storage-set-view.c (pixbuf_free_func): Unused, remove

2004-06-10  Dan Winship  <danw@novell.com>

	* storage/exchange-config-listener.c (add_defaults_for_account,
	remove_defaults_for_account): Remove a lot of dead code

	* storage/apps_evolution_exchange.schemas: No longer relevant

	* storage/Makefile.am: remove gconf schema bits

2004-06-07  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-favorites.c (remove_folder):
	Removing ESources with favorite folder deletion.
	This would be removed with code reorganization (#59168).

2004-06-04  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (remove_esource):
	Checking for absolute URI only for contact folders.
	Fixes #59547

2004-06-04  Duarte Loreto <happyguy_pt@hotmail.com>

	* configure.in: Added Portuguese (pt) to ALL_LINGUAS.

2004-06-03  Dan Winship  <danw@novell.com>

	* storage/xc-backend-view.c (xc_backend_view_new): Put the
	treeview into a scrolled window, so it doesn't go all wacky if
	it's empty. #59009

	* storage/exchange-account.c (exchange_account_connect): Redo this
	a bit; use a "connecting" flag rather than holding the lock the
	whole time. This probably breaks other things, but it prevents a
	deadlock when the exchnage component and the mail component both
	try to connect at the same time.

2004-06-03  Dan Winship  <danw@novell.com>

	* configure.in: Bump version to 1.5.9

	* acinclude.m4 (EVO_LDAP_CHECK): Fix this so it works with
	non-Ximian OpenLDAP packages. (Problem noted by Frederic Crozat)

2004-06-03  Dan Winship  <danw@novell.com>

	* component/*: Gone. Now that we're not using the other
	components' controls to display things, there is no need for the
	shlib proxy. (We still can't move everything into the shlib,
	because then there would be multiple active copies of the exchange
	backend in some cases, and the code is not currently set up to
	deal with that possibility.)
	
	* Makefile.am (SUBDIRS): Remove component

	* configure.in (AC_OUTPUT): Likewise

	* addressbook/Makefile.am (INCLUDES): Remove -I../component

	* addressbook/e-book-backend-exchange.c
	(e_book_backend_exchange_connect): s/xc_backend/exchange_component/

	* addressbook/e-book-backend-gal.c (gal_connect): Likewise

	* calendar/Makefile.am (INCLUDES): Remove -I../component

	* calendar/e-cal-backend-exchange.c (open_calendar):
	s/xc_backend/exchange_component/

	* storage/Makefile.am (INCLUDES): Remove -I../component
	(evolution_exchange_storage_SOURCES): Remove xc-backend.[ch], add
	exchange-component.c (moved here from component/, and merged with
	the former xc-backend.c).

	* storage/GNOME_Evolution_Exchange_Storage.server.in.in: Merge in
	the component factory stuff formerly in
	component/GNOME_Evolution_Exchange_Component.server.in.in

	* storage/exchange-account.c (get_password,
	exchange_account_connect): s/xc_backend/exchange_component/

	* storage/main.c (setup_component_factory): Sets up a bonobo
	factory for the shell component
	(main): Call it.

	* storage/xc-commands.c (xc_folder_get_account):
	s/xc_backend/exchange_component/

	* storage/connector-mini.png: Replace this 16x16 icon with a 24x24
	one since that's what the shell sidebar needs

2004-06-02  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-06-02  Dan Winship  <danw@novell.com>

	* storage/exchange-account.c (exchange_account_connect): Record
	the favorites hierarchy in a private variable
	(exchange_account_add_favorite, exchange_account_remove_favorite):
	Add. They just proxy to the favorites hierarchy

	* storage/exchange-hierarchy-favorites.c
	(exchange_hierarchy_favorites_add_folder): Implement this
	(remove_folder): And this

	* storage/xc-commands.c (do_add_favorite, do_remove_favorite):
	Implement these

	* lib/e2k-utils.c (e2k_entryid_to_permanenturl): Fix this up a
	little.
	(e2k_permanenturl_to_entryid): Add this, its inverse. Only tested
	on folder urls.

2004-06-01  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Add Norwegian to ALL_LINGUAS.

2004-06-01  Sushma Rai	<rsushma@novell.com>

	Fixes #59385, #59387 
	* storage/e-folder-exchange.c (e_folder_exchange_new)
	(e_folder_exchange_delete): Adding ESources only for personal and 
	favorite folders. 

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Removing ESources
	during folder rename/move for personal and favorite folders.

	* storage/exchange-account.c (exchange_account_connect): Scan for
	favorites folders to resolve references before expanding the tree.

2004-05-28  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "sv" to ALL_LINGUAS.

2004-05-28  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (receive_objects):
	Fix receive_objects to handle cancelled meeting requests.

2004-05-28  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.[ch](add_esource)(remove_esource)
	(add_sources)(remove_sources): Creating the ESource with absolute URI
	for Contacts and GAL folder, So that GAL can be displayed in and 
	accessed from Contacts view though it has been registered as a 
	seperate protocol. Also creating and removing ESources for favorite 
	folders while account creation and deletion respectively.

	* storage/e-folder-exchange.c (e_folder_exchange_new)
	(e_folder_exchange_delete): Identify folder type while adding and removing
	folders. 

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Removing ESources 
	while renaming or moving a folder.

	* storage/exchange-hierarchy-gal.c (exchange_hierarchy_gal_new):
	Create ESource for GAL folder. 

2004-05-25  Dan Winship  <danw@novell.com>

	* camel/camel-exchange-store.c (get_trash): Update to match the
	camel changes for #57114. (Call camel_store_get_folder() rather
	than using the virtual method directly.)

2004-05-26  Rodney Dawes  <dobey@novell.com>

	* configure.in (BASE_VERSION): Revert to previous change as using
	AC_PACKAGE_VERSION here doesn't actually work with autotools *grmbls*

2004-05-26  Rodney Dawes  <dobey@novell.com>

	* configure.in (BASE_VERSION): Use $AC_PACKAGE_VERSION instead of
	$VERSION, so that intltool-update may substitute it properly

2004-05-26  Sarfraaz Ahmed <asarfraaz@novell.com>

	* storage/exchange-account.c (exchange_account_forget_password): 
	Implemented.
	(exchange_account_set_password): remember password only if save_passwd
	is TRUE.
	* storage/exchange-account.h: Likewise
	* storage/exchange-config-listener.c (account_removed): forget the 
	stored passwords.
	* storage/xc-backend.c (idle_do_interactive): Call oof only if xid is
	present.

2004-05-26  Sushma Rai <rsushma@novell.com>

	* addressbook/e-book-backend-exchange.c 
	(e_book_backend_exchange_get_supported_fields): Using 
	e_contact_field_name()

2004-05-26  Not Zed  <NotZed@Ximian.com>

	* camel/camel-exchange-store.c (make_folder_info): fixed for camel
	api change, removed path.

2004-05-25  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange.c (get_object_list):
	put get_object_list in. recurrence part to be looked at

2004-05-24  Sarfraaz Ahmed  <asarfraaz@novell.com>

	Fixes #58754

	* calendar/e-cal-backend-exchange-tasks.c (create_task_object): Set 
	summary to empty string when it is NULL.

2004-05-21  Dan Winship  <danw@novell.com>

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Return a
	better error when failing to rename a stock folder. #57387.

	* mail/mail-stub-exchange.c (rename_folder): Send the URI from the
	newly-renamed folder, not the no-longer-existent old folder

	* camel/camel-exchange-folder.c (camel_exchange_folder_construct):
	* camel/camel-exchange-store.c (exchange_get_folder): 
	* mail/mail-stub.c (connection_handler):
	* mail/mail-stub-exchange.c (get_folder): Handle the "create
	folder" option to camel_store_get_folder, to fix #57688

2004-05-21  Dan Winship  <danw@novell.com>

	* shell/Makefile.am (libfoldertree_a_SOURCES): Remove
	e-icon-factory; we'll use the one in e-util now

	* shell/e-icon-factory.c: Gone

	* shell/e-folder-type-registry.c
	(e_folder_type_registry_get_icon_for_type, etc): Remove. The
	registry will keep icon names, but the actual pixbufs will come
	from EIconFactory.

	* shell/e-folder-creation-dialog.c (add_folder_types): Use
	EIconFactory to get the actual pixbuf rather than expecting the
	folder type registry to have it.

	* shell/e-storage-set-view.c (get_pixbuf_for_folder): Always use
	EIconFactory, not just for custom icons.

	* storage/main.c (main): e_icon_factory_init ().

	* storage/exchange-hierarchy-webdav.c
	(exchange_hierarchy_webdav_new,
	exchange_hierarchy_webdav_construct): Remove custom_icon arg.
	Always use "stock_folder".
	(exchange_hierarchy_webdav_parse_folder): Use "stock_delete" for
	the trash icon.

	* storage/exchange-hierarchy-foreign.c (hierarchy_foreign_new):
	Remove custom_icon arg to exchange_hierarchy_webdav_construct

	* storage/exchange-account.c (exchange_account_connect): Remove
	the custom_icon arg to exchange_hierarchy_webdav_new.

	* storage/xc-backend.c (setup_folder_type_registry): Change icon
	info to use stock icons. Remove unused DnD stuff.

	* storage/xc-backend-view.c (xc_backend_view_new): Create an
	EUserCreatableItemsHandler too.
	(activated): activate it.

2004-05-21  Sarfraaz Ahmed <asarfraaz@novell.com>
	
	* camel/camel-exchange-transport.c (exchange_send_to): Incorporated
	get_password changes from evolution/camel

2004-05-20  Dan Winship  <danw@novell.com>

	* storage/xc-backend-view.c: Lots of changes. Now we show a list
	of accounts in the sidebar and the folder tree in the main view.

	* storage/xc-backend.c (impl_createControls, etc): Update for
	that.

	* storage/xc-commands.c (do_oof, do_delegates,
	do_change_password): Operate on the selected account.

	* storage/exchange-config-listener.c
	(exchange_config_listener_get_accounts): Returns a GSList of
	accounts. (Of course, currently there would be 0 or 1 members.)

2004-05-20  Sarfraaz Ahmed <asarfraaz@novell.com>

	* calendar/e-cal-backend-exchange-tasks.c (add_timezone_cb) Removed.
	This was not being used anywhere.
	* lib/e2k-global-catalog.c : Some initializations for avoiding
	warnings
	* shell/e-folder-misc-dialogs.c : Similar
	* storage/exchange-hierarchy-favorites.c : Similar

2004-05-20  Nicel KM  <mnicel@novell.com>

	* calendar/e-cal-backend-exchange-calendar.c (receive_objects): 
	Implement. Use the create_object and modify_object methods

2004-05-19  Dan Winship  <danw@novell.com>

	* storage/exchange-hierarchy-favorites.c: Actually, we weren't
	using that include anyway... not sure what it was doing there.

2004-05-19  Larry Ewing  <lewing@ximian.com>

	* storage/exchange-hierarchy-favorites.c: e-xml-hash-utils.h lives
	in libedataserver now.

2004-05-18  Dan Winship  <danw@novell.com>

	* mail/mail-stub.c (d): Turn off debug spew

2004-05-17  Rodney Dawes  <dobey@ximian.com>

	* storage/Makefile.am (EXTRA_DIST): Remove mail.xpm

2004-05-17  Dan Winship  <danw@novell.com>

	* lib/e2k-result.c (sanitize_bad_multistatus): New routine, used
	by e2k_results_array_add_from_multistatus to fix broken Exchange
	XML so recent versions of libxml2 will parse it correctly.
	(#58528)
	(prop_parse): Invert the transformation here so the rest of
	connector still sees the invalid-but-canonical names.

	* lib/e2k-propnames.h.in: add E2K_NS_MAPI_ID_LEN, the length of
	E2K_NS_MAPI_ID.

2004-05-17  Dan Winship  <danw@novell.com>

	Remove a bunch of 1.4 files that should have been deleted by the
	1.5 import, except that CVS is lame.
	
	* addressbook/pas-backend-ad.[ch]
	* addressbook/pas-backend-exchange.[ch]: Gone

	* calendar/cal-backend-exchange.[ch]
	* calendar/cal-backend-exchange-utils.c
	* calendar/e2k-cache.[ch]
	* calendar/e2k-cal-component.[ch]
	* calendar/e2k-cal-component-todo.c: Gone
	
	* storage/exchange-delegates-control.c: 
	* storage/exchange-delegates-delegates.c: 
	* storage/exchange-delegates-delegators.c:
	* storage/mail.xpm: Gone

	* storage/Makefile.am (evolution_exchange_storage_SOURCES): Sort

2004-05-14  Dan Winship  <danw@novell.com>

	* component/exchange-component.c: Remove backend/backend_component
	split.
	(impl_createControls): Now just calls the backend createControls

	* component/Ximian-Connector.idl: Gone. We can just use
	GNOME::Evolution::Component now.

	* component/Makefile.am: remove IDL stuff

	* storage/xc-backend.c: Merge xc-backend-component.c into this.
	This now implements GNOME::Evolution::Component directly rather
	than Ximian::Connector::Backend
	(impl_createControls): Merge the old createSidebar with the old
	exchange-component.c:impl_createControls.

	* storage/exchange-migrate.c:
	* storage/xc-backend-view.c: Remove some unnecessary #includes of
	things that are no longer there

	* storage/xc-backend-component.[ch]: Gone (merged into xc-backend)

	* storage/Makefile.am: remove IDL stuff, xc-backend-component.[ch]

2004-05-14  Sarfraaz Ahmed <asarfraaz@novell.com>

	Fixes the change password bug#58419

	* storage/exchange-account.c (get_password): Added the code to
	create the kerberos config file, if its not yet created.
	(exchange_account_get_password): Retrives the password stored
	locally.
	(exchange_account_set_password): Updates the server with the new
	password and also updates it locally.
	(exchange_account_connect): Updated the code to use the new
	exchange_get_new_password call.
	* storage/exchange-account.h: Function declarations for
	exchange_account_get_password and exchange_account_set_password
	* storage/exchange-change-password.c (check_pass_cb): Removed the
	e2k_autoconfig calls.
	(exchange_get_new_password): This now returns the new password.
	* storage/exchange-change-password.h: password_data struct now
	contains the new_password.
	* storage/xc-commands.c (do_change_password): This now makes use
	of the new exchange_account_get/set_password and calls
	exchange_get_new_password.

2004-05-14  Sushma Rai  <rsushma@novell.com>
	
	Prevents a crash when the account doesn't have any favorite folders 
	and tried to access favorite folders.

	* storage/exchange-hierarchy-somedav.c (scan_subtree): Initialized
	folders_returned and folders_added to zero.
	
	* lib/e2k-result.c (e2k_result_iter_free): Initializing status
	after checking if iter is NULL.
 
2004-05-13  Dan Winship  <danw@novell.com>

	* storage/exchange-hierarchy.h (ExchangeHierarchyType): Add values
	for FAVORITES and GAL, and sort the values in the same order we
	want the hierarchies to show up in the tree.

	* storage/exchange-hierarchy.c (add_to_storage): Set the toplevel
	folder's sorting_priority based on its type.

	* storage/exchange-hierarchy-webdav.c
	(exchange_hierarchy_webdav_construct,
	exchange_hierarchy_webdav_new): Remove the sorting_priority arg
	and the call to e_folder_set_sorting_priority. ExchangeHierarchy
	will handle this now.

	* storage/exchange-hierarchy-gal.c (exchange_hierarchy_gal_new):
	Use EXCHANGE_HIERARCHY_GAL as the type now

	* storage/exchange-hierarchy-foreign.c (hierarchy_foreign_new):
	update for exchange_hierarchy_webdav_new() change

	* storage/exchange-hierarchy-favorites.c
	(exchange_hierarchy_favorites_new): use
	EXCHANGE_HIERARCHY_FAVORITES as the type now, and don't pass a
	sort order.

	* storage/exchange-account.c (exchange_account_connect): update
	for exchange_hierarchy_webdav_new() change

	* storage/xc-commands.c (do_view_folder): Gone now.
	(do_remove_favorite): Add (FIXMEd)
	(xc_commands_context_menu): Simplify a little for the new
	EXCHANGE_HIERARCHY_ values, add "remove from favorites", and
	generally fix up a little.

2004-05-13  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-hierarchy-webdav.c (xfer_folder): Removing
	ESources for the folder which is renamed.

2004-05-13  Sushma Rai  <rsushma@novell.com>

	* storage/e-folder-exchange.c (e_folder_exchange_new): Adding
	ESources if the folder created is of the type personal calendar,
	tasks or contacts.
	(e_folder_exchange_delete): Deleting the ESource for the folder
	that is removed, if it is of the type, personal calendat. tasks
	or contacts.

	* storage/exchange-config-listener.c (add_esource): Made non-static
	(remove_esource) : Removing the source group in case of 
	account deletion and removing only the source for the perticular
	folder from the source group in case of folder deletion.
	Made non-static

	* storage/exchange-config-listener.h: Declarations for add_esource()
	and remove_esource()

	Fixes #57126, #57129 

2004-05-12  Dan Winship  <danw@novell.com>

	* storage/exchange-hierarchy-somedav.c: Split this out from
	exchange-hierarchy-foreign; new abstract class for hierarchies
	that are a subset of webdav folders from somewhere else.

	* storage/exchange-hierarchy-foreign.c: Now a subclass of
	ExchangeHierarchySomeDAV.

	* storage/exchange-hierarchy-favorites.c: New subclass of
	ExchangeHierarchySomeDAV for displaying "favorite" Public Folders.
	(Currently displays simple Outlook favorites correctly, but
	doesn't handle more complex cases, and no way to edit things.)

	* storage/exchange-account.c (exchange_account_connect): Create a
	favorites hierarchy.

	* lib/e2k-utils.c (e2k_entryid_to_permanenturl): New (to create a
	WebDAV permanent URL from a favorites entry)

2004-05-12  Dan Winship  <danw@ximian.com>

	* storage/exchange-change-password.glade: add this file, missing
	from the original import

	* storage/Makefile.am (glade_DATA): add
	exchange-change-password.glade

2004-05-12  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (add_sources)(remove_sources):
	Calling e_source_list_sync() after forming the sources for all the 
	folders for each component, instead of calling it for each folder 
	in a loop.
	Fixes bug #58320
 
2004-05-12  Sushma Rai  <rsushma@novell.com>

	* storage/exchange-config-listener.c (add_esource)(remove_esource):
	Fixed problem with forming the relative uri for the subfolders.
	(add_sources)(remove_sources): Finding physical uri of the folder.

2004-05-12  Sushma Rai  <rsushma@novell.com>

	* component/exchange-component.c (impl_upgradeFromVersion):
	Changed the return type to void.

2004-05-11  Dan Winship  <danw@ximian.com>

	* Ximian Connector 1.5.7, first GPL release.

	* README: Note that this is for evo head, and that it doesn't
	really work, and that you probably want connector-1-4-branch