aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 6c53e7bf7f98ef3d6ba1a6f278aeb3737a0a2151 (plain) (blame)
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
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
2007-12-24  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: remove useless get_roster_info call in
	presence_probe handling when access rule is presence

2007-12-24  Mickael Remond  <mremond@process-one.net>

	* doc/release_notes_2.0.0.txt: ejabberd 2.0.0 beta 1 release
	notes.

2007-12-23  Badlop  <badlop@process-one.net>

	* src/msgs/vi.msg: New Vietnamese translation (thanks to EQHO
	Communications)

	* src/msgs/th.msg: New Thai translation (thanks to EQHO
	Communications)

	* src/msgs/gl.msg: Updated (thanks to Carlos E. Lopez)

	* src/mod_muc/mod_muc_room.erl: Log room creation and
	destruction. Ensure JID of owners of MUC room are user, not
	server (EJAB-435)

2007-12-22  Badlop  <badlop@process-one.net>

	* src/ejabberd.app: Update ejabberd.app: add new erlang
	modules (EJAB-466)

	* doc/introduction.tex: Small updates

	* doc/guide.tex: Small fixes in Install. Added http_bind to
	Listening Ports.

	* src/web/ejabberd_http.erl: Add 'http_bind' option for easy
	configuration of HTTP-Binding

	* src/mod_announce.erl: Fixed unnoticeable bug related to Node
	matching. Renamed some nonstandard node names according to
	XEP-0133. Small reordering of clauses. When editing MOTD, display
	current value (EJAB-475)

2007-12-22  Christophe Romain <christophe.romain@process-one.net>

	* src/ejabberd_sm.erl: change incoming_presence_hook to
	presence_probe_hook
	* src/ejabberd_c2s.erl: Likewise

	* src/mod_pubsub/mod_pubsub.erl: send last pep item bugfix and
	broadcast optimization (EJAB-468) (EJAB-467) (EJAB-460) (EJAB-469)
	* src/mod_pubsub/pubsub.hrl: Likewise
	* src/mod_pubsub/node_default.erl: Likewise

2007-12-22  Badlop  <badlop@process-one.net>

	* src/mod_caps.erl: Bugfix in timeout checking. Check for timeout
	when an error response is received, and also before querying

2007-12-21  Badlop  <badlop@process-one.net>

	* src/ejabberd_ctl.erl: Added new command: mnesia (thanks to
	Tsukasa Hamano)

2007-12-21  Mickael Remond  <mremond@process-one.net>

	* src/msgs/fr.msg: Updated French translation (EJAB-295)

2007-12-21  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: disco#items bugfix (EJAB-465)

2007-12-21  Badlop  <badlop@process-one.net>

	* src/msgs/uk.msg: Updated (thanks to Ruslan Rakhmanin)

	* src/msgs/de.msg: Updated (thanks to Nikolaus Polak and Cord
	Beermann)

	* contrib/extract_translations/prepare-translation.sh: Small fix

2007-12-20  Badlop  <badlop@process-one.net>

	* src/mod_caps.erl: Don't include the Node attribute from C
	element in the disco#info query

2007-12-20  Christophe Romain <christophe.romain@process-one.net>

	* doc/guide.tex: Explain how to launch installer and improve
	ejabberdctl usage example (EJAB-420)
	* doc/guide.html: Likewise

	* src/mod_pubsub/mod_pubsub.erl: PEP notification bugfix

	* src/odbc/odbc_queries.erl: User count performance improvements
	(EJAB-239)

2007-12-20  Badlop  <badlop@process-one.net>

	* src/msgs/zh.msg: Small update (thanks to Shelley Shyan)

	* src/msgs/ru.msg: Small update (thanks to Konstantin Khomoutov)

2007-12-19  Badlop  <badlop@process-one.net>

	* src/msgs/pl.msg: Updated (thanks to Andrzej Smyk)(EJAB-463)

	* src/msgs/de.msg: Updated (thanks to Cord Beermann)

	* src/msgs/es.msg: Small update (thanks to Badlop)

	* src/msgs/cs.msg: Small update (thanks to Lukas Polivka alias
	Spike411)

	* src/web/ejabberd_web_admin.erl: No need to translate copyright
	notice

2007-12-18  Badlop  <badlop@process-one.net>

	* src/mod_muc/mod_muc_log.erl: Add handling of kicks 321, 322, 332

	* doc/guide.tex: Document mod_privacy_odbc
	
	* doc/Makefile: Support for conditional inclusion of documentation
	from contributed modules
	* doc/guide.tex: Likewise

2007-12-18  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: Purge related pep nodes at remove_user
	* src/mod_pubsub/node_pep.erl: Likewise

2007-12-17  Badlop  <badlop@process-one.net>

	* src/ejabberd_zlib/Makefile.in: Compile all erl files found in
	the directory, so it isn't needed to provide an explicit list of
	target files
	* src/eldap/Makefile.in: Likewise
	* src/mod_irc/Makefile.in: Likewise
	* src/mod_muc/Makefile.in: Likewise
	* src/mod_proxy65/Makefile.in: Likewise
	* src/mod_pubsub/Makefile.in: Likewise
	* src/odbc/Makefile.in: Likewise
	* src/pam/Makefile.in: Likewise
	* src/stringprep/Makefile.in: Likewise
	* src/tls/Makefile.in: Likewise
	* src/web/Makefile.in: Likewise
	* src/ejabberd_zlib/Makefile.win32: Likewise
	* src/eldap/Makefile.win32: Likewise
	* src/mod_irc/Makefile.win32: Likewise
	* src/mod_muc/Makefile.win32: Likewise
	* src/mod_proxy65/Makefile.win32: Likewise
	* src/mod_pubsub/Makefile.win32: Likewise
	* src/odbc/Makefile.win32: Likewise
	* src/stringprep/Makefile.win32: Likewise
	* src/tls/Makefile.win32: Likewise
	* src/web/Makefile.win32: Likewise

	* doc/guide.tex: Remove 'ssl' option from documentation and
	configuration load (EJAB-461)
	* src/ejabberd_listener.erl: Likewise

	* src/msgs/cs.msg: Small typo (thanks to Lukas Polivka alias
	Spike411)

	* src/ejabberd.cfg.example: Small change in order of options

2007-12-15  Badlop  <badlop@process-one.net>

	* src/mod_irc/iconv.erl: Changed order of handle_info
	clause (EJAB-290)
	* src/stringprep/stringprep.erl: Likewise

	* src/eldap/eldap.erl: Removed handle_sync_event clause because it
	is never called (EJAB-290)

	* src/mod_irc/mod_irc.erl: No need to translate copyright notice
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_proxy65/mod_proxy65_service.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise
	* src/msgs/*.msg: Likewise

	* contrib/extract_translations/prepare-translation.sh: Bugfix

2007-12-14  Badlop  <badlop@process-one.net>

	* src/msgs/*: Unified file format: First line is SVN Id
	tag. Second is Language name. Next lines are authors, adding the
	new ones on top. Each string must be in a single line (to
	facilitate the automatic removal of unused strings). Last four
	lines report file format for Emacs and Vim.
	
	* contrib/extract_translations/prepare-translation.sh: New
	features: extract all translations, include explanation for
	translators in the file, remove unused strings from file, include
	unused strings in a section for reference, provide information
	about current translation and number of missing strings, compress
	the files to a zip

	* contrib/extract_translations/extract_translations.erl: Reverted
	to the original version

2007-12-14  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_s2s_out.erl: Bugfix

2007-12-12  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: presence handler bugfix
	* src/mod_pubsub/node_default.erl: Allow send last item on presence
	
2007-12-12  Badlop  <badlop@process-one.net>

	* src/msgs/it.msg: Updated (thanks to Luca Brivio)

2007-12-11  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: notification broadcast bugfix

	* src/jlib.hrl: add pubsub namespace

2007-12-11  Badlop  <badlop@process-one.net>

	* src/msgs/tr.msg: New translation (thanks to Doruk Fisek)

	* src/msgs/zh.msg: Updated (thanks to Shelley Shyan)

2007-12-10  Badlop  <badlop@process-one.net>

	* src/msgs/ja.msg: Updated (thanks to Tsukasa Hamano)

	* doc/guide.tex: Small improvement in mod_shared_roster

	* src/mod_irc/mod_irc.erl: Bugfix in ACL check (thanks to Sergei
	Golovan)

2007-12-10  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: database upgrade and auto-create
	pep node bugfix

2007-12-09  Mickael Remond  <mremond@process-one.net>

	* src/web/ejabberd_http.erl: Fixed URL decoding code (EJAB-450)

	* src/msg/fr.msg: Added missing space.

2007-12-09  Badlop  <badlop@process-one.net>

	* src/msgs/ru.msg: Updated (thanks to Konstantin Khomoutov)

2007-12-08  Badlop  <badlop@process-one.net>

	* src/msgs/ja.msg: New translation (thanks to Tsukasa Hamano)

	* src/msgs/nl.msg: Updated (thanks to Andreas from Unstable.nl)

	* src/ejabberd_config.erl: Report human-readable message when
	Mnesia spool files are not readable.

2007-12-08  Mickael Remond  <mremond@process-one.net>

	* src/ejabberd_s2s_out.erl: Increase dialback timeout as dialback can
        sometimes take longer than expected.

2007-12-08  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: disco_sm_items bugfix

2007-12-07  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_sm.erl: Bugfix

2007-12-07  Badlop  <badlop@process-one.net>

	* src/Makefile.in: Fix compilation warnings: Part 5: To fix a
	warning about behaviour undefined, the erlang module that
	implements the behaviour must be compiled before the module that
	uses such behaviour (EJAB-290)

	* src/eldap/eldap.erl: Fix compilation warnings: Part 4 (EJAB-290)
	* src/web/ejabberd_web_admin.erl: Likewise

	* src/mod_irc/iconv.erl: Fix compilation warnings: 3 (EJAB-290)
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_irc/mod_irc_connection.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/stringprep/stringprep.erl: Likewise
	* src/web/ejabberd_http.erl: Likewise
	* src/web/ejabberd_http_poll.erl: Likewise

	* src/mod_caps.erl: Fix compilation warnings: Part 2 (EJAB-290)
	* src/mod_configure.erl: Likewise
	* src/mod_configure2.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise
	* src/mod_shared_roster.erl: Likewise
	* src/mod_stats.erl: Likewise
	* src/mod_version.erl: Likewise

	* src/cyrsasl.erl: Fix compilation warnings: Part 1 (EJAB-290)
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/ejabberd_config.erl: Likewise
	* src/ejabberd_hooks.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd_sm.erl: Likewise
	* src/idna.erl: Likewise
	* src/jd2ejd.erl: Likewise

2007-12-06  Badlop  <badlop@process-one.net>

	* src/**/*.erl: Remove Erlang module attribute 'vsn' because it
	doesn't provide any worth feature, and it difficults hot code
	update (EJAB-440)

	* src/ejabberdctl.cfg.example: Explain that each connection uses
	two or three ports (thanks to Max Loparyev)

	* src/configure: Regenerated
	* doc/dev.html: Likewise
	* doc/features.html: Likewise
	* doc/guide.html: Likewise
	* doc/version.tex: Likewise

	* doc/introduction.tex: Updated number of translated languages

	* src/web/ejabberd_web_admin.erl: Support more native acl_type on
	web interface (EJAB-253)

	* src/ejabberd_c2s.erl: Increase the timeout of open socket
	without authentication to 60 seconds because many Jabber clients
	are not yet capable of handling this correctly (EJAB-355)

	* src/Makefile.in: Allow compilation with HiPE, disabled by
	default, undocumented and unrecommended because it is experimental
	and doesn't seem to provide meaningful gains currently (thanks to
	Samuel Tardieu) (EJAB-412)
	* src/configure.ac: Likewise

	* src/msgs/cs.msg: Updated (thanks to Lukas Polivka alias
	Spike411)

	* src/mod_muc/mod_muc.erl: Catch creation of table
	muc_online_users: it may be already created by other mod_muc
	instance

	* doc/Makefile: Remove bashism

	* doc/guide.tex: Document how to change computer
	hostname (EJAB-320)

	* src/web/ejabberd_http.erl: Change loglevel for http
	queries (EJAB-363)
	* src/web/ejabberd_web_admin.erl: Likewise

	* doc/guide.tex: Add mod_caps and improve mod_pubsub documentation
	* src/ejabberd.cfg.example: Added mod_caps enabled by default

2007-12-06  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/node_dispatch.erl: Correct syntax issue
	* src/mod_pubsub/Makefile.in: include example plugins
	* src/mod_pubsub/Makefile.win32: likewise
	* src/ejabberd.cfg.example: use default and pep pubsub plugins
	* doc/guide.tex: add nodetree and plugins pubsub option
	* doc/guite.html: likewise

2007-12-06  Badlop  <badlop@process-one.net>

	* doc/guide.tex: Document the Debug Console (EJAB-395)

	* src/ejabberdctl.template: The parameter 'kernel inetrc' is used
	even with -sname to guarantee the same behaviour that when using
	-name (EJAB-317)

	* doc/guide.tex: Improvements in sections: Start, Creating Initial
	Account, Module Overview, Managing an ejabberd server, and
	Debugging

2007-12-05  Badlop  <badlop@process-one.net>

	* doc/guide.tex: Added explanations about epmd, cookie and node
	name (EJAB-251)

	* src/msgs/zh.msg: Updated (thanks to Shelley Shyan)

	* src/mod_muc/mod_muc_room.erl: Rephrase the invitation sentence
	to make more natural

	* src/msgs/es.msg: Updated

	* src/ejabberd.hrl: Set more proper version number

	* contrib/extract_translations/extract_translations.erl: Don't
	report [] to be translated. Identify unusued strings.

2007-12-04  Badlop  <badlop@process-one.net>

	* .gitignore: Removed (EJAB-441)
	* src/.cvsignore: Likewise

	* src/mod_pubsub/mod_pubsub.erl: Bugfix: don't report the Jabber
	server as a pubsub service. Fixed URI.

2007-12-03  Mickael Remond  <mremond@process-one.net>

	* src/mod_muc.erl: Added option to limit the number of room a user is
	allowed to connect to (EJAB-445).
	* src/mod_muc_room.erl: Likewise.
	* doc/guide.tex: Likewise.:ChangeLog

2007-12-02  Badlop  <badlop@process-one.net>

	* src/ejabberdctl.cfg.example: Bugfix in kernel poll. Added SMP
	option. Reorganization of options
	* src/ejabberdctl.template: Added SMP option

	* src/Makefile.in: New options make uninstall and
	uninstall-all (EJAB-293)

2007-12-01  Mickael Remond  <mremond@process-one.net>

	* doc/Makefile: echo seems to interpret \n and \v under MacOSX
	Leopard. I fixed the problem but let me know if it breaks build
	chain in other contexts.

	* Doc/guide.tex: Updated Windows compilation instructions.
	* src/configure.erl: Likewise.

	* doc/ejabberd.hrl: Preparing ejabberd 2.0.0 beta release.
	* doc/version.tex: Likewise.

	* src/tls/Makefile.win32: Updated for latest Win32 OpenSSL library.

	* src/odbc_queries.erl: Added a default define value so that we
	can recompile the file manually with a simple erlc command (with
	the default generic value).

2007-12-01  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_pubsub/Makefile.in: Removed mod_pubsub_old mentioning
	* src/mod_pubsub/Makefile.win32: Likewise

	* src/odbc/odbc_queries.erl: Reverted the previous patch because
	it produces "redefining macro 'generic'" compilation error

	* src/mod_caps.erl: CAPS support (thanks to Magnus Henoch)
	* src/ejabberd_local.erl: Support for IQ responses
	* src/jlib.erl: Added iq_query_or_response_info/1 function
	* src/jlib.hrl: Added NS_PUBSUB_ERRORS and NS_CAPS

	* src/mod_pubsub/Makefile.in: New pubsub+pep implementation
	(thanks to Christophe Romain and Magnus Henoch)
	* src/ejabberd_sm.erl: Added get_session_pid/3 function
	* src/ejabberd_c2s.erl: Added get_subscribed_and_online/1 function

2007-11-30  Mickael Remond  <mremond@process-one.net>

	* src/odbc_queries.erl: Added a default define value so that we
	can recompile the file manually with a simple erlc command.

2007-11-29  Badlop  <badlop@process-one.net>

	* src/mod_vcard.erl: Add type of x:data field to search results
	(thanks to Robin Redeker) (EJAB-327)
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise

	* src/aclocal.m4: Fix autoconf caching for SSL libraries (thanks
	to Michael Shields) (EJAB-439)

	* src/configure.ac: Don't hardcode gcc and gcc options in
	Makefiles (thanks to Etan Reisner) (EJAB-436)
	* src/Makefile.in: Likewise
	* src/ejabberd_zlib/Makefile.in: Likewise
	* src/eldap/Makefile.in: Likewise
	* src/mod_irc/Makefile.in: Likewise
	* src/mod_muc/Makefile.in: Likewise
	* src/mod_proxy65/Makefile.in: Likewise
	* src/mod_pubsub/Makefile.in: Likewise
	* src/odbc/Makefile.in: Likewise
	* src/pam/Makefile.in: Likewise
	* src/stringprep/Makefile.in: Likewise
	* src/tls/Makefile.in: Likewise
	* src/web/Makefile.in: Likewise

	* src/mod_muc/mod_muc_room.erl: Hide the option 'Make room
	moderated' because it isn't implemented, and set the default value
	of 'moderated' to true because that is the behaviour
	implemented (EJAB-419)

