summaryrefslogtreecommitdiff
path: root/docs/OLDCHANGES
blob: 08bbbdc34e4ac34b085394c1489da1b8fe1cf9ac (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
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
Anope Version 1.8.0
-------------------
10/19 F Updated Anope Credits                                             [ #00]

Provided by Szymek <szymek@adres.pl> - 2008
10/25 F Updated Polish language file translation.                         [ #00]

Provided by Kein <kein-of@yandex.ru> - 2008
10/25 F Updated Russian language file translation                         [#959]

Anope Version 1.7.24
--------------------
10/14 F Fixed minor error in German language file.                        [#958]
10/12 F Fixed language error in saset help.                               [ #00]
10/12 F Fixed MySQL DB routines not storing passwords properly.           [#940]
10/12 F Fixed OS STATS missing HS and showing disabled clients.           [#956]
10/19 F Added warning regarding combined use of MySQL and skeleton mode.  [#957] 

Provided by Szymek <szymek@adres.pl> - 2008
10/14 F Updated Polish language file translation.                         [ #00]

Provided by Han` <Han@mefalcon.org> - 2008
10/19 F Updated German language file.                                     [ #00]


Anope Version 1.7.23b
--------------------
10/06 F Fixed issue with encrypted nick databases.                        [ #00]

Anope Version 1.7.23
--------------------
10/01 A Added modular database back-end for IGNORE.                       [#948]
09/18 R Removed password truncating.                                      [ #00]
09/15 F Dealt with the nss_dns.so.1 issue on freebsd 7.                   [ #00]
09/23 F Fixed numerous possible buffer overflows in NS and CS.            [ #00]
09/25 F Fixed UnRestrictSAdmin on Unreal and Inspircd.                    [#942]
09/25 F Fixed menu not properly removed after uninstall on windows.       [#944]
09/27 F Fixed a buffer overflow in enc_sha1.                              [#947]
09/30 F Fixed error in OPER help.                                         [#943]
09/30 F Fixed OS IGNORE behaviour.                                        [#941]
09/30 F Fixed error in the SASET help.                                    [#950]
10/01 F Fixed an error in the OS IGNORE documentation.                    [#948]
10/01 F Fixed DB routines not storing nick passwords properly.            [#940]
10/04 F Fixed errors in CS LOGOUT documentation.                          [#941]
10/04 F Fixed missing optional params in MODLIST help.                    [#951]

Provided by Robin Burchell <w00t@inspircd.org> - 2008
09/22 F Enabled UMODE functionality for InspIRCd 1.1                      [ #00]
09/22 F Fix pointer comparison on non-ptr in CS CLEAR.                    [ #00]
09/23 F Possible buffer overflow in NS/CS REGISTER.                       [ #00]
09/27 F Incorrect maths in strnrepl(), from atheme/denora.                [ #00]

Anope Version 1.7.22
--------------------
01/24 A Added a check for hosts too long in BotServs bots.                [ #00]
02/12 A Added SUSPENDED to NS LIST keywords.                              [#869]
02/20 A Added NS SASET LANGUAGE.                                          [#872]
09/03 A Added CIDR support in channel bans/excepts.                       [#876]
09/03 A Anope on windows now has advanced startup options.                [#931]
01/15 F BOT_NOT_ASSIGNED language string error.                           [#828]
01/15 F listchans now shows if a channel is suspended.                    [#825]
01/15 F listnicks now shows if a nickname is suspended.                   [#825]
01/15 F Re-assigned access to OS CHANLIST to Services Opers.              [#827]
01/24 F Several language errors.                                          [ #00]
01/26 F Various oddities in moduleAddData().                              [#833]
01/26 F Various oddities in ChanServ suspend code.                        [#834]
01/26 F Channel walking for mass modes and restoring topics.              [#835]
01/26 F Memory leaks in OperServ CLEARMODES.                              [#836]
01/26 F Check for LogChannel when running with -logchan option.           [#837]
01/26 F Enough LogChannel checks for bs_say and bs_act with LogBot on.    [#838]
01/26 F Memory leak and old code in ChanServ CLEAR.                       [#839]
01/26 F Memory leak in ChanServ LIST.                                     [#840]
01/26 F Memory leaks in HostServ SETALL.                                  [#841]
01/26 F Memory leak in ChanServ AKICK.                                    [#842]
01/26 F Removed broken detection of Windows MCE/Tablet edition.           [#845]
02/04 F Memleak in botchanmsgs(), botserv.c                               [#850]
02/04 F Memleak in bs_fantasy_seen.c                                      [#851]
02/04 F Memleak in bs_fantasy_unban.c                                     [#852]
02/04 F No variable for NSReleaseTimeout in NICK_RECOVERED message.       [#848]
02/04 F Added missed NickServ HELP for RESEND command.                    [#847]
02/05 F Updated config.guess and config.sub from upstream.                [#853]
02/05 F Various small compiler warnings.                                  [#685]
02/05 F Updated docs/WIN32.txt.                                           [#846]
02/05 F Removed bs_fantasy_unban from core modules.                       [#854]
02/05 F Defcon mode parsing breaking when fed with modes with parameters. [#855]
02/05 F do_cmode() called without passing TS.                             [#820]
02/07 F do_sjoin() looking for NULL-nick sometimes with TS6.              [#858]
02/07 F Oddity in do_cmode().                                             [#859]
02/07 F findchan() debug messages not being logical.                      [#857]
02/07 F NickServ replying to SVSNICK command when OperServ must.          [#861]
02/11 F Fixed configure script so it will complain about args.            [#864]
02/11 F Fixed memory leak in add_akill().                                 [#868]
02/11 F Fixed memory leak in cs_akick().                                  [#870]
02/11 F Added missed debug message when HostServ is disabled.             [#863]
02/12 F rdb_close() where rdb_open() is used in rdb_dbase() functions.    [#862]
02/12 F Removed extra loop when parsing defcon modes.                     [#867]
02/21 F Fixed errors in lang files related to NS SASET LANGUAGE           [#881]
04/30 F Operators can now also use NickServ INFO ALL.                     [ #00]
05/12 F install.js now works properly on x64 machines                     [#897]
05/12 F anope_cmd_notice_ops for unreal now includes source.              [ #00]
05/12 F moduleNoticeLang() now calls notice_user instead of notice().     [ #00]
08/11 F Updated os_raw.c to show up as a 3rd party module.                [ #00]
08/15 F CS OP now correctly works if there is only 1 user in the channel. [#922]
08/16 F Forbidden channels no longer appear in /list when inhabited.      [#924]
08/17 F Various InspIRCd issues.                                          [#832]
08/18 F CS GETKEY response.                                               [#880]
08/21 F Potential issues caused by not setting SO_REUSEADDR on socket.    [ #00]
08/28 F Fixed several language & help related errors.                     [#875]
08/28 F Replaced static count in login/opernews help.                     [#882]
08/28 F Updated help on ChanServ AKICK.                                   [#879]
09/01 F Fixed crashbug in cs_access.                                      [#932]
09/02 F Fixed bug in enc_none in combination with truncated pass.         [#934]
09/03 F Fixed variables not correctly shown in help.                      [#873]
09/04 F Rewrote the ignore system to fix several issues.                  [#930]
09/13 F AKICK now respects the PEACE setting.                             [#935]
09/13 F Fixed bug in ratbox RESV support.                                 [#937]
09/14 F Fixed CLEAR not always sending correct modes.                     [#938]
09/14 F Fixed compile warning in os_clearmodes.c.                         [#939]

Provided by Robin Burchell <w00t@inspircd.org> - 2008
08/08 F Strict warnings in send.c from comparing address of non-ptr       [ #00]
08/08 F Removed sa-commands from inspircd protocol support.               [ #00]
08/24 F InspIRCd FMODE timestamp issue.                                   [#927]

Provided by Christian Schroer <Christian.Schroer@coderschlampe.com> - 2008
07/20 F Updated Deutch language file.                                     [#892]

Provided by Trystan <trystan@nomadirc.net> - 2008
02/11 F Last part of memory leak in cs_akick()                            [#870]

Provided by Johno Crawford <johno.crawford@gmail.com> - 2008
02/08 F x86_64 generating improper SHA1 hash values.                      [#856]

Provided by Jan Milants <jan_renee@msn.com> - 2008
01/16 F Server traversion with next_server() failed to list all servers.  [#831]
02/08 F Removed excessive free in ChanServ AKICK code.                    [#849]
07/20 F make install now runs install routine for modules subdirs also.   [#917]
07/20 F Fixes weird hs_setall behaviour (memory issues).                  [#916]
07/20 F DEFCON was akilling ulined servers clients.                       [#899]
07/20 F Botserv replying with /(null).                                    [#894]
07/20 F Anope will not limit sessions for ulined servers.                 [#909]
07/20 F EVENT_BOT_KICK not being send under all circumstances             [#910]
08/17 F Changes.conf updated with forgotten deleted directives.           [#905]

Provided by Martin J. Green <mail@martinjgreen.me.uk> - 2008
08/17 A SQLINE and SGLINE support for Hybrid.                             [#887]

Provided by Twitch <mitch@zomgirc.net> - 2008
08/17 F Warnings in users.c.                                              [#925]

Provided by Hal9000 <hal9000@pimpmylinux.org> - 2008
04/29 F Potential crash in channels.c.                                    [ #00]
04/29 F TS handling on incoming FMODE with InspIRCd 1.1.                  [ #00]
05/20 F Possible crash in new TS handling for InspIRCd 1.1.               [#904]

Anope Version 1.7.21
--------------------
12/30 F Grouped root nicks could result in loss of power when using MySQL.[#812]
01/01 F Databases not being saved on quit caused by connection error.     [#811]
01/05 F Re-idenficiation after netsplit on InspIRCd.                      [#817]
01/05 F Founder channelmode (+q) not correctly parsed in FJOIN.           [ #00]
01/06 F Updated documentation where needed.                               [ #00]
01/06 F InspIRCD +q and +a prefixes were swapped.                         [ #00]
01/09 F InspIRCd crash on certain FMODE sends.                            [#821]
01/12 F Nonsensical data appended to some bans.                           [#824]

Provided by Trystan <trystan@nomadirc.net> - 2008
01/04 F Detection of Windows Vista and Windows Server 2008.               [#815]

Provided by Jan Milants <jan_renee@msn.com> - 2008
01/04 F EVENT_ACCESS_DEL being sent with NULL-param when using XOP.       [#816]

Provided by Kein <kein-of@yandex.ru> - 2008
01/04 A Russian translation for bundled modules.                          [ #00]
01/04 F Updated Russian language file.                                    [ #00]

Anope Version 1.7.20
--------------------
12/28 F Some silly logic errors in anope_event_capab() in inspircd11.c    [ #00]
12/28 F RSQUIT support for InspIRCd 1.1                                   [#692]
12/24 F inspircd11 module now uses FMODE instead of MODE                  [#724]
08/29 A Session limit exceptions now support IP numbers as hostmask.      [#723]
08/29 A Added InspIRCd11 vIdent support.                                  [#684]
08/30 A Added support for channel keys to UnrealIRCd 3.2 SVSJOIN command. [#774]
08/31 A Added hostip member to user_ struct so we can now use users' IPs. [ #00]
12/03 A Support for MS VC++ 2008 Express.                                 [#802]
06/15 F Non-existing servers being SQUIT'd when they were juped.          [#726]
06/15 F Back online notice being sent to juped servers.                   [#726]
06/15 F Not informing opers a SQUIT for a juped server was received.      [#718]
06/18 F OperServ MODINFO giving misleading errors.                        [#732]
07/09 F Various access levels for oper-commands.                          [#729]
07/09 F GlobalOnCycle notices being sent to Anope itself or juped servers.[#737]
07/09 F Possible buffer overflow in inspircd10.c                          [#741]
07/09 F Various compile errors with `make strict`.                        [#743]
07/14 F No longer displaying commands on add/remove in debug mode 1.      [ #00]
08/05 F ChanServ access level AUTODEOP works again.                       [#750]
08/08 F Wrong debug notice when killing people due to the session limit.  [#734]
08/08 F DefCon modes being re-set after mass-unset when leaving DefCon.   [#727]
08/11 F CAPAB tokens for InspIRCd 1.1 never parsed.                       [#742]
08/21 F Updated the WIN32.txt document a bit.                             [ #00]
08/21 F Re-worded the CHAN_LEVELS_XOP string in en_us.                    [ #00]
08/27 F Functions firstuser and first_uid now don't collide when used.    [#764]
08/27 F Is not posible to use CS SET XOP when cs_xop is not loaded.       [#747]
08/27 F Services administrators and opers can be kicked by ChanServ now.  [#753]
08/27 F Added missing help for NS CONFIRM.                                [#759]
08/27 F Fixed typo in English language file.                              [#767]
08/27 F Protocol for InspIRCd 1.1 now uses SVSHOLD.                       [#683]
08/28 F Bug when truncating passwords to PASSMAX with enc_none.           [#765]
08/28 F Bug in PTLink protocol where topic time was not being sent.       [#763]
08/28 F Automatic displaying of 'Limited to ...' lines in help.           [#729]
08/28 F We now check required commands existance on inspircd11 protocol.  [#773]
08/28 F SuperAdmin now always overrules channel founder.                  [#770]
08/29 F InspIRCD11 protocol now uses SVSJOIN/PART instead of SAJOIN/PART. [#772]
08/29 F OperServ SGLINE ADD now strips a trailing space from the mask.    [#761]
08/29 F TS6 UID generation for all supported TS6 IRCDs.                   [#731]
08/31 F is_excepted() now uses match_userip() also.                       [#778]
08/31 F Wrong reply when deleting entries by number (akick, badwords)     [#776]
09/01 F Added a note in WIN32.txt about pre-compiled installers           [# 00]
09/02 F Created MySQL indexes to decrease load on the database.           [# 00]
09/05 F Removed Limited to... message from os_akill.c and os_modload.c    [#780]
09/05 F Removed extra bolded commands in OS HELP SET                      [#781]
09/08 F User being able to set modes on empty channels without permission.[#703]
09/09 F Undeclared identifiers in module cleaning code on windows.        [#782]
09/09 F Missing test to check mysql_config sanity in ./configure.         [#757]
09/24 F Polish language reported itself as English when switching to it.  [#789]
09/24 F OperServ HELP OPER showing incorrect access levels.               [#788]
10/05 F Typo in inspircd11.c checking for m_chgident.so loaded.           [#793]
10/07 F Segfault on missing required InspIRCd11 modules.                  [#794]
12/02 F Fixed a typo in en_us.l.                                          [#806]
12/02 F Fixed a typo in install.js.                                       [#804]
12/02 F Fixed the protect commands in inspircd11.c.                       [#805]
12/03 F Unregistered users now have access level 0 instead of -1.         [#796]
12/03 F Malformed command for InspIRCd 1.1.                               [#797]
12/03 F Updates to various documentation.                                 [ #00]
12/15 F Inconsistent use of ACESS events.                                 [#791]
12/27 F Module error strings were outdated.                               [#810]

Provided by Trystan <trystan@nomadirc.net> - 2007
08/29 F Module runtime directory not always properly cleaned up.          [#768]
09/24 F ModuleGetConfigDirective having issues with CRLF line-ends.       [#787]

Provided by nenolod <nenolod@nenolod.net> - 2007
08/29 F TS6 UID generation for Charybdis.                                 [#731]

Provided by Jilles Tjoelker <jilles+anope@stack.nl> - 2007
12/28 F Wrong TS sometimes sent in SJOIN.                                 [#685]

Anope Version 1.7.19
--------------------
01/01 A Support for InspIRCd 1.1.                                         [ #00]
01/02 F Issues with both InspIRCd protocol modules.                       [ #00]
01/02 F Error reporting on LIST commands accepting ranges.                [#622]
01/02 F ChanServ LIST now searches for '#chan' if only 'chan' is given.   [#622]
01/06 F Missing backtick in SQL query for saving news items.              [ #00]
01/06 F Some OperServ commands not respecting OSOpersOnly when disabled.  [#657]
01/06 F MySQL code not always reporting Services Root flags correctly.    [#659]
01/10 F Minor syntax error in anoperc.                                    [#665]
01/10 F CHAN_SYMBOL_REQUIRED claimed one can register local (&) channels. [#666]
01/10 F BotServ kicks now obeys the channel's SignKick option.            [#663]
01/15 F Only send PONG during MySQL save when we're not syncing.          [#669]
01/15 F InspIRCD 1.1 protocol module used windows incompatible strtok_r.  [#667]
01/22 F Crash during first save when MySQL is enabled.                    [#672]
03/03 F SAs can no longer move other SAs down to ServicesOpers.           [#690]
03/03 F We now send out UNKLINE on hybrid when /os akill del is issued.   [#656]
03/14 F /os modunload dosnt clear moduleData before calling AnopeFini.    [ #00]
03/18 F DefCon's AKILL will now honor the server's sync flag.             [#643]
03/18 F Password length checking in some cases was out.                   [ #00]
04/21 F DefCon did not force DefCon modes while in DefCon mode.           [#661]
04/21 F Event ACCESS_DEL not sent on mass-deleted in cs_xop.              [#706]
06/04 F prenick database was not backed up.                               [#713]
06/04 F Typo in SQL query in rdb.c                                        [#719]
06/04 F remove_backups() did not check that s_Bot/HostServ != NULL.       [ #00]
06/09 F NSDefMsg can now only be enabled when UsePrivmsg is enabled.      [#671]
06/09 F NSDefMsg now controls send behaviour for unregistered users.      [#671]

Provided by Jan Milants <jan_renee@msn.com> - 2007
04/21 F Array count decremention in the ChanServ access lists.            [#662]
04/21 F Swapped ACCESS_ADD and ACCESS_CHANGE events in cs_xop.            [#705]

Provided by Jilles Tjoelker <jilles+anope@stack.nl> - 2007
04/21 F Various Charybdis and TS6 related fixes.                          [#707]

Anope Version 1.7.18
--------------------
12/09 A Ability to see if AutoOp is enabled in NickServ INFO displays.    [#621]
12/12 A EVENT_BOT_KICK and EVENT_BOT_BAN added for modules.               [ #00]
10/17 F Encryption, users can now pick none, old, md5 or sha1.            [ #00]
10/18 F MLock support for +c was missing on ultimate3.                    [ #00]
10/20 F Error message when unable to register due to NSRegDelay.          [#616]
10/21 F SVSPART sends SVSPART instead of EOB.                             [#617]
11/02 F HostServ REQUEST module no longer returns MOD_STOP.               [ #00]
11/02 F AnopeRC sends correct signals.                                    [#623]
12/07 F BotServ KICK incorrectly reported assigned status of bots.        [#632]
12/07 F Windows install.js script is now able to check multiple drives.   [#634]
12/09 F Reviewed and updated all of the MySQL code.                       [ #00]
12/09 F Langfiles had CHANAKILL instead of CHANKILL in syntax lines.      [#640]
12/10 F NickServ ALIST not accepting Founder as level param.              [#629]
12/10 F EVENT_TOPIC_UPDATES was not always sent when it should be.        [#641]
12/24 F anoperc sends SIGTERM for restart and uses command line params.   [#645]
12/24 F Nickname changes were not recognised on TS6-based IRCd's.         [#646]
12/24 F Small typo in CHAN_REGISTER_NONE_CHANNEL.                         [#647]
12/24 F Display error messages when RDB functions fail.                   [ #00]
12/27 F ModuleNoticeLang was printf'ing twice.                            [#650]
12/27 F Module (un)loading was only giving error numbers, not messages.   [#652]
12/29 F Channel joins logged twice on some IRCd's with debug mode on.     [#651]
12/29 F Botserv incorrectly attempted to remove bans with BSSmartJoin     [#653]

Anope Version 1.7.17
--------------------
10/15 F MySQL detection now checks for valid values from mysql_config.    [ #00]
10/15 F Correctly compiling mod_version with module options now.          [ #00]
10/16 F MySQL functions did not always escape all values correctly.       [#612]
10/16 F Made anoperc restart to accepts arguments like anoperc start.     [#611]
10/16 F MySQL query debug quoted displayed queries just a tad too much.   [ #00]
10/16 F MySQL query error in RDB functions.                               [ #00]
10/17 F Erroneous code caused MySQL to store all passwords as blank.      [#614]
10/17 F Saving of ttb-data when using MySQL.                              [ #00]

Anope Version 1.7.16
--------------------
Provided by Anope Dev. <team@anope.org> - 2006
09/10 A Added SASET AUTOOP to NickServ to match SET AUTOOP.               [#588]
09/11 A Added detection in install.js for the latest PlatformSDK.         [#596]
09/29 A Ability for modules to backup their databases.                    [#604]
10/07 A IRCDs supporting SVSMODE now have it parsed as MODE.              [#603]
08/09 F Fixed port checking when using command line switches.             [#575]
08/14 F Fixed db_mysql_query for better robustness.                       [#585]
08/27 F Fixed mod_current_module being incorrect resulting in segfault.   [#593]
09/10 F Issues with make strict for the src/tools dir.                    [#579]
09/10 F Help for NickServ SET AUTOOP was missing.                         [#587]
09/10 F Added HOP to the /CS ACCESS error when XOP is enabled.            [#598]
09/10 F MySQL no longer connects again on each query.                     [#595]
09/10 F Nick Enforcers can now be whois'd on services.                    [#601]
09/10 F Corrected valid nick characters for /OS SVSNICK.                  [#599]
09/17 F Small mistakes in Dutch language file.                            [ #00]
09/23 F Restarting under Windows now works correctly                      [#589]
09/25 F Make now works with multiple threads.                             [ #00]
09/28 F We will now process UnrealIRCd's SVS(2)MODE messages.             [#603]
09/29 F The 'nmake clean' on Windows now uses 'spotless' instead          [ #00]
09/29 F Fixed a typo in Makefile.win32                                    [ #00]
10/07 F BotServ KICK CAPS now only counts alphabetic chars for percentage.[#607]
10/09 F Removed LANGUAGE from the SASET help in most languages.           [#609]

Provided by Trystan <trystan@nomadirc.net> - 2006
08/20 F Fixed several compiler warnings.                                  [#586]
08/20 F Fixed several compiler warnings.                                  [#584]
08/20 F log.c rewrite.                                                    [#582]
08/20 F Fixed bsd compier warning.                                        [#578]
09/10 F Fixed mass compiler warnings on FC5 with make strict.             [#583]

Provided by ThaPrince <jon@vile.com> - 2006
08/22 F Plexus3 svid_mode3 support fixed.                                 [ #00]
08/23 F Plexus3 syncing after remote netjoins issue.                      [ #00]
09/08 F Plexus3 noop support.                                             [ #00]

Anope Version 1.7.15
--------------------
Provided by Anope Dev. <team@anope.org> - 2006
06/14 A Indication in the version string if we're running on win32.       [ #00]
06/20 A Added support for Visual Studio 2005.                             [#408]
06/22 A Ability for ircd modules to set extra modes on id.                [ #00]
06/22 A Support startup flag.                                             [ #00]
06/21 A Module version check.                                             [ #00]
06/25 A Optional strict privmsg format.                                   [ #00]
07/15 A Added BOT_LONG_IDENT for too long idents.                         [#538]
07/10 A Moved ns_noop into core and assigned an NI_ flag.                 [#423]
08/06 A Option to modules_unload_all() to say if we should unload proto.  [#552]
07/22 R Removed clone stuff.                                              [ #00]
04/08 F Fixed Charybdis support on win32.                                 [#487]
04/08 F Fixed thread stuff on windows.                                    [#488]
04/08 F Fixed SGLine stuff on inspircd (not supported).                   [#489]
04/20 F Fixed index of backtrace().                                       [#499]
04/29 F Added is_on_chan() check for fantasy kick commands.               [#501]
05/13 F Fixed memleak in moduleGetConfigDirective().                      [#504]
05/16 F Suspended nicks and chans won't expire from now on.               [ #00]
05/25 F NICKIP/NICKv2 support on unreal32.                                [#507]
05/25 F src/bin/register being too case sensitive on YES.                 [#500]
05/25 F src/bin/register still said ./configured instead of ./Config .    [ #00]
05/25 F Q:Line not added for bots when only changing nicks.               [#493]
06/03 F Removed INTTYPE_WORKAROUND stuff which could cause warnings.      [#509]
06/03 F Fixed compiler warnings.                                          [#511]
06/10 F Win32 Makefile for plexus3 support.                               [#520]
06/11 F Two pointers in modules.c weren't NULL-ified by default.          [ #00]
06/11 F Updated InspIRCd protocol support module.                         [ #00]
06/11 F Module Clear Error macro was broken on *BSD.                      [#515]
06/13 F Walking memory using wrong pointer in moduleGetConfigDirective.   [#516]
06/13 F Added cleanup code to tools/anopesmtp.                            [#464]
06/13 F Fixed a lot of redundant function declarations.                   [#510]
06/14 F Removed last traces of threading support.                         [#498]
06/14 F Changed mysql detection to use mysql_config.                      [ #00]
06/15 F OpenBSD Config issue.                                             [#519]
06/15 F langcomp with _GNU_SOURCES defined.                               [ #00]
06/16 F Fixed several memleaks in ns_noop.c.                              [ #00]
06/16 F Fixed typo in function name.                                      [#524]
06/18 F Removed legacy my_vsnprintf code.                                 [#496]
06/18 F HOP cannot remove VOPs anymore to be consitent with adding.       [#525]
06/18 F Moduledata was cleared before calling AnopeFini.                  [#523]
06/20 F Make does not recompile everything even on no change anymore.     [ #00]
06/20 F Versions in win32.rc are now updated correctly.                   [#526]
06/21 F Syntax for NickServ SET MSG showed syntax for SET PRIVATE.        [ #00]
06/26 F A few small bugs with module configure scripts.                   [ #00]
07/02 F Fixed readonly stuff on memoserv del.                             [#529]
07/13 F Fixed socket buffering, hopefully should make inspircd play nice. [ #00]
07/14 F Removed old HAS_RTLD_LOCAL check.                                 [#541]
07/20 F Removed bold chars from botserv langauge files.                   [#530]
07/20 F Fixed win32 versions of db-merger.c and epona2anope.c.            [#536]
07/20 F db-merger.c and epona2anope.c will now properly delete old dbs.   [ #00]
08/02 F Fixed very nasty typecast. GCC Hardened should now work.          [#557]
08/03 F Corrected usermodes for ratbox and shadow.                        [#558]
08/04 F Various small fixes for Charybdis.                                [#561]
08/04 F Autovoice for unregistered users works again.                     [#569]
08/05 F Support for SVSJOIN/SVSPART/SWHOIS in protocol modules.           [#566]
08/05 F os_info save on unload.                                           [#523]
08/05 F Externed doValidHost call for modules to use.                     [#570]
08/05 F Lang files now support %R for use with StrictPrivMsg.             [#565]
08/06 F Segfault when shuting down anope.                                 [#491]
08/06 F Fixed typos in cs_appendtopic.c.                                  [#571]
08/06 F TSMode support for ratbox; TS6 works for ratbox now.              [#563]
08/07 F Increased langauge buffer size.                                   [#572]
08/08 F Fixed integer types in db-merger.c.                               [#573]

Provided by ThaPrince <jon@vile.com> - 2006
05/19 A Plexus 3 support.                                                 [ #00]
08/07 F Plexus 2/3 updates, registered nick format.                       [ #00]
06/25 F root/admin/oper mode now honours secure.                          [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2006
06/15 F NS Resend delay.                                                  [ #00]
07/02 F Fixed module version stuff.                                       [#531]
07/14 F Another version fix.                                              [#545]
07/15 F Fixed max param count for SJOINs.                                 [#549]
07/15 F Fixed !halfop fantasy stuff.                                      [#534]
07/25 F Fixed /newmask stuff for ptlink.                                  [#560]
07/14 A Added anope_cmd_action() and new param for EVENT_PART_CHANNEL.    [#550]

Anope Version 1.7.14
--------------------
Provided by Anope Dev. <team@anope.org> - 2006
02/04 A Events for channel kicks and NickServ logout.                     [ #00]
03/02 A Added support for TS6 Save (FNC) on ratbox, shadow and charybdis. [#424]
03/07 F Counting issue in /os stats uplink.                               [#468]
03/02 F BotServ/HostServ are no longer loaded when they are disabled.     [#440]
03/01 F Added ircd module support for valid_chan.                         [ #00]
03/01 F Minor issues in ns_saset.                                         [#455]
02/13 F Yet anotehr 64bit issue.                                          [ #00]
01/14 F SGLines will now be removed correctly.                            [ #00]
01/26 F Export buildStringList() for modules.                             [#425]
02/11 F Fixed a few memleaks.                                             [#420]
02/17 F cs_getpass will now unload if encryption is enaled.               [ #00]
02/19 F Fixed position of EVENT_ACCESS_DEL.                               [ #00]
03/01 F Fixed ident check on /bs bot change.                              [#463]
03/01 F Fixed # prefix check on /cs forbid.                               [#461]
03/01 F Fixed events on /join 0.                                          [#417]
03/01 F Added NULL checks to add_invite and add_exception.                [#419]
03/01 F Fixed suspend check on /cs invite.                                [#429]
03/01 F Fixed memleaks in some protocol files.                            [#434]
03/01 F Fixed bot check on /bs unassign.                                  [#446]
03/01 F Fixed wasteful finduser() call in os_oline.c.                     [#457]
03/01 F Fixed memleak in runDefCon().                                     [#451]
03/01 F Fixed function type of get_xop_level.                             [#459]
03/01 F Prevented registration of UnrealIRCd's "local" channels.          [#456]
03/01 F Fixed bug in moduleNoticeLang().                                  [#421]
03/01 F Made should_mode_change() extern.                                 [#436]
03/01 F Made add_ns_timeout() static.                                     [#438]
03/01 F Fixed memleak in os_mode.c.                                       [#444]
03/01 F Fixed memleak in do_mass_mode().                                  [#450]
03/01 F Fixed memleaks in cs_list.c, hs_list.c and ns_list.c.             [#447]
03/01 F Fixed memleaks in hs_set.c.                                       [#441]
03/02 F Fixed missing TS6 functionality in channels.c.                    [#418]
03/02 F Fixed possible overflow in process().                             [#445]
03/02 F Fixed memleak in do_cmode().                                      [#430]
03/03 F Rage, Bahamut and Viagra will now use the correct server desc.    [#467]
03/03 F Fixed botserv's mode behaviour with protect umode.                [#333]
03/18 F Fixed sstrdup() with NULL argument in cs_akick.c.                 [#460]
03/18 F Fixed charybdis umodes.                                           [#471]
03/19 F Fixed a gcc4 compiling issue.                                     [#453]
03/21 F Fixed bot check on /bs kick.                                      [ #00]
03/23 F Fixed some obsolete defines.                                      [#390]

Provided by nenolod. <nenolod@nenolod.net> - 2006
02/03 A Support for Charybdis IRCd.                                       [ #00]
02/12 F more va_list issues for 64bit platforms.                          [ #00]
01/15 F va_arg issue on various 64bit platforms.                          [#415]

Provided by illu. <illu@rs2i.net> - 2006
01/25 F Updated the french language file.                                 [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2006
03/18 A New icon file for anope win32.                                    [#472]
03/14 A Anope will now terminate on Win98. Added version check.           [#473]
03/01 A Clarity on module loading status numbers.                         [#435]
03/24 F Fixed segfault on /bs change.                                     [#483]
03/22 F Fixed distclean in all Makefiles.                                 [#481]
03/19 F Fixed some gcc4 compiling issues.                                 [#453]
03/18 F Fixed closing of file pointer in langtool.c.                      [#478]
03/14 F Fixed gcc switches for modules.                                   [#474]
03/12 F moduleGetLastBuffer() returning NULL on alias and pseudo clients  [#476]
03/12 F nickIsServices() returns correctly for aliases                    [ #00]
03/05 F Fixed moduleNoteiceLang() issue.                                  [#469]
03/01 F Applied ultiamte3 chan sqline patch.                              [#412]
03/01 F Crash when not giving user for moduleGetLangString.               [#454]
02/23 F Usermatching possible null arg on sstrdup.                        [ #00]
02/20 F Fixed some TS6 issues with do_cmode() and do_nick()               [#396]
02/12 F Double unbanning of in certain conditions.                        [ #00]
01/25 F va_copy issue for various platforms.                              [ #00]

Provided by ThaPrince <jon@vile.com> - 2006
02/28 F fantasy kick now honours protected, just like cs versions.        [ #00]

Provided by Brain <brain@inspircd.org> - 2006
03/01 F Updated inspircd protocol files.                                  [#422]

Provided by Monk <monk@mindforge.org> - 2006
03/22 U Updated de.l.                                                     [#482]

Anope Version 1.7.13
--------------------
Provided by Anope Dev. <team@anope.org> - 2005
12/26 F Generating language.h failed on certain setups.                   [ #00]
12/11 F First user on HelpChannel always got +h, even without access.     [#405]
12/02 F Missing quitmessage when catching unknown signals.                [ #00]
11/14 F Added a check for nickchars before trying to use them in /os stats[ #00]
11/08 F Remove tmp modules from runtime folder when we can.               [ #00]
11/02 F !protect/!deprotect no longer work for a number of ircds.         [#403]
11/02 F segfault when os modloading a non-existing module.                [ #00]
11/01 F /os reload - BSFantasyChar was not sstrduped if not defined.      [ #00]
10/30 F Updated docs/FAQ.                                                 [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2005
11/19 F find_byuid for ircds which didnt give us a uid.                   [ #00]
01/22 F Updated config.guess and config.sub                               [ #00]

Provided by Vladimir K. <wawaka@gmail.com> - 2005
12/11 F Enforcers had incorrect user when only user specified.            [#410]

Provided by Brain <brain@inspircd.org> - 2005
12/26 A InspIRCd 1.0 Beta 6+ support module to replace old (b3) support.  [ #00]

Anope Version 1.7.12
--------------------
Provided by Anope Dev. <team@anope.org> - 2005
10/01 A Information on uplink server can be displayed via OperServ STATS. [ #00]
09/29 A Configuration option to change fantasy command prefix character.  [ #00]
09/28 A Event for fantasy commands triggered without channel access.      [ #00]
10/25 F Memleaks and not removing tempfiles on failed module loading.     [ #00]
10/25 F Help response for os random news was using opernews text.         [ #00]
10/05 F Changed NickLen and BSFantasyChar into recommended and optional.  [ #00]
10/04 F Added missing hs_request to win32 modules makefile.               [ #00]
10/03 F Changed error on identical userkeys into a warning.               [ #00]
10/02 F Added check in OperServ stats to avoid segfault without param.    [ #00]
10/02 F Numeric 219 didn't give correct letter for STATS u.               [ #00]
10/02 F ChanServ HOP was available on IRCDs without halfop support.       [ #00]
10/01 F Placed capab tokens and flags into a table for easier handling.   [ #00]
10/01 F Capab parsing on hybrid/plexus/ratbox failed.                     [ #00]
10/01 F Typo in example.conf (DevNullAlias was called DevNullName).       [ #00]
10/01 F UserKeys gave an error without message when missing.              [ #00]
09/30 F Stripping fantasy character from fantasy commands.                [ #00]
09/28 F Made module (un)loading code more friendly for modularized core.  [ #00]
09/28 F NickServ SASET didn't fill the nick in the 'not registered' line. [ #00]

Provided by Hal9000 <hal9000@pimpmylinux.org> - 2005
09/28 F Updated Italian language file.                                    [ #00]

Provided by Cloud <cloud@shortcut.game-host.org> - 2005
09/28 F Updated German translation for cs_appendtopic.                    [ #00]

Anope Version  1.7.11
---------------------
Provided by Anope Dev. <team@anope.org> - 2005
09/01 A Function to retrieve a module language string.                    [ #00]
08/21 A NickServ SASET to set options on other nicks (split from SET).    [ #00]
08/10 A New Windows installation files.                                   [ #00]
07/04 A Warning when running Anope as root (DON'T DO THAT! :)).           [ #00]
07/01 A Events for channel access/xop updates.                            [ #00]
06/26 A New module pack module: hs_request.                               [ #00]
06/03 A Protocol files can now fill mod_current_buffer with custom code.  [#389]
09/25 F Missing End If in install.vbs.                                    [ #00]
09/24 F Typo in English language file.                                    [ #00]
09/21 F Segfault when find_byuid() was called with a NULL argument.       [ #00]
09/20 F Ident length checking when adding a bot was broken.               [ #00]
09/20 F No response was giving when trying to load a non-existing module. [ #00]
09/18 F Last host was not always correctly set to a vHost if applied.     [ #00]
09/14 F Various issues with handling the version identifiers.             [ #00]
09/13 F make strict/profile now work for core and protocol files.         [ #00]
09/13 F Unused variables removed from modules.c.                          [ #00]
09/11 F Disallow botnicks longer than the net's max nick length.          [ #00]
09/09 F Giving some more error output when opening a database fails.      [ #00]
09/04 F Protocol module for plexus called wrong UNSGLINE function.        [ #00]
08/31 F Help for /os modlist had faulty 'limited to' information.         [ #00]
08/30 F Changed UserKeys to RECOMMENDED instead of REQUIRED.              [ #00]
08/29 F Pseudo-clients can now part with no instead of an empty reason.   [ #00]
08/29 F Memory leak when using mysql to save data.                        [ #00]
08/29 F Organised docs/FAQ a bit more and slightly restyled it.           [ #00]
08/25 F Compiler warnings in tools with gcc4.                             [ #00]
08/21 F Default config location in example.conf was wrong.                [ #00]
08/10 F Few memleaks in bundled os_info module.                           [ #00]
08/07 F NS SET sometimes seeing options as nicks.                         [ #00]
08/05 F Bot max nick length limited by NICKMAX now.                       [ #00]
07/07 F Typing mistake in module error message.                           [ #00]
07/07 F Clarified comments for SendmailPath regarding -t option.          [ #00]
07/02 F Module languages now default to NSDefLanguage, not English.       [ #00]
07/02 F Various compile warnings when using AMD64.                        [ #00]
07/01 F Modules will now be properly unloaded on shutdown.                [ #00]
07/01 F Modules now use a more random filename in the runtime folder.     [#400]
07/01 F Most core compile warnings when using make strict.                [ #00]
07/01 F Requesting a -version on startup doesn't require a valid config.  [ #00]
06/04 F Register script now works again.                                  [#394]
06/04 F Finishing sync for Ultimate3 was not done correctly.              [#398]
06/03 F Moved checks for UseTokens, UseTS6, and Numeric.                  [#385]
06/03 F Load protocol module before launching listnicks/listchans.        [#391]
05/29 F operserv opernews dispalys the correct help now.                  [#386]
05/27 F Updated docs/FAQ.                                                 [ #00]
05/25 F Segfault when clearing non-existing nick '0' from ignore list.    [#383]
05/25 F Removed a double extern definition of rdb_tag_table.              [#381]
05/25 F Fixed mydbgen so it sends the pass and installs in the data dir.  [ #00]
05/25 F Not all nick options were displayed in listnicks.                 [#380]

Provided by Ricardo <ricardoltdb@gmail.com> - 2005
06/25 A Portugese translation for hs_request.                             [ #00]
05/30 F Updated Portuguese language file. And bundled modules language.   [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2005
09/21 F Various fixes in hs_request.                                      [ #00]
09/21 F NormalizeBuffer() strips CR/LF as well now.                       [ #00]
09/18 F Removed color codes for tools on win32.                           [ #00]
09/18 F MySQL detection for win32 in install.vbs had issues.              [ #00]
09/18 F Memleak when AddAkiller was enabled.                              [ #00]
09/13 F Reduntant IRCD defines removed.                                   [ #00]
09/13 F Double Makedile generation.                                       [ #00]
09/06 F Memory for vHosts/vIdents was not (always) being freed.           [ #00]
06/04 F Removed ircd-file related code from configure(.in)                [#384]

Provided by DrStein <drstein@anope.org> - 2005
08/30 A anoperc is now configured by the Config script                    [ #00]

Provided by Hal9000 <hal9000@musichat.net> - 2005
06/27 A Italian translations for modpack modules.                         [ #00]
06/25 F Updated Italian language file.                                    [ #00]

Provided by ThaPrince <jon@vile.com> - 2005
09/06 A SGLINE support for plexus.                                        [ #00]
09/10 F Sending XLINEs with plexus was broken.                            [ #00]
09/06 F Missing sources and other minor issues with plexus.               [ #00]
09/04 F SGLINE/SQLINE for ratbox/plexus/etc needs a valid nick.           [ #00]

Provided by Certus <> - 2005
09/11 F Took care of an overflow and data corruption.                     [ #00]

Anope Version 1.7.10
--------------------
Provided by Anope Dev. <team@anope.org> - 2005
05/23 F Updated install.vbs to detect SDK paths.                          [ #00]
05/22 F Removed trailing space for whois output.                          [ #00]
05/17 F Compiling on solaris and amd64 systems.                           [ #00]
05/13 F Possible segfault with do_part by using freed memory.             [#379]
05/13 F Long hosts got cut off when setting topic and host was recorded.  [#377]
05/12 F NSListOpersOnly works correctly.                                  [#375]
05/12 F Using variable for EVENT_PART_CHANNEL after freeing it.           [#374]
05/11 F Unable to make when using an old shell.                           [#369]
05/10 F AnopeFini was called without mod_current_module_name set.         [#371]
05/10 F Unidentified users now have level -1 instead of 0 again.          [#372]
05/09 F Segfault in ns_maxemail when user's email not set.                [ #00]
05/06 F Compiler warnings when using make strict.                         [ #00]
05/06 F Segfault in os_clearmodes when chan had invites (+I) set.         [#357]
05/06 F Identified founders are now logged out if the channel is dropped. [#364]
05/06 F Founders identified by pass can get founder chanmode again.       [#358]
05/05 F Segfault in ns_maxemail when passing wrong param count.           [ #00]
05/05 F ULined servers still got their modes removed with SecureOps on.   [ #00]
05/05 F Missing access checks when removing modes due to SecureOps.       [#366]

Provided by crazytoon <crazy@anope.org> - 2005
05/08 A Updated German language file.                                     [ #00]
05/08 A German translation for all modulepack modules                     [ #00]
05/08 F Removed "IRCDFILE" from the Makefile's                            [ #00]
05/10 F Removed BOT LIST from BOT_BOT_SYNTAX                              [ #00]

Provided by Sascha Just <bugs.anope@nmg.own-hero.de> - 2005
05/13 F Nicer used of fgets, dont free the buffer.                        [#378]

Anope Version 1.7.9
-------------------
Provided by Anope Dev. <team@anope.org> - 2005
05/03 A Dutch translation for all modulepack modules, where needed.       [ #00]
04/30 A Modulepack with a few useful modules which are loaded by default. [ #00]
04/30 A Modularized all BotServ fantasy commands.                         [ #00]
04/30 A Event EVENT_PART_CHANNEL for when users part a channel.           [ #00]
04/30 A Event EVENT_JOIN_CHANNEL for when users join a channel.           [ #00]
04/25 A Support for multiple lines in module language texts.              [ #00]
04/25 A Multi language module support.                                    [ #00]
04/22 A Option to make OperServ configurable oper-only or not.            [ #00]
04/21 A Events now accept argc/argv making them more useful/expandable.   [ #00]
04/20 A Fully modular core now in place, including dynamic help.          [ #00]
04/16 A Module subfolders now check configure executed if it exists.      [ #00]
04/14 A Added EVENT_BOT_CMD for !commands in a botserv fantasy channel.   [ #00]
04/14 A Added EVENT_RELOAD for config reloads.                            [ #00]
04/13 A moduleGetConfigDirective to allow config files access to the conf.[ #00]
04/12 A IRCD Protocol Module support.                                     [ #00]
03/25 A Added nickserv suspend/unsuspend command.                         [ #00]
03/25 A Added check for UID in anoperc. Stops running as root.            [ #00]
03/11 A Event for database backups.                                       [ #00]
03/09 A Documentation on the proxy detector in docs/PROXY.                [ #00]
03/03 A ShadowIRCD 4.0 beta 7 support added.                              [ #00]
02/27 A Added multi-file module support.                                  [ #00]
02/13 A Internal Event support, see EVENTS in the doc folder for help     [ #00]
02/05 A Support for Unreal 3.2 +I channel mode.                           [ #00]
02/03 A Merged anope-win32 branch into the main, now Win32 ready.         [ #00]
05/04 F vHost handling with PTlink was broken in a subtle way.            [#352]
05/04 F Missing check for valid ChannelInfo in topic handling.            [#363]
05/04 F Module language texts sometimes being mixed.                      [ #00]
05/04 F Wrong datatype in the config parser for OSInfoDBName.             [ #00]
05/03 F Wrong variable checking in anope_event_away().                    [ #00]
05/02 F Wrong use of anope_cmd_mode() for dreamforge and ultimate2.       [#332]
05/02 F Usermode +R instead of +Z used for services roots with Ultimate3. [#361]
05/02 F Getting op if you had access to protect and not op on a channel.  [#355]
05/01 F Typo in include/extern.h with restore_unsynced_topics.            [#354]
05/01 F Modes with no arguments where required no longer set with OS mode.[#316]
05/01 F Update win32 documentation and files so it works again.           [ #00]
04/30 F Removed newline after BOT_SEEN_UNKNOWN in most languages.         [ #00]
04/30 F Updated docs/EVENTS for change to argc/argv and new events.       [ #00]
04/27 F Rob's spelling mistakes. It's language, not langauge!             [ #00]
04/25 F Displaying help texts with module language system.                [ #00]
04/24 F Call to sstrdup() with NULL-args if empty topic was set.          [ #00]
04/24 F Event for topic changes only being sent for registered channels.  [ #00]
04/24 F Buffer normalization not checking allocated memory for errors.    [ #00]
04/21 F Updated example modules to use id strings as versions.            [ #00]
04/21 F Renamed EVENT_BOT_CMD to EVENT_BOT_FANTASY.                       [ #00]
04/19 F Updated docs/FAQ.                                                 [ #00]
04/19 F Case sensitive tokens for ircd modules actaully work now.         [ #00]
04/16 F Events no longer cause a segfault after being modunload-ed.       [ #00]
04/14 F When setting multiple ops, SecureOps will check each user.        [#342]
04/12 F Users channel modes are correctly set on join.                    [#342]
04/11 F Make sure nick isn't in use on nickserv collide.                  [#341]
04/07 F Added channel names to XOP/ACCESS/AKICK CLEAR                     [#346]
04/07 F Only users with vHost/vIdent can /hostserv off                    [#351]
04/01 F Sync state for leaf-servers not updated correctly.                [ #00]
03/30 F ChanServ now sets topic again when channel is re-created.         [#339]
03/29 F Changed anoperc script to use kill numerics for compliance.       [ #00]
03/28 F Moved where GlobalOnCycleUP is located so it now works.           [#336]
03/28 F Fixed the change display name function to update correct db table.[#337]
03/28 F Changed the ultimate3 usermode for SRA.                           [#326]
03/28 F Segfault on joining unregistered channels in some cases.          [#327]
03/28 F Adding and removing modes are now merged per user while syncing.  [#329]
03/28 F Modes not being correctly removed from all users.                 [#335]
03/28 F Topics not always set on channel creation.                        [#334]
03/26 F stripModePrefix not checking if it was stripping a mode prefix.   [ #00]
03/26 F Memleak in nickIsServices()                                       [ #00]
03/22 F Wrong behaviour of /ns update for channel founders.               [#323]
03/21 F Topics being set too often during bursts.                         [ #00]
03/16 F Send the correct numeric for a missing MOTD file.                 [#315]
03/16 F Wrong modes being set in certain cases with SJOIN.                [#320]
03/14 F Two normalized strings not being freed.                           [#314]
03/14 F Various minor mistakes (see bugreport for full list).             [#313]
03/14 F Sync state of servers was not recorded reliable enough.           [ #00]
03/12 F Services setting already set channel modes.                       [ #00]
03/12 F Not displaying entrymessage/greets on (re-)sync of uplink anymore.[ #00]
03/12 F Sync state for uplink server not being set correctly.             [ #00]
03/11 F EVENT_BOT_ASSIGN now reports channel name instead of bot nick.    [ #00]
03/08 F Display of real host instead of vhost on alog().                  [ #00]
03/07 F tolower/toupper compiler errors on Win32.                         [ #00]
03/06 F Services not remove modes correct in some cases.                  [#308]
03/06 F Protected Umode users are protected from bans.                    [#311]
03/05 F Added UPDATE to ns help menu                                      [ #00]
03/05 F Updated Unreal 3.2 token support.                                 [#310]
03/03 F Numeric in the config is now a string not an int                  [ #00]
03/02 F Fixed LogUser message, normalizes the "realname" on nick change.  [#306]
03/02 F ircd protocol support for owner and admin taken from proto. files.[ #00]
03/02 F /ns alist output.                                                 [#288]
02/28 F normalizeBuffer() now strips two digit color codes                [#303]
02/28 F nickIsServices() no longer alters the buffer                      [#304]
02/22 F Uninitialized variable in NickServ DROP.                          [ #00]
02/22 F Remote whois sending incorrect numeric back.                      [#301]
02/22 F Several OperServ commands not respecting NickServ SET MSG.        [#302]
02/21 F Updated documentation for one style and small fixes.              [ #00]
02/13 F nickIsServices() works if format is nick@services                 [ #00]
02/12 F Win32 builds can now build with encryption                        [ #00]
02/10 F mod_current_buffer was not set in all possible cases              [#296]
02/07 F Updated userkey information in example.conf.                      [ #00]
02/06 F Win32 Module Load Errors.                                         [#294]
02/05 F Change Ident function did not update the vident.                  [#293]
01/30 F ChanServ help to reflect the avaiable commands.                   [ #00]
01/30 F ChanServ used some commands that were not valid on all ircds.     [ #00]
01/30 F Compiling modules under Mac OSX.                                  [#285]
03/07 R Removed Proxy Detector from core.                                 [ #00]

Provided by Brain <brain@inspircd.org> - 2005
04/18 A InspIRCd 1.0 Beta 3 support module.                               [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2005
04/07 F Win32 now includes SVN revision in version                        [#328]
03/16 F Shadowircd nick handling and vhost changing                       [#321]
03/14 R Removed some old irc-services convertor ifdef's                   [#317]

Provided by DrStein <drstein@anope.org> - 2005
04/07 A NickServ's ALIST won't accept invalid access levels for min_level [ #00]
03/22 A Compiling extra tools (db-merger, epona2anope)                    [ #00]
03/17 A Improvements on Config script.                                    [ #00]
03/17 A OS SET SQL ON shall warn about SQL disabled in services.conf      [ #00]
03/15 A ChanServ will now include the channel name in SET's responses     [#318]
05/01 F Fixed small typo in data/example.conf for OSInfoDBName.           [ #00]
05/01 F Updated modpack ns_noop to fix a few bugs.                        [ #00]
04/21 F alog() in ns_group wich was storing the wrong suspended nick.     [#343]
04/21 F NS SUSPEND now uses the same reason for the whole group.          [#343]
04/12 F Introduction text data file was missing.                          [ #00]
04/07 F NickServ shall give the correct response to GLIST/ALIST           [#345]
03/15 F ChanServ's do_getkey() function is now using notice_lang()        [#319]
03/14 F Updated docs/FAQ.                                                 [#312]
03/09 F Updated Spanish language file (es.l).                             [ #00]

Provided by Scott 'Simba' Garron <simba@anthrochat.net> - 2005
03/21 F Identical topics still being re-set if TOPICLOCK on.              [ #00]

Provided by Ricardo <ricardoltdb@gmail.com> - 2005
03/08 F Updated Portuguese language file.                                 [ #00]

Provided by crazytoon <da.crew@gmx.net> - 2005
04/07 A Updated German language file.                                     [ #00]
04/30 F gcc4.0 compiler errors.                                           [ #00]
04/04 F Installation of mydbgen.                                          [ #00]
04/04 F SolidIRCd code did not recognize channelmodes +S and +N.          [#331]

Provided by BarkerJr <barkerjr@barkerjr.net> - 2005
02/05 A Setting and Removal of SQLINEs on forbid of Channels and Nicks.   [ #00]

Provided by nenolod <nenolod@gmail.com> - 2005
04/07 F Numerous ShadowIRCD fixes                                         [ #00]

Anope Version 1.7.8
-------------------
Provided by Anope Dev. <team@anope.org> - 2005
01/23 A Support for Ratbox IRCD (With and Without TS6).                   [ #00]
01/23 A Support for TS6 protocol.                                         [ #00]
01/19 A Add simple smtp client, read the README in src/tools for info.    [ #00]
01/16 A Support for PTlinks VHOST (NEWMASK) command.                      [ #00]
01/16 A Ulines Servers are now except from NOJOIN bans.                   [#281]
01/29 F Fixes help for HS HELP LIST.                                      [#290]
01/29 F Memoserv rsend issue.                                             [#291]
01/23 F Fixed u_char warnings under OpenBSD.                              [ #00]
01/23 F anope_cmd_ctcp() fixed it was setup wrong.                        [ #00]
01/23 F Checks to make sure Services and Services Alias are not the same  [ #00]
01/23 F SIGINT now shuts down Anope correctly when running with -nofork.  [ #00]
01/23 F Attempting to set +h (helper) modes on ircd where there is no +h  [ #00]
01/23 F Fixed problem when dealing with non-existant user privmsg.        [ #00]
01/23 F Updated IRCD, FAQ, README to be more current.                     [ #00]
01/23 F Free's memory on shutdown that is in the User and Channel structs [ #00]
01/20 F Misplaced MEMO_NO_RSEND_SELF in es.l reordered.                   [ #00]
01/19 F OperServ HELP does not show commands not usable on that ircd.     [ #25]
01/16 F Help messages restricted to the right access level.               [#272]
01/16 F Updated IGNORE system to allow ircops past in all areas.          [#275]
01/16 F Help for /OS SET IGNORE.                                          [#271]
01/16 F Updated language files to show the correct vhost character.       [#278]
01/16 F Disables UseRDB when MysqlSecure is enabled.                      [#276]
01/16 F BS bots no longer flood resetting modes if its the same mode.     [#263]
01/16 F IRCops are now except from KillonSQline and KillonSGline.         [#274]
01/16 F BS Badwords had a false positives if BSCaseSensitive wass enabled [#277]
01/15 F Updated typo in example.conf.                                     [#279]

Provided by Ricardo <ricardoltdb@gmail.com> - 2005
01/20 F Completely updated pt.l language file.                            [ #00]

Anope Version 1.7.7
-------------------
Provided by Anope Dev. <team@anope.org> - 2004/2005
01/12 A Added make profile to allow for gprof profileing of anope.        [ #00]
12/30 A Warnings for NULL values with sstrdup/moduleData.                 [#261]
12/26 A Services can enforce SGLINE/SQLINE by killing the user on set.    [#245]
12/25 A Flag to tell if we need to enforce SGlines or not.                [ #00]
12/02 A Support for other Ulines Servers (NeoStats/SolarStats).           [ #00]
11/28 A Support for Unreal's version of SVSHOLD.                          [ #00]
11/28 A /OS SET LIST to list the set options.                             [ #00]
11/27 A Solid IRCD support (Solid IRCD 3.4.6 or later).                   [ #00]
11/27 A Exceptions now update if the limit is different.                  [ #00]
11/27 A Segfaults logged to the services log when DumpCore is disabled.   [ #00]
11/27 A OperServ SET SQL [on|off] disable/enable SQL during run time.     [ #00]
11/21 A Opened SGLINE to all ircd that support GEOS bans.                 [ #00]
11/21 A Opened SZLINE to all ircd that support ZLINE's.                   [ #00]
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages.    [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on.      [ #00]
11/18 A NSAddAccessOnReg to control access list on registration.          [ #00]
01/08 F /NS Status always returns 0 for unregisterd nicks like help says  [ #00]
01/07 F Fixed example.conf syntax mistake.                                [ #00]
01/06 F Possible crash using memoserv.                                    [#269]
01/05 F Few updates to Dutch language file (nl.l).                        [ #00]
01/05 F BotServ's banning would trigger a TSMODE error on a capable IRCd. [ #00]
01/05 F Not resetting the topic on channel creation with KEEPTOPIC off.   [#267]
01/04 F Fixed up some alog() messages that were incorrect.                [#266]
01/01 F Ultimate3 channel modes, which had been defined incorrectly.      [ #00]
12/31 F Fixed integer overflow error with CS ACCESS/LEVELS.               [#262]
12/30 F Fixed moduleAddData using an old moduleData as list head.         [#261]
12/30 F List handling of moduleData was bad on deletion.                  [#261]
12/30 F Few memleaks with moduleData functions returning early.           [ #00]
12/30 F Modules can no longer add commands with mod_name set.             [#261]
12/30 F Catserv now uses moduleAddCommand instead of addCommand.          [#261]
12/27 F Not freeing memory when a channel got deleted.                    [ #00]
12/27 F Segfaults with enforcing KillonSGline/KillonSQline.               [#260]
12/26 F Updated IRCD doc to show all the flags currently in the code.     [ #00]
12/26 F Fixed segfault with some config options if they are set wrong.    [ #00]
12/26 F Updated PTLink support to be more in line with the ircd protocol. [ #00]
12/25 F Fixed up user and channel modes for various ircds.                [ #00]
12/23 F Several compiler errors under make strict.                        [ #00]
12/21 F Unsetting away would not trigger checking of memos.               [#258]
12/21 F Dreamforge compile.                                               [ #00]
12/21 F Moved global about del of non-existant session inside debug() if. [ #00]
12/19 F Fixed LogUser messages where the nickip is 0.                     [#253]
12/19 F Segfault if USERDB enabled and tables don't exist.                [#255]
12/18 F Now only builds the ircd you selected.                            [ #00]
12/17 F In some cases READONLY was not respected, and data was saved.     [#244]
12/17 F Corrected a few mistakes in example.conf.                         [#251]
12/17 F Wrong column type in tables.sql for nick alias status fiag.       [#248]
12/17 F listchans and listnicks work under Cygwin.                        [#247]
12/17 F NickRegDelay no longer accepts negative values.                   [#250]
12/17 F -is44 option not show if converter not built.                     [#249]
12/11 F Fixed possible crashbug (NULL-free) in nickserv's delcore().      [ #00]
12/09 F Hybrid crash on unsetting registration mode.                      [ #00]
12/09 F BotServ !seen not recognizing founder.                            [#167]
12/08 F ChanServ ACCESS wrong when dealing negative numbers.              [#240]
12/06 F Fixed misplaced pointer in moduleAddData().                       [ #00]
12/06 F Fixed infinite loop with moduleGetData().                         [#239]
12/05 F CS CLEAR OPS strips +a/+q modes, and uses SVSMODE where possible. [ #00]
12/05 F Ultimate3 not setting +a on channel admins.                       [ #00]
12/04 F Cleaned up some memory warnings found with Valgrind.              [ #00]
12/03 F Unreal 391 TIME replies.                                          [ #00]
12/03 F CS TOPICLOCK setting a maliformed topic in some cases.            [ #00]
12/03 F Bahamut support +I channel modes.                                 [ #00]
12/02 F Ultimate3 botserv bots were getting wrong modes.                  [ #00]
12/01 F ChanServ AKICK DEL (reordering) (pointed to freed memory).        [ #00]
12/01 F del_session() warning messages when LimitSessions is disabled.    [ #00]
11/30 F Fixed ircd->chanmodes (pointed to freed memory).                  [ #00]
11/28 F NSSecureAdmins now restricts /NS SET EMAIL.                       [#218]
11/27 F Compiles and Runs under CYGWIN again.                             [ #00]
11/27 F bot_raw_mode() would cause a TSMODE warning.                      [#234]
11/27 F do_kill() not removing users from the user list.                  [#222]
11/27 F Unreal3.2 supports SVSMODE -b on clearing bans.                   [ #00]
11/27 F Removed +d references from the PTlink protocol file.              [ #00]
11/23 F Rage 2 updated to support BETA 7.                                 [#226]
11/23 F PTLink anope_cmd_server() message.                                [ #00]
11/21 F Fixed session decrease on /NS GHOST.                              [#229]
11/20 F Disables UseRDB if there is an error during SQL init.             [ #00]
11/20 F MS CHECK now checks if the nick is forbidden.                     [#225]
11/20 F Removing Sqline on bot nicks change if the nick was registered.	  [#224]
11/19 F normalizeBuffer() now strips control character 1.                 [ #00]
11/19 F CTCP Ping replies when UsePrivmsg is enabled.                     [ #00]
11/19 F Some config options could overflow strtol().                      [ #00]
11/19 F Wrong string and missing registered nick check in bot change.     [#221]
11/16 F NickTracking could allow usage of forbidden nick in some cases.   [ #00]

Provided by DrStein <gacevedo@anope.org> - 2004/2005
01/03 F Duplicated TOPIC sent, when TOPICLOCK is ON.                      [#265]
01/03 F If SYMBIOSIS ON, BotServ's bot should be the topic setter.        [#265]
12/23 A NS STATUS will return your status if no nickname is given.        [ #00]
12/26 F Error message during SQL init even if UseRDB was disabled.        [ #00]
12/10 F Extra tab in language files, causing bad answer in !seen.         [#243]
11/28 F Fixes RSEND oddity.                                               [#237]
11/26 F Memos sent as notification of receipt can't be cancelled.         [#192]
11/23 F Moving Services Operators to Services Admins and vice-versa.      [#230]
11/22 F HelpChan +h mode not being given if status was greater then op.   [#223]

Provided by Jens Hoffrichter <joho@nickstories.de> - 2004
12/17 F Provides clear message of SUPERADMIN is not enabled.              [#246]

Provided by mitch{Xy} <mitch@bondage.com> - 2004
12/20 F Removed unclear email text from language files.                   [ #00]

Provided by ThaPrince <jon@vile.com> - 2004/2005
01/13 A Support for plexus SVSID.                                         [ #00]
12/25 A Support for Hybrid TBURST.                                        [#259]
12/21 A Support for Hybrid IRCDs QS (Quit Storm).                         [#256]
12/20 A Added plexus ircd support.                                        [ #00]
01/13 F halfop support working for plexus.                                [ #00]
12/22 F Updated the plexus support.                                       [ #00]

Anope Version 1.7.6
-------------------
Provided by Anope Dev. <team@anope.org> - 2004
10/13 A Added argv[0] as nick for AnopeInit.                              [ #00]
09/20 A Added RestrictOperNicks as new feature in services.conf.          [ #00]
09/08 A Removed rand() and ported bsd's arc4random() to fit our needs.    [ #00]
08/24 A New -l option for am script to list possible selectors.           [ #00]
10/16 F Fixed RestrictOperNicks for /ns group command.                    [#188]
10/13 F Type in comments on all src files - yay.                          [ #00]
10/12 F Code Tidy, fixed some error checking.                             [ #00]
10/09 F Bug in LogChannel possibly causing segfaults.                     [#176]
10/03 F Changed UserKeys from uint to long uint.                          [ #00]
09/21 F An option to explicitly not use mysql is added to Config.         [ #00]
09/19 F Rewrote the internals of moduleData to save lots of memory.       [ #00]
09/14 F Protection unsetting now does -a instead of +a.                   [ #00]
09/12 F Updated Dutch language file.                                      [ #00]
09/10 F Typo in anope_cmd_relase_svshold function name.                   [ #00]
09/09 F Fixed bug with uninitialized pointer in check_sqline.             [ #00]
09/08 F Fixed gcc2 support with multiple C++ style comments.              [ #00]
08/26 F Fixed spelling stuff in the german langfile.                      [#159]
08/24 F Compile error with gcc2.                                          [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2004
10/29 A Added UnRestrictSAdmin to allow use of umode +a.                  [ #00]
10/23 A Added depricated.h, this will allow old mods to work for now.     [ #00]
10/23 A Add hook for SJOIN for Unreal future +I support.                  [ #00]
10/06 A Bahamut's channel mode +j (join throttle).                        [ #00]
10/05 A Globalized CS/NS STATUS messages.                                 [ #00]
10/02 A Added NewsCount as new feature in services.conf.                  [ #00]
08/28 A CSupport for +I channel mode.                                     [ #00]
08/28 A Complete support for Unreal3.2.                                   [ #00]
08/28 A New BASE64 general library.                                       [ #00]
09/07 A Unreal32 channel mode +T support.                                 [ #00]
09/07 A Ircd CHANMODE now trapped and stored.                             [ #00]
08/23 A New protocol independent design (aka anope-capab).                [ #00]
08/28 A New IRCD document for adding new ircd support to new design.      [ #00]
11/11 F OS CLEARMODES now takes +q/+a.                                    [ #00]
11/11 F Updated PTlink support.                                           [#211]
11/06 F Fixed syntax error when NSForceEmail is disabled.                 [ #00]
11/06 F Fixed using "make" under some BSD systems.                        [ #00]
11/06 F Chanserv taking modes more than once.                             [ #68]
10/31 F Fixes configure warning on BSD systems.                           [#160]
10/30 F Fixed OS CLEARMODE, so the correct messages are sent.             [#207]
10/30 F Fixed MS INFO using the correct message.                          [#205]
10/29 F Fixed CS CLEAR MODES not resetting the modes.                     [#182]
10/29 F Fixed LogUser message, now normalizes the "realname" for display. [#199]
10/29 F Fixed BS ACT, if the string contained control character 1.        [#193]
10/27 F Fixed hardcored ircd sqlines from taking out services.            [#133]
10/27 F Fixed TOPIC timestamp not being read correctly.                   [#196]
10/24 F Fixed OPNOTICE when doing /CS OP.                                 [#198]
10/20 F Updated Base64 Lib to fix Unreal NICKIP.                          [ #00]
10/16 F Fixed BS TTB.                                                     [#185]
10/16 F RestrictOperNicks is no longer case sensitive.                    [#190]
10/16 F Fixed tsbuf not being sent on registration.                       [#180]
10/15 F Fixed OS JUPE.                                                    [#147]
10/14 F Fixed NickServ Logout.                                            [#180]
10/14 F Fixed HelpChannel with Unreal.                                    [#180]
10/09 F Bug in MySQL debug, possibly causing segfaults.                   [#149]
10/09 F Lots of code clean up to prevent segfaults.                       [ #00]
10/07 F Fixed TSMODE ircds that don't stay this in their CAPAB.           [ #00]
10/05 F Cleaned up how OS/CS CLEAR MODES works.                           [ #00]
09/27 F Verbose message for vident.                                       [#173]
09/27 F Check and trap for forbidden nicks on HS.                         [#172]
09/27 F Tracking of IP address for simple checks.                         [#166]
09/27 F Proper deletion of added NS timeouts.                             [#143]
09/27 F Partial fix for +a compile error.                                 [#147]
09/27 F Resolved longstanding NICKIP issue on AKILLs.                     [ #17]
09/07 F Handling of most Unknown Message from Server commands.            [ #00]
09/07 F Several Hybrid support fixes and improvements.                    [ #00]
09/07 F Several Unreal support fixes and improvements.                    [ #00]
09/07 F Several Ultimate support fixes and improvements.                  [ #00]
08/28 F Channel registration handling for non chanops.                    [#142]
08/28 F Protection from accessing unavailable struct data.                [#152]
08/28 F Rage2 mode +M/+A channel support.                                 [#154]
08/28 F Rage2 Beta6 support.                                              [#155]
08/28 F Undefined references on botserv.c upon compilation.               [#156]
08/28 F Memory leaks taken care of.                                       [#157]
08/28 F Buffer preparation for vsnprintf() call.                          [#158]

Provided by DrStein <gacevedo@anope.org> - 2004
11/06 A NS ACCESS LIST reports correctly that the list is empty           [ #00]
10/05 A CS/NS INFO shows the expire time.                                 [ #00]
10/05 A NS GLIST shows the expire time.                                   [ #00]
11/06 F Service Admins can now modify the XOP list			  [#170]
10/29 F ChanServ XOP reordering fix					  [#187]
10/29 F ChanServ AKICK reordering fix					  [#201]
10/29 F ChanServ now requires a more obscure password                     [#202]
10/27 F MS CHECK to look for the correct sender value.                    [#200]
10/21 F Updated Spanish language file.                                    [ #00]
10/15 F More Check and trap for forbidden nicks on HS.                    [#183]
10/07 F NEWS reordering issue						  [ #00]
10/05 F NS GLIST allows the owner of the nick to use the nickname param.  [ #00]
09/17 F Fixed MySQL error, whereby checks are only done if mysql is on.   [ #00]
09/14 F Fixed /os MODE by joining nested ifs into one.                    [ #00]

Provided by crazytoon <da.crew@gmx.net> - 2004
10/24 A Updated German language file	                                  [ #00]

Provided by Miles Nordin <carton@Ivy.NET> - 2004
11/06 F Fixes segfault under NetBSD with channel names using i18n symbols [ #00]


Anope Version 1.7.5
-------------------
Provided by Anope Dev. <team@anope.org> - 2004
07/17 A Switched to autoconf for configure script.                        [ #00]
07/05 A Warning when LocalAddress conflicts with RemoteServer.            [#118]
06/18 A Added proper Bahamut1.8 support.                                  [ #55]
08/11 F Proper make distclean to leave source spotless.                   [ #00]
08/11 F Fixed support for Ultimate, Rage and Viagra.                      [#113]
08/10 F Fixed previous BotServ buffer fix.                                [#131]
08/10 F Updated documentation to reflect the changed build process.       [ #00]
08/07 F configure will be ok if you dont have mysqlclient lib file.       [ #00]
07/23 F Fixed BotServ buffer.                                             [#131]
07/22 F Free NSNickTracking when a user quits.                            [#126]
07/22 F NOOP bug with wildcards.                                          [#115]
07/22 F Removed RESTRICTED from incorrectly labeled lang file entry.      [#111]
07/15 F Fixed the bug where /ns release didn't work with UseSVSHOLD.      [#125]
07/15 F Fixed a tiny memleak in the db routine.                           [ #00]
07/15 F Updated Dutch language file.                                      [ #00]
07/14 F Added CHECK to the memoserv help menu.                            [ #00]
07/12 F Bots will join a channel even for ignored users.                  [ #00]
07/05 F Global now joins LogChan on startup with hybrid.                  [ #97]
07/04 F Fixed a bug with m_time.                                          [ #00]
06/30 F Fixed bug which caused failure in anope crontab script.           [ #00]
06/28 F Fixed compiling bug with UltimateIRCd3, ViagraIRCd, Rage2IRCd.    [ #00]
06/26 F Removed TSMODE from usermodes for bahamut.                        [#112]
06/22 F Changed all strcasecmp's to stricmp's.                            [ #00]
06/20 F PTLink server support.                                            [ #00]

Provided by Trystan <trystan@nomadirc.net> - 2004
07/22 A Added VIAGRA support for modes +A and +H.                         [ #99]
08/17 F Rage2 SNICK event handling.                                       [#128]
08/17 F Included XOP reference to /CS HELP SET.                           [#139]
08/17 F French language update.                                           [#146]
08/17 F Ultimate3 channel modes fixed.                                    [#147]
08/17 F Ultimate3 configuration defines set properly.                     [#148]

Provided by Janos Kapitany <sarkanyka@cjbchat.hu>
08/04 A New language file hun.l (Hungarian)                               [ #00]

Provided by Mateusz Szczyrzyca <annihilator@ircnet.pl> - 2004
08/11 A New language file pl.l (Polish)                                   [ #00]

Anope Version 1.7.4
-------------------
Provided by Anope Dev. <team@anope.org> - 2004
06/16 A More verbose error messages for services.conf checking.           [ #00]
06/10 A Improved handling of /NS INFO for pseudo-clients.                 [ #98]
06/07 A Added register script in /bin/ for users to register anope.       [ #00]
05/27 A Better /OS MODLIST output to include version information.         [ #74]
05/25 A New /CS CLEAR HOPS for ircd's that support halfops.               [ #72]
05/24 A New NSNickTracking directive to provide nick tracking.            [ #71]
05/21 A Auto enforce upon AKICK addition.                                 [ #63]
05/21 A New file docs/OLDCHANGES contains all change history.             [ #65]
06/17 F Added SQLINE to NICK() on PTlink.                                 [ #96]
06/16 F Module support for OpenBSD systems                                [#106]
06/12 F We check now for valid arguments in ModuleAddData().              [ #90]
06/12 F Unified kill_user function to handle all ircd protocols.          [#101]
06/10 F Added check to see if MysqlUser and MysqlName were not null.      [ #92]
06/09 F Corrected a number of spelling errors in en_us.l.                 [ #94]
06/09 F Corrected a large number of spelling and typing errors in docs.   [ #87]
06/09 F Corrected compile warning for Hybrid support.                     [ #93]
06/06 F Fixed a bug with long NSGuestNickPrefixes.                        [ #00]
06/04 F Buffer initialization for encrypted MySQL passwords.              [ #86]
06/04 F Rewrite of del_exception() fixing segfault and memory leak.       [ #78]
06/04 F MemoServ send limit does no longer apply for services operators.  [ #84]
06/03 F Reversed pthread library detection order on ./configure script.   [ #67]
06/02 F Fixed bug where people who set memoserv notify off were notified. [ #79]
05/30 F HostServ functions no longer called for non VHOST capable ircds.  [ #77]
05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e).                 [ #80]
05/26 F Repaired /NS GROUP for compiled but disabled MySQL support.       [ #73]
05/24 F Fixed typo in example.conf.                                       [ #70]
05/24 F Cleaned up compile errors on older compilers.                     [ #69]
05/21 F Removed threads.c file.                                           [ #64]
05/21 F Check for VHOST capable ircd on HostServAlias induction.          [ #56]
05/21 F Allow /CS SUSPEND on registered channels only.                    [ #54]
05/21 F Reserved nicks (Q-lined) will be KILLed if taken on induction.    [ #50]

Provided by Trystan <trystan@nomadirc.net> - 2004
06/10 A User customizable pseudo-client modes.                            [ #99]
06/17 F GlobalOnCycleMessage checked at startup                           [ #91]

Anope Version 1.7.3
-------------------
Provided by Anope Dev. <team@anope.org> - 2004
05/16 A make install will now move anoperc to bin, fixed anoperc bug
05/15 A New standard Changes file format.
05/15 A BSCaseSensitive directive for a cAsE sEnSiTiVe badword kicker.
05/14 A Support for +a/-a on PTLink ircd.
05/02 A New moduleAddData support.
04/29 A MemoServ command CHECK to check whether a memo has been read.
04/23 A MemoServ command RSEND to send a memo requesting a receipt.
04/19 A Console control script bin/anoperc.
05/03 F Always set the right module name when executing mod_tail commands.
05/14 F Removed some illegal sizeof(void). Thanks to codemastr.
05/04 F Badwords kicker to ignore control characters and color codes.
05/12 F Missing RANDOMNEWS entry on /OS HELP                              [ #40]
05/14 F HELP LIST and LIST SYNTAX help messages                           [ #53]
05/14 F Globals containing format characters                              [ #52]
05/14 F Typo in HostServ help                                             [ #51]
05/12 F Missing RANDOMNEWS entry on /OS HELP                              [ #40]
05/12 F xOP management inconsistency                                      [ #38]
05/11 F Bug with module unload / memo moduleData                          [ #43]
05/05 F Bug with RDB and empty nickserv greet message                     [ #28]
05/08 F Segfault on MySQL FORBID                                          [ #14]
04/22 F ALIST bug when being invoked by systems admins                    [ #20]

Provided by Rage IRCD. <rageircd@users.sourceforge.net> - 2004
05/11 A Rage2 IRCD support accepted feature request.                      [ #46]

Anope Version 1.7.2
--------------------
Provided by Anope Dev. <team@anope.org>
2004/04/17 Fixed table.sql usage on mydbgen script (Bug #10)
2004/04/17 Fixed bug where anope_ns_req was being referenced
2004/04/17 Added SIGUSR2 signal to Rehash Config and Save DBs
2004/04/16 Fixed broken password saves to MySQL (Bug #11)

Anope Version 1.7.1
--------------------
Provided by Anope Dev. <team@anope.org>
2004/04/12 Fixed quoted MD5 password for MySQL use (Bug #11)
2004/04/11 Fixed table.sql detection on mydbgen script (Bug #10)
2004/04/09 Fixed segfault due to coreless nicks in MySQL db (Bug #8)
2004/04/08 Added NickRegDelay. Nicks have to be connected longer than X seconds before a /ns register.
2004/04/08 Added "is a services root administrator" to /ns info.
2004/04/08 Added option for SOs and above to hide their services access status in /ns info.
2004/04/07 Added -help arguement for command line parameters.
2004/04/04 Added -version argument to return version and build info.
2004/04/04 Fixed moduleAddCommand for a non-existant service.
2004/04/01 Added memo2mail and /msg memoserv set notify MAIL/NOMAIL.
2004/03/31 Fixed MySQL double encryption if using MD5.
2004/03/31 Implemented MySQL Phase2 (see docs/MYSQL file).
2004/03/31 Modules can now add Commands/Messages from outside of AnopeInit.
2004/03/31 Fixed a bug with recersive module callbacks.
2004/03/30 Added channelname to entrymsg.
2004/03/28 Fixed tables.sql and removed needless tables.
2004/03/28 Forked 1.7 development stream.

Anope Version 1.6.0
--------------------
Provided by Anope Dev.  <team@anope.org>
2004/03/22  Added and updated several documents on "docs" folder.
2004/03/22  Added bin/dbgen to help MySQL db schema.
2004/03/21  Fixed module makefile to use -Wall for new modules
2004/03/21  Fixed config check startup warnings                       (0000467)
2004/03/21  Fixed bug where mkdir should be mkdir -p to create parent (0000468)
2004/03/22  Fixed Crash on channel memo                               (0000347)

Anope Version 1.5.15
--------------------
Provided by Anope Dev.  <team@anope.org>
2004/03/14  Fixed LogBot and LogChan issue                            (0000437)
2004/03/14  Fixed tiny bug in french lang file                        (0000465)
2004/03/14  Fixed chanmode +r not being removed.		      (0000462)
2004/03/12  Fixed MySQL limited data fields                           (0000434)
2004/03/12  Fixed a cosmetic typo                                     (0000440)
2004/03/14  Fixed mysql (null) values 				      (0000450)
2004/03/06  Fixed module duplicate functions                          (0000431)
2004/03/06  Fixed module unload issue                                 (0000432)
2004/03/13  Fixed missing channel fields on MySQL schema
2004/03/13  Fixed MySQL calls even when disabled.
2004/03/07  Fixed a malformed mode crash for some ircd's
2004/03/13  Added db save on startup

Anope Version 1.5.14
--------------------
Provided by Anope Dev.  <team@anope.org>
2004/02/17  Disabled modules on OpenBSD for the time being            (0000408)
2004/02/15  Added Viagra's VS command to handle vHosts properly       (0000404)
2004/02/15  Fixed HostSetters to cover all aliases in the group       (0000412)
2004/02/07  Fixed channel '#' may not be registered anymore           (0000030)
2004/02/07  Fixed opers can't /OS MODE on +A chans anymore            (0000403)
2004/02/07  Fixed registration via group on nicknames preconfirmation (0000400)
2004/02/14  Fixed hardcoded references to "OperServ"                  (0000411)
2004/02/19  Fixed nickserv list problem with unconfirmed nicknames    (0000406)
2004/02/14  Fixed DefCon to cover more cases properly                 (0000407)
2004/02/02  Fixed bug where non-id'ed nicks could do /cs identify
2004/02/07  Fixed bug where you could /cs identify infinite times
2004/02/09  Fixed incorrect help files Changed ServicesAdmin->SuperAdmin
2004/02/14  Fixed typos in en_us.l language file

Anope Version 1.5.13
--------------------
Provided by Anope Dev.  <team@anope.org>
2004/01/30  Fixed malformed buffer bug                                (0000398)
2004/01/31  Fixed OperServ news system reordering.                    (0000396)
2004/01/19  Fixed minor typos on en_us.l                    (0000380) (0000381)
2004/01/31  Fixed ALL option for ChanServ info                        (0000395)
2004/01/18  Fixed HostServ Set message for non-registered nicks

Anope Version 1.5.12
--------------------
Provided by Anope Dev.  <team@anope.org>
2004/01/12  Added optimized language parser
2004/01/11  Added moduleSetHelpHelp to modules.h
2004/01/11  Added updated documentation 
2004/01/12  Added language tool (langtool.pl)
2004/01/13  Added line length check (>60 char) to langtool.pl
2004/01/17  Added better MySQL detection on configure script
2004/01/17  Removed ExtSock experimental code
2004/01/07  Fixed broken CHANKILL expire                              (0000333)
2004/01/03  Fixed bot creation issue                                  (0000348)
2004/01/11  Fixed /OS STAFF output                                    (0000346)
2004/01/11  Fixed bot change/creation error                           (0000348)
2004/01/03  Fixed /MS STAFF output                                    (0000356)
2004/01/07  Fixed modunload crash with disabled services              (0000370)
2004/01/17  Fixed missing HostServ on HelpServ help list              (0000377)

Provided by GeniousDex
2004/01/04  Updated nl.l (Dutch language File)
2004/01/11  Updated documentation

Anope Version 1.5.11
--------------------
Provided by Anope Dev.  <team@anope.org>
2003/12/12  Fixed all printf parameters on all language files
2003/12/08  Fixed HOST_HELP string for all languages (0000340)
2003/12/08  ChanServ and NickServ LIST's now accept #X-Y for seaching
2003/12/09  Nickname enforcer will now kill instead of svsnick on hybridircd

Provided by Oleg Nikolaev aka Isot <isot@complife.ru>
2003/12/12  New ru.l (Russian lang file)

Provided by DrStein
2003/12/12  Updated es.l (Spanish language File).

Provided by GeniousDex
2003/12/12  Updated nl.l (Dutch language File).

Provided by Stuff <the.stuff@gmx.de>
2003/12/09  Updated de.l (German lang file)

Anope Version 1.5.10
--------------------
Provided by Anope Dev.  <team@anope.org>
2003/11/24  New version of putanope to make more robust
2003/11/24  New #defines for version tokens (see built version.h)
2003/11/24  New version schema: major.minor.patch.build
2003/11/16  Fixed mlock +c on Ultimate3                               (0000320)
2003/11/16  Fixed BotServ +ao on PTLink                               (0000313)
2003/11/16  All channel modes now supported on PTLink                 (0000311)
2003/11/16  Absolute mode cleaning for /CS CLEAR #chan MODES
2003/11/16  Services will now kill users on hybrid instead of svsnick (0000240)
2003/11/15  Fixed a bug with module message's
2003/11/15  Added a generic footer to list's without                  (0000222)
2003/11/15  Adding a ./configure script to modules folder
2003/11/15  Removed Experimental status from Module and Viagra 
2003/11/15  Fixed /ms staff on memo notifucation                      (0000221)
2003/11/09  Fixed compile.sh for bsd based systems
2003/11/09  Fixed bug in moduleDelCallback routine

Anope Version 1.5.9
--------------------
Provided by Anope Dev.  <team@anope.org>
2003/11/03  Added optional MysqlSecure password security directive
2003/11/03  Fixed case insensitive password fields on MySQL           (0000196)
2003/11/03  Fixed /OS STAFF bug not showing online aliases            (0000124)
2003/11/03  Fixed wrong /CS HELP output on Ultimate2/3                (0000189)
2003/11/02  Fixed empty fields on the cs_access table                 (0000197)
2003/11/02  Fixed SA's unable to /NS LOGOUT themselves                (0000288)
2003/11/02  Fixed SQLINE help syntax                                  (0000291)
2003/11/01  Added moduleDelCallback for module coders
2003/11/01  Modified module AnopeInit call, fixed bug                 (0000289)
2003/11/01  Fixed error in pt.l file and memoserv help
2003/10/29  Fixed -h bug for valid halfop's when joining a empty chan (0000245)
2003/10/29  Fixed forbidden chan spammy log file bug                  (0000284)

Provided by GeniusDex <geniusdex@twistification.net>
2003/11/01  Converted HelpServ into a "real" services, modules now work for it

Anope Version 1.5.8
--------------------
Provided by Anope Dev.  <team@anope.org>
2003/10/08  Fixed compile errors on PTLink and Ultimate3 as nither have vIdents
2003/10/17  Fixed double TAB on language files (0000283)
2003/10/14  Added a check on nicksserv logout so you can't logout services admins
2003/10/17  Added new configuration directive AnonymousGlobal (0000116)

Provided by ShadowMaster <ShadowMaster@Shadow-Realm.org>
2003/10/08  Added NickIP Akill matching

Anope Version 1.5.7
--------------------
Provided by Anope Dev. <team@anope.org>
2003/10/05  Added /ns update to replace further identifies, /ns identify will now only work once
2003/10/03  Added check_unload function to modules. (like on-error unloading)
2003/10/03  Added directive MysqlPort
2003/09/22  Added moduleHelp framework for module coders, see hs_moo.c
2003/09/21  Added moduleGetLastBuffer() and a module cmdTable bug fixed
2003/08/16  Added moduleAddCallback command for module coders
2003/10/06  Fixed bug with botserv bot creation when using services-aliases. (thanks to Killerchen)
2003/10/05  Fixed vident on ban issue (bug 0000268)
2003/10/05  Fixed memo order reset on deletion (bug 0000270)
2003/09/07  Fixed clearmodes issue (bug 0000121)
2003/09/07  Fixed ServicesRoot reload issue (bug 0000194)
2003/09/07  Fixed empty ip proxy crash (bug 0000217)
2003/09/04  Fixed bug ref: 0000170 - optional ""'s in mail sending
2003/07/28  Fixed Channel DROP then FORBID crash on MySQL (0000199)
2003/07/28  Fixed HostServ launch on Viagra and PTlink (0000190)
2003/07/27  Fixed BotServ bots now unkickable on Ultimate3 (0000159)
2003/07/27  Fixed Hybrid NICK_IS_REGISTERED dupe (0000184)
2003/07/27  Fixed PTlink /newmask issue (0000188)
2003/07/20  Fixed MySQL compile errors on Ultimate
2003/07/20  Fixed PTlink sbuf compile error
2003/07/20  Fixed chanserv badword MySQL issue
2003/08/30  Allow for E/F lines when handling akilled host's joining the network
2003/07/25  Added External socket support (*VERY* EXPERIMENTAL)
2003/07/20  Made MySQL ns_id, na_id and ci_id useful by preserving it's value across updates
2003/07/20  Some MySQL Optimizations (MySQL 3.23.32+ required)

Provided by DrStein
2003/10/05  Updated es.l (Spanish language File).

Anope Version 1.5.6
--------------------
Provided by Anope Dev. <team@anope.org>
2003/07/16  Reimplemented +oa and +oq on net-joins and ModeOnId (less intrusive)
2003/07/16  Added bin directory with misc tools
2003/07/12  Fixed chankill no expire
2003/07/13  Fixed BotServ bug when trying to add a bot with a services client's name.
2003/07/10  Changed mlock_key from int to a String in mysql.c (Thanks goto Trystan)
2003/07/09  Added request Syntax. Changed version to show the actual compiled Ircd's name.
2003/06/29  Added services/modules/runtime for tmp storage of .so files
2003/06/29  Fixed a small bug in nickserv load.
2003/06/29  Fixed multiple chan modes at once Ulitmate issue

Anope Version 1.5.5
--------------------
Provided by Anope Dev. <team@anope.org>
2003/06/24  Added the ability to autoload modules at services startup
2003/06/23  Now MySQL functionality is optional even when compiled with MySQL support
2003/06/23  Combined +oq +oa +ha +va on net-joins.
2003/06/22  Prevent botserv say sending a ctcp to a channel
2003/06/22  Fixed nickserv setting +d on users using group
2003/06/22  Fixed non services admins able to drop nick's still awaiting a email code
2003/06/17  Added EXPERIMENTAL module support.

Provided by GeniusDex <geniusdex@twistification.net>
2003/06/23  Dutch language file.

Anope Version 1.5.4
--------------------
Provided by Anope Dev. <team@anope.org>
2003/06/11  Added RemoteServer2 and RemoteServer3 to the conf. If one server is down, the services will try the next one.
2003/06/06  Added /MS SENDALL to send a massmemo to all registered users
2003/06/03  Renamed function log() to alog() to prevent gcc3.3 warnings
2003/06/03  Services now WALLOPS about db saves on /os shutdown
2003/06/03  Modified NetworkDomain directive to allow multiple domains
2003/06/03  Added NSRestrictGetPass and CSRestrictGetPass directives to restrict access to getpass command.
2003/06/03  Added a directive in the conf that makes ChanServ opers only.
2003/06/02  Added phase 1 of MySQL Support

Anope Version 1.5.3
--------------------
Provided by Anope Dev. <team@anope.org>
2003/05/31  Removed TitanIRCd support. Difference willnot allow joint support
2003/05/25  Custom GlobalOnCycle message
2003/05/25  Defcon reject all new connections Kill message.
2003/05/25  CHANKILL will not akill opers in the channel
2003/05/25  Add command for MemoServ to send memo to all Admins/Opers
2003/05/24  Fixed /os restart bug
2003/05/24  Updated lang files - various errors/bug fixs
2003/05/23  Fixed NSModeOnID it will only set unset modes (as far as possible)

Provided by Popcorn <popcorn@anope.org>
2003/05/26  Added ViagraIRCd 1.3.x / TitanIRCd 2.0.3 support (experimental)

Provided by James <slowking50@aol.com>
2003/05/30  Fixed deleting ban exceptions.
2003/05/29  Added a much improved services ignore that can use wildcards.
2003/05/24  Added Hybrid 7 support - james your the daddy! :-)

Provided by openglx <openglx@brasnerd.com.br>
2003/05/26  Added PTlink 6.15.0 or later support (experimental)

Anope Version 1.5.2
--------------------
Provided by Anope Dev. <team@anope.org>
2003/05/20  Added GlobalOnDefcon to global current Defcon Level when set
2003/05/20  Added GlobalOnDefconMore to allow admin to attach a msg to users
2003/05/15  Added No New Memos to Defcon
2003/05/15  Edit lanuage file to allow the user to know services are in Defcon
2003/05/15  Added /NS GETEMAIL to allow matches of nick to email (0000013)
2003/04/28  Added /OS SVSNICK to forcefully change a user's nickname

Anope Version 1.5.1
--------------------
Provided by Anope Dev. <team@anope.org> :)
2003/04/27  Added Forbid/Suspend reason on akick if defined (0000023)
2003/04/27  Added /OS CHANKILL command to deal with botnet channels (0000066)
2003/04/26  Added DEFCON framework, along with basic settings
2003/04/23  Removed Sequana IRCd support as well as conversion from IRCservices v4.4
2003/04/19  Added HostSetters directive to allow NON-OPERS to use HostServ
2003/04/19  Added Operserv Staff command feature request: 0000018
2003/04/18  Added a pattern matching + range specifying to /HostServ LIST
2003/04/18  Added DELALL command to HostServ to compliment SETALL
2003/04/14  Services Root Admins are no longer affected by MailDelay
2003/04/10  Added user's ident and host to WallBadOS
2003/04/02  The old chanbot will now part on a /bs assign (smarter assign)
2003/04/02  Added name tag for globalmsgs (shows the name of the sender)

Anope Version 1.4.23
--------------------
Provided by Anope Dev. <team@anope.org>
2003/05/18  Fixed /ns list display error with no-expire
2003/05/15  Fixed Exception move bug
2003/05/15  Fixed /msg Operserv noop issue
2003/05/05  Fixed Invalid nick/host/ident when using /bs bot CHANGE

Anope Version 1.4.22
--------------------
Provided by Anope Dev. <team@anope.org>
2003/04/27  Fixed unsuspend crash when the # sign was left out
2003/04/27  Fixed JOIN modes not set correctly internaly (e.g. for /cs clear ops)
2003/04/26  Fixed OperServ jupe will only attempt to Jupe valid server masks
2003/04/26  Fixed SETHOST for nonexistent user nickname in log files
2003/04/26  Fixed Nonrelevant compiler warning (eof on botserv.c)
2003/04/26  Fixed vIdent support for Ultimate2.x

Provided by James <slowking50@aol.com>
2003/04/26  Fixed No valid tld and logchan issue on Ultimate3

Anope Version 1.4.21
--------------------
Provided by Anope Dev. <team@anope.org> (thanks goto PopCorn)
2003/04/20  Fixed BotServ nick/host/ident checking
2003/04/20  Fixed HostServ valid host/ident checking

Anope Version 1.4.20
--------------------
Provided by PopCorn
2003/04/18  Fixed xOP permission problem

Anope Version 1.4.19
--------------------
Provided by Anope Dev. <team@anope.org> :)
2003/04/12  Fixed MSNofityAll bug that crashed Services.
2003/04/12  Fixed MD5 compilation error.

Anope Version 1.4.18
--------------------
Provided by Anope Dev. <team@anope.org> :)
2003/03/27  SUSPENDed Channels can't be DROPed by Founder anymore
2003/03/27  Fixed a couple of log'ing errors to tidy logfiels up a bit
2003/03/20  Fixed a minor epona bug with !unban (BotServ will now
            check the UNBAN level instead of the OPDEOP level)
2003/03/14  On Ultimate3 you can now MLOCK +NSA.
            Please note that MLOCK'ing +A and +O will only work on
	    Ultimate3.a31 and later.
2003/03/11  Fixed buffer bug with long akill reasons and AddAkiller
2003/03/08  MemoServ notification for Channel memos, upon join and send.
2003/03/07  SuperAdmin can now be turned ON/OFF on a per-admin basis
            logging of use is also added.
2003/03/07  Added OperServ ignore function
2003/03/07  Added optional globalmsg on startup and shutdown/restart
2003/03/07  Added config option to hide Services stats o from non-opers
2003/03/05  Fixed a bug with clearmodes
2003/03/03  Added OperServ umode function to change usermodes (SuperAdmin only)
2003/03/03  Added OperServ oline function to give operflags to users (SuperAdmin only)
2003/03/03  Fixed several issues with +p users and ChanServ/Botserv
            kick and negative mode changes.
2003/03/02  Added Optional Channel ModeOnID
2003/02/22  Added email verification when registering a nick
2003/02/22  Added HostServ GROUP command, to allow users to sync
            all vHost's in a nick group.
2003/02/22  Added /MS DEL LAST
2003/03/21  Updated it.l (Italian language File).
2003/03/21  Updated es.l (Spanish language File).
2003/03/21  Updated de.l (German language File).

Provided by Kevin <kevin@botstats.com>
2003/03/21  Updated fr.l (French language File).

Anope Version 1.4.17
--------------------
Provided by Anope Dev. <anope@zero.org> :)
2003/03/02  Fixed HostServ bug on non VHOST ircds.
2003/02/20  Fixed the -logchan -debug bug, now they are mutualy exclusive
2003/02/19  Added the #define HAS_VIDENT to signify an ircd able to
            dynamicaly change a user's ident
2003/02/19  HostServ updated to allow ident@host's for compatiable
            ircds
2003/02/19  NickServ ALIST command added which deprecates ChanServ
            CLIST/ALIST
2003/02/19  Complain to the oper about long vhosts
2003/02/19  Added sanity check on vHost on HostServ SET/SETALL
2003/02/19  Fixed HostServ support for UltimateIRCd 3.0.0
2003/02/18  NS INFO ALL shows the vHost if it was set with hostserv
2003/02/18  NS ID is an alias for NS IDENTIFY
2003/02/18  Updated it.l (Italian language File).
2003/02/18  Updated es.l (Spanish language File).
2003/02/17  Fixed KILL (Alias Recovery) bug.
2003/02/17  Fixed CHAN_CLIST_FORMAT on all languages.
2003/02/17  Removed "scalloc" warnings.

Provided by Seb <seb@iftouch.net>
2003/02/18  Updated fr.l (French language File).

Provided by Certus <Certus@irc-downloads.de>
2003/03/01  Updated de.l (German language File).

Anope Version 1.4.16
--------------------
Provided by Anope Dev. <anope@zero.org>
2003/02/16  Fixed all language files to conform to latest index
2003/02/15  Fix for Bahamut/Ultimate3 AKILL command.
2003/02/14  CS XOP ADD moves an existing xop nick between lists
2003/02/14  CS ACCESS LIST shows xop properly instead of levels
2003/02/14  CS ALIST implemented
2003/02/14  CS CLIST modified for users
2003/02/13  HostServ Support + Alias
2003/02/13  CS SUSPEND/UNSUSPEND implemented
2003/02/13  Kill recovery for Aliases
2003/02/13  Exception checking banning mechanism

Anope Version 1.4.15
--------------------
Provided by Daniel Engel <dane@zero.org>
2003/02/03  Interim name change for the project to Anope.
2003/02/03  Created Changes.conf for services.conf changes.
2003/02/03  Portuguese Language File up to date.
2003/02/03  Spanish Language File up to date.
2003/02/03  RAW messages now logged.
2003/02/03  Access list DELETE and CLEAR now logged.
2003/02/03  Added Super Admin founder of all (view new example.conf).
2003/02/03  Prepend nick to AKILL reason (view new example.conf).
2003/02/03  Added AKILL reason to WallOSAkill notifier.
2003/02/03  Added BotServ !k alias of !kick.
2003/02/03  Logging BotServ ACT and SAY to a channel (view new example.conf).
2003/02/03  Added a more informative error on disabled RAW command.
2003/02/03  Fixed most compile warnings.

Provided by Lucas Nussbaum <lucas@lucas-nussbaum.net>
2003/02/03  Access Denied Logging.
2003/02/03  Services Alias (view new example.conf).
2003/02/03  Split Buffer exploit fix.

Provided by David Narayan <jester@phrixus.net>
2003/02/03  Logging to a channel + CLI flag (view new example.conf).

Provided by David <dv@diboo.net>
2003/02/03  OperServ corruption notification.

Provided by JH <jh@irc-chat.net>
2003/02/03  ChanServ end of ACCESS list notification.

Provided by Thomas Juberg <ShadowMaster@Shadow-Realm.org>
2003/02/03  UltimateIRCd version 3.0.0.1 (mod-1.2) support.

Provided by Daniele Nicolucci <jollino@sogno.net>
2003/02/03  Italian language file.

Epona Version 1.4.14
--------------------
2002/09/01  Nickname SQLINEs are now also enforced on nick change.
                Reported by vandit <castortroy@piranho.net>
2002/08/27  Made NickServ and ChanServ log certain events more
            verbosely.
2002/08/27  Added LogUsers configuration directive.
2002/08/20  Fixed NickServ password encryption for newly registered
            nicknames.
                Reported by -ozone <ozone@securify.org.uk>
2002/08/20  ChanServ will now also convert halfops to the HOP list
            when switching to the xOP system.
                Reported by Daniele Nicolucci <jollino@sogno.net>
2002/08/20  Fixed Operserv NOOP command for non-Bahamut networks. 
                Reported by zak beam <zak@beam.dropbear.id.au>

Epona Version 1.4.13
--------------------
2002/08/13  Added ProxyMessage5 to 8 configuration directives.
2002/08/13  Added a Greek language file.
                Submitted by Sergios Karalis <sergios_k@hotmail.com>
2002/08/13  Fixed proxy detector so that it doesn't akill legitimate
            Apache HTTP servers.
2002/08/13  Fixed Unreal support so that akills work again with recent
            Unreal releases.
                Reported by Daniele Nicolucci <jollino@sogno.net>
2002/08/13  Upgraded Sequana support to 0.3.0.

Epona Version 1.4.12
--------------------
2002/06/23  Fixed bug in NOTICE/GLOBOPS/PRIVMSG string formatting.
                Reported by lucas <lucas@lucas-nussbaum.net> 
                and Aristotles.
2002/06/23  BotServ BOT ADD cannot drop a Services admin's nick
            anymore when NSSecureAdmins is enabled.
                Reported by AnGe_HwOaRaNg <ange.hwoarang@free.fr>
2002/06/23  Kick reasons now have a limited length.
                Reported by BSD Admin <bsd@internetmx.com>
2002/06/23  The current value of CSMaxReg is now used for all groups,
            not only new ones. 
                Reported by Daniel Engel <dane@zero.org>

Epona Version 1.4.11
--------------------
2002/05/03  Fixed the cosmetic issue in /stats o seen when the
            config file has been reloaded.
                Reported by [ins4ne] <ins4ne@gmx.net>
2002/05/03  Fixed a bug in the HTTP proxy detection.
                Reported by Marcel Stutz <solaris@swissirc.ch>
2002/04/22  "Fixed" the RAW command that was slightly broken.
            Added the DisableRaw configuration directive that
            breaks it again.
2002/04/14  Added a check in ChanServ LEVELS to make sure the
            submitted level is valid.
2002/04/14  The BotServ SET DONTKICKOPS option now also protects
            the +h/+a/+q users.
2002/04/14  ChanServ now also checks and removes the +h mode on
            join and in the SECUREOPS check.
2002/04/14  Renamed the default crontab script from services.chk 
            to example.chk and updated the documentation 
            accordingly.
2002/04/14  Fixed a bug in the UsePrivmsg feature.
                Reported by David Narayan <jester@phrixus.net>
2002/04/04  Fixed /stats l output.
                Reported by lucas <lucas@langochat.net>

Epona Version 1.4.10
--------------------
2002/02/27  Fixed the bug in MemoServ SEND that was also fixed
            in ircservices.
2002/02/27  Added missing channel name to ChanServ ACCESS and xOP
            log messages.
                Reported by David Narayan <jester@phrixus.net>
2002/02/25  Enhanced the UsePrivmsg/SET MSG feature.
2002/02/25  Another bugfix in create_mask().
                Reported by Olfan <public@crononautas.com>
2002/02/25  Fixed a bug in the SQLINE command that could make 
            OperServ report that a channel SQLINE is covered
            by a nickname SQLINE, hence preventing the 
            addition.
                Reported by Laurent <laurent@langochat.net> 
2002/02/24  OperServ RAW is now disabled by default.
2002/02/24  Updated the FAQ (about HostServ and OperServ RAW).

Epona Version 1.4.9
-------------------
2002/01/13  Fixed an harmless bug causing ChanServ to send multiple
            (S)JOINs for its CSInhabit feature.
                Reported by lucas <lucas@langochat.net>
2002/01/13  Made OperServ KILLCLONES always kill real host, to avoid
            killing users with the same vanity-host.
                Reported by Magnet <magnet@epiknet.org>
2002/01/13  Fixed bad snprintf parameters order in tr.l.
                Reported by Reha BİÇER <reha@showtvnet.com>
2002/01/13  Fixed(?) a weird bug in create_mask()... hopefully.
2002/01/04  Added a Catalan language file.
                Submitted by the AUJAC.

Epona Version 1.4.8
-------------------
2001/12/09  Extended the NSSecureAdmins configuration directive to
            apply to FORBID too.
2001/11/20  Updated Turkish language file.
                Submitted by Guven Guzelbey <guzelbey@cs.utk.edu>
2001/11/18  Fixed the bug of thread support affecting Epona compiled
            for glibc 2.1 and less on linux.
2001/11/10  Added support for Bahamut 1.4.30: channel mode M
            and the new NS, CS, MS, OS and HS messages.
2001/11/08  Made notice_help() take care of the SET MSG option.
                Reported by David Narayan <jester@phrixus.net>
2001/11/08  ChanServ now sends a SJOIN instead of a JOIN on Bahamut-based
            networks.
2001/11/08  Fixed a bug in OperServ CLEARMODES.

Epona Version 1.4.7
-------------------
2001/10/01  Default NickServ access list entry and ban masks are 
            now always formatted to not take care of the tilde in 
            username, so they match whether the identd has been
            enabled or not.
2001/10/01  Added missing *! when setting a ban of type 3. This
            also fixes a memory leak when unsetting the ban.
2001/10/01  Fixed create_mask() so that it handle IP hostnames
            correctly.
                Reported by Bob <azz2000@hotmail.com>
2001/09/30  NSDefaultLanguage is now properly reloaded through
            OperServ RELOAD.
                Reported by MEAT <meat@epiknet.org>
2001/09/30  NSDefaultLanguage now also applies to forbidden 
            nicknames.
                Reported by MEAT <meat@epiknet.org>
2001/09/30  Fixed portuguese BotServ HELP SET SYMBIOSIS.
                Reported by Rafael Cerveira <papudo@interconect.com.br>
2001/09/30  Adjusted informative notices for collide()'d nicks.
                Reported by MEAT <meat@epiknet.org>

Epona Version 1.4.6
-------------------
2001/09/23  Fixed a bug in version.sh when encryption is 
            enabled.
2001/09/23  Fixed a bug in ChanServ CLEAR MODES happening
            on Unreal and Ultimate only.
                Reported by Hurricane <hurricane@ifrance.com>

Epona Version 1.4.5
-------------------
2001/09/07  ChanServ won't set automatically +o on users
            that get +q or +a on join anymore (because
            of certain exotic levels configuration). 
2001/09/07  Made ChanServ TOPIC be usable by services admins.
2001/08/26  Channel mode +f of Unreal now supports the *x:x
            format for its parameter.
2001/08/26  Removed hard-coded references to NickServ and 
            ChanServ in language files.
2001/08/24  Updated the Turkish language file.
                Submitted by CafeiN <oytuny@yahoo.com>
2001/08/24  Added ProxyCheckHTTP3 configuration directive to
            scan proxy on port 80.

Epona Version 1.4.4
-------------------
2001/08/19  Made ChanServ also log SET XOP and LEVELS uses.
2001/08/19  Added compile flags to the /version output.
2001/08/19  OperServ commands manipulating channel modes
            now override all ChanServ protections (such as
            SET SECUREOPS, SET MLOCK, etc).
2001/08/19  Removed references to SET TOPIC in the language
            files.
2001/08/19  Fixed various topic issues in ChanServ for Unreal
            and Dreamforge.
2001/08/19  Fixed another bug in ChanServ AKICK (UN)STICK.
                Reported by Alvaro Toledo <atoledo@keldon.org> 
2001/08/15  Made ChanServ log access level additions.

Epona Version 1.4.3
-------------------
2001/08/12  Fixed a bug in OperServ list ranges.
2001/08/12  Fixed a bug in the AKICK STICK command.
2001/08/12  Fixed a bug in ChanServ SET MLOCK, that happens
            only on Unreal networks.
                Reported by Austin <austin1@uni.de>

Epona Version 1.4.2
-------------------
2001/08/08  A fix for UnrealIRCd NICK handling (sometimes sent
            with only 7 parameters ?! oh well).
            	Reported by Benjamin <benjamin@chat-solutions.org>
2001/08/07  In an attempt to make the configure script clearer,
            I added the DumpCore and NetworkDomain configuration
            directives.
2001/08/06  Bots from BotServ now set themselves the mode +a
            again on channels they join.
                Reported by CyberScream <cyberscream@wondernet.nu>
2001/08/05  Updated the Spanish language file.
                Submitted by Alvaro Toledo <atoledo@keldon.org>

Epona Version 1.4.1
-------------------
2001/08/02  Fixed two potential bugs in the AKICK system. 
2001/08/01  Fixed help for BotServ SET PRIVATE that was not 
            displayed.
                Reported by SpiderWeb <Spider.Web@Laposte.net>

Epona Version 1.4.0
-------------------
2001/07/23  Added support for Ultimate 2.8x.
2001/07/23  Rewritten Unreal support entirely, using parts of
            the Sequana hostmasking support. Unreal is now
            officially supported again.
2001/07/21  Added modes field to OperServ CHANLIST command.
2001/07/21  Made NickServ/ChanServ FORBID change nick/clear
            the channel if it is currently used.
2001/07/21  Removed Ultimate 3.x support, since its development 
            has restarted. Cleanup of levels as well.
2001/07/20  Added ChanServ SET PEACE option.
2001/07/20  Added an INFO level for free consultation
            of /chanserv INFO #chan ALL.
2001/07/20  Optimized processing of non fantasy channel 
            messages.
2001/07/20  Modified some help string to make them reflect
            the truth.
2001/07/20  Added AOP/SOP/VOP commands to ChanServ (one of
            the most requested features, but far from being
            my favourite).
            You can't use both xOP and access lists at the
            same time, you have to choose between them via
            the new ChanServ SET XOP command.
            These are newbie-friendly commands, and 
            therefore should be enabled by default.
2001/07/20  Services admins can now use ACCESS ADD/DEL/CLEAR
            without having a level on the channel (please
            use this feature ethically =).
2001/07/19  Made lang/index generate automatically through
            Makefile.
2001/07/18  Removed the CSRestrictDelay directive in ChanServ,
            that is now useless due to the use of services
            timestamp, and was dangerous anyways.
2001/07/18  Removed the useless privilege for IRC operators that
            were never deopped automatically by ChanServ (by
            SECUREOPS or when they join an empty registered channel
            for example).
2001/07/18  Made OperServ JUPE send a SQUIT before introducing
            the juped server because of so many reported 
            crashes when people don't care. If you're using
            Bahamut, a better alternative to JUPE is to use
            SZLINE. ;)
2001/07/18  Made the LocalAddress directive actually work, it
            wasn't working even before Epona was born.
2001/07/18  Renamed ChanServ SET TOPIC to TOPIC so it can have a
            dedicated level, and added ChanServ BAN command.
2001/07/18  Added ChanServ AKICK STICK command.
2001/07/13  Added NSMaxAliases directive to limit the number of
            nicks in the same group.
2001/07/10  Finally fixed the BotServ HELP SET SYMBIOSIS bug (the
            message was cut =) -- this alone is worth the upgrade :P
2001/07/10  /me are now handled correctly by BotServ kickers (ie. the
            CTCP part is cut before processing the message).
                Reported by Benjamin <benjamin@chat-solutions.org>
2001/07/10  Used Bahamut new CAPAB NICKIP feature in the proxy scanner
            so it doesn't need to resolve the hostnames.
2001/07/08  Made some cleanup in proxy code.
2001/07/01  Rewritten OP/DEOP and other pairs in an easily extensible 
            way.
2001/06/30  Added OperServ SQLINE command. It will also support
            Bahamut channel SQLINEs. However, bahamut 1.4.27
            or later is required.
2001/06/29  You needed a registered nick to use the privileges
            given by ChanServ IDENTIFY, which is not the expected
            behaviour. Fixed.
2001/06/27  Changed stuff in configure for libpthread detection.
2001/06/27  Fixed a bug in BotServ UNASSIGN.
                Reported by lbr <lbr@langochat.net>
2001/06/26  Added BotServ SET PRIVATE option for bots that need
            to be oper-only.
                Suggested by a lot of people :P
2001/06/23  Added OperServ RANDOMNEWS.
                Suggested by lucas <lucas@langochat.net>
2001/06/21  Added the ability to set the default language for
            non/newly-registered users in services.conf.
2001/06/09  Rewritten do_sjoin so that it doesn't do useless things
            sometimes.
2001/05/20  Added more support for Sequana in do_nick().
2001/05/20  Changed stuff in do_sjoin to make it easily extensible.
2001/05/04  New more efficient channel modes handling.
2001/05/04  Changed whosends() to a macro.
2001/04/22  Fixed check_kick() not making ChanServ join the channel
            if empty with Bahamut.
2001/04/22  Fixed a bug that caused the existence of channels with
            no users in certain cases.
2001/04/06  Added support for services ids, allowing users to be
            automatically re-identified after a split. It also prevents
            the logon news to be resent for users that were already
            there before the split.
2001/04/06  Fixed a bug in NickServ that was not refreshing the last
            seen time after a nick change.
                Reported by Lucas <lucas@langochat.net>
2001/04/05  Faster is_oper().
2001/04/05  Improved the way the NICK command is handled with Bahamut, 
            it's now a LOT faster (and cleaner).
2001/04/05  Added ProxyAkillReason directive, and more information
            to some other proxy-related directives.
                Suggested by Yougli <Yougli@free.fr>
2001/04/05  Got rid of the usercount() function (should have been
            done for months but I was just too lazy/busy).
2001/02/24  More bugfixes in Sequana support.
2001/02/24  NickServ usermask is now updated when an user changes
            his nick to a nick from the same group.
2001/02/16  Fixed a bug in the Sequana support.
2001/02/16  Added configuration directives to specify what type of
            detection must be done by the proxy detector.
2001/02/16  NickServ now prevents users from trying too many invalid
            passwords for NickServ GROUP.
                Reported by Blaire <lisa-bot@lookat.org>
2001/02/16  Fixed OperServ HELP RELOAD that pointed to HELP UPDATE.
                Reported by Raynor <raynor@ministre.net>
2001/02/16  Fixed BotServ HELP SET DONTKICKVOICES that spoke 
            about SET DONTKICKOPS in the French language file.
                Reported by Night <Night04@netcourrier.com>
2001/02/09  More support for Sequana.
2001/02/09  Made the code compile without thread support (oops).
2001/02/09  Added support for Sequana IRCd.
2001/02/03  Changed the way bot greets are said.
2001/01/28  Made is_services_root faster. It is also now fully 
            group-compatible. is_services_admin and is_services_operator 
            have been optimized as well.
2001/01/25  SOCKS5 detector is now much more reliable.
2001/01/22  Made some fixes to the proxy detector.
2001/01/21  Added a full featured proxy detector (detects Wingate, 
            SOCKS4, SOCKS5, and even HTTP proxy!). It comes along with
            the CACHE command in OperServ, and several configuration
            directives.
2001/01/21  Made the KILLCLONES command available to Services operators.
2001/01/17  Made some cleanup to main.c, it's more readable now.
2001/01/15  Made converter and core settings cachable in the configure 
            script.

Epona Version 1.3.7
-------------------
2001/04/22  Added German and Spanish language files.

Epona Version 1.3.6
-------------------
2001/03/09  Fixed a stupid bug in NickServ SET (oops).

Epona Version 1.3.5
-------------------
2001/03/07  The Epona official IRC channel (for bug reports ONLY)
            is not on the Kewl IRC network anymore, it's now
            on irc.langochat.net (see the README for details). 
2001/03/07  Fixed bugs in NickServ ACCESS, SET, RECOVER, RELEASE,
            GHOST, GETPASS and SENDPASS that caused Epona to crash
            if they were used for forbidden nicks.
                Reported (for RECOVER/RELEASE/GHOST) by 
                Vernom <vernom@sistec.com.mx>.
2001/03/07  Fixed a bug in the turkish language file (damn, damn.)
                Reported by so much people that I was in fact
                flooded :P

Epona Version 1.3.4
-------------------
2001/01/27  Fixed the timed_update evil crash, and a big memory leak as
            a bonus. Another funny joke from Andy Church.
                Reported by many people, so I thank them all.
                I'd like also to say a special thank to Daniel Engel 
                <dane@zero.org> for his help in chasing this bug.

Epona Version 1.3.3
-------------------
2001/01/22  Added a Portuguese language file.
                Submitted by Marcelo Conde Foscarini <ircadmin@brmarket.net>

Epona Version 1.3.2
-------------------
2001/01/18  Fixed the bug that was causing an infinite loop in Services if
            someone tried to delete a very high range of records from
            a numbered list.

Epona Version 1.3.1
-------------------
2001/01/12  Updated mirror list in the INSTALL file.
2001/01/11  Fixed the bug that made Epona crash when a Services
            admin tried to drop a forbidden channel.
                Reported by [Flop] <flop@oscfg.com>

Epona Version 1.3.0
-------------------
2001/01/07  The Turkish language file was updated by CafeiN 
            <oytuny@yahoo.com>
2001/01/06  Integrated patches for the Ultimate 3.0 basic support from 
            ShadowMaster <ShadowMaster@Shadow-Realm.Org>
2001/01/02  Added NickServ SET MSG command, to be used with UsePrivmsg.
2001/01/02  Made small fixes to AKILL/SGLINE/SZLINE commands.
                Reported by ShadowMaster <ShadowMaster@Shadow-Realm.Org>
2000/12/23  Fixed various things in the do_nick function, and added
            a log message if an user remains identified after a nick
            change.
2000/12/23  Fixed a bug that allowed users to pass through the NickServ
            protection option.
                Reported by Daniel Engel <dane@zero.org>
2000/12/14  Oops.. DreamForge/Unreal support was dumping core.
2000/12/13  Made ChanServ SET TOPIC work with Unreal.
2000/12/12  Corrected a few bugs in NickServ.
2000/12/07  Cleanup of the FAQ file.
2000/12/07  Cleanup of README file. KnownBugs renamed to BUGS.
2000/12/06  Added an INSTALL file. Anyone willing to correct my poor
            English? ;)
2000/12/06  Added a crontab script.
2000/12/05  Added BSDef... configuration directives.
2000/12/05  Channels with a '@' in their name are not ignored by BotServ 
            anymore.
2000/12/05  Bots now correctly reply to channel pings.
2000/12/04  Added a database converter for ircservices-4.4. Deleted the
            (not working anymore) database converter for Daylight 4.3.3.
2000/12/04  Corrected a bug that would make Services segfault while loading
            configuration file with certain versions of glibc.
2000/12/03  Added CSDef... configuration directives.
2000/12/02  Deleted SET LEAVEOPS command from ChanServ, because it's
            just a big security hole maker.
2000/12/02  Added CLIST command to ChanServ.
2000/12/02  Added more Wall... configuration directives.
2000/12/02  Added NOOP command to OperServ. 
2000/12/01  Corrected a little bug in the !seen command.
2000/12/01  Services now use SVSMODE #chan -b nick on Bahamut networks
            to unban an user, so they are now fully supporting the
            somewhat different Bahamut ban system. 
2000/12/01  AKILL ADD, SGLINE ADD and SZLINE ADD now can change the
            expiry time of an existing entry, but only if the new one
            is longer than the old one.
2000/11/30  NickServ GHOST, RECOVER and RELEASE now can be used without
            a password, as long as you are identified and in the group
            of the target nick.
2000/11/30  Enhanced documentation for NickServ REGISTER and GROUP
            commands.
2000/11/27  NickServ LIST does not hide the nicks that are in the
            group of the user issuing the command anymore if they have 
            SET PRIVATE ON. The same applies to usermasks and SET HIDE
            USERMASK.
2000/11/27  Added "remote" drop feature for nicks within the same 
            group of the user issuing the command.
2000/11/27  Channels in use cannot expire anymore. However, their last
            used time is still not updated while they're in use.
2000/11/27  Made some needed cleanup in config.h.
2000/11/26  Added BSGentleBWReason configuration directive.
                Suggested by ShadowMaster <ShadowMaster@Shadow-Realm.org>
2000/11/26  Added UsePrivmsg configuration directive.
                Suggested by ShadowMaster <ShadowMaster@Shadow-Realm.org>
2000/11/26  Made password encryption work again.
2000/11/26  delnick was not cleaning NickServ timeouts... another
            Churchery?
2000/11/25  Made CLEAR OPS and CLEAR VOICES work correctly again.
                Reported by TataZ <tataz@thepentagon.com>
2000/11/24  Added NSNoGroupChange configuration directive. Its purpose
            is easy to guess I think. =)
2000/11/24  Deleted the obsolete HelpDir configuration directive.
2000/11/24  NSDisableLink not used anymore; deleting it.
2000/11/23  Few bugs of the new link system corrected.
2000/11/22  New link system that is more efficient -- I let you discover
            all the diffs! =) The GROUP, GLIST and SET DISPLAY commands 
            have been added to handle it.
            The LINK, UNLINK, and LISTLINKS commands were all deleted
            because they are not needed anymore.
            The NoSplitRecovery config setting has been deleted, it is
            always enabled now -- the code was buggy anyway.
            NSExpireMaster and NSExpireSlaves are now only one setting,
            NSExpire, like before, because there are no more master
            and slave nicks.
            During the conversion to the new system I corrected many bugs
            and weird things in the code (especially two memory leaks when
            freeing akick and nick structures). NickServ has now a faster
            hash list -- this will greatly help on large networks.
2000/11/22  Added SENDPASS to ChanServ help index.
2000/11/21  Moved changes from (irc)services to the Changes.old file, as the
            Changes file started to be really big.
2000/11/14  Corrected another bug during nick deletion... If a nick was founder
            of a channel and was also on the access list of the same channel -> 
            access list entry was not cleaned -> it crashed.
2000/11/12  Channel successors were not cleaned on nick deletion. Oh well.
2000/11/12  Linked nicks now have a working SET PRIVATE.
                Reported by garner <garner@voila.fr>
2000/11/11  Fixed some weird behaviour with certain compiler versions
            in ChanServ ACCESS and AKICK lists.
            Reported by lanxin <webmaster@nidenet.com>
2000/10/28  Corrected ChanServ behavior for resetting last used
            time. Was when someone was autoopped on JOIN before,
            is whenever someone from the ACCESS list uses the
            channel in any way now, because there are cases where
            nobody gets autoopped at all. 
2000/10/26  Added SGLINE and SZLINE commands to OperServ (works
            with latest Bahamut only).
2000/10/25  Rewritten the OperServ AKILL command code. There cannot
            be two times the same host anymore, and the command
            will check whether the added AKILLs are already covered
            by another or not. The bug in the AKILL wallops has
            been fixed as well.
            Additionally, AKILLs are now stocked in the OperServ
            database (not in a dedicated database anymore).
2000/10/23  Fixed OperServ RELOAD to make it reset all directives to 0
            before reloading the config file (when this was not done
            some settings were not reloaded correctly if not present).
2000/10/23  Corrected the problem that caused some services admins list
            entries to be "like a ghost" in wrong-way links.
2000/10/10  Corrected some weird behavior when unlinking from a nick.
2000/10/09  Changed the way channel user modes are handled, so it can
            be easily extended.
2000/10/06  Corrected some cosmetic problems in the language files.

Epona Version 1.2.6
-------------------
2000/12/13  Made ChanServ SET TOPIC work with Unreal.
2000/12/07  Fixed bugs in MemoServ when accessing memos from forbidden 
            channels.
                Reported by ZeRo K <zero@townsito.net> and others later.

Epona Version 1.2.5
-------------------
2000/11/06  For those who ask... Version 1.3.0 is currently being
            developped. Don't know when it will go out though, but
            probably in the beginning of December (no promises though).
            I know it's a long time to wait but.. I'm coding Epona
            during my free time that is not so huge currently. I know
            you want more and more new features, but doing something
            that does not crash every five minutes takes time for
            coding AND testing.
            Btw.. This version is probably the most stable ever.
2000/11/06  Services does not segfault anymore when DEF_LANGUAGE
            is not LANG_EN_US.
                Reported by Firou <I've not his mail>.
2000/11/03  Critical bug fixed in NickServ ... probably one that
            had make the whole services crash periodically.
2000/11/03  Fixed a bug in ChanServ DROP that was making the Services
            crash when a non Services admin user tried to drop a
            forbidden channel.
2000/11/03  Fixed the bug in encryption (buffers needed to be
            filled with zero).
2000/10/27  Added support for channel modes +u, +C and +G from
            Unreal 3.1. Probably more things soon.
2000/10/23  Added support for +O channel mode from Bahamut.

Epona Version 1.2.4
-------------------
2000/10/07  Fixed bugs in fantaisist commands.
                Special thanks to the channel #rezo@kewl.org, 
                SeB <seb@kewl.org> and lbr <lbr@loopback0.net>

Epona Version 1.2.3
-------------------
2000/09/11  Added a reference to BotServ in HelpServ HELP.
2000/09/10  Services admin and Services operator lists are now sorted
            alphabetically.
2000/09/09  Epona now runs correctly on FreeBSD 5.0.

Epona Version 1.2.2
-------------------
2000/09/05  Make -log command line option work again.
2000/09/05  Turkish language file is finally back.
2000/08/30  OP/DEOP/VOICE/DEVOICE/HALFOP/DEHALFOP/PROTECT/DEPROTECT/KICK
            now have a check to make sure the target user is on the channel.

Epona Version 1.2.1
-------------------
2000/08/30  Fixed the bug in ADMIN ADD that was making the whole 
            services to crash when the admin list is empty.

Epona Version 1.2.0
-------------------
2000/08/27  Fixed a bug that was preventing the use of BADWORDS CLEAR
            without a keyword.
                Reported by Galak <thegalak@hotmail.com>
2000/08/19  Fixed a bug in automatic akill in session limiting code
            that used the nick of one user that is being killed
            instead of OperServ.
2000/08/19  OperServ lists are now cleaned up when a nick is dropped.
2000/08/14  Added ChanServ SET SIGNKICK command.
2000/08/14  Complete rewrite of the OperServ ADMIN and OPER commands. They
            look like a "standard" numbered list now.
2000/08/01  Added MaxSessionKill and SessionAutoKillExpiry configuration
            directives.
2000/07/31  Added "is a services operator", "is a services admin" status
            line to NickServ INFO.
2000/07/31  Added CLEARMODES to OperServ help index.
2000/07/31  Switched KillAkillUsers to AkillOnAdd. Different behavior too.
2000/07/31  Added ChanServ LOGOUT command.
2000/07/30  Added the possibility to have a GLOBOPS raised when using the
            OperServ RAW command.
2000/07/30  Added NOTIFY info to MemoServ INFO command.
2000/07/30  Added NickServ LOGOUT command.
2000/07/28  MemoServ now shows to Services Admins whether the limit is 
            hard or not in /memoserv INFO <nick>.
2000/07/28  Changed the behavior of NickServ LISTLINKS ALL to also show
            the direct link of the nick being looked up. It looks like
            something usable now (finally ;).
2000/07/28  Forbidden channels cannot receive memos anymore.
2000/07/28  Forbidden nicknames cannot be set founder or successor
            anymore, cannot be added to access or akick list anymore,
            and cannot receive memos anymore.
2000/07/28  Added a confirmation notice for OperServ CLEARMODES.
            Also, ALL parameter for CLEARMODES is now case
            insensitive.
2000/07/28  Fixed a bug in EXCEPTION DEL reply.
2000/07/28  AKILL ADD now won't add masks that are only composed
            of ~@.*?.
2000/07/26  Fixed a cosmetic bug in the Services' WHOIS reply.
2000/07/26  Channel successor cannot be the same nick as channel
            founder anymore.
2000/07/26  Default level for ACC-CHANGE is now 10.
2000/07/26  Changed the way Services operators and admins are
            handled. Although it's not totally finished yet
            (but it works), it's already faster.
2000/07/25  Added SET NOBOT option to BotServ.
2000/07/25  Added ChanServ KICK command (with KICK and KICKME 
            levels).
                Suggested (for over a year ;) by 
                Geo <geoffroy@geo.ouega.net>
2000/07/25  Added NickServ SET ICQ command.
                Suggested by Jack <jack@irc.kewl.org>
2000/07/25  Added OperServ RELOAD command to allow configuration
            file to be dynamically reloaded.
                Suggested by Crow <crow@german-elite.net>
2000/07/25  Added SHUTDOWN to OperServ help index.
2000/07/24  Corrected ChanServ SENDPASS so it can now send
            the password to the founder if it's a linked (slave) 
            nick.
                Reported by shiva <aqua22@informaticien.org>
2000/07/24  Restricted BotServ INFO #channel to founder
            and Services admins only (maybe should I
            think to implement a INFO level in the future?).
2000/07/14  Color kicker can now be used on Bahamut and 
            Unreal networks. Although there is a mode +c
            that *should* be used to prevent the use of
            colors on the channel, some users have noticed
            me that it does not make access level distinction.
            Too right. :)
2000/07/14  Added the !seen command to the fantaisist
            commands.
2000/07/12  Again changed the way AKILLs are handled on
            Bahamut. Hopefully for the last time.
2000/07/12  Added a reference to LISTLINKS in NickServ HELP.
2000/07/12  Changed NickServ HELP output to reflect changes
            in expiration system.
2000/06/27  NSExpire has been broken into NSExpireMaster and
            NSExpireSlaves.
2000/06/23  If compiled for Bahamut, Epona will now use SVSKILL
            instead of KILL for the GHOST and "Too many invalid
            passwords" kills.
2000/06/23  Networks that use Bahamut now need to use at least
            the version 1.4.3 for Epona to work fine.
            
Epona Version 1.1.4
-------------------
2000/07/07  Added Turkish language file.
                Submitted by PRoLoGiC <oytuny@yahoo.com>

Epona Version 1.1.3
-------------------
2000/06/20  One more time corrected the way BotServ uses AKILL on
            Bahamut networks.
2000/06/19  Corrected how MemoServ notifies online users of their
            new memos that failed in certain cases if MSNotifyAll
            is set. One more time, I'm asking myself how the heck
            the link support was coded.
                Reported by wezen <wezen@ifrance.com>
2000/06/18  Fixed another bug in SJOIN processing that affects only
            networks that use BotServ (and that have no luck ;).
                Reported by acta <hackta@wanadoo.fr>
2000/06/14  OperServ AKILL command is now case insensitive.
                Reported by ShadWolf <netruner@bocal.cs.univ-paris8.fr>
2000/06/14  Fixed a bug in SJOIN processing that may cause problems
            on big channels.

Epona Version 1.1.2
-------------------
2000/06/09  Added a 'For more info' notice in NickServ INFO.
            This was needed because of the huge changement introduced
            by the original Services maintainer. This
            will certainly be removed in a future release.
                Suggested by Lucas <lucas@ians.be>
2000/06/09  Bots are now stocked in a hash list (increased speed
            and alphabetical order in the list ;)
2000/06/07  Corrected the way BotServ uses AKILL on Bahamut since
            the command format has changed.
                Reported by Lucas <lucas@ians.be>

Epona Version 1.1.1
-------------------
2000/06/06  Corrected the way BotServ bots remove bans that match
            them when they're on the channel.
                Reported by p0lo <ping@com.bi>
2000/06/06  Added !dehalfop, !deprotect, !halfop, !protect as 
            fantaisist commands in Unreal mode.
2000/06/05  Finished Unreal support.
2000/06/05  Added OPDEOPME level.
2000/06/03  Corrected a bug that was preventing users to use
            NickServ SENDPASS on linked nicks.
2000/06/02  Services now sets -r on an user when it changes its
            nick and he is not identified for.
                Reported by AdRi <adri@pegirc.com>
2000/06/02  Added KillAkillUsers configuration directive.
                Suggested by Lucas <lucas@kewl.org>
2000/05/31  Corrected a little bug that had make ChanServ LIST not
            work anymore for wildcard masks.
                Reported by Mars <mars@freemail.chatarea.net>
2000/05/29  Changed the behaviour of NickServ INFO in some ways,
            considering that nick options are only interesting
            for the nick owner (and services admin); also, the nick
            owner is now extended to the nick itself and its links.
            ChanServ INFO adopts the same rules, but for channel
            founder. Also, topic is not displayed anymore in INFO
            if the channel has the mode s locked or the channel
            is in +s mode.

Epona Version 1.1.0
-------------------
2000/05/29  Corrected a bug in SJOIN handling code.
                Reported by Peter <striker@zip.com.au>
2000/05/27  Help for MemoServ SET LIMIT now shows all their killer
            functionalities to Services admins.
2000/05/27  The greet message in NickServ INFO is now only shown to
            the nick owner.
2000/05/27  This is not a new feature of Epona, BUT irc.kewl.org (500 users
            network) now uses Epona, with BotServ feature enabled - and
            it works fine! ;)
2000/05/25  Rewritten Bahamut SJOIN handling, runs faster now especially
            on large channels during a netjoin. Also it now works fine on
            channels that have +k or +l mode set. ;)
2000/05/23  Updated NickServ and ChanServ mem stats routines.
2000/05/23  BSSmartJoin improved: the bot (virtually) invites itself
            before joining when the channel is in +i mode or +l mode 
            if users limit has been reached.
2000/05/23  Services now remove the old Q line for a bot when its nick
            is changed.
2000/05/23  Services now logs links/unlinks and password changes in
            NickServ, as well as successor and password changes in
            ChanServ.
2000/05/23  Services admins can now register as many channels as they
            want.
                Suggested by Peter <striker@zip.com.au>
2000/05/23  Rewritten is_services_root thingies, that was crashing on
            some systems.
2000/05/21  Improved the way BotServ removes bans when BSSmartJoin is 
            enabled.
2000/05/21  Rewritten BADWORDS ADD command to allow words with spaces
            (without breaking the old syntax).
2000/05/21  Added "Linked to:" in NickServ INFO.
2000/05/21  ChanServ ACCESS LIST and AKICK LIST/VIEW as well as BotServ
            BADWORDS LIST now make case insensitive comparaison when a 
            mask is specified.
2000/05/21  Added STATS C and STATS O replies.
2000/05/21  BotServ now displays the channels a bot is on when a
            Services admin uses the (BotServ) INFO command on a bot.
2000/05/19  Added initial support for UnrealIRCd; not complete now.
            Those who use Unreal, PLEASE make any suggestion on what
            has been done and what should be done to epona@pegirc.com.
2000/05/19  Changed "binary" mode handling system, so new modes can
            be added quickly.
2000/05/13  Added HelpChannel configuration directive.
2000/05/13  ChanServ now saves who added an akick and when; this can be
            seen with the AKICK VIEW command.
2000/05/13  Added ChanServ SET SECUREFOUNDER.
2000/05/13  Added ChanServ SET BANTYPE to control how ChanServ places bans
            on the channel.
2000/05/12  NickServ now changes the nick of nicknames that are forbidden
            immediately.
2000/05/12  Forbids now handle a reason, that can be make required
            using configuration directive ForceForbidReason; also
            forbid setter and reason are shown to IRC operators in
            NickServ INFO output.
2000/05/12  Added databases backup subsystem, controlled by the
            configuration directive KeepBackups.
2000/05/12  Log files are now located in logs directory. There is
            a different log file used for each day. Also added the
            KeepLogs configuration directive. Old log rotating stuff
            in OperServ has been removed.
2000/05/12  There can now be more than one Services Root defined in 
            configuration file.
2000/05/12  Added ChanServ ACCESS CLEAR, AKICK CLEAR and BotServ 
            BADWORDS CLEAR.
2000/05/11  Fixed BotServ BADWORDS LIST so it can be accessed by Services
            admins on any channel.
2000/05/11  BotServ BADWORDS LIST command now gives the type used to
            add the word.
2000/05/11  Added ChanServ GETKEY commands.
2000/05/11  Added VOICE and DEVOICE commands to ChanServ, along with
            two new levels VOICE and VOICEME; these levels now also control
            the access to !voice and !devoice fantaisist commands.
2000/05/11  Added STATS RESET command to OperServ.
2000/05/11  Added MailDelay configuration directive.
2000/05/11  Added command line -noexpire option and OperServ SET
            NOEXPIRE option.
                From TODO, suggested by Martin Butler <ibm@qualitynet.org>
2000/05/11  Added MemoServ CANCEL command.
2000/05/10  Corrected AKICK ENFORCE (silly :) bug.
2000/05/10  Added NickServ SET GREET command, as well as BotServ SET
            GREET command, and a GREET level in ChanServ.

Epona Version 1.0.0
-------------------
2000/05/10  Bot now parts the channel when it is dropped.
2000/05/10  Fixed an extremely crashing bug in BotServ BADWORDS stuff.
            If you experienced segmentation fault on PRIVMSG the bug
            should be fixed.
            (Thanks come especially to Sysop_Mars 
            <mars@freemail.chatarea.net>, and all others that helped
            me to find out the bug and fix it)
2000/04/07  Added NickServ and ChanServ SENDPASS.
2000/04/03  Added OperServ USERLIST and CHANLIST commands.
                Suggested by Peter <striker@zip.com.au>
2000/03/20  Added !unban command in the fantaisist commands.
                Suggested by illusions <illusions@axs2k.net>
2000/03/19  Fixed a bug in NickServ LINK that was allowing everybody
            taking the target nick to be identified for it 
            automatically.
2000/03/16  ChanServ LIST now hides channels that have the PRIVATE flag. 
                Reported by Peter <striker@zip.com.au>

Epona Version 1.0pre2
---------------------
2000/03/15  ChanServ OP and DEOP commands have been modified (see
            their help topic for more information on the new
            syntaxs).
2000/03/15  ChanServ SET PRIVATE has now its help topic accessible.
2000/03/14  Completed BotServ HELP and HELP SET topics.
2000/03/14  Added a configuration file option to force users to 
            give an e-mail when they register a nickname. It will
            also ask already registered nicks for an e-mail when
            they identify. Also, the REGISTER command has an 
            optional parameter email if this option is not enabled.
2000/03/14  NickServ SET URL and SET EMAIL are now finally shared
            between linked nicks.
2000/03/14  Fixed a NickServ memory leak (it was not freeing the
            email and url fields when a nick record was being deleted). 
2000/03/14  Changed the behavior of expire_nicks, that was updating
            the last seen time of an user being online whether it
            was recognized or not.
2000/03/14  Added support for the SIDENTIFY command in NickServ.
2000/03/12  BotServ BOT DEL now removes the Q line make for the
            bot when it was created.
2000/03/12  Added WallDrop and WallForbid configuration file options.
2000/03/12  Added BotServ SAY and ACT commands. 
2000/03/12  Fixed the broken routine that loads the (very) old
            ChanServ databases (it didn't initialize BotServ stuff).
2000/03/12  BotServ KICK COLORS now won't work on Bahamut networks 
            anymore. Users should use the channel mode 'c' instead.

Epona Version 1.0pre1
---------------------
2000/03/11  Added SET SYMBIOSIS command in BotServ.
2000/03/11  Added SET FANTASY command in BotServ.
2000/03/09  Corrected tiny bug that was making SQLINE for bots
            in the wrong way.
2000/03/09  Added SET DONTKICKOPS and SET DONTKICKVOICES commands in BotServ
            to protect those ops and voice who aren't in the
            access list (or not with the right level) against bot's 
            kicks.
2000/03/09  BotServ now generates an error when an unknown option
            is used in KICK command.
2000/03/09  Optimized the way BotServ counts users on a channel.
2000/03/02  Added a French language file.
2000/03/02  Corrected some strings in language files.

Epona Version 1.0pre0
---------------------
2000/02/23  Updated OperServ memory stats to reflect the changes 
            provided by BotServ.
2000/02/23  Just finished first version of BotServ.
2000/02/20  Fixed an exploit in do_nick(), that is usable in certain
            conditions with linked nicks, see users.c for details.
2000/02/19  HelpServ rewritten, now delivering messages depending
            of users' language.
2000/02/19  Removed irciihelp, not very useful nowadays. Heck, every
            IRC clients are provided with an help file, so why
            must we serve one?
2000/02/19  NickServ now will always change nick instead of kill users
            -- since it is really more efficient.
2000/02/19  Fixed collide() problem that caused nick collision.
2000/02/19  Fixed problem of ChanServ CLEAR MODES and OperServ CLEARMODES
            not unsetting mode 'R'.
2000/02/19  Corrected WHOIS output not giving right the end of WHOIS.
2000/02/19  Added SQLINE support.
2000/02/19  Corrected tiny bug in the command sent when an enforcer
            is created.
2000/02/19  Added Bahamut support. Hope it will work.
2000/02/19  Removed support for all IRCd except dal4.4.15+. Epona
            will definitely be dedicated to those using Dreamforge
            or official successors.
2000/02/19  Here starts the life of Epona. ;)