Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdaa8a19d4260321a96695853b0798a1b7c81a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
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
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: Updatted (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