2007-11-28  Badlop  <badlop@process-one.net>

	* doc/guide.tex: It should be made more clear that domain_certfile
	works for both s2s and c2s connections (EJAB-212). Added another
	example of listening ports.

	* doc/guide.tex: Update URI of ejabberd official home page, URI
	of ejabberd.jabber.ru, and copyright dates (EJAB-366)
	* doc/introduction.tex: Likewise
	* src/ejabberd.hrl: Likewise
	* src/ejabberd_admin.erl: Likewise
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_irc/mod_irc_connection.erl: Likewise
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_muc/mod_muc_log.erl: Likewise
	* src/mod_proxy65/mod_proxy65_service.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise
	* src/msgs/*.msg: Updated
	* src/web/ejabberd_web_admin.erl: Likewise

2007-11-27  Badlop  <badlop@process-one.net>

	* src/gen_mod.erl: Update in database the configuration changes in
	modules (EJAB-330)

	* src/mod_configure.erl: The command get-user-lastlogin is now
	compatible with both Mnesia and ODBC (EJAB-383)
	* src/mod_last.erl: Likewise
	* src/mod_last_odbc.erl: Likewise

	* doc/guide.tex: Document ejabberd_http's
	request_handlers (EJAB-372). Fixed small Latex problems.
	Sort options of listening sockets.

2007-11-27  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_announce.erl: Bugfix (thanks to Christophe Romain)

2007-11-27  Badlop  <badlop@process-one.net>

	* doc/guide.tex: Added clarification about LDAP default port
	(thanks to Christophe Romain).

	* src/mod_vcard.erl: Ensure mod_vcard to respect FORM_TYPE
	registry (EJAB-328).
	* src/mod_vcard_ldap.erl: Likewise.
	* src/mod_vcard_odbc.erl: Likewise.
	* doc/guide.tex: Updated documentation.

	* src/mod_muc/mod_muc_room.erl: Don't show the room name as the
	room description (EJAB-382).

2007-11-26  Badlop  <badlop@process-one.net>

	* src/ejabberd.cfg.example: Added example configuration of
	databases.

	* doc/guide.tex: Fixed several typos.

	* src/ejabberd_config.erl: Print error when the configuration
	requires ODBC, MySQL or PostgreSQL libraries but are not installed
	(EJAB-210).

	* src/web/ejabberd_web_admin.erl: Added a favicon (EJAB-379).

	* src/msgs/wa.msg: New Walon translation (thanks to Pablo
	Saratxaga) (EJAB-374).

	* doc/guide.tex: Describe how ejabberd treats ejabberd.cfg file
	(EJAB-384).

	* src/ejabberd.cfg.example: Huge reorganization and grouping of
	options (EJAB-392).

	* doc/guide.tex: Describe in mod_muc: nick register and service
	admin message (EJAB-400).

	* src/mod_echo.erl: Example function that demonstrates how to
	receive XMPP packets using Erlang's message passing mechanism
	(EJAB-247).

	* src/ejabberdctl.template: Removed bashisms (EJAB-399). Set
	environment variables instead of passing parameters when calling
	erl (EJAB-421). Write erl_crash.dump in the log/ directory, with
	unique filename (EJAB-433).

	* src/ejabberd_ctl.erl: Improvements in the help messages
	(EJAB-399).

	* doc/guide.tex: Improvements in sections ejabberdctl, and Install
	from Source (EJAB-399).

2007-11-25  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_router.erl: Bugfix

	* src/ejabberd_s2s_out.erl: Bugfix

	* src/ejabberd_sm.erl: Optimized check_max_sessions (thanks to
	Christophe Romain)

2007-11-22  Mickael Remond  <mremond@process-one.net>

	* src/ejabberd_config.erl: Improved error message when ejabberd
	config file is not found.

2007-11-16  Christophe Romain <christophe.romain@process-one.net>

	* src/ejabberd_auth_internal.erl: Better count management and
	batch users retrieval internal database

2007-11-14  Mickael Remond  <mremond@process-one.net>

	* examples/extauth/check_pass_null.pl: Fixed external
	authentication example script (EJAB-404)

2007-11-05  Mickael Remond  <mremond@process-one.net>

	* src/ejabberd_config.erl: Refactoring: Move internal data
	structure to an include file.
	* src/ejabberd_config.hrl: Likewise.

2007-11-03  Mickael Remond  <mremond@process-one.net>

	* src/ejabberd_auth.erl: Better count management and batch users
	retrieval for relational database (Thanks to Massimiliano Mirra).
	* src/ejabberd_auth_odbc.erl: Likewise.
	* src/odbc/odbc_queries.erl: Likewise.

2007-11-02  Mickael Remond  <mremond@process-one.net>

	* src/web/ejabberd_http_poll.erl: Refactoring. Moved c2s limits
	acquisition to a separate module.
	* src/ejabberd_c2s_config.erl: Likewise.

2007-11-01  Mickael Remond  <mremond@process-one.net>

	* src/web/ejabberd_http_poll.erl: Support for c2s ACL access,
	max_stanza and shaper on http_poll connections (EJAB-243,
	EJAB-415, EJAB-416)

2007-10-30  Jerome Sautret  <jerome.sautret@process-one.net>

	* src/ejabberd_s2s.erl: don't use the resource of the sender to choose
	a s2s connection to ensure that a muc room always uses the same
	connection (EJAB-360)

2007-10-23  Christophe Romain  <christophe.romain@process-one.net>

	* doc/dev.tex: Added extauth script details (EJAB-334)

2007-10-17  Christophe Romain  <christophe.romain@process-one.net>

	* src/ejabberdctl.template: Bugfix on previous change (EJAB-380)

2007-10-17  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberdctl.template: Several improvements (EJAB-380)
	(thanks to Sander Devrieze, Sergei Golovan, Torsten Werner and
	Badlop)
	* src/ejabberdctl.cfg.example: Likewise
	* src/ejabberd.inetrc: Likewise
	* src/Makefile.in: Likewise

	* src/mod_privacy.erl: Bugfix

2007-10-07  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_vcard_odbc.erl: Reverted previous change

2007-10-06  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_vcard_odbc.erl: Bugfix

	* src/mod_offline_odbc.erl: Bugfix

2007-10-01  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_auth_pam.erl: Support for PAM authentication (EJAB-307)
	(thanks to Evgeniy Khramtsov)
	* src/ejabberd.cfg.example: Likewise
	* src/configure.ac: Likewise
	* src/aclocal.m4: Likewise
	* src/Makefile.in: Likewise
	* examples/ejabberd.pam: Likewise
	* doc/guide.tex: Likewise

2007-09-28  Christophe Romain  <christophe.romain@process-one.net>

	* src/odbc/mysql.sql: Added some missing NOT NULL restrictions
	* src/odbc/mssql.sql: Likewise
	* src/odbc/pg.sql: Likewise

2007-09-27  Christophe Romain  <christophe.romain@process-one.net>

	* src/ejabberdctl.template: apply rootdir patch from Badlop (EJAB-385)
	* tools/ejabberdctl: define EJABBERD_EBIN as from ejabberdctl.template

2007-09-25  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_s2s.erl: Max number of connections and max number
	of connections per node now can be specified via
	max_s2s_connections and max_s2s_connections_per_node acl rules

2007-09-14  Mickael Remond  <mremond@process-one.net>

	* src/ejabberd_s2s_out.erl: Changed to actual p1_fsm behaviour. It
	was working correctly as the API of p1_fsm and gen_fsm is strictly
	the same.

	* src/ejabberd_s2s_in.erl: Added debug hook for s2s loop (EJAB-358).

	* src/ejabberd_c2s.erl: Added debug hook for c2s loop (EJAB-358).

	* src/ejabberd_s2s.erl: open all missing connections if
	needed (Jerome Sautret).

	* src/ejabberd_s2s.erl: don't check blacklist for services (Jerome
	Sautret).

	* src/ejabberd_s2s.erl: Try to open all s2s connections at the
	same time, to guarantee the right order of the packets (Jerome
	Sautret).

	* src/ejabberd_s2s.erl: max_s2s_connexions_number local parameter
	added (Jerome Sautret).

	* src/ejabberd_s2s_out.erl: Implements s2s negociation timeouts
	and s2s connection retrial interval (EJAB-357, EJAB-294).

	* src/ejabberd_c2s.erl: Implements timeouts during session opening
	negociation (EJAB-355).

	* doc/guide.tex: Documentation for new configure option
	--disable-transient-supersisors (EJAB-354).

	* src/ejabberd_c2s.erl: Option to prevent the use of Erlang OTP
	supervisor for transient processes (EJAB-354).
	* src/ejabberd_s2s_in.erl: Likewise.
	* src/ejabberd_s2s_out.erl: Likewise.
	* src/mod_muc/mod_muc_room.erl: Likewise.
	* src/configure.ac: Likewise.
	* src/configure: Likewise.
	* src/Makefile.in: Likewise.
	* src/mod_muc/Makefile.in: Likewise.

	* src/ejabberd_s2s_out.erl: Moved s2s connexion information from
	INFO level to DEBUG level and more human readable information
	explai

	* src/ejabberd_s2s_in.erl: Moved s2s connexion information from
	INFO level to DEBUG level (EJAB-353).

	* src/ejabberd_s2s_out.erl: open up to 3 s2s outgoing connection
	per domain pair (Jerome Sautret).
	* src/ejabberd_s2s.erl: Likewise.

2007-09-11  Alexey Shchepin  <alexey@process-one.net>

	* src/gen_mod.erl: Added get_module_opt_host/3 (thanks to Badlop)

2007-09-10  Mickael Remond  <mremond@process-one.net>

	* src/guide.tex: Fix: user_regexp acls are valid for all local
	users (all vhosts).

2007-09-06  Mickael Remond  <mremond@process-one.net>

	* src/guide.tex: Improved documentation for adding a vhost
	specific option (EJAB-297).

	* src/mod_configure.erl: Virtual host support for
	mod_configure (Thanks to Badlop) (EJAB-285).

2007-09-05  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_offline_odbc.erl: Bugfix

2007-09-04  Mickael Remond  <mremond@process-one.net>

	* src/mod_register.erl: update ejabberd commands to support
	XEP-0133 (initial patch by Badlop) (EJAB-325).
	* src/mod_configure.erl: Likewise.
	* src/mod_announce.erl: Likewise.
	* src/jlib.hrl: Likewise.
	* src/ejabberd.cfg.example: Likewise.
	* doc/guide.tex: Likewise.

2007-09-03  Mickael Remond  <mremond@process-one.net>

	* examples/extauth/check_pass_null.pl: Perl is generally available
	as a default in most Linux distributions.

2007-09-02  Alexey Shchepin  <alexey@process-one.net>

	* src/jlib.erl: Removed http_base_64:decode call

	* src/mod_muc/mod_muc_room.erl: Added logging of MUC admin/owner
	queries

2007-09-01  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_muc/mod_muc_room.erl: Added user_message_shaper and
	room_shaper options
	* src/mod_muc/mod_muc.erl: Likewise

2007-08-31  Mickael Remond  <mremond@process-one.net>

	* doc/guide.tex: Minor examples improvement in LDAP
	example (Thanks to Badlop) (EJAB-272).

	* doc/guide.tex: Documentation for mod_muc option for server-wide
	limitation of the maximum number of users per room (EJAB-344).

	* doc/guide.tex: Documentation for mod_muc option to allow admin
	to enter room even if the maximum number of users
	reached (EJAB-345).

	* src/web/ejabberd_web_admin.erl: Make the web interface pages
	"translatable" (Thanks to Badlop) (EJAB-11).

2007-08-29  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd.cfg.example: Updated mod_muc 'host' option default
	value (thanks to Badlop)

	* src/mod_muc/mod_muc_room.erl: The mod_muc option max_users now
	limits max number of users in rooms and max_users_admin_threshold
	sets a number of admin or owner accounts allowd to join after
	max_users occupants

2007-08-29  Mickael Remond  <mremond@process-one.net>

	* doc/guide.tex: Documentation for XML based optimisation build
	time option (EJAB-298)

2007-08-29  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_muc/mod_muc_log.erl: Added missed HTMLization in a
	nickname change logging (thanks to Badlop)

2007-08-28  Mickael Remond  <mremond@process-one.net>

	* src/mod_muc/mod_muc_room.erl: Changed default max number of user
	in a room to 200 (EJAB-248)

	* src/mod_offline_odbc.erl: Implements quota for offline messages
	in relational database (EJAB-314)
	* src/odbc/odbc_queries.erl: Likewise

2007-08-28  Alexey Shchepin  <alexey@process-one.net>

	* doc/guide.tex: Described @HOST@ feature (thanks to Badlop)

2007-08-26  Mickael Remond  <mremond@process-one.net>

	* src/mod_muc/mod_muc_room.erl: Implements muc max users option
	from XEP-0045 (Thanks to Jerome Sautret) (EJAB-248).

2007-08-26  Alexey Shchepin  <alexey@process-one.net>

	* doc/guide.tex: Removed mentions of unexistent 'hosts' modules
	option (thanks to Badlop)

2007-08-25  Alexey Shchepin  <alexey@process-one.net>

	* src/gen_mod.erl: Substitute @HOST@ with hostname in the 'host'
	option (thanks to Badlop)
	* src/mod_vcard.erl: Likewise
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_echo.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_proxy65/mod_proxy65_service.erl: Likewise

2007-08-24  Alexey Shchepin  <alexey@process-one.net>

	* src/web/ejabberd_web_admin.erl: Moved roster stuff to mod_roster*
	* src/mod_roster.erl: Likewise
	* src/mod_roster_odbc.erl: Likewise

2007-08-23  Alexey Shchepin  <alexey@process-one.net>

	* src/ejabberd_sm.erl: Removed check which denies resource to
	receive its own presence

	* src/web/ejabberd_web_admin.erl: Added hooks to allow plugins to
	add their pages without modifying ejabberd_web_admin.erl (thanks
	to Badlop)
	* src/web/ejabberd_web_admin.hrl: Macro definitions moved here
	* src/mod_shared_roster.erl: Updated
	* src/mod_offline.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise

2007-08-22  Alexey Shchepin  <alexey@process-one.net>

	* src/jlib.erl: Use http_base_64:decode if available

2007-08-20  Alexey Shchepin  <alexey@process-one.net>

	* src/mod_roster.erl: Don't send roster push when unsubscribing in
	"None + Pending In" state
	* src/mod_roster_odbc.erl: Likewise

	* src/mod_offline.erl: Renamed MAX_OFFLINE_MSGS to MaxOfflineMsgs

2007-08-16  Jerome Sautret  <jsautret@process-one.net>

	* src/odbc/ejabberd_odbc_sup.erl: Add an odbc_pool_size config
	file option to choose the number of SQL connection in each
	pool (EJAB-58).
	* src/odbc/ejabberd_odbc.erl: Add an odbc_keepalive_interval
	config file option to perform a keep alive query at given
	interval (EJAB-206).

2007-08-13  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_offline.erl: Added a config option to define the maximum
	number of offline messages per user (EJAB-314).

	* doc/guide.tex: Added documentation for the mod_offline quota
	(EJAB-314).

	* doc/guide.tex: Remove release notes (EJAB-323).

	* src/mod_offline.erl: Returns an error message to sender when
	message is discarded due to quota (EJAB-314).

2007-08-12  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/ejabberd_odbc.erl: UTF-8 support for MySQL5 (EJAB-318).

2007-08-09  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Minor update (thanks to Sergei Golovan)

2007-08-08  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_offline.erl: Only count messages if a quota has been
	actually set (EJAB-314).
	* src/p1_mnesia.erl: Minor coding style change.

2007-08-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_offline.erl: Started implementation of mod_offline
	quota. For now, it require change in code. Will be turn into a
	config file parameter soon. (EJAB-314).
	* src/p1_mnesia.erl: Added memory efficient record count in
	Mnesia.

2007-08-03  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_announce.erl: Added support to all the announce features
	described in documentation. Access to all announce features
	through command line, adhoc commands and disco (Thanks to
	Badlop) (EJAB-18).
	* src/gen_mod.erl: Likewise.
	* doc/guide.tex: Likewise.

2007-08-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Added default_room_options option
	(thanks to Etan Reisner and Badlop)
	* src/mod_muc/mod_muc_room.erl: Likewise
	* doc/guide.tex: Updated

2007-08-01  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Front page table formatting that render correctly
	in HTML and update mentionning CEAN as a way to install
	ejabberd (Thanks to Badlop) (EJAB-272).

	* src/ejabberd_s2s_out.erl: Avoid bouncing messages twice if
	terminate happens during open_socket.

	* src/ejabberd_s2s_out.erl: On terminate, bounce internal process
	queue and Erlang message queue.

	* src/mod_private.erl: Reduce memory consumption on user private
	storage removal (EJAB-299).

2007-07-31  Mickael Remond  <mickael.remond@process-one.net>

	* src/xml.erl: Making use of CDATA escaping optional through with
	a compile time option (EJAB-298).
	* src/Makefile.in: Likewise.
	* src/configure.ac: Likewise.

2007-07-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_version.erl: Added option to hide OS version (thanks to
	Badlop)
	* doc/guide.tex: Updated

	* src/msgs/zh.msg: Updated (thanks to Shelley Shyan)

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/msgs/gl.msg: New galician translation (thanks to
	Carlos E. Lopez)

	* src/ejabberd_config.erl: Added possibility for appending values
	to config options (thanks to Badlop)
	* doc/guide.tex: Updated

2007-07-30  Mickael Remond  <mickael.remond@process-one.net>

	* src/xml.erl: Better escaping management with CDATA. We only add
	CDATA enclosure when needed. CDATA end token is properly escaped.

	* src/xml.erl: Only wrap xmldata nodes in xml cdata "tag" if
	bigger than 50 bytes. Shorter xmlcdata nodes will be escaped.

	* src/tls/tls_drv.c: Sends the entire certificate chain (EJAB-209).

	* src/acl.erl: Remove compilation warnings (EJAB-290).

	* src/xml_stream.erl: Group CDATA on a single xmlcdata
	node (splitting is not relevant as dependant on TCP/IP packet
	fragmentation) (EJAB-292).

	* src/xml.erl: Remove compilation warnings (EJAB-290).

	* src/xml.erl: Do not crypt binary CData, but enclose the value in
	XML CDATA "tag".

	* src/xml.erl: Code clean-up: removed old code in comments.

2007-07-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_roster_odbc.erl: Better error management when bad JID in
	roster table (EJAB-289).

2007-07-26  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_web_admin.erl: Code clean-up.

	* src/mod_offline.erl: Code clean-up.

	* src/gen_mod.erl: Throw error more cleanly.

	* src/mod_configure.erl: One ACL call was not virtual host
	compliant.

	* src/ejabberd_auth_odbc.erl: Fixed wrong call preventing user
	removal with relational databases.

	* src/mod_last_odbc.erl: Adapted to mod_privacy changes.
	* src/mod_privacy_odbc.erl: Refactoring to extract records in
	include file.

	* src/mod_last.erl: Adapted to mod_privacy changes.
	* src/mod_privacy.erl: Refactoring to extract records in include
	file.
	* src/mod_privacy.hrl: Likewise.

	* src/mod_roster_odbc.erl: Fixed wrong call.

2007-07-24  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Added recommandations on max_stanza options
	usage.

	* src/ejabberd_s2s_out.erl: Autodisconnect s2s connections which
	are overloaded (EJAB-287).
	* src/p1_fsm.erl: Likewise.

2007-07-19  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_s2s_in.erl: Add s2s whitelist / blacklist support
	on incoming s2s connections (EJAB-283)
	* src/ejabberd_s2s.erl: Likewise

2007-07-18  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_s2s.erl: Fixed typos.

	* src/ejabberd_s2s.erl: Implements s2s hosts whitelist / blacklist
	* src/ejabberd.cfg.example: Likewise

	* src/ejabberd_s2s_out.erl: Make s2s connections more robust
	* src/ejabberd_s2s.erl: Likewise

2007-07-17  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_configure.erl: Bugfix: Show only virtual host users
	on admin disco for all users (EJAB-268) (Thanks to Badlop).

	* src/mod_muc/mod_muc_log.erl: Recognise more URI schemes in
	logged HTML (EJAB-279) (Thanks to qu1j0t3).

	* src/ejabberd_s2s_out.erl: Improved place of the INFO /
	DEBUG printout.

	* src/odbc/ejabberd_odbc.erl: Better error handling for MySQL
	native driver (EJAB-224).

2007-07-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Added remove_connection/3
	* src/ejabberd_s2s_out.erl: Bugfix: remove only own s2s record

2007-07-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Bounce packets after unregistering s2s
	connection, not before

2007-07-11  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_echo.erl: mod_echo does not reply to other
	components. This is to make sure that a component will not
	discover its own capabilities (Thanks to Badlop) (EJAB-281).
	* src/ejabberd.cfg.example: disable mod_echo in the example config
	file. mod_echo is mainly a development/test module.

2007-07-09  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/mssql.sql: Nickname cannot be null in rosterusers table
	(MSSQL)
	* src/odbc/mysql.sql: Likewise
	* src/odbc/pg.sql: Likewise

2007-06-29  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_config.erl: Normalize hostnames in config file. If mixed
	case is used, the hostname will be now useable (EJAB-277).
	* src/stringprep/stringprep_sup.erl: Likewise
	* src/stringprep/Makefile.in: Likewise
	* src/stringprep/Makefile.win32: Likewise
	* src/ejabberd_app.erl: Likewise

2007-06-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_auth_anonymous.erl: Do not purge non anonymous accounts
	when using anonymous authentication with another type of auth.

	* src/ejabberd_service.erl: Added an option to disable from attribute
	checks in packets coming from an external component (EJAB-275)
	* doc/guide.tex: Likewise

	* doc/guide.tex: Documentation rework started (EJAB-272)
	* doc/introduction.tex: Likewise

2007-06-28  Christophe Romain <christophe.romain@process-one.net>

	* src/web/ejabberd_web_admin.erl: corrects (EJAB-273),
	remove obsolete OnlineUsers calculation

2007-06-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Include <body/> in MUC invitations
	for older clients (thanks to Michael Scherer)

2007-06-25  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Typos

	* src/mod_muc/mod_muc_room.erl: New anti-abuse options:
	min_presence_interval and min_message_interval
	* doc/guide.tex: Likewise

	* doc/guide.tex: Documentation improvements on watchdog

	* doc/guide.tex: No need to escape underscore in Latex verbatim
	sections

	* doc/guide.tex: Watchdog alert documentation
	* src/ejabberd.cfg.example: Likewise

2007-06-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc.erl: Added an option for default IRC
	encoding (thanks to Badlop) (EJAB-452)
	* doc/guide.tex: Updated

	* src/mod_disco.erl: Don't override accumulated value in
	get_local_identity/5 (thanks to Magnus Henoch and Badlop)

	* src/web/ejabberd_web_admin.erl: Added links to server and
	virtual host homes (thanks to Badlop)

2007-06-20  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc_room.erl: It is now possible to limit who is
	allowed to create persistent MUC rooms (Thanks to Badlop) (EJAB-257)
	* src/mod_muc/mod_muc.erl: Likewise
	* doc/guide.tex: Likewise
	* src/ejabberd.cfg.example: Likewise

2007-06-18  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/odbc_queries.erl: Added missing users_number/1 for MSSQL
	(EJAB-239).

2007-06-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Fixed typo

2007-06-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Show IP address of connected
	resources on user info page (thanks to Oleg Palij)

2007-06-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_config.erl: Fixed "language" option processing
	(thanks to Badlop)

	* src/msgs/zh.msg: Updated (thanks to Shelley Shyan)

	* src/msgs/ca.msg: New Catalan translation (thanks to Vicent
	Alberola)

2007-06-05  Mickael Remond  <mickael.remond@process-one.net>

	* src/xml.erl: Add new helper function get_subtag_cdata/2.

2007-05-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard_odbc.erl: Fix for previous commit (thanks to
	Badlop)

2007-05-29  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_vcard_odbc.erl: Make service description translatable in
	discovery (EJAB-236)
	* src/mod_vcard_ldap.erl: Likewise

	* src/Makefile.in: Added Dialyzer target (EJAB-189 - Thanks
	to Geoff Cant)
	* src/Makefile.in: Build XmppAddr.beam in a single pass
	* src/mod_muc/Makefile.in: +debug_info directive support
	* src/stringprep/Makefile.in: Likewise
	* src/mod_irc/Makefile.in: Likewise
	* src/web/Makefile.in: Likewise
	* src/eldap/Makefile.in: Likewise
	* src/mod_pubsub/Makefile.in: Likewise
	* src/ejabberd_zlib/Makefile.in: Likewise
	* src/mod_proxy65/Makefile.in: Likewise
	* src/tls/Makefile.in: Likewise
	* src/odbc/Makefile.in: Likewise

	* src/mod_vcard.erl: Make services description translatable in
	discovery (EJAB-236 - thanks to Badlop)
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_proxy65/mod_proxy65_service.erl: Likewise
	* src/msgs/fr.msg: Added service description translation

2007-05-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberdctl.template: Updated version of ejabberdctl (thanks
	to Christophe Romain)
	* tools/ejabberdctl: Likewise
	* src/Makefile.in: Updated

	* src/ejabberd_sm.erl: Updated the session table to store
	additional session info
	* src/ejabberd_c2s.erl: Report IP address to ejabberd_sm (thanks
	to Christophe Romain)

2007-05-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/zh.msg: New chinese translation (thanks to Shelley
	Shyan)

2007-05-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Corrected error messages when
	trying to join members-only room (thanks to Badlop)

	* src/ejabberd_c2s.erl: Added c2s_update_presence hook

2007-05-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Bugfix (thanks to Badlop)

2007-05-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth.erl: Added get_vh_registered_users_number/1
	function
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/odbc/odbc_queries.erl: Added users_number/1 function
	* src/ejabberd.cfg.example: Added an example for
	pgsql_users_number_estimate option
	* src/mod_stats.erl: Updated
	* src/web/ejabberd_web_admin.erl: Likewise

	* src/ejabberd_auth_anonymous.erl: Added anonymous_purge_hook
	(thanks to Christophe Romain and Mickael Remond)
	* src/mod_offline.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise
	* src/mod_roster.erl: Likewise
	* src/mod_roster_odbc.erl: Likewise

2007-05-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Bugfix

2007-05-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_receiver.erl: Workaround for inet_drv bug

	* src/web/ejabberd_http_poll.erl: Added sockname/1 and peername/1
	stubs

	* src/web/ejabberd_http.hrl: Added "ip" field in the "request"
	record (thanks to Jerome Sautret and Mickael Remond)
	* src/web/ejabberd_http.erl: Likewise

2007-05-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Added set_presence_hook
	* src/ejabberd_c2s.erl: Likewise

	* src/ejabberd_sm.erl: Added check for existence of incoming
	subscription destination

	* src/msgs/it.msg: Added italian translation (thanks to Luca
	Brivio)

	* src/mod_muc/mod_muc_room.erl: More accurate invitation errors
	(thanks to Magnus Henoch)

2007-04-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Don't deliver roster items in "None +
	Pending In" state
	* src/mod_roster.erl: Likewise

2007-04-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_socket.erl: Added API for monitoring socket
	processes
	* src/ejabberd_frontend_socket.erl: Likewise
	* src/ejabberd_c2s.erl: Added socket monitoring

	* src/mod_muc/mod_muc_room.erl: Fixed the stop reason for the
	destroy event

2007-04-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Minor optimisation

	* src/ejabberd_system_monitor.erl: Experimental watchdog
	* src/ejabberd_sup.erl: Likewise
	* src/ejabberd_config.erl: Likewise

2007-03-22  Mickael Remond  <mickael.remond@process-one.net>

	* src/guide.tex: Fixed typo.

2007-03-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Better behaviour under high load

2007-03-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Don't bounce packets with "error" and
	"result" type

	* src/ejabberd_s2s.erl: Fixed spelling

	* src/ejabberd_s2s.erl: Don't start s2s process for existing
	connection in case of race condition

2007-03-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Added shaper_rule option, changed
	service connection log message

2007-03-13  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_service.erl: Add extra info in the log about which
	components is connected and which Erlang process is handling
	it. This is usefull in context where many types of components are
	used (Thanks to Jerome Sautret) (EJAB-211).

2007-03-10  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_http.erl: Support for binaries in ejabberd HTTP
	server (Thanks to Massimiliano Mirra) (EJAB-197).

	* src/configure.ac: autoconf improvements (thanks to Tony Finch)
	(EJAB-204).
	* src/aclocal.m4: Likewise.

	* src/odbc/ejabberd_odbc.erl: ejabberd admin can now choose the
	relational database port to use from ejabberd configuration file
	(EJAB-195).
	* src/doc/guide.tex: Likewise.

2007-03-02  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc_log.erl: Fix wrong return on check access
	log.

2007-03-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

2007-02-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Bugfix

	* src/mod_proxy65/mod_proxy65_sm.erl: Cluster support (thanks to
	Evgeniy Khramtsov)

	* src/mod_proxy65/mod_proxy65_stream.erl: Code cleanup (thanks to
	Evgeniy Khramtsov)

	* src/mod_proxy65/mod_proxy65.hrl: Fixed typo (thanks to Evgeniy
	Khramtsov)

2007-02-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Init shaper with a default value first
	after stream opening

	* src/ejabberd_c2s.erl: Log failed SASL login attempts
	* src/cyrsasl.erl: Updated API
	* src/cyrsasl_plain.erl: Likewise
	* src/cyrsasl_digest.erl: Likewise

2007-02-19  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc_room.erl: Added an option set affiliations.

	* doc/api/*: Added Erlang documentation generation script
	(EJAB-188).
	* doc/version.tex: Updated.
	* src/ejabberd.app: Updated.

	* src/odbc/pg.sql: last table, state column cannot be NULL
	(EJAB-191).
	* src/odbc/mysql.sql: likewise.
	* src/odbc/mssql.sql: likewise.

	* src/ejabberd_auth_ldap.erl: prevent anonymous bind on LDAP
	servers as ejabberd is providing other anonymous authentication
	mechanism (EJAB-190).

	* src/cyrsasl_plain.erl: bad-auth error code replaced by
	not-authorized (EJAB-187).

	* src/aclocal.m4: configure --with-erlang option is now working
	(Thanks to Jerome Sautret) (EJAB-186).

	* src/mod_muc/mod_muc_log.erl: Spam prevention: The default
	behaviour is now to use the nofollow rel attributes for links that
	are submitted by users (EJAB-185).
	* doc/guide.tex: Likewise.

	* src/mod_muc/mod_muc_room.erl: API improvement: Implementation of
	an event to destroy MUC room from an external application (Thanks
	to Massimiliano Mirra) (EJAB-184).

2007-02-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Confirm to RFC3920 section 10.3 (thanks to
	Jerome Sautret)

2007-02-18  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc.erl: Node now try to clean its own online room
	when restarting (EJAB-182).

2007-02-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Clean online room table on cluster node
	restart

2007-02-13  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_auth_ldap.erl: Added ldap_local_filter option. This
	option provide an optimisation to reduce LDAP directory load when
	using attribute-based filters.

2007-02-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: Added separate version of
	element_to_string for HTML encoding
	* src/xml.erl: Reverted previous change

2007-02-04  Mickael Remond  <mickael.remond@process-one.net>

	* src/xml.erl: &apos; entity replaced by &#39; Should work more
	universaly (in HTML and XML).

2007-01-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix (thanks to asdx
	<asdx@jabber.snc.ru>)
	* src/ejd2odbc.erl: Likewise

2007-01-27  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_vcard_ldap.erl: LDAP server pool support (thanks to Evgeniy
	Khramtsov)
	* src/eldap/Makefile.in: Likewise
	* src/ejabberd_auth_ldap.erl: Likewise
	* src/eldap_pool.erl: Likewise

	* src/eldap/eldap_utils.erl: Implemented LDAP domain substitution

	* src/eldap/eldap.erl: Implemented queue to avoid bind deadlock under
	heavy load (thanks to Evgeniy Khramtsov)
	* src/eldap/eldap.hrl: Likewise

2007-01-26  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Fixed typos in labels.

2007-01-25  Mickael Remond  <mickael.remond@process-one.net>

	* src/eldap/Makefile.win32: fix build error on Windows.

2007-01-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/*: Plugin architecture for HTTP modules (thanks to
	Massimiliano Mirra)

2007-01-24  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Documentation for the
	domain_balancing_component_number option.

	* doc/guide.tex: Documentation for domain balancing.

	* doc/guide.tex: mod_muc now supports cluster.

	* doc/guide.tex: Updated the max_user_sessions section.

2007-01-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Now mod_muc can be distributed on
	several nodes
	* src/mod_muc/mod_muc_room.erl: Likewise

	* src/ejabberd_router.erl: Added bare_source and bare_destination
	service balancing options and domain_balancing_component_number
	option for specifying the number of connected components for the
	domain
	* src/ejabberd_config.erl: Likewise

2007-01-11  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Latex / Hevea related improvements for
	documentation generation (thanks to Sander Devrieze).
	* doc/introduction.tex: Likewise.
	* doc/dev.tex: Likewise.
	* doc/features.tex: Likewise.

2007-01-08  Christophe Romain <christophe.romain@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: add presence_based_delivery
	cluster support

2007-01-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_log.erl: Remove 'right-to-left override'
	unicode character (thanks to Badlop)

2006-12-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Bugfix

2006-12-21  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_private_odbc: Bugfix: an internal error was returned
	instead of the actual private data. This is now working as expected.

2006-12-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Bugfix

2006-12-16  Mickael Remond  <mickael.remond@process-one.net>

	* README: Added this file as a quickstart guide.

2006-12-15  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_echo.erl: The mod_echo can now be stopped without errors.
	This is not a major issue, but can mislead other developers learning
	from this example and test module (Thanks to Magnus Henoch).

	* TODO: Removed. The roadmap is managed on:
	http://support.process-one.net/browse/EJAB

	* src/ejabberd_ctl.erl: Bugfix: Now display all register commands for a
	vhost and not only one (Thanks to Badlop).
	* src/ejabberd.cfg.example: Fixed typo.

2006-12-14  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_config.erl: Added loglevel option. It is now possible to
	configure ejabberd dynamic loglevel from the config file.

2006-12-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_receiver.erl: Bugfix

	* src/ejabberd_c2s.erl: Bugfix

2006-12-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Better error handling

	* src/web/ejabberd_http_poll.erl: Minor fix

2006-12-04  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_loglevel.erl: Preliminary dynamic loglevel support.
	Debug can be enabled with the command "ejabberd_loglevel:set(5)".
	* src/ejabberd_app.erl: Likewise.
	* src/ejabberd.hrl: Likewise (More log levels are now supported).
	* src/ram_file_io_server.erl: Likewise (Needed to dynamically
	recompile the error logger).

2006-12-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_receiver.erl: Bugfix

2006-11-30  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_proxy65/mod_proxy65_services.erl: We now try to get the
	address of the component (if registered in DNS) or otherwise get the
	IP of the XMPP domain.

2006-11-29  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_logger_h.erl: Removed useless comments.

2006-11-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_proxy65/mod_proxy65_services.erl: Now using all interfaces as
	default value for proxy listen parameter.

	* src/ejabberd_c2s.erl: User login in with negative priority must not
	receive offline messages (Thanks to Badlop).

2006-11-24  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Fixed regexp ACL configuration examples
	(Thanks to Massimiliano Mirra).

	* src/muc/mod_muc_room.erl: API improvement. It is now possible
	to read and write a room config from a developer module (Thanks
	to Massimiliano Mirra).

2006-11-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/eldap/eldap.erl: Bugfix (thanks to Evgeniy Khramtsov)

	* src/ejabberd_sm.erl: The max_user_sessions option is now
	configured via access rule
	* src/ejabberd.cfg.example: Likewise

2006-11-20  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejd2odbc.erl: Copy mod_private data from Mnesia to
	relational database.
	* src/odbc/odbc_queries.erl: Refactoring.
	* src/odbc/mssql.sql: Likewise.
	* doc/guide.tex: Doc updated to mention mod_private_odbc.

	* src/odbc/mysql.sql: Started integration of mod_privacy_odbc for
	MySQL and MSSQL.
	* src/odbc/mssql.sql: Likewise.

2006-11-15  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc_room.erl: API improvement: It is now easier to
	extract data from the MUC room process.

2006-11-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_node_groups.erl: Support for node tagging
	* src/ejabberd_sup.erl: Likewise
	* src/ejabberd_frontend_socket.erl: Use node tags to determine
	backend nodes
	* src/ejabberd_config.erl: Added node_type and cluster_nodes
	options
	* src/ejabberd_app.erl: Establish connections to the nodes from
	the cluster_nodes option

	* src/ejabberd_router.erl: Added balancing method option
	* src/ejabberd_config.erl: Likewise

2006-11-05  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_private_odbc.erl: Support for MySQL and MSSQL.
	* src/odbc/odbc_queries.erl: Likewise.
	* src/odbc/mysql.sql: Likewise.
	* src/odbc/mssql.sql: Likewise.

2006-11-04  Mickael Remond  <mickael.remond@process-one.net>

	* src/eldap_utils.erl: Fixed missing export.

	* src/odbc/pg.sql: Database scripts consistency.
	* src/odbc/mysql.sql: Likewise.
	* src/odbc/mssql.sql: Likewise.

	* src/odbc/mysql: Database creation script should now be compliant
	with MySQL 4.0.x.

2006-10-29  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: XEP-0065 proxy documentation (thanks to Evgeniy
	Khramtsov).

2006-10-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.cfg.example: Changed the anonymous example a bit to
	work in most cases.
	* doc/guide.tex: Likewise.

2006-10-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_proxy65/: XEP-0065 proxy (thanks to Evgeniy Khramtsov)
	* src/Makefile.win32: Likewise
	* src/Makefile.in: Likewise
	* src/configure.ac: Likewise
	* src/jlib.hrl: Likewise
	* src/ejabberd.hrl: Added the ejabberd URL

2006-10-27  Mickael Remond  <mickael.remond@process-one.net>

	* src/guide.tex: Fixed typos.

2006-10-25  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_rdbms.erl: It is now possible to use ldap or internal
	authentication with some other modules using relationnal database
	storage. Refactored relational databases connections initialisation.
	* src/ejabberd_auth_odbc.erl: Likewise. odbc supervisor startup is now
	delegated to the ejabberd rdbms module.
	* src/ejabberd_app.erl: Likewise.

2006-10-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_socket.erl: Added sockname/1 and peername/1
	functions
	* src/ejabberd_frontend_socket.erl: Likewise
	* src/tls/tls.erl: Likewise
	* src/ejabberd_zlib/ejabberd_zlib.erl: Likewise

	* src/mod_private_odbc.erl: Private storage support using odbc
	* src/odbc/pg.sql: Likewise

1999-11-30  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_auth_ldap.erl: LDAP authentication now allows to
	match on several alternative attributes (thanks to Evgeniy
	Khramtsov).
	* src/mod_vcard_ldap.erl: Likewise.
	* doc/guide.tex: Updated.
	* eldap_utils.erl: Refactoring.
	* src/eldap/Makefile.in: Likewise.

2006-10-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_privacy_odbc.erl: Privacy rules support using odbc
	* src/odbc/pg.sql: Likewise

2006-10-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http_poll.erl: Bugfix

2006-10-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_privacy.erl: Use hooks instead of direct function calls
	* src/ejabberd_c2s.erl: Updated

2006-10-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/shaper.erl: Bugfix
	* src/ejabberd_config.erl: Likewise

	* src/ejabberd_frontend_socket.erl: Support for frontend
	connection manager
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_listener.erl: Likewise
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_service.erl: Likewise
	* src/ejabberd_socket.erl: Likewise
	* src/web/ejabberd_http_poll.erl: Likewise

2006-09-27  Mickael Remond  <mickael.remond@process-one.net>

	* doc/release_notes_1.1.2.txt: Minor fixes.

	* doc/guide.tex: Fixed Latexish typos.

2006-09-26  Mickael Remond  <mickael.remond@process-one.net>

	* doc/release_notes_1.1.2.txt: Draft release notes.

	* src/msgs/pl.msg: Updated (thanks to Andrzej Smyk).

	* src/ejabberd_s2s.erl: More precise message for the new s2s
	statistic command.

	* src/mod_muc/mod_muc_room.erl: Minor english update.
	* src/msgs/pl.msg: Likewise.
	* src/msgs/uk.msg: Likewise.
	* src/msgs/pt-br.msg: Likewise.
	* src/msgs/cs.msg: Likewise.
	* src/msgs/ru.msg: Likewise.
	* src/msgs/es.msg: Likewise.
	* src/msgs/fr.msg: Likewise.
	* src/msgs/de.msg: Likewise.
	* src/msgs/nl.msg: Likewise.

	* src/msgs/pt-br.msg: Updated Brazilian translation (thanks to
	Renato Botelho) and clean-up.

2006-09-25  Mickael Remond  <mickael.remond@process-one.net>

	* src/msgs/de.msg: Updated German translation (thanks to Nikolaus
	Polak).

	* src/ejabberd.app: Version update for ejabberd 1.1.2.

	* src/msgs/pl.msg: Updated Polish translation (thanks to Zbyszek
	Zolkiewski).

	* src/msgs/de.msg: Updated German translation (thanks to Marvin
	Preuss).

	* src/msgs/nl.msg: Updated Dutch translation (thanks to Sander
	 Devrieze).

	* src/msgs/cs.msg: Updated Czech translation and removed unused
	 strings.

	* doc/introduction.tex: Minor doc updates for release 1.1.2.

2006-09-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Added incoming-s2s-number and
	outgoing-s2s-number ejabberdctl commands

	* src/ejabberd_socket.erl: Support for non-xml sockets
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_service.erl: Likewise
	* src/web/ejabberd_http.erl: Likewise

2006-09-24  Mickael Remond  <mickael.remond@process-one.net>

	* src/msgs/es.msg: Updated Spanish translation (thanks to Badlop).

	* src/mod_muc/mod_muc_room.erl: Strings update (thanks to Sergei
	Golovan).
	* src/msgs/ru.msg: Updated Russian translation (thanks to Sergei
	Golovan).
	* src/msgs/uk.msg: Updated Ukrainian translation (thanks to Sergei
	Golovan).
	* src/msgs/fr.msg: Update French translation.

	* src/doc/guide.html: Minor W3C compliance fix in an Hevea
	generated URL.

	* src/doc/features.html: Added to be consistent (guide.html is in
	the repository to make Latex optional, but still allow access to
	the doc).

2006-09-23  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.hrl: Updated to version 1.1.2

2006-09-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/eldap/eldap.erl: Enable the keepalive socket option (thanks
	to Evgeniy Khramtsov)

	* src/ejabberd_auth_ldap.erl: Now uses two LDAP connections
	(thanks to Evgeniy Khramtsov)

	* src/eldap/eldap_filter.erl: Bugfix (thanks to Evgeniy Khramtsov)
	* src/mod_vcard_ldap.erl: Likewise

2006-09-22  Mickael Remond  <mickael.remond@process-one.net>

	* src/msgs/cs.msg: Added Czech translation (thanks to Milos Svasek).

	* src/mod_muc/mod_muc.erl: Component name is now more user friendly
	(thanks to Badlop).
	* src/mod_irc/mod_irc.erl: Likewise.
	* src/mod_pubsub/mod_pubsub.erl: Likewise.

	* src/msgs/fr.msg: updated French translation.

	* doc/guide.tex: Large improvements for ejabberd 1.1.2 (thanks to
	Sander Devrieze)
	* doc/version.tex: Likewise.
	* doc/features.tex: Likewise.
	* doc/Makefile: Likewise.
	* doc/dev.tex: Likewise.

2006-09-14  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Minor fix on index generation.

2006-09-14  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated (thanks to Evgeniy Khramtsov)

	* src/ejabberd_auth_ldap.erl: Better LDAP support (thanks to
	Evgeniy Khramtsov)
	* src/mod_vcard_ldap.erl: Likewise
	* src/eldap/eldap_filter.erl: Likewise

2006-09-11  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/mssql.sql: Removed unused fields.

2006-09-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Updated

	* src/mod_muc/mod_muc_log.erl: Fixed html special characters
	escaping, added new image buttons, chatroom titles now point to
	xmpp: URIs (thanks to Badlop)

	* src/ejabberd_listener.erl: Bugfix

2006-09-05  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_muc/mod_muc.erl: It is now possible to configure the MUC room
	history feature. A new option has been added in ejabberd muc module
	configuration (history_size) to define the size of the history. 0 is
	used to disable the feature.
	* src/mod_muc/mod_muc_room.erl: Likewise.
	* doc/guide.tex: Likewise.

2006-09-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_socket.erl: All XML socket operations moved here
	* src/ejabberd_listener.erl: Updated
	* src/ejabberd_receiver.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd_service.erl: Likewise

	* src/mod_shared_roster.erl: Bugfix

	* src/mod_roster_odbc.erl: Bugfix

2006-09-03  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/odbc_queries.erl: Support for Microsoft SQL Server as a
	database backend (via ODBC).
	* src/odbc/ejabberd_odbc.erl: Likewise.
	* src/odbc/mssql.sql: Likewise.
	* src/odbc/Makefile.in: Likewise.
	* src/ejabberd_auth_odbc.erl: Likewise.
	* src/mod_offline_odbc.erl: Likewise.
	* src/mod_roster_odbc.erl: Likewise.
	* src/mod_last_odbc.erl: Likewise.
	* src/configure.ac: Likewise
	* doc/guide.tex: Likewise.
	* doc/introduction.tex: Likewise.
	* src/odbc/pg.sql: Minor fix.

2006-08-28  Mickael Remond  <mickael.remond@process-one.net>

	* Makefile.in: Fix for MacOSX compilation.
	* ejabberd_zlib/Makefile.in: Likewise.
	* mod_irc/Makefile.in: Likewise.
	* stringprep/Makefile.in: Likewise.
	* tls/Makefile.in: Likewise.

	* src/ejabberd.app: Updated to the current version.

2006-08-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Fixed logging configuring
	permission check

2006-08-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl: Now filter_packet hook works in
	'global' context

2006-08-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/tls_drv.c: Report OpenSSL error messages (thanks to
	Magnus Henoch)

	* src/mod_muc/mod_muc_room.erl: Use standardized MUC room
	configuration fields (thanks to Magnus Henoch and Andy Turner)

2006-08-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix

2006-07-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_c2s.erl: Bugfix: added a missing catch and fixed the
	error code used on unknown namespace.
	* src/ejabberd_s2s_out.erl: Improved s2s connection negociation
	(dialback namespace usage) when using tls.
	* src/ejabberd_sm.erl: Fixed the error code used on unknown namespace.
	* src/mod_register.erl: ejabberd now sends iq result and stream end on
	user remove.

2006-07-16  Mickael Remond  <mickael.remond@process-one.net>

	* src/acl.erl: The server does not crash anymore on wrong acl rule. Add
	rule error message in log file.

2006-07-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_web_admin.erl: User creation form now creates the
	user for the current virual host only and does not require to type
	the hostname.
	* src/jlib.erl: String to JID conversion now returns an error if the
	JID string contains two arobases.

2006-07-06  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_shared_roster.erl: Shared roster entries can now be moved or
	rename from a client without breaking current presence status.
	* src/mod_roster.erl: Likewise.
	* src/mod_roster_odbc.erl: Likewise.

	* src/mod_muc/mod_muc_room.erl: Fixed the order in which room presence
	packets are sent (First existing presence to new occupant, then new
	occupant presence to existing users.

2006-07-05  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_web_admin.erl: More flexible parsing the shared
	roster members list from the configuration form.
	* src/mod_shared_roster.erl: Deletng a shared roster group now
	correctly deletes its user entries.

	* src/mod_shared_roster.erl: The logged user (self) is now removed from
	the shared roster list.
	* src/ejabberd_auth.erl: Better handling of errors when the server for
	authentication is unknown.

2006-06-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_in.erl: Removed needless check for xmlns:db
	when starttls is enabled

2006-06-15  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_http_poll.erl: Bugfix: using tuple instead of a Pid
	to send Erlang messages in a rarely used case.

2006-06-13  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_auth.erl: Fixed broken multiple connection with
	anonymous login problem.
	* src/ejabberd_auth_anonymous.erl: Likewise.

2006-06-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: Support for pubsub node creation
	ACL. It is now possible to limit the node creation rights using an
	ACL from ejabberd config file (Thanks to Christophe Romain).
	* doc/guide.tex: Likewise.
	* src/ejabberd.cfg.example.

	* src/mod_pubsub/mod_pubsub.erl: Discovery query on an item does
	no more return an "item not found error". Discovery stop correctly
	at the item level (Thanks to Christophe Romain).

2006-06-02  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_http_poll.erl: Messages polled between the
	the last client request and the polling timeout were lost. Those
	messages are now resent using ejabberd routing mechanisms.

	* src/web/ejabberd_http.erl: The web module now accepts HTTP
	absolute URL (used behind a proxy). This apply to HTTP polling and
	to the web interface (Thanks to Jean-Sebastien Pedron).

2006-05-29  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_roster.erl: According to RFC3921 section 9.2, outbound
	subscribe presence packets must be sent, even if the user has already
	asked for subcription previously (subscription: none and pending: out).
	The mod_roster now conforms to this behaviour.
	* src/mod_roster_odbc.erl: Likewise.

2006-05-27  Mickael Remond  <mickael.remond@process-one.net>

	* src/configure.ac: Added an optional check for krb5.h in
	configure. ejabberd can now be build directly on RedHat and
	OpenBSD.

2006-05-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/sk.msg: Slovak translation (thanks to Juraj Michalek
	and SkLUG)

2006-05-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/pg.sql: Updated

	* src/mod_shared_roster.erl: Updated

	* src/ejabberd_sm.erl: Bugfix

	* src/mod_roster.erl: Bugfix
	* src/mod_roster_odbc.erl: Likewise

2006-05-23  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_roster.erl: The subscribe request are now resend at login as
	long as they have not been answered. mod_roster do no more depends on
	mod_offline.
	* src/ejabberd_sm.erl: Likewise.
	* src/ejabberd_c2s.erl: Likewise.
	* src/mod_roster_odbc.erl: Likewise (The ODBC/relational support has
	not yet been tested).
	* src/mod_roster.hrl: Likewise.
	* src/mod_offline.erl: Likewise.
	* src/mod_offline_odbc.erl: Likewise.
	* odbc/pg.sql: Likewise.
	* odbc/mysql.sql: Likewise.

2006-05-22  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_sm.erl: The max_user_sessions has been moved to
	host configuration.
	* src/ejabberd.cfg.example: Likewise.
	* doc/guide.tex: Likewise.

2006-05-21  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_sm.erl: An option to limit the number of opened sessions
	for a given user have been added. As a default, a given user can only
	log in 10 times with different resources. After that, new connections
	replace the older ones.
	* src/ejabberd.cfg.example: Likewise.
	* doc/guide.tex: Likewise.

2006-05-15  Mickael Remond  <mickael.remond@process-one.net>

	* src/web/ejabberd_http_poll.erl: Timeout disconnection were not
	properly handled after "active once" migration. This is now fixed.

2006-05-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_configure.erl: Unknown tables or tables from now unused
	modules are ignored during restore. The restore can now be performed in
	such case.
	* src/web/ejabberd_web_admin.erl: Likewise.
	* src/ejabberd_admin.erl: Code refactoring. Common Mnesia database
	restore function.

	* src/ejabberd_ctl.erl: Now prints a user-friendly when trying to
	restore a backup from a non-existent file.

	* src/ejabberd_ctl.erl: Added a way to delete the older message
	from the offline message table. This function is only available if
	offline message queue is stored in Mnesia internal database. The
	function delete_old_messages is not available in mod_offline_odbc.

2006-05-01  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_ctl.erl: Unknown tables or tables from now unused
	modules are ignored during restore. The restore can now be performed in
	such case.

2006-04-28  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.hrl: release 1.1.1
	* doc/version.tex: Likewise
	* doc/guide.tex: Likewise

2006-04-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl.erl: Bugfix: anonymous authentication was always
	enabled

2006-04-27  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_ctl.erl: The status now only returns "started" if
	ejabberd is started and ready to accept requests.

2006-04-24  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Added a documentation for max_stanza_size option

2006-04-24  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.hrl: Updated for version 1.1.0.

2006-04-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/configure: Removed '==' bashism (thanks to Magnus Henoch)
	* src/aclocal.m4: Likewise

	* src/ejabberd_c2s.erl: Resend messages when leaving negative
	presence state (thanks to Magnus Henoch)

2006-04-23  Mickael Remond  <mickael.remond@process-one.net>

	* src/msgs/fr.msg: Updated
	* src/msgs/de.msg: Updated (thanks to Nikolaus Polak)
	* src/ejabberd_sm.erl: Now delivering messages to all resources with
	max equal priority when this priority is non-negative.

	* src/guide.tex: Added documentation for native database configuration.

2006-04-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pt-br.msg: Updated (thanks to Lucius Curado)

	* src/xml_stream.erl: Support for stanza size limit (thanks to
	Igor Goryachev)
	* src/ejabberd_receiver.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_auth.erl: Fixed try_register/3 behaviour

2006-04-20  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.cfg.example: Update of the example for anonymous.
	Removed unnecessary parameter.
	* src/ejabberd_auth_anonymous.erl: Removed unnecessary parameter /
	bugfix.
	* src/ejabberd_auth.erl: Bugfix: We now are forced to check is an
	anonymous user is log under a given user name before trying to
	register it.
	* doc/guide.tex: Updated (SASL anonymous and anonymous login).

2006-04-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pl.msg: Updated (thanks to Andrzej Smyk)

2006-04-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/xml_stream.erl: Cleanup

	* src/ejabberd_service.erl: Updated to use ejabberd_receiver

2006-04-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Minor fix

	* src/ejabberd_c2s.erl: Bugfix (thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

2006-04-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/ejabberd.cfg.example: Updated (thanks to Badlop)

	* doc/guide.tex: Updated (thanks to Badlop)

2006-04-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/mod_pubsub/mod_pubsub.erl: Fixed pubsub root node creation
	(conflict error was send on node creation)

2006-04-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: SASL Anonymous + Anonymous login support
	(thanks to Mickael Remond and Magnus Henoch)
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_auth.erl: Likewise
	* src/ejabberd_auth_anonymous.erl: Likewise
	* src/cyrsasl.erl: Likewise
	* src/cyrsasl_anonymous.erl: Likewise
	* src/ejabberd.cfg.example: Likewise

2006-04-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/expat_erl.c: Use binaries for CDATA
	* src/xml.erl: Likewise

2006-04-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/mod_configure.erl: Updated translation strings (thanks to
	Sergei Golovan)
	* src/web/ejabberd_web_admin.erl: Likewise

	* src/ejabberd_s2s_in.erl: Changed a path to PKIX includes (thanks
	to Sergei Golovan)

2006-04-01  Mickael Remond  <mickael.remond@process-one.net>

	* src/Makefile.in: Added an option to compile ejabberd with debug
	print-out (make ejabberd_debug=true).
	* src/ejabberd_c2s.erl: Added a new debug printout: We can now print
	the XML packets send by the server.

2006-03-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix

2006-03-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Enable zlib only over TCP

2006-03-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix (thanks to Sergei Golovan)

2006-03-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_privacy.erl: Fixed privacy list pushing (thanks to
	Sergei Golovan)
	* src/ejabberd_c2s.erl: Likewise

2006-03-16  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_sm.erl: Remove unnecessary use delete_object, which can,
	in some context break indexes, when used on non bag table.

2006-03-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix

2006-03-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/xml_stream.erl: Added catching of gen_fsm:send_event errors

	* src/ejabberd_s2s_out.erl: Better support for multiple SRV
	records (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_log.erl: Support for chatroom logging
	(thanks to Badlop)
	* src/mod_muc/mod_muc_room.erl: Likewise
	* src/mod_muc/Makefile.in: Likewise
	* src/mod_muc/Makefile.win32: Likewise

2006-03-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/gen_iq_handler.erl: Added support for {queues, N} IQ handler
	type

2006-03-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Bugfix

2006-03-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix

	* src/ejabberd_auth_odbc.erl: Bugfix

2006-03-04  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_logger_h.erl: reopen-log function now rename the log
	file if it has not been already renamed by a logrotate process. This
	change allow ejabberd administrators to rotate log files on Windows
	(EJAB-52).

2006-02-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Added a interface for node
	updating
	* src/ejabberd_update.erl: Added function update_info/0

2006-02-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* contrib/extract_translations/extract_translations.erl: Minor
	update (thanks to Sergei Golovan)

	* src/ejabberd_zlib/Makefile.win32: Zlib support for Windows build
	(thanks to Sergei Golovan)
	* src/Makefile.win32: Likewise
	* src/configure.erl: Likewise

2006-02-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Added API for virtual host specific
	commands, removed registered-users command
	* src/ejabberd_auth.erl: Added processing of registered-users
	command
	* src/ejabberd_auth_internal.erl: Likewise
	* src/ejabberd_auth_ldap.erl: Likewise
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/ejabberd_app.erl: Added inititalization of ejabberd_ctl
	* src/ejabberd_sm.erl: Minor update

2006-02-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Added handling for "%", "&"
	and "~" prefixes in IRC nicknames (thanks to Vladimir Kulev)

	* src/mod_irc/mod_irc_connection.erl: Added /msg and /ctcp
	commands, improved handling of channel topic and kick, mirc colors
	now filtered, other minor improvements (thanks to Oleg V. Motienko
	and Magnus Henoch)

	* src/mod_configure.erl: Improved strings (thanks to Sander
	Devrieze)
	* src/mod_vcard.erl: Likewise
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise
	* src/web/ejabberd_web_admin.erl: Likewise

2006-02-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_service_log.erl: Bugfix (thanks to Badlop)

	* src/jd2ejd.erl: Use mod_vcard_odbc if it is loaded (thanks to
	Tomasz Sterna)

2006-02-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Added a few ejabberdctl commands

	* src/ejabberd_ctl.erl: New interface for command registration

2006-02-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Partially rewritten
	* src/ejabberd_ctl.hrl: Definitions of exit status codes moved
	here

2006-02-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix

2006-02-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/ejabberd_odbc.erl: Reconnect on ODBC connection closing

2006-02-07  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_auth.erl: plugin authentication modules can now
	be used in the configuration file: {auth_method, module} will now
	use the module ejabberd_auth_module.erl for authentication.

2006-02-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Kick non-members when room
	reconfigured to be member-only or when membership is revoked in
	member-only room, allowed "true" and "false" in x:data forms
	(thanks to Sergei Golovan)

	* src/mod_configure.erl: Added "Host" parameter to get_form and
	set_form functions (thanks to Sergei Golovan)

	* src/ejabberd_s2s_out.erl: Bugfix

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/web/ejabberd_web.erl: Bugfix (thanks to Badlop)

	* src/mod_irc/mod_irc.erl: Updated copyright dates
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise
	* src/web/ejabberd_web_admin.erl: Likewise

2006-02-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth_odbc.erl: Added ejabberd_odbc_sup to ejabberd
	supervision tree

	* src/web/ejabberd_http.erl: Authentication check moved to
	ejabberd_web.erl
	* src/web/ejabberd_web.erl: Likewise

	* src/web/Makefile.in: Added ejabberd_http.hrl dependency

	* src/web/ejabberd_http_poll.erl: Updated to use {active, once}
	socket mode

	* src/mod_irc/mod_irc.erl: Updated to use gen_server behaviour and
	ejabberd supervision tree
	* src/mod_irc/mod_irc_connection.erl: Likewise

2006-02-02  Mickael Remond  <mickael.remond@process-one.net>

	* src/configure.ac: --prefix option can now override the default
	install dir
	* src/configure: Likewise
	* src/Makefile.in: Likewise

2006-02-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Updated to use gen_server
	behaviour and ejabberd supervision tree
	* src/mod_echo.erl: Likewise

2006-02-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Added a supervisor for conference room
	processes
	* src/mod_muc/mod_muc_room.erl: Likewise

2006-01-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/pg.sql: Fixed syntax error

2006-01-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl: Updated to use gen_server behaviour
	* src/ejabberd_sm.erl: Likewise
	* src/ejabberd_s2s.erl: Likewise
	* src/gen_iq_handler.erl: Likewise

	* src/ejabberd_sup.erl: Added supervisor for ejabberd_receiver
	* src/ejabberd_receiver.erl: Updated

2006-01-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_update.erl: Support for run-time ejabberd updating
	(not completed)
	* src/ejabberd_c2s.erl: Added 'update_info' module attribute for
	testing ejabberd_update

2006-01-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Remove top-level xmlns from incoming
	stanzas
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_service.erl: Likewise

	* src/ejabberd_c2s.erl: Better error handling for stream
	compression support (thanks to Sergei Golovan)

2006-01-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix

2006-01-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Partially rewritten to work more
	efficiently and avoid race conditions
	* src/ejabberd_c2s.erl: Likewise

2006-01-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Cleanup

2006-01-20  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd_receiver.erl: Added new debugging trace: It is now
	possible to dump the XML stream received from a client (usefull for
	client debugging).

2006-01-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/aclocal.m4: Updated for zlib support
	* src/configure.ac: Likewise

	* src/mod_muc/mod_muc_room.erl: Weakened presence filtering, added
	warning in non-anonymous rooms, room destroying updated to latest
	JEP-0045, added a number of occupants and room name in room's
	disco#info reply, miscellaneous internal changes (thanks to Sergei
	Golovan)

	* src/mod_muc/mod_muc.erl: Better support for nick unregistration
	(thanks to Sergei Golovan)

	* src/ejabberd_zlib/ejabberd_zlib.erl: Zlib support (thanks to
	Sergei Golovan)
	* src/ejabberd_zlib/ejabberd_zlib_drv.c: Likewise
	* src/ejabberd_zlib/Makefile.in: Likewise
	* src/ejabberd_c2s.erl: Stream compression support (JEP-0138)
	* src/ejabberd_receiver.erl: Likewise

	* src/mod_disco.erl: Don't split node name before calling hooks
	(thanks to Sergei Golovan)

	* src/mod_configure.erl: Support for configuration using ad-hoc
	commands (thanks to Sergei Golovan)

	* src/mod_announce.erl: Support for sending announce messages
	using ad-hoc commands (thanks to Sergei Golovan)

	* src/mod_adhoc.erl: Ad-hoc support (JEP-0050) (thanks to Magnus
	Henoch)
	* src/adhoc.erl: Likewise
	* src/adhoc.hrl: Likewise

	* src/jlib.hrl: Updated (thanks to Sergei Golovan)

	* src/gen_mod.erl: Added function is_loaded/2 (thanks to Sergei
	Golovan)

	* src/ejabberd_service.erl: Changed error message on handshake
	error (thanks to Sergei Golovan)

	* src/ejabberd.cfg.example: Updated (thanks to Sergei Golovan)

2006-01-13  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/ejabberd_odbc.erl: underscore and percent are now only
	escaped in like queries. MySQL where not escaping those escaped
	characters in other context.
	* src/mod_vcard_odbc.erl: likewise.
	* src/odbc/mysql.sql: Fixed MySQL database creation script: Was
	not properly working with all MySQL version.
	* src/odbc/ejabberd_odbc.erl: Added a way to retry database
	connection connect for 5 minutes when the connection is lost. No
	further connection is retry after.
	* src/odbc/ejabberd_odbc_sup.erl: likewise.

2006-01-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Bugfix

	* src/ejabberd_receiver.erl: Rewritten to use {active, once} mode
	for socket
	* src/ejabberd_c2s.erl: Update
	* src/ejabberd_listener.erl: Likewise
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd_service.erl: Likewise
	* src/shaper.erl: Likewise
	* src/tls/tls.erl: Likewise
	* src/web/ejabberd_http.erl: Likewise

2006-01-02  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/ejabberd_odbc.erl: Native MySQL support

2005-12-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_logger_h.erl: Speed optimizations

2005-12-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/Makefile.in: Clean results of ASN.1 compiler (thanks to
	Sergei Golovan)

	* src/win32/ejabberd.nsh: Removed (thanks to Sergei Golovan)

2005-12-22  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/ejabberd_odbc.erl: Added error message on ODBC
	connection to help ODBC configuration troubleshooting.

2005-12-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/Makefile.win32: Updated (thanks to Sergei Golovan)
	* src/configure.erl: Likewise
	* src/win32/CheckReqs.ini: Likewise
	* src/win32/CheckReqs1.ini: Likewise
	* src/win32/CheckReqs1H.ini: Likewise
	* src/win32/ejabberd.nsh: Likewise
	* src/win32/ejabberd.nsi: Likewise

	* src/odbc/ejabberd_odbc.erl: Bugfix

2005-12-21  Mickael Remond  <mickael.remond@process-one.net>

	* src/odbc/mysql.sql: Database description for MySQL Database 4.1
	(Max version, with Innodb)
	* src/ejabberd_auth_odbc.erl: MySQL ODBC support
	* src/mod_offline_odbc.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewsie
	* src/mod_roster_odbc.erl: Likewise
	* src/odbc/ejabberd_odbc.erl: Likewise
	* src/mod_last_odbc.erl: Likewise

2005-12-16  Mickael Remond  <mickael.remond@process-one.net>

	* doc/Makefile: Added helper to generate the docs (Thanks to Sander
	Devrieze)
	* doc/guide.tex: Added ejabberd 1.0.0 release notes.
	* doc/dev.tex: Code clean-up (Thanks to Sander Devrieze)

2005-12-16  Alexey Shchepin  <alexey@sevcom.net>

	* doc/features.tex: Added feature sheet (Thanks to Sander
	Devrieze)

2005-12-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/iconv_erl.c: Bugfix (thanks to Tomas Janousek)

2005-12-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/win32/ejabberd.nsi: Updated (thanks to Maxim Ryazanov)

	* src/ejabberd.hrl: Updated version
	* src/ejabberd.app: Likewise
	* doc/version.tex: Likewise

2005-12-13  Mickael Remond  <mickael.remond@process-one.net>

	* doc/release_notes_1.0.0.txt: Added preliminary version of ejabberd
	1.0.0 release notes.
	* doc/guide.html: Generated the updated HTML version of the documentation.

2005-12-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Workaround for gateway subscriptions now
	should be enabled with --enable-roster-gateway-workaround
	* src/mod_roster_odbc.erl: Likewise
	* src/configure.ac: Likewise
	* src/Makefile.in: Likewise

2005-12-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Added logging of termination

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/msgs/*.msg: Updated (thanks to Badlop)

2005-12-08  Mickael Remond  <mickael.remond@process-one.net>

	* contribs/contrib/extract_translations/prepare-translation.sh:
	Small improvements.
	* src/msgs/fr.msg: Updated

2005-12-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pl.msg: Fixed syntax error

	* src/mod_offline.erl: Don't store headline messages
	* src/mod_offline_odbc.erl: Likewise

2005-12-06  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

2005-12-06  Mickael Remond  <mickael.remond@process-one.net>

	* src/ejabberd.cfg.example: Updated

	* src/Makefile.*: Can now be build when the Erlang environment is
	not Erlang/OTP but the Erlang REPOS CDROM.  Still compatible with
	standard Erlang/OTP install
	* aclocal.m4: Likewise
	* src/Makefile.*: Can now be build with Erlang debug_info with
	'make debug=true'

2005-12-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pt-br.msg: Updated (thanks to Victor Hugo dos Santos)

	* src/msgs/pl.msg: Updated (thanks to Andrzej Smyk)

	* src/msgs/sv.msg: Updated (thanks to Magnus Henoch)

	* src/msgs/de.msg: Updated (thanks to Patrick Dreker)

2005-11-30  Mickael Remond  <mickael.remond@process-one.net>

	* doc/yozhikheader.png: Added feature sheet header (Thanks to Sander
	Devrieze)

2005-11-28  Mickael Remond  <mickael.remond@process-one.net>

	* doc/guide.tex: Improved and updated documentation (Thanks to Sander
	Devrieze)
	* doc/guide.html: Likewise
	* doc/features.tex: Likewise
	* doc/introduction.tex: Likewise
	* doc/version.tex: Likewise
	* doc/logo.png: New logo for ejabberd doc (Thanks to Sander Devrieze)

2005-11-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: Now web interface is compliant to
	XHTML 1.0 Transitional (thanks to Sander Devrieze)
	* src/web/ejabberd_web_admin.erl: Likewise

2005-11-25  Alexey Shchepin  <alexey@sevcom.net>

	* doc/Makefile: Now really added

2005-11-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: The "id" attribute of roster push packet was
	missed (thanks to Maxim Ryazanov)
	* src/mod_roster_odbc.erl: Likewise

	* src/web/ejabberd_web_admin.erl: Fixed encoding of user names in
	URLs

	* src/web/ejabberd_http.erl: Added url_encode function from yaws

	* src/ejabberd_c2s.erl: Send stream error when connection is
	replaced (thanks to Maxim Ryazanov)

2005-11-19  Mickael Remond  <mickael.remond@process-one.net>

	* contrib/extract_translations/prepare-translation.sh: Added
	wrapper to extract_translation.erl (thanks to Badlop)

2005-11-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard.erl: Fixed xmlns in disco items replies (thanks to
	Maxim Ryazanov)
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard_odbc.erl: Likewise

	* src/tls/Makefile.in: Use CPPFLAGS (thanks to Magnus Henoch)

2005-11-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_in.erl: Support for dNSName certificate field
	and DNS name matching
	* src/XmppAddr.asn1: Moved here from src/tls/XmppAddr.asn1
	* src/tls/XmppAddr.asn1: Likewise
	* src/Makefile.in: Updated
	* src/tls/Makefile.in: Updated

2005-11-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/ejabberd_odbc.erl: Support for mnesia-like transaction
	interface
	* src/mod_roster_odbc.erl: Updated to use
	ejabberd_odbc:sql_transaction/2

2005-11-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Fixed invalid behaviour upon
	connecting to host with invalid domain
	* src/ejabberd_s2s.erl: Likewise

2005-11-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_config.erl: Support for per host certificates
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_s2s_in.erl: Fixed id-on-xmppAddr processing

2005-11-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_disco.erl: Fixed extra_domains option processing

	* src/ejabberd_s2s_out.erl: Support for STARTTLS+SASL EXTERNAL
	(not well-tested yet)
	* src/ejabberd_s2s_in.erl: Likewise
	* src/tls/tls.erl: Likewise
	* src/tls/tls_drv.c: Likewise
	* src/tls/XmppAddr.asn1: Likewise
	* src/tls/Makefile.in: Likewise

2005-10-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_disco.erl: Minor fix

2005-10-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix

2005-10-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/tls.erl: Accept {error,already_loaded} from
	erl_ddll:load_driver/2
	* src/stringprep/stringprep.erl: Likewise
	* src/mod_irc/iconv.erl: Likewise
	* src/ejabberd_app.erl: Likewise

	* src/tls/tls_drv.c: Support for "connect" method
	* src/tls/tls.erl: Likewise

	* src/ejabberd_s2s_in.erl: Support for STARTTLS+Dialback
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd_receiver.erl: Added a few hacks ({active,once} mode
	should be used instead of recv/3 call to avoid them)
	* src/ejabberd_config.erl: Added s2s_use_starttls and s2s_certfile
	options
	* src/ejabberd.cfg.example: Likewise

2005-10-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_app.erl: Try to load tls_drv at startup to avoid
	unloading of libssl (thanks to Brian Campbell)

2005-10-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/pg.sql: Added spool.seq field for offline messages
	sorting
	* src/mod_offline_odbc.erl: Likewise

2005-10-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Bugfix

2005-10-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/gen_iq_handler.erl: Bugfix

2005-10-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth_odbc.erl: Minor fix

	* src/odbc/ejabberd_odbc.erl: Updated pgsql support

	* src/mod_roster_odbc.erl: Bugfix

	* src/ejabberd_c2s.erl: Updated to work correctly with
	mod_vcard_odbc

2005-10-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/ejabberd_odbc.erl: Experimental support for pgsql
	library

	* src/ejabberd_auth_odbc.erl: Bugfix

	* src/mod_roster_odbc.erl: Bugfix

2005-10-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Added vCard converter

	* src/mod_vcard_odbc.erl: vCard support via ODBC

	* src/odbc/pg.sql: Updated

2005-09-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated API for better
	integration with J-EAI web interface

	* src/mod_shared_roster.erl: Now possible to specify all users on
	virtual host in group
	* src/web/ejabberd_web_admin.erl: Likewise

2005-09-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.erl: Bugfix

2005-09-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Updated

2005-09-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_disco.erl: Disco publishing support (thanks to Magnus
	Henoch)

	* src/mod_disco.erl: Functions register_sm_feature and
	register_sm_node replaced with hooks (thanks to Sergei Golovan)
	* src/mod_vcard.erl: Updated
	* src/mod_vcard_ldap.erl: Likewise

	* src/mod_disco.erl: Now mod_disco doesn't depend on mod_configure
	(thanks to Sergei Golovan)
	* src/mod_configure.erl: Likewise

2005-08-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejd2odbc.erl: Converter from mnesia to ODBC

	* src/mod_offline_odbc.erl: Minor fix

2005-08-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard_ldap.erl: Bugfix

	* src/mod_vcard.erl: Bugfix

2005-08-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth_odbc.erl: Bugfix

2005-08-21  Alexey Shchepin  <alexey@sevcom.net>

	* doc/dev.tex: Updated

2005-08-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl_digest.erl: Fixed challenge/response parsing (thanks
	to Martin Pokorny)

2005-08-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pl.msg: Updated (thanks to Andrew Smyk)

	* src/web/ejabberd_web_admin.erl: Bugfix (thanks to Badlop)

2005-08-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/win32/inetrc: Added (thanks to Sergei Golovan)

	* src/Makefile.win32: Updated (thanks to Sergei Golovan)
	* src/win32/ejabberd.cfg: Likewise
	* src/win32/ejabberd.nsi: Likewise

	* doc/guide.tex: Updated

	* src/ejabberd.hrl: Updated version

2005-08-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

2005-08-01  Mickael Remond  <mremond@erlang-fr.org>

	* (all): ejabberd-0.9.8 released

	* src/msgs/fr.msg: Updated

2005-07-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_config.erl: Added host_config option
	* doc/guide.tex: Updated

	* src/ejabberd_auth_ldap.erl: Bugfix

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/msgs/de.msg: Updated (thanks to Torsten Werner)

	* src/web/ejabberd_web_admin.erl: Fixed CSS style sheet to be
	standards compliant (thanks to Sander Devrieze)

2005-07-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Added "Virtual Hosts" page

2005-07-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl: Added filter_packet hook

2005-07-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/jd2ejd.erl: Updated to work with ODBC

	* src/mod_roster_odbc.erl: Updated

2005-07-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_offline_odbc.erl: Bugfix

	* src/mod_last_odbc.erl: Bugfix

2005-07-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Updated to J-EAI version

2005-07-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/acl.erl: Slightly changed "access" option processing

	* src/mod_disco.erl: Fixed processing of host features and
	extra_domains option

	* src/ejabberd_c2s.erl: Processing of jabber:iq:register totally
	moved to mod_register.erl (thanks to Sergei Golovan)
	* src/mod_register.erl: Likewise

	* src/win32/ejabberd.nsi: Added two pictures in installer (thanks
	to Maxim Ryazanov)
	* src/win32/ejabberd_header.bmp: Likewise
	* src/win32/ejabberd_intro.bmp: Likewise

	* src/web/ejabberd_web_admin.erl: Fixed spelling of word
	"authentication"
	* src/ejabberd_c2s.erl: Likewise

2005-07-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_register.erl: Bugfix

	* src/mod_vcard.erl: Bugfix

	* src/ejabberd_app.erl: Updated to allow different authentication
	methods for different virtual hosts
	* src/ejabberd_auth.erl: Likewise
	* src/ejabberd_auth_external.erl: Likewise
	* src/ejabberd_auth_internal.erl: Likewise
	* src/ejabberd_auth_ldap.erl: Likewise
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/cyrsasl.erl: Likewise
	* src/cyrsasl_digest.erl: Likewise
	* src/cyrsasl_plain.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_config.erl: Likewise
	* src/extauth.erl: Likewise
	* src/mod_last_odbc.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise
	* src/mod_roster_odbc.erl: Likewise
	* src/odbc/ejabberd_odbc.erl: Likewise
	* src/odbc/ejabberd_odbc_sup.erl: Likewise

2005-07-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_app.erl: Bugfix

	* src/ejabberd_config.erl: Bugfix

2005-06-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_offline.erl: Bugfix

2005-06-20  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Enhanced virtual hosting support

2005-05-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Bugfix

2005-05-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/pt-br.msg: New Brazilian Portuguese translation (thanks
	to Felipe Brito Vasconcellos)

2005-05-23  Alexey Shchepin  <alexey@sevcom.net>

	* (all): ejabberd-0.9.1 released

	* src/msgs/fr.msg: Updated (thanks to Mickael Remond)

	* src/odbc/Makefile.in: Added

	* src/configure.ac: Updated for odbc support
	* src/Makefile.in: Likewise

	* src/aclocal.m4: Bugfix

	* src/mod_last_odbc.erl: Added store_last_info/4 function (thanks
	to Sergei Golovan)
	* src/mod_last.erl: Likewise

	* src/jd2ejd.erl: Support for exporting iq:last information,
	better error handling (thanks to Sergei Golovan)

	* src/ejabberd_ctl.erl: Added "import-file" and "import-dir"
	commands (thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)
	* doc/dev.tex: Likewise
	* doc/disco.png: Likewise
	* doc/discorus.png: Likewise
	* doc/webadmin.png: Likewise
	* doc/webadminru.png: Likewise

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/web/ejabberd_web_admin.erl: Updated CSS, added modules
	management, fixed bug with configuring of listened ports on
	different nodes (thanks to Sergei Golovan)

	* src/gen_mod.erl: Added function loaded_modules_with_opts/0, new
	API for module stopping (thanks to Sergei Golovan)
	* src/mod_muc/mod_muc.erl: Moved a process name to a macros,
	updated module stopping (thanks to Sergei Golovan)
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_announce.erl: Updated module stopping (thanks to Sergei
	Golovan)
	* src/mod_echo.erl: Likewise
	* src/mod_offline.erl: Likewise

	* src/web/ejabberd_http.erl: "Connection:" header value now
	matched case-insensitive, and returned to client, replaced
	duplicate is_space($\r) with is_space($\t) (thanks to Maxim
	Ryazanov)

2005-05-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Fixed XML element name for
	pubsub#event namespace (thanks to Magnus Henoch)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/msgs/es.msg: Updated (thanks to Badlop)

2005-05-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Now possible to subscribe to a
	pubsub node with a JID that includes a resource (thanks to Martijn
	van Beers)

	* src/stringprep/uni_parse2.tcl: Bugfix
	* src/stringprep/stringprep_drv.c: Likewise
	* src/stringprep/uni_norm.c: Regenerated

2005-05-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Added support for WHOIS
	requests and reply to USERINFO (thanks to Oleg V. Motienko)

2005-05-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/stringprep_drv.c: Bugfix

2005-05-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/win32/ejabberd.cfg: Updated (thanks to Sergei Golovan)

	* src/odbc/Makefile.win32: Added (thanks to Sergei Golovan)

	* src/Makefile.win32: Updated (thanks to Sergei Golovan)

2005-05-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/jd2ejd.erl: Fixed private xml setting

	* src/mod_last.erl: Bugfix
	* src/mod_last_odbc.erl: Likewise

	* src/mod_pubsub/mod_pubsub.erl: Fixed service stopping

2005-05-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Fixed bug with storing
	affiliations of invited users in members-only room (thanks to
	Sergei Golovan)

	* src/ejabberd_c2s.erl: Fixed starttls_required behaviour for
	legacy connections (thanks to Brian Campbell)

	* src/web/ejabberd_web_admin.erl: Images now specified via CSS,
	design slightly updated, added last activity statistics (thanks to
	Sergei Golovan)

2005-05-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/stringprep_drv.c: Added check for bidi

	* src/stringprep/uni_parse.tcl: Now handle all Unicode code points
	up to U+10FFFF
	* src/stringprep/uni_parse2.tcl: Likewise
	* src/stringprep/uni_data.c: Regenerated
	* src/stringprep/uni_norm.c: Likewise

2005-05-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/uni_norm.c: Regenerated with Unicode 3.2 tables
	as required by RFC3454

	* src/stringprep/uni_parse2.tcl: Bugfixes

	* src/stringprep/stringprep_drv.c: Bugfixes, added hangul
	composition

2005-05-05  Mickael Remond  <mremond@erlang-fr.org>

	* src/msgs/fr.msg: Added missing version 0.9 fields and removed unused
	ones.

2005-05-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Store ban reasons for outcast
	items, updated affiliation matching rules to latest JEP-0045

2005-05-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Updated changing roles and
	affiliations tables to latest JEP-0045

2005-05-01  Mickael Remond  <mremond@erlang-fr.org>

	* src/msgs/fr.msg: Updated

2005-05-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/sw.msg: Renamed to sv.msg
	* src/msgs/sv.msg: Likewise

	* src/msgs/pl.msg: Updated (thanks to Andrew Smyk)

	* contrib/extract_translations/README: Better phrasing (thanks to
	Sergei Golovan)

	* contrib/extract_translations/extract_translations.erl: Fix to
	avoid duplication of lines (thanks to Sergei Golovan)

	* src/msgs/sw.msg: New Swedish translation (thanks to Magnus
	Henoch)

	* src/msgs/pt.msg: New Portuguese translation (thanks to iceburn)

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

2005-04-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth_ldap.erl: Added listing of users support

	* src/ejabberd.cfg.example: Updated LDAP options

	* src/ejabberd_ctl.erl: Better spelling, now prints full file
	paths, fixed checking of mnesia:install_fallback result, now
	"dump" command dumps only persistent tables

	* contrib/extract_translations/: A tool for extracting of
	translation strings from ejabberd code (thanks to Sergei Golovan)

2005-04-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard_ldap.erl: Bugfix (thanks to Mickael Remond)

2005-04-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Added translation to submit
	button and "shared roster groups" header (thanks to iceburn and
	Sergei Golovan)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)
	* src/msgs/uk.msg: Likewise

	* src/mod_muc/mod_muc_room.erl: Minor update to simplify
	translation (thanks to Sergei Golovan)

	* src/tls/tls_drv.c: Reverted previous patch

2005-04-22  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Added mod_shared_roster documentation

	* src/ejabberd.hrl: Updated version

2005-04-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/jd2ejd.erl: Bugfix

2005-04-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth.erl: Added check for domain of registered user

	* src/web/ejabberd_web_admin.erl: Fixed user registration via web
	interface, fixed path to user's offline messages (thanks to
	Mickael Remond)

	* src/mod_disco.erl: Fixed domain listing when one virtual host is
	a subdomain of another

2005-04-18  Alexey Shchepin  <alexey@sevcom.net>

	* (all): ejabberd-0.9 released

	* src/web/ejabberd_web_admin.erl: Added link to shared roster page

	* src/odbc/ejabberd_odbc.erl: ODBC connection string can be
	specified via odbc_server option now
	* src/ejabberd.cfg.example: Added ODBC usage example

	* doc/guide.tex: Updated

	* src/msgs/pl.msg: New Polish translation (thanks to Andrew Smyk)

2005-04-17  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Merged virtual hosting support

2005-04-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Send new id for each new stream inside one
	session (thanks to Maxim Ryazanov)

	* src/tls/tls_drv.c: Now reads all certificates from certificate
	file instead of reading only first one (thanks to Karl-Johan
	Karlsson)

2005-04-06  Alexey Shchepin  <alexey@sevcom.net>

	* examples/transport-configs/init-scripts/jabber-gg-transport:
	Fixed typo (thanks to Sander Devrieze)

2005-04-05  Alexey Shchepin  <alexey@sevcom.net>

	* examples/transport-configs/configs/msn-transport.xml: Fixed typo
	(thanks to Sander Devrieze)

2005-04-02  Alexey Shchepin  <alexey@sevcom.net>

	* examples/transport-configs/: Updated (thanks to Sander Devrieze)

2005-03-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Bugfix

2005-03-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Bugfix

2005-03-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Bugfix

2005-03-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl: Bugfix

2005-01-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Added filtering of quit
	status

2005-01-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Copyright update
	* src/mod_vcard_ldap.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_irc/mod_irc.erl: Likewise

2004-12-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/ejabberd_odbc.erl: Load-balance ODBC requests between
	several connections

	* src/odbc/ejabberd_odbc_sup.erl: Supervisor for ODBC connections

	* src/mod_muc/mod_muc_room.erl: Added missed type='form' attribute
	in room configuration response (thanks to Badlop)

2004-12-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster_odbc.erl: Roster support via ODBC (not completed)

	* src/ejabberd_auth_internal.erl: Added remove_user hook
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/mod_roster.erl: Use remove_user hook
	* src/mod_offline.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise
	* src/mod_last.erl: Likewise
	* src/mod_last_odbc.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_private.erl: Likewise

	* src/mod_roster.erl: Added hooks for functions exported by
	mod_roster
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_sm.erl: Likewise
	* src/mod_privacy.erl: Likewise
	* src/mod_last.erl: Likewise
	* src/mod_last_odbc.erl: Likewise

2004-12-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Updated missed message passing from
	previous patch

2004-12-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/odbc/pg.sql: DB creation script for postgres

	* src/odbc/ejabberd_odbc.erl: Experimental support for ODBC
	* src/mod_last_odbc.erl: Likewise
	* src/mod_offline_odbc.erl: Likewise
	* src/ejabberd_auth_odbc.erl: Likewise
	* src/ejabberd_auth.erl: Likewise

2004-12-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_stats.erl: Minor optimizations

	* src/ejabberd_sm.erl: Added unset_presence_hook
	* src/mod_last.erl: Use unset_presence_hook instead of direct call

	* src/ejabberd_auth.erl: Splitted into ejabberd_auth_internal.erl,
	ejabberd_auth_ldap.erl, and ejabberd_auth_external.erl,
	* src/ejabberd_auth_internal.erl: Likewise
	* src/ejabberd_auth_ldap.erl: Likewise
	* src/ejabberd_auth_external.erl: Likewise

2004-12-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Changed type of password field
	to "password"

	* src/jlib.hrl: More stream error defines (thanks to Sergei
	Golovan)

	* src/ejabberd_c2s.erl: Support for starttls_required option
	(thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_room.erl: Fixed mistake in case condition
	(thanks to Sergei Golovan)

	* src/xml_stream.erl: Added function parse_element/1

	* src/expat_erl.c: Added PARSE_FINAL_COMMAND

2004-12-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_listener.erl: Enable keepalive option

	* src/xml_stream.erl: Added API for managing xml streams without
	creating process
	* src/ejabberd_receiver.erl: Use this API, now 2 processes are
	created per C2S connection

2004-12-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/expat_erl.c: Now uses port control instead of port output
	* src/xml_stream.erl: Likewise

2004-11-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/stringprep.erl: Now register port instead of
	storing it in ets table

2004-11-28  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated URLs to R10C release

2004-11-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard.erl: Added missed index

2004-11-08  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated (thanks to Sander Devrieze)

2004-11-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/aclocal.m4: Fixed headers detecting in AM_WITH_OPENSSL
	(thanks to Leif Johansson)

	* src/ejabberd_auth.erl: Added support for ldap_rootdn and
	ldap_password options (thanks to Stefan de Konink)
	* src/mod_vcard_ldap.erl: Likewise

	* src/ejabberd_router.erl: Now possible to route packet via
	function call instead of message sending
	* src/ejabberd_sm.erl: Added function route/3, use it in route
	table
	* src/ejabberd_local.erl: Likewise
	* src/ejabberd_s2s.erl: Likewise

2004-10-23  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Fixed spelling of word "authentication"

	* src/*/Makefile.in: Replaced erlc with @ERLC@

2004-10-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Added remove_connection/1
	* src/ejabberd_s2s_out.erl: Use ejabberd_s2s:remove_connection/1

	* src/ejabberd_s2s_in.erl: Minor cleanup

	* examples/transport-configs/: Transport config examples (thanks
	to Sander Devrieze)

	* src/msgs/de.msg: German translation (thanks to Marina Hahn)

2004-10-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/win32/: Updated (thanks to Sergei Golovan)

	* src/msgs/es.msg: Updated (thanks to Badlop)

	* src/mod_irc/iconv_erl.c: Bugfix (thanks to Jacek Konieczny)

2004-10-10  Alexey Shchepin  <alexey@sevcom.net>

	* (all): ejabberd-0.7.5 released

	* src/tls/Makefile.win32: Added (thanks to Sergei Golovan)

	* src/win32/: Updated (thanks to Sergei Golovan)

2004-10-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Fixed user listing

	* src/msgs/uk.msg: Updated (thanks to Sergei Golovan)

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

	* src/msgs/ua.msg: Renamed to uk.msg

	* COPYING: Added permission to link with OpenSSL

2004-10-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ua.msg: Updated (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_room.erl: Fixed room destroying

	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_sm.erl: Fixed message routing when all resources
	have negative priority

	* src/msgs/*.msg: Updated (thanks to Sergei Golovan)

	* src/web/ejabberd_web_admin.erl: Table titles now bold (thanks to
	Sergei Golovan)

2004-10-06  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

	* src/ejabberd_s2s_out.erl: Fixed socket closing condition

2004-10-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http_poll.erl: Properly handle bad requests

	* src/web/ejabberd_web_admin.erl: Ported features from J-EAI

2004-09-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: Fixed processing of POST body for
	HTTP Polling

	* src/web/ejabberd_http.erl: Support for "Connection" HTTP header
	(thanks to Sergei Golovan)

	* src/translate.erl: Much better handling of xml:lang (thanks to
	Sergei Golovan)

2004-09-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_listener.erl: Check result of controlling_process

	* src/web/ejabberd_http.erl: Bugfix

2004-09-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/Makefile.in: Updated (thanks to Badlop)

2004-09-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/aclocal.m4: Better expat and openssl detection (thanks to
	Anton Vanin)

	* src/**/Makefile.in: Updated (thanks to Anton Vanin)
	* src/configure.ac: Likewise

2004-09-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Added namespace for iq-register stream feature
	* src/ejabberd_c2s.erl: Send iq-register feature

	* src/ejabberd_config.erl: Config file can be configured via
	environment variable (thanks to Mickael Remond)

	* src/web/ejabberd_http.erl: Added SSL support (thanks to Sergei
	Golovan)

	* src/msgs/*.msg: Updated (thanks to Sergei Golovan)

	* src/jlib.hrl: Updated error codes (thanks to Sergei Golovan)
	* src/ejabberd_c2s.erl: Likewise

2004-09-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Send password in room invitation
	(thanks to Sergei Golovan)

	* src/mod_disco.erl: Added registration of sm features and nodes
	(thanks to Sergei Golovan)
	* src/mod_vcard.erl: Register vcard-temp feature (thanks to Sergei
	Golovan)

	* src/jlib.erl: Added functions now_to_utc_string/1,
	now_to_local_string/1, and datetime_string_to_timestamp/1 (thanks
	to Sergei Golovan)
	* src/mod_muc/mod_muc_room.erl: Use time parsing functions from
	jlib (thanks to Sergei Golovan)

2004-09-16  Alexey Shchepin  <alexey@sevcom.net>

	* ejabberd/src/mod_pubsub/mod_pubsub.erl: Bugfix (thanks to
	Mickael Remond)

2004-09-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Bugfix

2004-09-10  Alexey Shchepin  <alexey@sevcom.net>

	* tools/ejabberdctl: Added call to "exec" (thanks to Sergei
	Golovan)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_vcard.erl: Support for searching of prefix substring and
	limiting of result items (thanks to Sergei Golovan)

	* src/mod_offline.erl: Support for message expiration (JEP-0023)
	(thanks to Sergei Golovan)
	* src/jlib.hrl: Added NS_EXPIRE macros (thanks to Sergei Golovan)

	* src/ejabberd_logger_h.erl: Added reopen_log/0 (thanks to Sergei
	Golovan)

	* src/ejabberd_ctl.erl: Added return codes, updated "reopen-log"
	command, added "delete-expired-messages" and "status" commands
	(thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-09-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Removed useless transactions

2004-08-28  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Fix (thanks to Sander Devrieze)

2004-08-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/xml_stream.erl: Few optimizations

2004-08-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_service_log.erl: Support for logging of user packets via
	external service (e.g. bandersnatch)
	* doc/guide.tex: Updated

2004-08-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_offline.erl: Added entire table locking on large message
	queue

	* src/ejabberd_sm.erl: Added offline_subscription_hook
	* src/mod_offline.erl: Use offline_subscription_hook

	* src/configure.erl: Updated (thanks to Sergei Golovan)
	* src/Makefile.win32: Likewise
	* src/tls/Makefile.win32: Likewise
	* src/win32/: Likewise

	* src/mod_announce.erl: Added announce to all users (thanks to
	Sergei Golovan)
	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-08-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

	* src/web/ejabberd_http_poll.erl: Fixed sending of Set-Cookie
	header

2004-08-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix in resend_offline_messages/1

	* src/mod_announce.erl: New module to manage announce messages
	(thanks to Sergei Golovan)

	* src/ejabberd_local.erl: Moved processing of announce messages to
	mod_announce (thanks to Sergei Golovan)

	* src/ejabberd_c2s.erl: Added several hooks

	* src/ejabberd_hooks.erl: Fixed run_fold (thanks to Sergei
	Golovan)

	* src/ejabberd.cfg.example: Updated (thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-08-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Use resend_offline_messages_hook to fetch
	offline messages
	* src/mod_offline.erl: Likewise

	* src/mod_offline.erl: Added table locking in
	remove_old_messages/1

	* src/ejabberd_sm.erl: Use offline_message_hook to store offline
	messages
	* src/mod_offline.erl: Likewise

	* src/ejabberd_hooks.erl: Hooks support
	* src/ejabberd_sup.erl: Added ejabberd_hooks

	* doc/guide.tex: Updated

	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_c2s.erl: Changed TLS options (thanks to Sergei
	Golovan)

2004-08-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/aclocal.m4: Updated to check for openssl library (thanks to
	AV)
	* src/configure.ac: Likewise
	* src/configure: Likewise
	* src/Makefile.in: Likewise
	* src/tls/Makefile.in: Likewise

2004-08-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Added user's roster page

	* src/mod_irc/mod_irc_connection.erl: Bugfix

2004-08-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/tls.erl: Added recv_data/2 function

	* src/jlib.erl: Added NS_TLS macro

	* src/ejabberd_receiver.erl: Support for STARTTLS
	* src/ejabberd_c2s.erl: Likewise

2004-07-30  Alexey Shchepin  <alexey@sevcom.net>

	* examples/extauth/check_pass_null.pl: A reference "null"
	implementation of external authentication script (thanks to Leif
	Johansson)

	* src/extauth.erl: Support for external authentication
	(thanks to Leif Johansson)
	* src/ejabberd_auth.erl: Likewise

	* src/mod_vcard_ldap.erl: A drop-in replacement for mod_vcard.erl
	which uses ldap for JUD and vCard (thanks to Leif Johansson)

2004-07-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/tls_drv.c: Added freeing of SSL stuff

	* src/xml_stream.erl: Added start/2 function
	* src/ejabberd_receiver.erl: Now using xml_stream:start/2

2004-07-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Support for TLS library (not completed)

	* src/tls/tls_drv.c: Updated to return binaries instead of lists
	* src/tls/tls.erl: Likewise

2004-07-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/tls.erl: Updated

2004-07-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/tls/: Library for TLS support (not completed)

	* src/ejabberd_auth.erl: Now uses two LDAP connections

	* src/ejabberd_c2s.erl: Return resource on get_presence request
	(thanks to Mickael Remond)

	* src/mod_configure2.erl: Bugfix (thanks to Sergei Golovan)

	* src/msgs/ua.msg: New Ukrainian translation (thanks to usercard)

	* src/msgs/nl.msg: Updated (thanks to Sander Devrieze)

2004-07-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/eldap/eldap.erl: Bugfix

2004-07-13  Alexey Shchepin  <alexey@sevcom.net>

	* (all): ejabberd-0.7 released

	* src/web/ejabberd_web_admin.erl: Better i18n support (thanks to
	Sergei Golovan)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/msgs/fr.msg: Added missed entries (thanks to Sergei Golovan)
	* src/msgs/nl.msg: Likewise

	* src/msgs/es.msg: New spanish translation (thanks to Badlop)

2004-07-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_last.erl: Supprot for storing status from latest
	unavailable presence (thanks to Sergei Golovan)
	* src/ejabberd_sm.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise

	* src/mod_vcard.erl: Minor update (thanks to Sergei Golovan)

	* src/mod_register.erl: Added "access" option (thanks to Sergei
	Golovan)
	* src/mod_irc/mod_irc.erl: Likewise
	* src/ejabberd.cfg.example: Updated
	* src/win32/ejabberd.cfg: Likewise

	* src/mod_privacy.erl: Fixed module stopping (thanks to Sergei
	Golovan)
	* src/mod_private.erl: Likewise

	* src/gen_mod.erl: Added function get_module_opt/3 (thanks to
	Sergei Golovan)

	* src/ejabberd_local.erl: Minor fix (thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-07-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Removed superfluous include_lib line

	* doc/guide.tex: Updated

	* src/msgs/fr.msg: Updated (thanks to Sergei Golovan)

	* src/mod_irc/mod_irc.erl: Added handler for disco items requests
	(thanks to Sergei Golovan)

	* src/mod_vcard.erl: Added option for JUD disabling (thanks to
	Sergei Golovan)

	* src/mod_configure2.erl: Fixed module stopping (thanks to Sergei
	Golovan)
	* src/mod_last.erl: Likewise
	* src/mod_privacy.erl: Likewise
	* src/mod_register.erl: Likewise
	* src/mod_roster.erl: Likewise
	* src/mod_vcard.erl: Likewise

	* src/jd2ejd.erl: Added emergency catches (thanks to Sergei
	Golovan)
	* src/mod_last.erl: Likewise

	* src/ejabberd_sm.erl: Removed needless call to
	mod_disco:unregister_feature (thanks to Sergei Golovan)

	* src/ejabberd_local.erl: Better support for mod_disco (thanks to
	Sergei Golovan)
	* src/mod_disco.erl: Likewise

	* src/translate.erl: Suport for "default language" option (thanks
	to Sergei Golovan)
	* src/ejabberd_config.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd.hrl: Added 'MYLANG' macros

	* src/ejabberd.cfg.example: Updated (thanks to Sergei Golovan)

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-07-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/win32/ejabberd.cfg: Updated (thanks to Sergei Golovan)

2004-07-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/Makefile.win32: Updated (thanks to Sergei Golovan)

	* src/Makefile.in: Added installation of ejabberd.cfg (thanks to
	Sergei Golovan)

	* src/web/ejabberd_http.erl: Fixed support for HTTP/1.0 clients

2004-07-06  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

	* src/ejabberd_auth.erl: Minor fix

	* src/ejabberd_c2s.erl: Fixed sending of presence to own resources

2004-06-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Added configuration of listened
	ports
	* src/ejabberd_listener.erl: Added API for configuration of port
	listeners

	* src/web/ejabberd_web_admin.erl: Fixed "Stop" button on node
	management page

2004-05-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/nl.msg: Dutch translation (thanks to Sander Devrieze)

	* src/web/ejabberd_http.erl: Added options for enabling HTTP
	polling and admin interface
	* src/web/ejabberd_web.erl: Likewise
	* src/ejabberd.cfg.example: Updated

	* src/web/ejabberd_web_admin.erl: Updated

	* doc/guide.tex: Updated

2004-05-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Added access rules for using serveice
	and creating rooms (thanks to Sergei Golovan)

	* src/win32/ejabberd.nsi: Updated (thanks to Sergei Golovan)
	* src/win32/CheckUserH.ini: Likewise

	* src/translate.erl: Search translations in priv_dir instead of
	lib_dir (thanks to Sergei Golovan)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/ejabberd.cfg.example: Updated (thanks to Sergei Golovan)

	* src/**/Makefile.in: Updated (thanks to Sergei Golovan)
	* src/**/Makefile.win32: Likewise

2004-05-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated

2004-05-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated

2004-05-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated

	* src/ejabberd_listener.erl: Added API for adding/removing
	listeners

2004-05-08  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

	* src/ejabberd_listener.erl: Now possible to specify interface on
	which one socket will be listened, also added another way to
	specify SSL options
	* src/ejabberd.cfg.example: Updated

2004-05-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated (thanks to Andrey
	Zamaraev)

2004-05-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Added command for listing all registered
	users

	* src/ejabberd_ctl.erl: Bugfix, support for text-load and restore
	(thanks to Leif Johansson)

2004-05-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Updated

2004-05-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: 'Accept-Language' header support
	* src/web/ejabberd_web_admin.erl: Likewise
	* src/msgs/ru.msg: Updated

	* src/mod_muc/mod_muc_room.erl: Send status code "201" on room
	creation

2004-04-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/translate.erl: Search translations directory in priv_dir
	instead of lib_dir (thanks to Sergei Golovan)

	* src/**/Makefile.in: Updated (thanks to Sergei Golovan)

	* src/win32/: Win32 installer stuff (thanks to Sergei Golovan)

	* src/**/Makefile.win32: Updated (thanks to Sergei Golovan)
	* src/configure.bat: Likewise
	* src/configure.erl: Likewise

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

2004-04-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web_admin.erl: Better design for administration
	interface (not completed) (thanks to Andrey Zamaraev)
	* src/web/ejabberd_http.erl: Updated
	* src/web/ejabberd_web.erl: Likewise

2004-04-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: Increased receive buffer

	* src/mod_irc/mod_irc_connection.erl: Support for "/quote" command

2004-04-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd.erl: Added searching of files in code:priv_lib
	(thanks to Sergei Golovan)
	* src/translate.erl: Likewise

	* src/ejabberd_app.erl: Added "log_path" configuration parameter
	(thanks to Sergei Golovan)

	* src/**/Makefile.win32: Updated (thanks to Sergei Golovan)

	* src/**/*.c: Updated (thanks to Sergei Golovan)

	* src/configure.erl: Added writing of version to Makefile.inc
	(thanks to Sergei Golovan)

	* doc/guide.tex: Updated link to expat (thanks to Sergei Golovan)

2004-04-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/idna.erl: Support for IDNA (RFC3490)
	* src/ejabberd_s2s_out.erl: Likewise

2004-04-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/xml.erl: element_to_string/1 and crypt/1 now returns deep
	list
	* src/mod_muc/mod_muc_room.erl (add_message_to_history): Replaced
	string:len with lists:flatlength

2004-03-21  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Updated win32 stuff (thanks to Sergei Golovan)

	* src/web/ejabberd_web.erl: Added interface for access rules
	configuration

2004-03-20  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

	* src/web/ejabberd_web.erl: Updated

	* src/web/ejabberd_http.erl: Bugfix

2004-03-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Bugfix

	* src/ejabberd_s2s.erl: More verbose error handling

2004-03-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web.erl: Minor update

2004-03-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web.erl: Added interface for users listsing and
	statistics

2004-03-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web.erl: New interface for ACLs editing

	* src/web/ejabberd_http_poll.erl: Fixed "Content-Type" header,
	"Set-Cookie" is included only in first response in session, added
	missed behaviour definition

	* src/web/ejabberd_http.erl: "Content-Type" header now can be
	changed

2004-03-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_web.erl: Experiments with web-interface

	* src/configure.ac: Updated
	* src/Makefile.in: Likewise

2004-03-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http.erl: Removed debugging output

	* src/ejabberd_c2s.erl: Fixed processing of get_presence request
	(thanks to Mickael Remond)

2004-03-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_room.erl: Now private conferences are
	visible to admins and owners of this conference (thanks to Sergei
	Golovan)

	* src/mod_muc/mod_muc.erl: More xml:lang support (thanks to Sergei
	Golovan)

	* src/mod_vcard.erl: Better processing of EMAIL tag (thanks to
	Sergei Golovan)

	* src/ejabberd_s2s_out.erl: Added "catch" to "open_socket" (thanks
	to Sergei Golovan)

2004-03-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/ejabberd_http_poll.erl: Completed

2004-03-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/: Support for HTTP Polling (JEP-0025) (almost complete)

2004-03-04  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/: Updated

2004-03-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/: Minor update

2004-03-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/web/: Small HTTP server and admin web-interface to ejabberd
	(not completed yet)
	* src/ejabberd_sup.erl: Added HTTP processes supervisor

	* src/ejabberd_c2s.erl: Added API to ask presence (thanks to
	Mickael Remond)

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_room.erl: Updated date parser (thanks to
	Sergei Golovan)

	* src/mod_muc/mod_muc.erl: Added error descriptions (thanks to
	Sergei Golovan)
	* src/mod_muc/mod_muc_room.erl: Likewise

	* src/mod_vcard.erl: Fixed vCard tag (thanks to Sergei Golovan)
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise

	* src/jlib.hrl: Added macros for errors with <text/> (thanks to
	Sergei Golovan)

2004-02-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc_room.erl: Updated error codes, removed
	trailing "-" in history. updated subject sending, added <title/>
	in configuration form (thanks to Sergei Golovan)

	* src/mod_irc/mod_irc.erl: Added vCard, ejabberd:configure
	replaced with jabber:iq:register (thanks to Sergei Golovan)

	* src/mod_configure.erl: Updated "xml:lang" usage, updated some
	messages (thanks to Sergei Golovan)
	* src/mod_configure2.erl: Likewise
	* src/mod_disco.erl: Likewise
	* src/mod_register.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_irc/mod_irc.erl: Likewise
	* src/mod_muc/mod_muc.erl: Likewise
	* src/mod_muc/mod_muc_room.erl: Likewise
	* src/mod_pubsub/mod_pubsub.erl: Likewise

	* src/jlib.hrl: Added "lang" field in "iq" record (thanks to
	Sergei Golovan)
	* src/jlib.erl: Likewise

	* src/ejabberd_c2s.erl: Updated to latest JEP-0078 (thanks to
	Sergei Golovan)

2004-02-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Bugfix

2004-02-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Support for history management
	(thanks to Sergei Golovan)

	* src/mod_stats.erl: Updated error codes (thanks to Sergei
	Golovan)
	* src/mod_irc/mod_irc.erl: Likewise

	* src/mod_configure.erl: "jabber:iq:data" replaced with
	"ejabberd:config" namespace (thanks to Sergei Golovan)
	* src/mod_disco.erl: Likewise

2004-02-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Added <session/> to stream features

2004-02-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_irc/mod_irc.erl: Now uses "ejabberd:config" namespace
	(thanks to Sergei Golovan)

	* src/mod_disco.erl: Fixed disco category and type (thanks to
	Sergei Golovan)
	* src/mod_pubsub/mod_pubsub.erl: Likewise

	* src/jlib.hrl: Added "ejabberd:config" namespace (thanks to
	Sergei Golovan)

2004-01-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Added command for log reopening

2004-01-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_ctl.erl: Added commands for backup processing

	* src/ejabberd_c2s.erl: Added processing of xml:lang according to
	latest XMPP-IM draft

	* src/xml.erl: Added replace_tag_attr/3 function

	* src/mod_roster.erl: Added auto-reply on incoming subscription
	request according to latest XMPP-IM draft

	* src/mod_offline.erl: Added pop_offline_messages/1 function
	* src/ejabberd_c2s.erl: Updated sending of offline messages

2004-01-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Bugfix, updated error codes
	(thanks to Sergei Golovan)

	* src/jlib.hrl: Updated error codes (thanks to Sergei Golovan)

2004-01-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Fixed bind namespace

	* src/ejabberd_ctl.erl: New module for ejabberd administration
	* tools/ejabberdctl: Shell script for ejabberd administration

	* src/mod_vcard.erl: Copyright update

	* src/ejabberd_service.erl: Now possible to specify access rules
	for service
	* src/ejabberd.cfg.example: Updated

2004-01-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl: Added monitoring of processess that
	serve domains

	* src/ejabberd_app.erl: Bugfix

2004-01-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_router.erl (do_route/3): Slightly changed behaviour

2004-01-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl (do_route/3): Minor fix

	* src/ejabberd_sm.erl (route_message/3): Minor changes

2003-12-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_app.erl: Now possible to specify path to log file
	via "EJABBERD_LOG_PATH" environment variable

	* src/translate.erl: Now possible to specify path to "msgs"
	directory via "EJABBERD_MSGS_PATH" environment variable

	* src/ejabberd.erl: Added get_so_path/0 function
	* src/ejabberd_app.erl: Use ejabberd:get_so_path/0 to load .so
	* src/mod_irc/iconv.erl: Likewise
	* src/stringprep/stringprep.erl: Likewise

2003-12-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Presence probe now sended from full JID

	* src/mod_roster.erl: Bugfix

2003-12-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix

2003-12-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Added workaround for legacy gateways
	(passing of "subscribed" presence)

	* src/ejabberd_sm.erl: Minor fix in subscription processing

2003-12-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Added declaration of "iq" record
	* (all): Updated to use "iq" record

2003-12-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_local.erl: Replaced register_local_route to
	register_route
	* src/ejabberd_service.erl: Likewise
	* src/mod_echo.erl: Likewise
	* src/mod_vcard.erl: Likewise

	* src/ejabberd_router.erl: Partially rewrited
	* src/ejabberd_sm.erl: Likewise

2003-12-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Partially rewrited

	* src/mod_roster.erl: Removed debugging code

2003-12-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Bugfix

2003-12-11  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Updated subscription handling to latest
	XMPP-IM draft

2003-12-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_in.erl: Changed timeout processing, bugfix

	* src/ejabberd_s2s_out.erl: Changed timeout processing

	* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

	* src/mod_muc/mod_muc.erl: Better i18n support, added support for
	<registered/> field in iq:register replies (thanks to Sergei
	Golovan)

	* src/mod_register.erl: More i18n support (thanks to Sergei
	Golovan)

2003-12-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix in processing of connection
	replacement

2003-11-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Added workaround for some Java clients

2003-11-27  Alexey Shchepin  <alexey@sevcom.net>

	* examples/mtr/ejabberd.cfg: Updated (thanks to Marshall T. Rose)

	* src/ejabberd_auth.erl: LDAP attribute that holds user ID now
	configurable
	* src/ejabberd.cfg.example: Updated

2003-11-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Fixed processing of presence probe from
	client

2003-11-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl_digest.erl: Bugfix (thanks to Sergei Golovan)

	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_auth.erl: Support for LDAP authentication
	* src/cyrsasl_digest.erl: Likewise
	* src/mod_register.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise

	* src/eldap/: Imported "eldap" package

	* src/ejabberd_sm.erl: Bugfix

2003-11-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Bugfixes

	* (all): Version 0.5 released

2003-11-13  Alexey Shchepin  <alexey@sevcom.net>

	* examples/mtr/ejabberd: Updated (thanks to Marshall T. Rose)

	* src/Makefile.in: Added installation of msgs/ directory

2003-11-11  Alexey Shchepin  <alexey@sevcom.net>

	* doc/dev.tex: Developers documentation (not completed)

	* src/ejabberd_c2s.erl: Better handling of malformed JIDs

	* src/mod_register.erl (try_register/2): Now returns "jid
	malformed" error if user name is invalid

2003-11-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_s2s_in.erl: Added support for shapers

	* src/ejabberd_c2s.erl: Moved receiver functions to
	ejabberd_receiver module
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_receiver.erl: Likewise

	* src/mod_muc/mod_muc_room.erl: Bugfix

	* src/ejabberd_sm.erl (route_message/3): Bugfix

2003-11-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_sm.erl: Bugfix for previous resource handling
	change

	* src/mod_configure.erl: Password changing now implemented

2003-11-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl.erl: Updated SASL authentication
	* src/ejabberd_c2s.erl: Likewise

	* src/ejabberd_sm.erl: Better resource handling

	* src/jlib.hrl: Added NS_BIND macros

2003-11-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_configure2.erl: Added reporting of outgoing S2S
	connections number

	* src/mod_disco.erl (get_outgoing_s2s): Minor fix

2003-11-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_configure2.erl: Yet another configure interface (not
	completed yet)

2003-11-01  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_last.erl: Added remove_user/1 function

	* src/mod_configure.erl: Removing of user's stuff moved to
	ejabberd_auth
	* src/ejabberd_auth.erl: Likewise

2003-10-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Updated to work more
	correctly with latest jlib

2003-10-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: More strong check for authenticated JID

	* src/mod_roster.erl: Bugfix

2003-10-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_listener.erl: Fixed starting of SSL connection

	* src/ejabberd_s2s_in.erl: Partially rewriten

	* src/ejabberd_router.erl: More verbose error report
	* src/ejabberd_local.erl: Likewise
	* src/ejabberd_sm.erl: Likewise

	* src/ejabberd_s2s_out.erl: Updated to be compatible with R9C

	* src/ejabberd_c2s.erl: Minor fix

2003-10-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_listener.erl: Added handling of accept errors,
	added timeout value to ssl:accept

	* src/mod_vcard.erl: Added checks for all empty input fields

	* src/mod_offline.erl: More strong checks for stored packets

	* src/ejabberd_sm.erl: Bugfix

2003-10-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_auth.erl: Minor change in check_password/4

	* src/mod_roster.erl: Workaround for PSI bug with roster

	* src/ejabberd_logger_h.erl: Added support for log rotation

2003-10-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_offline.erl: Added function remove_old_messages/1

	* src/mod_last.erl: jabber:iq:last support (JEP-0012)
	* src/ejabberd_sm.erl: Likewise

	* src/jlib.hrl: Added NS_LAST macros

2003-10-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_logger_h.erl: New error_logger handler
	* src/ejabberd_app.erl: Now uses ejabberd_logger_h.erl

2003-10-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/Makefile.in: Added install rule

	* src/jlib.erl: Added checks for JID parts length

2003-10-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard.erl: Added checks for stringprep results

	* src/expat_erl.c: Workaround for EI encode_string bug

	* src/xml_stream.erl: Slightly changed protocol to expat driver
	* src/expat_erl.c: Likewise

	* src/mod_configure.erl: Minor fix

2003-10-19  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Fixed typo

	* src/ejabberd_local.erl: Added support for announce/online
	messages

	* src/ejabberd.cfg.example: Updated

	* src/mod_register.erl: Added support for sending registration
	notifications

2003-10-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Added supports for multiple hosts per
	service

	* src/Makefile.in: Minor fix

2003-10-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/configure.ac: Build system now done using autoconf (thanks
	to Balabanov Dmitry)
	* src/aclocal.m4: Likewise
	* src/**/Makefile.in: Likewise

	* src/mod_roster.erl (process_item_set_t): Slightly improved
	performance

	* src/jd2ejd.erl: Added missed closing of XML stream process,
	removed timeout value from import_file/1

	* src/ejabberd_auth.erl: Added checks for invalid user name

2003-10-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_configure.erl: Fixed some error codes

	* src/cyrsasl_digest.erl: Bugfix (thanks to Justin Karneges)

2003-10-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_local.erl: Bugfix

	* src/mod_register.erl: Added support for sending of "welcome"
	message
	* src/ejabberd.cfg.example: Updated

	* src/ejabberd_s2s_out.erl: Replaced "_jabber-server" with
	"_xmpp-server"

2003-10-12  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

	* src/ejabberd_s2s_out.erl: Added support for IPv6 and
	"_jabber-server.tcp" lookups

	* src/jlib.erl (string_to_jid1): Bugfix

	* src/ejabberd_config.erl: Now possible to specify path to config
	file in command line

2003-10-11  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated

	* src/ejabberd.cfg: Added "register" rule, added some comments,
	this file renamed to ejabberd.cfg.example

	* src/mod_register.erl (try_register): Fixed error reply, added
	check for "register" access rule

2003-10-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/Makefile.win32: Added Makefile for Win32 (thanks
	to Sergei Golovan)

	* src/stringprep/stringprep_drv.c: Removed needless iconv.h
	include

	* src/ejabberd_c2s.erl: Added filtering of presence packets with
	privacy rules

	* src/mod_roster.erl (get_jid_info): Bugfix

	* src/ejabberd_app.erl: Removed periodical dumping of opened ports

2003-10-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Added authentication logging

	* src/ejabberd_listener.erl: Added logging of accepted connections

	* src/stringprep/stringprep_drv.c: Cleanup

	* src/jd2ejd.erl: Added support for iq:private importing

	* src/mod_configure.erl: Fixed user removal

	* src/mod_private.erl: Added remove_user/1

	* doc/guide.tex: Updated

	* src/mod_disco.erl: Added "extra_domains" option

2003-10-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Added support for "jid-malformed" error

	* src/stringprep/stringprep_drv.c: Bugfix

2003-10-07  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Changed JID storage format, added support for stringprep

	* src/stringprep/: Added support for Unicode normalization form KC

2003-10-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/: Added support for case convertion to multiple
	characters

	* src/cyrsasl_digest.erl: Temporary removed "auth-int" QOP

2003-09-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/stringprep_drv.c: Added support for nameprep,
	nodeprep and resourceprep
	* src/stringprep/stringprep.erl: Likewise

	* src/ejabberd_sup.erl: Added loading of stringprep

	* src/ejabberd_sm.erl: Cleanup

2003-09-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/stringprep/: Support for stringprep (not completed yet)

2003-09-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Replaced io:format calls to ?DEBUG ones

2003-09-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Debug output switched off

	* src/mod_disco.erl: Server identity changed to "service/im"

	* src/mod_register.erl: Fixed jabber:iq:register handler
	registration, fixed registration removal processing

2003-09-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_disco.erl: Now only admin can discovery some nodes,
	fixed "node" attribute in replies

2003-09-10  Alexey Shchepin  <alexey@sevcom.net>

	* examples/mtr/ejabberd.cfg: Updated (thanks to Marshall T. Rose)
	* examples/mtr/ejabberd: Likewise

2003-09-06  Alexey Shchepin  <alexey@sevcom.net>

	* examples/mtr/ejabberd.cfg: Updated (thanks to Marshall T. Rose)

2003-09-04  Alexey Shchepin  <alexey@sevcom.net>

	* examples/mtr/*: Example config and scripts for NetBSD (thanks to
	Marshall T. Rose)

2003-09-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_in.erl: Fixed "id" attribute processing
	* src/ejabberd_s2s_out.erl: Likewise

	* src/ejabberd_c2s.erl: Added sending of empty <stream:features/>
	element after opening of authenticated stream

2003-09-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_in.erl: Temporary hack for "id" attribute
	processing
	* src/ejabberd_s2s_out.erl: Likewise

2003-08-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_listener.erl: Fixed SSL options

2003-08-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Support for filtering of incoming messages
	and IQs, presence filtering will be after some xmpp-im
	clarifications

2003-08-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Fixed handling of room names with
	uppercase letters

	* src/mod_muc/mod_muc_room.erl: Added support for
	password-protected rooms

2003-08-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Added handling for
	jabber:iq:version and jabber:iq:time requests, participant address
	now added to presence status

2003-08-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_privacy.erl: Privacy rules support (not completed yet)
	* src/ejabberd_c2s.erl: Likewise
	* src/mod_roster.erl: Likewise

2003-07-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl (create_new_node): Bugfix

2003-07-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_vcard.erl: Bugfix

	* src/mod_roster.erl: Bugfix

	* src/jlib.hrl: Added iq:privacy namespace

	* src/mod_irc/mod_irc_connection.erl: Added support for NOTICE and
	CODEPAGE commands, better support for QUIT and PART commands
	(thanks to Oleg V. Motienko)

2003-07-20  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Reorganized supervision tree

2003-07-19  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_register.erl: Bugfix

2003-07-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Close connection after key
	verification

	* src/ejabberd_c2s.erl: start replaced with start_link
	* src/ejabberd_s2s_in.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/ejabberd_service.erl: Likewise

	* src/ejabberd_listener.erl: Now uses proc_lib to spawn listeners,
	removed 3rd parameter in listener configuration (assumed to equal
	start_link)

	* src/ejabberd.rel: Updated

	* doc/guide.tex: Small changes

	* doc/Makefile: Added implicit charset specification to hevea

2003-07-12  Alexey Shchepin  <alexey@sevcom.net>

	* doc/guide.tex: Updated (thanks to Sergei Golovan)

	* src/expat_erl.c: Added #ifdef for WIN32 (thanks to Sergei
	Golovan)
	* src/mod_irc/iconv_erl.c: Likewise

	* src/configure.erl: Defines ERLANG_DIR variable (thanks to Sergei
	Golovan)
	* **/Makefile: Use ERLANG_DIR (thanks to Sergei Golovan)

	* **/Makefile.win32: Makefiles for windows build (thanks to Sergei
	Golovan)
	* src/configure.bat: Configuration script for windows (thanks to
	Sergei Golovan)

2003-07-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Added suport for meta-node
	"pubsub/nodes"

2003-07-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Most of functions now works

2003-07-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_pubsub/mod_pubsub.erl: Pub/sub implementation (not
	completed yet)

2003-07-05  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Added pub/sub namespaces

2003-07-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/iconv_erl.c (iconv_erl_control): Bugfix

2003-06-30  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Fixed room destroying
	* src/mod_muc/mod_muc.erl: Likewise

2003-06-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Error stanzas updated to confirm latest xmpp-core

2003-06-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Returned stream restarting

2003-06-10  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Removed stream restarting

2003-06-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: SASL support updated to xmpp-core-13

2003-06-06  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl*.erl: Support for authzid

2003-06-03  Alexey Shchepin  <alexey@sevcom.net>

	* src/msgs/fr.msg: New french translation (thanks to Vincent Ricard)

2003-05-31  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Updated SASL namespace

2003-05-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Proper handling of bad XML

	* src/mod_muc/mod_muc_room.erl: Append number of participants in
	disco replies if requester allowed to see participant list

	* src/mod_muc/mod_muc.erl (iq_disco_items): Pass requester JID to
	room process

	* src/mod_irc/mod_irc_connection.erl: Exit on receiving of
	presence or message error

	* src/mod_irc/mod_irc_connection.erl (handle_info): Return
	"feature not implemented" on iq request with unknown namespace

2003-05-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Now body of message from admin to MUC
	service is broadcasted to all conferences
	* src/mod_muc/mod_muc_room.erl: Likewise

2003-05-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s.erl: Added error catching for do_route/3
	* src/ejabberd_local.erl: Likewise for do_route/4

	* src/msgs/ru.msg: Updated

	* src/mod_muc/mod_muc_room.erl: New option to allow to view list
	of participants for non-ones via disco#items

	* src/mod_muc/mod_muc_room.erl: Store room subject with
	configuration options

2003-05-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Remove user from room on receiving
	of message or presence error from him

2003-05-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Fixed error replies, added timeouts
	* src/ejabberd_s2s_in.erl: Likewise

2003-05-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_local.erl: Updated missed errors to new style
	* src/mod_register.erl: Likewise
	* src/mod_version.erl: Likewise
	* src/mod_time.erl: Likewise
	* src/mod_stats.erl: Likewise
	* src/mod_register.erl: Likewise
	* src/mod_private.erl: Likewise
	* src/mod_configure.erl: Likewise
	* src/ejabberd_sm.erl: Likewise
	* src/ejabberd_service.erl: Likewise
	* src/ejabberd_c2s.erl: Likewise
	* src/ejabberd_s2s_out.erl: Likewise
	* src/mod_vcard.erl: Likewise
	* src/mod_roster.erl: Likewise

	* src/mod_muc/mod_muc.erl: Added vcard to mod_muc module

	* src/ejabberd_app.erl: Dump list of opened ports every hour

	* src/ejabberd.hrl: Added INFO_MSG macros, ERROR_LOG_PATH renamed
	to LOG_PATH

2003-05-08  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Denied usage of empty nick

2003-05-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Return bad-request if no x:data form
	submited with nick registration

	* src/mod_muc/mod_muc_room.erl: Don't check permissions on disco
	info query processing

2003-04-29  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Workaround to make SSL work properly

2003-04-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Fixed URL to ejabberd

2003-04-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc.erl: Support for nick registration

2003-04-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Some fixes in work with socket

2003-04-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Support for members-only
	conferences, invitations.  Bugfix in affiliation change processing

	* src/jlib.hrl: Added jabber:x:conference namespace definition

2003-04-07  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Added jaber:iq:auth:error namespace and
	appropriate errors
	* src/ejabberd_c2s.erl: Use auth:error in appropriate places

	* src/jlib.hrl: Changed stream error and stanza error namespace
	names due to last XMPP Core changes

2003-03-28  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/mod_muc_room.erl: Added support for grant/revoke
	administrative/owner priveledges, fixed work with affiliations

2003-03-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd.cfg: Updated

	* src/mod_muc/mod_muc_room.erl: Support for service admin,
	kick/ban reasons, more options

	* src/msgs/ru.msg: Added translations for MUC messages

	* src/ejabberd_s2s_in.erl: Bugfix

	* src/mod_muc/: Small fixes in discovering

2003-03-26  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/: Support for discovering service and more
	configuration options

2003-03-25  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/: Support for more configuration options and
	persistent rooms

2003-03-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_muc/: MUC support (not completed yet)

2003-03-15  Alexey Shchepin  <alexey@sevcom.net>

	* src/xml_stream.erl: Removed "link" which cause not improper
	closing of xml connections

2003-03-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/jlib.hrl: Added "invalid-namespace" error
	* src/ejabberd_c2s.erl: Likewise

2003-03-12  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_s2s_out.erl: Fixed ports leak
	* src/ejabberd_listener.erl: Likewise

	* src/ejabberd_c2s.erl: Fixes for SASL support

	* src/cyrsasl.erl: Fixes

	* src/cyrsasl_digest.erl: DIGEST-MD5 SASL mechanism support

2003-03-09  Alexey Shchepin  <alexey@sevcom.net>

	* src/cyrsasl*.erl: SASL support (currently support only PLAIN
	mechanism)
	* src/ejabberd_c2s.erl: Likewise

	(all): Support for new-style error elements (except old errors
	"Not Acceptable", "Not Found", "Invalid Namespace" and "Server
	Connect Failed", so ejabberd may work unstable)

2003-03-02  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: More correct stream closing

2003-02-27  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: Support for topic changes

2003-02-24  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/mod_irc_connection.erl: /kick support

2003-02-23  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/: Added configuration interface

	* src/mod_configure.erl: Use jabber:iq:data instead of
	jabber:x:data
	* src/mod_disco.erl: Likewise

2003-02-22  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_configure.erl: Backup management support
	* src/mod_disco.erl: Likewise

2003-02-21  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_offline.erl: Now possible to unload this module
	* src/ejabberd_sm.erl: Added checks to work correctly when
	mod_offline not loaded
	* src/ejabberd_c2s.erl: Likewise

	* src/mod_register.erl: Added support for users removal

	* src/ejabberd_auth.erl: Added function to remove user only if
	specified password correct

	* src/mod_irc/mod_irc_connection.erl: Fixed bug with changing
	availability status, added processing of "QUIT" message

2003-02-20  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_roster.erl: Fixed bug with handling of roster set
	stanzas which contains CDATA

	* src/mod_irc/mod_irc_connection.erl (handle_info/3): Fixed
	parsing of string that have "\n" line separators (not "\r\n")

2003-02-18  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/: Added support for private chats, nicks changes and
	error handling

2003-02-17  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/: Still not completed...

2003-02-16  Alexey Shchepin  <alexey@sevcom.net>

	* src/mod_irc/: New IRC transport (not completed yet)

2003-02-14  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_service.erl: Answer "Bad Request" on unknown tags

2003-02-13  Alexey Shchepin  <alexey@sevcom.net>

	* src/ejabberd_c2s.erl: Bugfix: close socket when stream is closed

	* src/mod_offline.erl: Now all offline packets processed in
	separate queue to avoid delaying of other packets transmission.
	Also all packets in queue processed in one transaction.

2003-02-11  Alexey Shchepin  <alexey@sevcom.net>

	* (all): Version 0.1-alpha released