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
|
2000-02-28 13:06 macgyver
* modules/: mod_auth.c (1.28), mod_core.c (1.30): Minor cosmetic
cleanups
2000-02-28 12:56 macgyver
* NEWS (1.36), modules/mod_core.c (1.29): Add %k directive to show
amount of data in a user-friendly way in DisplayQuit
2000-02-28 12:56 macgyver
* modules/mod_auth.c (1.27): Make root logins louder
2000-02-28 05:15 macgyver
* NEWS (1.35), README.Unixware (1.1), config.guess (1.3),
config.sub (1.3): Unixware support and updated config.guess,
config.sub files
2000-02-28 04:50 macgyver
* NEWS (1.34), src/inet.c (1.8): FreeBSD 4.0 support added
2000-02-28 04:46 macgyver
* modules/: mod_pam.c (1.9), mod_unixpw.c (1.4): Fixed a minor typo
in pw_auth
2000-02-28 04:42 macgyver
* NEWS (1.33), contrib/mod_quota.c (1.1): Added mod_quota
2000-02-28 04:37 macgyver
* modules/mod_xfer.c (1.32): Include sys/sendfile.h
2000-02-28 04:32 macgyver
* modules/mod_core.c (1.28): Minor cleanups of unused variables
2000-02-28 04:25 macgyver
* NEWS (1.32), modules/mod_log.c (1.12): Logging of transfer times
is more precise
2000-02-28 04:14 macgyver
* NEWS (1.31), modules/mod_log.c (1.11): Add a warning for invalid
classes in ExtendedLog
2000-02-28 04:14 macgyver
* modules/mod_core.c (1.27): Fixed a typo that called VirtualHost a
VirtualServer
2000-02-28 04:14 macgyver
* NEWS (1.30), src/main.c (1.24): Save environment before doing
anything with set_proc_title.
2000-02-26 15:34 macgyver
* NEWS (1.29), contrib/mod_ldap.c (1.6): Updated mod_ldap to 2.5.2.
2000-02-26 15:31 macgyver
* NEWS (1.28), modules/mod_xfer.c (1.31): Updated bandwidth code to
use select instead of usleep.
2000-02-15 18:33 macgyver
* NEWS (1.27), src/dirtree.c (1.14): Fixed Umask handling for
directories.
2000-02-15 18:09 macgyver
* NEWS (1.26), modules/mod_xfer.c (1.30): Correct the case where
there is no second argument to TYPE L X.
2000-02-15 17:48 macgyver
* src/support.c (1.13): Correct calc_fs to actually make the right
calculation when using statvfs.
2000-02-01 10:59 macgyver
* modules/mod_auth.c (1.26): Fixed a NULL dereference when
AuthUsingAlias is used outside of <Anonymous> directives.
2000-01-23 23:59 macgyver
* NEWS (1.25), modules/mod_auth.c (1.25): Fixed a small group
permissions problem.
2000-01-23 23:47 macgyver
* src/: dirtree.c (1.13), main.c (1.23): Removed references to the
fastpathing of limits. This topic is too complex to deal with for
1.2.0.
2000-01-23 19:15 macgyver
* src/main.c (1.22): This is a stupid message...just disabled my
fastpath...needs more work, and I need to step out for a while. :)
2000-01-23 19:03 macgyver
* src/main.c (1.21): Added a fastpath for denying commands in the
dispatch loop.
2000-01-23 18:46 macgyver
* include/proftpd.h (1.9), modules/mod_auth.c (1.24),
modules/mod_core.c (1.26), src/ftpcount.c (1.5): Support for class
listing in ftpcount. Support for full use of % options in
DisplayConnect.
2000-01-23 17:37 macgyver
* doc/Undocumented.txt (1.11): Updated Undocumented.txt.
2000-01-23 17:37 macgyver
* doc/Configuration.html (1.18): Documentation for Include
directive.
2000-01-23 17:31 macgyver
* modules/mod_core.c (1.25): Added 'Include' directive.
2000-01-23 17:12 macgyver
* modules/mod_pam.c (1.8): Re-add -ldl to mod_pam.
2000-01-23 16:55 macgyver
* modules/mod_core.c (1.24): DisplayConnect now supports all the %
options. Correct a bug with %z printing in classes.
2000-01-23 16:48 macgyver
* modules/mod_ls.c (1.21): Added TimesGMT, and made our listing
output more consistent.
2000-01-23 16:48 macgyver
* doc/Configuration.html (1.17): Added documentation for
Class/Classes and TimeGMT.
2000-01-23 12:38 macgyver
* NEWS (1.24), modules/mod_ls.c (1.20): Fix a stupid dereference in
mod_ls.
2000-01-17 21:14 macgyver
* README (1.5, R1_2_0pre10): Updated with new web site.
2000-01-17 21:14 macgyver
* CREDITS (1.1, R1_2_0pre10): Added a CREDITS file.
2000-01-17 21:14 macgyver
* contrib/dist/rpm/proftpd.spec.in (1.4, R1_2_0pre10): Updated for
new web site.
2000-01-17 21:08 macgyver
* ChangeLog (1.13, R1_2_0pre10): Updated for pre10.
2000-01-17 21:01 macgyver
* include/version.h (1.9, R1_2_0pre10): Updated for pre10.
2000-01-17 21:01 macgyver
* NEWS (1.23, R1_2_0pre10): Updated for pre10 release.
2000-01-17 20:07 macgyver
* doc/Configuration.html (1.16), include/dirtree.h (1.7),
modules/mod_core.c (1.23), src/dirtree.c (1.12) (utags:
R1_2_0pre10): Corrected some errors in .ftpaccess handling.
2000-01-17 20:00 macgyver
* config.sub (1.2, R1_2_0pre10): Recognize BSDI on an UltraSPaRC
2000-01-17 18:41 macgyver
* NEWS (1.22), src/inet.c (1.7, R1_2_0pre10): inet_getname no
longer returns NULL in bad host entry cases.
2000-01-17 18:27 macgyver
* NEWS (1.21), src/fs.c (1.7, R1_2_0pre10): Corrected ~ reporting.
2000-01-15 16:54 macgyver
* lib/pwgrent.c (1.3, R1_2_0pre10): Corrected an allocation error
in pwgrent.
2000-01-03 15:28 macgyver
* include/privs.h (1.3), include/proftpd.h (1.8),
modules/mod_auth.c (1.23) (utags: R1_2_0pre10): Added Simon's patch
to handle chdir-ing properly into user accounts.
2000-01-03 14:17 macgyver
* modules/mod_xfer.c (1.29, R1_2_0pre10): Handle a case with a
zero-length file for BSD.
1999-12-30 13:06 macgyver
* src/data.c (1.10, R1_2_0pre10): Fixed total calculation.
1999-12-30 12:41 macgyver
* NEWS (1.20), include/dirtree.h (1.6), modules/mod_auth.c (1.22),
modules/mod_core.c (1.22): Fixed error messages in cases where it's
an invalid number of arguments.
1999-12-30 00:27 macgyver
* ChangeLog (1.12), src/data.c (1.9): Added a fix for BSD's strange
sendfile behavior.
1999-12-29 14:08 macgyver
* src/data.c (1.8): Minor correction to sendfile() semantics on
FreeBSD.
1999-12-28 09:54 macgyver
* contrib/mod_linuxprivs.c (1.6, R1_2_0pre10), contrib/mod_sqlpw.c
(1.3, R1_2_0pre10), modules/mod_auth.c (1.21), modules/mod_core.c
(1.21), modules/mod_log.c (1.10, R1_2_0pre10), modules/mod_ls.c
(1.19, R1_2_0pre10), modules/mod_readme.c (1.5, R1_2_0pre10),
modules/mod_site.c (1.3, R1_2_0pre10), modules/mod_xfer.c (1.28):
Ensured that cmdtable structs remained static to the files they're
defined in.
1999-12-28 09:43 macgyver
* ChangeLog (1.11): Updated ChangeLog.
1999-12-28 09:43 macgyver
* src/: support.c (1.12), utils.c (1.7) (utags: R1_2_0pre10):
Cleaned up sstrncpy properly and backed out previous incorrect
cleanup.
1999-12-28 01:43 macgyver
* NEWS (1.18): Updated NEWS.
1999-12-28 01:43 macgyver
* NEWS (1.19): Updated again.
1999-12-28 01:33 macgyver
* src/: support.c (1.11), utils.c (1.6): Cleaned up the
implementation of sstrncpy slightly.
1999-12-28 01:27 macgyver
* modules/mod_xfer.c (1.27): Disable sendfile() if we're using
bandwidth control.
1999-12-28 01:18 macgyver
* modules/mod_auth.c (1.20): Fixed a missing variable in a log_auth
entry.
1999-12-28 00:32 macgyver
* INSTALL (1.3, R1_2_0pre10), README (1.4), doc/Configuration.html
(1.15): Updated documentation to reflect new web site.
1999-12-28 00:24 macgyver
* modules/mod_readme.c (1.4): A minor Y2K correction in handling
READMEs.
1999-12-28 00:24 macgyver
* configure (1.27), configure.in (1.27) (utags: R1_2_0pre10): Fixed
the detection of hpsecurity.h
1999-12-26 21:03 macgyver
* NEWS (1.17), README.LDAP (1.2, R1_2_0pre10), contrib/mod_ldap.c
(1.5, R1_2_0pre10), doc/Configuration.html (1.14): Updated
mod_ldap.
1999-12-26 20:53 macgyver
* configure (1.26), configure.in (1.26): Fixed a minor typo in a
test case.
1999-12-26 20:48 macgyver
* modules/mod_auth.c (1.19): Group handling fixed for complex
groups.
1999-12-26 20:43 macgyver
* modules/mod_xfer.c (1.26): Corrected a minor misdefinition in
xfer_init_parent.
1999-12-23 00:04 macgyver
* NEWS (1.16), lib/pwgrent.c (1.2): Generate a meaningful error for
bad group entries.
1999-12-23 00:04 macgyver
* modules/mod_xfer.c (1.25): Added more caught cases in sendfile().
1999-12-09 08:54 macgyver
* src/support.c (1.10): Small Y2K fix.
1999-11-28 23:26 macgyver
* NEWS (1.15), src/data.c (1.7): sendfile() doesn't log spurious
errors unless in debug mode.
1999-10-27 15:43 macgyver
* configure (1.25), configure.in (1.25): Corrected intall_group
handling.
1999-10-27 15:43 macgyver
* modules/mod_xfer.c (1.24): Minor optimization in sendfile()
detection on Linux.
1999-10-27 01:24 macgyver
* modules/mod_xfer.c (1.23): Minor log cleanup for data_sendfile.
1999-10-27 01:24 macgyver
* modules/mod_xfer.c (1.22): Moved around some logging for
data_sendfile.
1999-10-27 00:43 macgyver
* Makefile.in (1.8, R1_2_0pre10): Minor path correction for
proftpd.spec.
1999-10-27 00:43 macgyver
* contrib/dist/rpm/.cvsignore (1.1, R1_2_0pre10): New file.
1999-10-27 00:43 macgyver
* modules/mod_xfer.c (1.21): sendfile() should take a more graceful
and tolerant approach to slow connections. It seems that the
problem is that its too fast.
1999-10-27 00:43 macgyver
* contrib/.cvsignore (1.4, R1_2_0pre10): Updated for proftpd.spec.
1999-10-26 22:06 macgyver
* ChangeLog (1.10): Updated.
1999-10-26 22:01 macgyver
* NEWS (1.14), contrib/dist/rpm/proftpd.spec.in (1.3) (utags:
R1_2_0pre9): Minor cleanups.
1999-10-26 21:36 macgyver
* NEWS (1.13), README.LDAP (1.1, R1_2_0pre9),
doc/Configuration.html (1.13, R1_2_0pre9), include/version.h (1.8,
R1_2_0pre9): Documentation updates and version bump to pre9.
1999-10-26 21:20 macgyver
* contrib/dist/rpm/proftpd.spec.in (1.2): Updated to reflect new
paths.
1999-10-26 20:58 macgyver
* modules/mod_xfer.c (1.20, R1_2_0pre9): Added support for TYPE L
for RFC 959 compliance.
1999-10-26 20:43 macgyver
* doc/rfc/: draft-bonachea-sftp-00.txt (1.1),
draft-ietf-ftpext-mlst-08.txt (1.1),
draft-ietf-ftpext-sec-consider-02.txt (1.1), rfc0959.txt (1.1),
rfc2228.txt (1.1) (utags: R1_2_0pre10, R1_2_0pre9): Added RFCs to
the documentation.
1999-10-26 20:08 macgyver
* configure (1.24), configure.in (1.24) (utags: R1_2_0pre9): Fixed
my stupid typo in FreeBSD setpassent.
1999-10-26 20:02 macgyver
* doc/: Configuration.html (1.12), Undocumented.txt (1.10,
R1_2_0pre9, R1_2_0pre10): Added more directives.
1999-10-25 15:13 macgyver
* doc/: Configuration.html (1.11), ShowUndocumented (1.3,
R1_2_0pre9, R1_2_0pre10), Undocumented.txt (1.9): More additions,
courtesy of Ben Ritcey.
1999-10-23 00:24 macgyver
* NEWS (1.12): Added AuthUsingAlias.
1999-10-23 00:18 macgyver
* doc/Configuration.html (1.10), modules/mod_auth.c (1.18,
R1_2_0pre9), modules/mod_core.c (1.20, R1_2_0pre9): Added in
AuthUsingAlias.
1999-10-22 23:07 macgyver
* configure (1.23), configure.in (1.23), contrib/ftp.pamd (1.2),
contrib/proftpd.spec.in (1.6), contrib/dist/rpm/ftp.pamd (1.1,
R1_2_0pre9, R1_2_0pre10), contrib/dist/rpm/proftpd.init.d (1.1,
R1_2_0pre9, R1_2_0pre10), contrib/dist/rpm/proftpd.spec.in (1.1),
doc/Undocumented.txt (1.8): Moved around RPM build files.
1999-10-22 22:52 macgyver
* NEWS (1.11), modules/mod_xfer.c (1.19): Minor updates.
1999-10-22 22:52 macgyver
* ChangeLog (1.9, R1_2_0pre9): Updated.
1999-10-22 22:39 macgyver
* contrib/proftpd.spec.in (1.5): Updated spec file to produce
standalone and inetd packages.
1999-10-22 22:34 macgyver
* contrib/libcap/.cvsignore (1.3, R1_2_0pre9, R1_2_0pre10): Updated
ignored files.
1999-10-22 22:21 macgyver
* modules/mod_xfer.c (1.18): FreeBSD cleanups for sendfile().
1999-10-22 22:21 macgyver
* NEWS (1.10), README (1.3, R1_2_0pre10, R1_2_0pre9), acconfig.h
(1.4, R1_2_0pre10, R1_2_0pre9), config.h.in (1.10, R1_2_0pre10,
R1_2_0pre9), configure (1.22), configure.in (1.22),
modules/mod_auth.c (1.17): Updates for FreeBSD's brokenness with
respect to setpassent.
1999-10-22 21:48 macgyver
* contrib/mod_ldap.c (1.4, R1_2_0pre9): Updated mod_ldap.
1999-10-20 23:36 macgyver
* doc/: Configuration.html (1.9), ShowUndocumented (1.2),
Undocumented.txt (1.7): Updated configuration documentation.
1999-10-20 23:36 macgyver
* modules/mod_pam.c (1.7, R1_2_0pre9, R1_2_0pre10): Minor
cleanups/updates.
1999-10-18 00:11 macgyver
* NEWS (1.9), doc/Configuration.html (1.8), include/dirtree.h (1.5,
R1_2_0pre9), modules/mod_core.c (1.19), src/dirtree.c (1.11,
R1_2_0pre9): Added a second argument to the Umask directive to
handle directories.
1999-10-18 00:11 macgyver
* modules/mod_xfer.c (1.17): sendfile() now deprecates politely on
Linux 2.0.x.
1999-10-17 15:09 macgyver
* doc/Configuration.html (1.7): Added in documentation for
DisplayReadme.
1999-10-17 14:11 macgyver
* contrib/genuser.pl (1.1, R1_2_0pre9, R1_2_0pre10): Added in
genuser.pl to facilitiate the creation of username:password
AuthUserFile entries.
1999-10-12 00:28 macgyver
* src/ftpwho.c (1.1, R1_2_0pre9, R1_2_0pre10): Added in ftpwho.c.
1999-10-11 22:40 macgyver
* modules/mod_pam.c (1.6): Fixed AuthPAMAuthoritative.
1999-10-11 06:14 macgyver
* contrib/: mod_pgsql.c (1.4, R1_2_0pre10), mod_sqlpw.c (1.2,
R1_2_0pre10) (utags: R1_2_0pre9): Minor code cleanups.
1999-10-11 02:28 macgyver
* NEWS (1.8), config.h.in (1.9), configure (1.21), configure.in
(1.21), include/conf.h (1.3, R1_2_0pre9, R1_2_0pre10): Added in
support for setgroupent.
1999-10-11 02:20 macgyver
* modules/mod_auth.c (1.16): Fixed the 'no names, just UIDs' bug.
1999-10-11 00:07 macgyver
* ChangeLog (1.8): Updated.
1999-10-10 23:45 macgyver
* Make.rules.in (1.4, R1_2_0pre9, R1_2_0pre10), Makefile.in (1.7,
R1_2_0pre9, R1_2_0pre10), NEWS (1.7), src/Makefile.in (1.2,
R1_2_0pre9, R1_2_0pre10), src/ftpcount.c (1.4, R1_2_0pre9,
R1_2_0pre10): Corrected a couple of grammatical errors in
ftpcount/ftpwho, and seperated them into their own binaries.
1999-10-10 22:10 macgyver
* README.PAM (1.3, R1_2_0pre9, R1_2_0pre10): Updated some
information for FreeBSD, SuSE, and others.
1999-10-10 22:10 macgyver
* NEWS (1.6), configure (1.20), contrib/mod_ldap.c (1.3),
contrib/mod_linuxprivs.c (1.5, R1_2_0pre10, R1_2_0pre9),
contrib/mod_ratio.c (1.8, R1_2_0pre10, R1_2_0pre9),
modules/mod_auth.c (1.15), modules/mod_core.c (1.18),
modules/mod_log.c (1.9, R1_2_0pre10, R1_2_0pre9), modules/mod_ls.c
(1.18, R1_2_0pre10, R1_2_0pre9), modules/mod_pam.c (1.5),
modules/mod_readme.c (1.3, R1_2_0pre10, R1_2_0pre9),
modules/mod_xfer.c (1.16), src/log.c (1.13, R1_2_0pre10,
R1_2_0pre9), src/main.c (1.20, R1_2_0pre10, R1_2_0pre9),
src/utils.c (1.5, R1_2_0pre10, R1_2_0pre9): Updated logging to be
more consistent, and generally be more informative.
1999-10-10 13:33 macgyver
* NEWS (1.5), configure.in (1.20): install_group slightly more
portable.
1999-10-10 05:05 macgyver
* contrib/mod_ldap.c (1.2): Updated author/copyright info.
1999-10-10 05:01 macgyver
* contrib/mod_ldap.c (1.1), doc/Configuration.html (1.6): Added in
mod_ldap.
1999-10-07 13:10 macgyver
* modules/mod_pam.c (1.4): Removed Log RCS ID.
1999-10-07 13:10 macgyver
* NEWS (1.4): Updated.
1999-10-06 22:25 macgyver
* modules/mod_auth.c (1.14), modules/mod_core.c (1.17), src/main.c
(1.19): Added in some better/clearer logging support.
1999-10-06 00:26 macgyver
* NEWS (1.3), README.PAM (1.2): Fixed FreeBSD documentation.
1999-10-05 22:47 macgyver
* doc/Configuration.html (1.5): Removed Bandwidth from docs.
1999-10-05 22:47 macgyver
* modules/mod_auth.c (1.13): Fixed potential segfault in
group_expression().
1999-10-05 22:39 macgyver
* modules/mod_pam.c (1.3): AuthPAMAuthoritative now defaults to
False.
1999-10-05 22:39 macgyver
* NEWS (1.2): Updated.
1999-10-05 00:37 macgyver
* NEWS (1.1): Added a news file.
1999-10-05 00:37 macgyver
* acconfig.h (1.3), config.h.in (1.8), configure (1.19),
configure.in (1.19), doc/Undocumented.txt (1.6), include/data.h
(1.4, R1_2_0pre9, R1_2_0pre10), src/data.c (1.6, R1_2_0pre9,
R1_2_0pre10): Added in support for sendfile on BSD platforms.
1999-10-04 23:28 macgyver
* ChangeLog (1.7), Makefile.in (1.6), doc/Undocumented.txt (1.5),
doc/mod_sample.c (1.1, R1_2_0pre9, R1_2_0pre10),
modules/mod_sample.c (1.4): Miscellaneous reshuffling.
1999-10-04 19:07 macgyver
* configure (1.18), configure.in (1.18): Fixed a small typo.
1999-10-04 18:54 macgyver
* ChangeLog (1.4): Updated the ChangeLog.
1999-10-04 18:54 macgyver
* changelog (1.21), doc/Changes-1.2.0pre3 (1.1, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10): Moved the old changelog to
doc/Changes-1.2.0pre3 to avoid any confusion.
1999-10-04 18:54 macgyver
* ChangeLog (1.6): Updated.
1999-10-04 18:39 macgyver
* contrib/mod_pgsql.c (1.3, R1_2_0pre8): Fixed a bad path in
includes.
1999-10-04 18:39 macgyver
* contrib/mod_ratio.c (1.7, R1_2_0pre8): Fixed a typo in an
snprintf.
1999-10-04 18:34 macgyver
* include/version.h (1.7, R1_2_0pre8): Updated to pre8.
1999-10-04 18:34 macgyver
* configure (1.17), configure.in (1.17) (utags: R1_2_0pre8):
Enhanced configure to automagically create the necessary symlinks.
1999-10-04 18:34 macgyver
* contrib/: mod_mysql.c (1.4, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
mod_pgsql.c (1.2): Fixed references to absolute paths.
1999-10-04 18:09 macgyver
* contrib/: mod_mysql.c (1.3), mod_mysql.h (1.2), mod_pgsql.c
(1.1), mod_ratio.c (1.6), mod_sqlpw.c (1.1, R1_2_0pre8): Added in
Johnie Ingram's latest mod_*sql patches, along with some slight
buffer fixes of my own.
1999-10-01 18:52 macgyver
* src/support.c (1.9, R1_2_0pre8, R1_2_0pre9): Fixed a typo with
statvfs.
1999-10-01 10:57 macgyver
* doc/Undocumented.txt (1.4, R1_2_0pre8): Updated undocumented
directives.
1999-10-01 03:13 macgyver
* ChangeLog (1.3, R1_2_0pre8): Moved to cvs2cl generation of
ChangeLogs.
1999-10-01 02:55 macgyver
* ChangeLog (1.2): Updated ChangeLog
1999-10-01 02:55 macgyver
* src/data.c (1.5, R1_2_0pre8): Added support for sendfile().
1999-10-01 02:55 macgyver
* config.h.in (1.7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), configure
(1.16), configure.in (1.16), include/data.h (1.3, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), include/dirtree.h (1.4, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), include/log.h (1.2, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), include/proftpd.h (1.7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_auth.c (1.12, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_core.c (1.16, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_log.c (1.8, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_xfer.c (1.15, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), src/io.c (1.4, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), src/log.c (1.12, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), src/main.c (1.18, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10): Added classes support, new bandwidth support, and
sendfile support.
1999-09-30 23:08 macgyver
* doc/Undocumented.txt (1.3): Regenerated the undocumented
directives.
1999-09-30 22:49 macgyver
* include/privs.h (1.2, R1_2_0pre8, R1_2_0pre9), modules/mod_auth.c
(1.11): Added in support for setresuid on HP/UX.
1999-09-30 22:31 macgyver
* modules/mod_unixpw.c (1.3, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10):
Added support for HP/UX-style security.
1999-09-30 22:31 macgyver
* src/dirtree.c (1.10, R1_2_0pre8), include/dirtree.h (1.3): Remove
old and naieve bandwidth code.
1999-09-30 22:31 macgyver
* doc/Configuration.html (1.4, R1_2_0pre8), modules/mod_xfer.c
(1.14): Added new Bandwidth code and documentation.
1999-09-30 22:31 macgyver
* modules/mod_ls.c (1.17, R1_2_0pre8): Fixed a silly typo with
snprintf.
1999-09-30 22:31 macgyver
* modules/mod_core.c (1.15): Removed old and naieve bandwidth code.
1999-09-30 22:31 macgyver
* config.h.in (1.6), configure (1.15), configure.in (1.15): HP/UX
security detection added.
1999-09-30 22:31 macgyver
* modules/mod_auth.c (1.10): Corrected a tricky bug with parsing of
configuration files. Thanks Klaus.
1999-09-30 01:10 macgyver
* modules/mod_auth.c (1.9): Fix a potential security hole.
1999-09-30 01:10 macgyver
* modules/mod_ls.c (1.16): DirFakeMode available inside <Directory>
blocks.
1999-09-30 01:03 macgyver
* configure (1.14), configure.in (1.14): Corrected configure
portability issues.
1999-09-30 01:03 macgyver
* modules/mod_ls.c (1.15): Corrected static declarations.
1999-09-30 00:54 macgyver
* src/dirtree.c (1.9): Corrected a couple of problems related to IP
LIMIT directives.
1999-09-30 00:54 macgyver
* contrib/mod_linuxprivs.c (1.4, R1_2_0pre8): Added support for
PowerPC architectures.
1999-09-30 00:28 macgyver
* contrib/mod_readme.c (1.2): Deleted spurious mod_readme file.
1999-09-30 00:13 macgyver
* modules/mod_core.c (1.14): Fixed compliance with RFC 929 with
respect to RNTO.
1999-09-29 15:45 macgyver
* modules/: mod_auth.c (1.8), mod_ls.c (1.14): Minor bug fixes.
1999-09-29 15:45 macgyver
* src/dirtree.c (1.8): Fixed a bug in match_ip that was causing
some LIMIT directives to fail.
1999-09-28 18:09 macgyver
* src/inet.c (1.6, R1_2_0pre8, R1_2_0pre9): Corrected an incorrect
call to inet_validate in inet_getaddr.
1999-09-26 16:42 macgyver
* doc/Configuration.html (1.3): Fixed a small typo.
1999-09-26 12:03 macgyver
* ChangeLog (1.1): Added in a real ChangeLog.
1999-09-26 05:02 macgyver
* doc/Undocumented.txt (1.2), modules/mod_core.c (1.13): Added in
CommandBufferSize.
1999-09-26 01:00 macgyver
* src/log.c (1.11, R1_2_0pre7): Corrected minor syslog errors.
1999-09-26 00:36 macgyver
* src/dirtree.c (1.7, R1_2_0pre7): Fixed a C++ style comment.
1999-09-26 00:32 macgyver
* src/utils.c (1.4, R1_2_0pre7, R1_2_0pre8): Compilation issues on
other Unix platforms addressed.
1999-09-26 00:08 macgyver
* doc/Configuration.html (1.2, R1_2_0pre7): Added in updated
configuration directives.
1999-09-18 13:23 macgyver
* modules/mod_ls.c (1.13, R1_2_0pre7): Fixed some bad code calling
fs_readlink.
1999-09-18 13:23 macgyver
* src/: dirtree.c (1.6), fs.c (1.6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9): Cleaned up usage of fs_readlink.
1999-09-18 13:23 macgyver
* src/log.c (1.10): Code cleanups.
1999-09-18 13:23 macgyver
* src/: pool.c (1.10, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
support.c (1.8, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10) (utags:
R1_2_0pre7): Minor code beautification.
1999-09-17 02:36 macgyver
* Makefile.in (1.5, R1_2_0pre7, R1_2_0pre8): Fixed symbolic link
installation.
1999-09-17 02:31 macgyver
* contrib/mod_mysql.c (1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), contrib/mod_ratio.c (1.5, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), include/support.h (1.3, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), modules/mod_auth.c (1.7,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
modules/mod_core.c (1.12, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), modules/mod_log.c (1.7, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_ls.c (1.12),
modules/mod_pam.c (1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), modules/mod_tar.c (1.3, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), modules/mod_test.c (1.3, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), modules/mod_xfer.c (1.13,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), src/auth.c (1.2,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), src/dirtree.c
(1.5), src/fs.c (1.5), src/ftpcount.c (1.3, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), src/log.c (1.9), src/main.c (1.17,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), src/pool.c (1.9),
src/support.c (1.7), src/utils.c (1.3): Implemented sstrncpy to
handle proper buffer copying issues on all platforms.
1999-09-16 23:13 macgyver
* modules/mod_ls.c (1.11): gcc cleanups.
1999-09-16 23:13 macgyver
* modules/mod_xfer.c (1.12): gcc cleanups and a more informative
error message added.
1999-09-16 23:13 macgyver
* modules/mod_log.c (1.6): Eliminated some potential problems with
logging.
1999-09-16 23:05 macgyver
* src/log.c (1.8): More intelligent handling of logfiles to avoid a
potential race condition.
1999-09-16 23:05 macgyver
* modules/mod_core.c (1.11): General regex cleanups. Added
AllowFilter/DenyFilter. More intelligent handling of logfiles.
gcc cleanups. wu-ftp style logging of deleted files.
1999-09-16 22:53 macgyver
* src/utils.c (1.2): Check for bad DNS entries.
1999-09-16 22:53 macgyver
* src/main.c (1.16): Added AllowFilter/DenyFilter. Fixed a small
typo with newlines. Corrected a slight problem with memory
debugging. Fixed several gcc warnings.
1999-09-16 22:53 macgyver
* include/inet.h (1.2, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
src/inet.c (1.5, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10) (utags:
R1_2_0pre7): Check for any potential DNS spoofing attacks from the
outside.
1999-09-16 22:53 macgyver
* include/version.h (1.6, R1_2_0pre7): Bumped version number.
1999-09-16 22:53 macgyver
* src/pool.c (1.8): Fixed gcc warnings.
1999-09-16 22:53 macgyver
* sample-configurations/complex-virtual.conf (1.1, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10): Added in a new sample
configuration.
1999-09-16 22:53 macgyver
* contrib/libcap/cap_extint.c (1.3, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10): Corrected gcc warning.
1999-09-16 22:53 macgyver
* contrib/proftpd.spec.in (1.4, R1_2_0pre7, R1_2_0pre8): Added in
mod_readme.
1999-09-16 22:45 macgyver
* .cvsignore (1.2, R1_2_0pre9, R1_2_0pre10), contrib/.cvsignore
(1.3, R1_2_0pre9, R1_2_0pre10), contrib/libcap/.cvsignore (1.2,
R1_2_0pre9, R1_2_0pre10) (utags: R1_2_0pre7, R1_2_0pre8): Added
some more files to ignore.
1999-09-16 12:20 macgyver
* src/main.c (1.15): Changed an argument reversal.
1999-09-16 02:45 macgyver
* src/log.c (1.7): Cleaned up some ugly code.
1999-09-16 02:42 macgyver
* src/main.c (1.14): Fixed a silly, yet insidious, way to overflow
a buffer.
1999-09-14 13:36 macgyver
* modules/mod_xfer.c (1.11): Corrected a minor typo .in -> .in.
1999-09-14 03:43 macgyver
* changelog (1.20, R1_2_0pre7, R1_2_0pre8), include/proftpd.h (1.6,
R1_2_0pre7, R1_2_0pre8), modules/mod_core.c (1.10),
modules/mod_xfer.c (1.10): Implemented HiddenStor.
1999-09-12 16:11 macgyver
* README.Solaris2.5x (1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10): Additional information regarding Solaris 2.5.x
systems added.
1999-09-12 15:28 macgyver
* config.h.in (1.5, R1_2_0pre7, R1_2_0pre8), configure (1.13,
R1_2_0pre7, R1_2_0pre8), configure.in (1.13, R1_2_0pre7,
R1_2_0pre8), include/conf.h (1.2, R1_2_0pre7, R1_2_0pre8),
src/log.c (1.6): Added in support for utmpx under Solaris and
like-minded platforms.
1999-09-12 12:04 macgyver
* doc/: Configuration.html (1.1), FAQ-config.html (1.1, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), GetConf (1.2, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), ShowUndocumented (1.1,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), Undocumented.txt
(1.1, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10): Added
configuration documentation and 'un' documentation.
1999-09-12 11:30 macgyver
* contrib/mod_ratio.c (1.4), doc/GetConf (1.1), modules/mod_auth.c
(1.6), modules/mod_core.c (1.9), modules/mod_log.c (1.5),
modules/mod_ls.c (1.10), modules/mod_readme.c (1.2, R1_2_0pre7,
R1_2_0pre8), modules/mod_sample.c (1.3, R1_2_0pre7, R1_2_0pre8):
Initial import of GetConf, and slight cleanup in all modules.
1999-09-11 19:08 macgyver
* changelog (1.19, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), contrib/libcap/Makefile (1.4, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), src/ftpcount.1 (1.2, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), src/ftpshut.8 (1.2,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), src/ftpwho.1
(1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
src/proftpd.8 (1.3, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10) (utags: R1_2_0pre6): Corrected mailing list addresses.
1999-09-11 19:05 macgyver
* contrib/proftpd.spec.in (1.3), include/version.h (1.5) (utags:
R1_2_0pre6): Corrected versioning info.
1999-09-11 15:50 macgyver
* configure (1.12), configure.in (1.12) (utags: R1_2_0pre6): Forgot
the 'id' issue.
1999-09-11 15:44 macgyver
* contrib/proftpd.spec.in (1.2): Cleanup of spec file.
1999-09-11 15:44 macgyver
* configure (1.11), configure.in (1.11): A couple of more configure
fixes.
1999-09-10 16:17 macgyver
* README.PAM (1.1, R1_2_0pre7, R1_2_0pre8), src/log.c (1.5,
R1_2_0pre7, R1_2_0pre8) (utags: R1_2_0pre6): Added PAM README, and
modified log.c to handle log_xfer more like WU-FTPd.
1999-09-10 15:17 macgyver
* INSTALL (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9),
README (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9),
contrib/mod_pam.c (1.5), modules/mod_pam.c (1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9): Moved PAM into the main module
set. It's now a 'core' feature.
1999-09-10 14:49 macgyver
* src/main.c (1.13, R1_2_0pre6): Added CommandBufferSize option.
1999-09-10 14:08 macgyver
* configure (1.10), configure.in (1.10): Fixed a small typo with
shadow use.
1999-09-10 03:21 macgyver
* configure (1.9), configure.in (1.9): Updated support for Solaris,
and made PAM sleep quietly when told to do so.
1999-09-10 02:46 macgyver
* src/support.c (1.6, R1_2_0pre6): Fixed remaining buffer issues in
sreplace.
1999-09-10 00:36 macgyver
* src/pool.c (1.7, R1_2_0pre6): Corrected alignment issues on
64-bit platforms. Thanks to Todd C. Miller <millert@ee.ethz.ch>
for the patch.
1999-09-10 00:27 macgyver
* src/ftpshut.c (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10): Cleaned up ftpshut options to return more
meaningful errors.
1999-09-09 22:44 macgyver
* src/pool.c (1.6): Fix for improper strncpy.
1999-09-08 22:18 macgyver
* src/support.c (1.5): Corrected a length bug in sreplace.
1999-09-08 03:35 macgyver
* configure (1.8), configure.in (1.8), contrib/mod_pam.c (1.4)
(utags: R1_2_0pre5): Updates to auto-configuring for PAM on *BSD.
1999-09-08 03:03 macgyver
* configure (1.7), configure.in (1.7): Fixed setproctitle detection
on *BSD platforms.
1999-09-08 02:48 macgyver
* configure (1.6), configure.in (1.6): Fixed an extra 'fi'
statement.
1999-09-08 02:42 macgyver
* configure (1.5), configure.in (1.5): Fixed a small typo in PAM
detection.
1999-09-08 02:42 macgyver
* Make.rules.in (1.3, R1_2_0pre7, R1_2_0pre8), config.h.in (1.4,
R1_2_0pre7, R1_2_0pre8) (utags: R1_2_0pre6, R1_2_0pre5): Added
memory debugging support.
1999-09-08 02:15 macgyver
* contrib/: mod_mysql.c (1.1, R1_2_0pre7), mod_mysql.h (1.1,
R1_2_0pre7) (utags: R1_2_0pre6, R1_2_0pre5): Initial import of
mod_mysql, with some buffer fixes.
1999-09-08 02:04 macgyver
* contrib/libcap/capability.h (1.2): Moved in the new capability
source tree.
1999-09-08 02:04 macgyver
* modules/Makefile.in (1.4, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre5): Updated for mod_mysql.
1999-09-08 02:04 macgyver
* config.guess (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre5): Added in StrongARM support.
1999-09-08 01:55 macgyver
* src/log.c (1.4, R1_2_0pre5): Minor buffer cleanups.
1999-09-08 01:55 macgyver
* src/inet.c (1.4, R1_2_0pre6, R1_2_0pre5): Added a helper message
for people who misconfigure their servers.
1999-09-08 01:55 macgyver
* src/main.c (1.12, R1_2_0pre5): Added in some debugging code to
assist in tracking down memory problems.
1999-09-08 01:55 macgyver
* src/pool.c (1.5, R1_2_0pre5): Fixed a couple of bugs introduced
by silly typos.
1999-09-07 18:29 macgyver
* Makefile.in (1.4, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre5), config.h.in (1.3), configure (1.4),
configure.in (1.4), include/dirtree.h (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), include/fs.h
(1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre5), include/version.h (1.4, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), lib/glob.c (1.2,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre5), src/dirtree.c (1.4, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), src/fs.c (1.4,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre5), src/ftpcount.c (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), src/inet.c (1.3),
src/log.c (1.3), src/main.c (1.11), src/modules.c (1.3, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5),
src/pool.c (1.4), src/support.c (1.4, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre5): Removed lots of
unsafe buffer copies, as well as addressed a couple of Y2K issues.
1999-09-07 18:22 macgyver
* contrib/.cvsignore (1.2, R1_2_0pre6, R1_2_0pre5): Removed
README.linux-privs
1999-09-07 18:17 macgyver
* contrib/: ftp.pamd (1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8),
proftpd.spec.in (1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8) (utags:
R1_2_0pre5): Added in RPM spec and ProFTPD PAM file.
1999-09-07 18:13 macgyver
* contrib/mod_linuxprivs.c (1.3, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre5): Updated capabilities code to newer release.
1999-09-07 18:13 macgyver
* contrib/libcap/: Makefile (1.3, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), _makenames.c (1.2,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
cap_alloc.c (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), cap_extint.c (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), cap_file.c (1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), cap_flag.c (1.2,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
cap_proc.c (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10), cap_sys.c (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10), cap_text.c (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10), libcap.h (1.2, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10),
include/sys/capability.h (1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10) (utags: R1_2_0pre5): Updated capabilities
library and model.
1999-09-07 18:13 macgyver
* contrib/mod_ratio.c (1.3, R1_2_0pre6, R1_2_0pre5): Fixed some
potential buffer issues.
1999-09-07 18:13 macgyver
* contrib/mod_pam.c (1.3): Some minor security updates to fix
potential buffer problems.
1999-09-07 18:06 macgyver
* modules/mod_core.c (1.8, R1_2_0pre6, R1_2_0pre5): Added in
Bandwidth patch for bandwidth control. Security cleanups --
removed lots of unsafe buffer copies.
1999-09-07 18:06 macgyver
* modules/: mod_auth.c (1.5, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9),
mod_log.c (1.4, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9), mod_ls.c (1.9,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9), mod_site.c (1.2, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9), mod_tar.c (1.2, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9), mod_test.c (1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9),
mod_unixpw.c (1.2, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9), mod_xfer.c
(1.9, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9) (utags: R1_2_0pre6,
R1_2_0pre5): Removed unsafe buffer copies that may have been
potential problems. Implemented the 'real' patch for the MKD/log
security issues.
1999-09-07 18:06 macgyver
* modules/Makefile.in (1.3): Updated Makefile for new capabilities
code.
1999-08-30 20:31 flood
* changelog (1.18, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre5), contrib/mod_linuxprivs.c (1.2),
contrib/libcap/Makefile (1.2), contrib/libcap/cap_sys.c (1.2),
include/options.h (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), include/pool.h (1.3,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre5), modules/mod_core.c (1.7), modules/mod_ls.c (1.8),
modules/mod_xfer.c (1.8), src/log.c (1.2), src/main.c (1.10),
src/modules.c (1.2), src/pool.c (1.3): Mucho patches.
1999-03-11 19:58 flood
* changelog (1.17), modules/mod_xfer.c (1.7): TYPE A N
1999-03-11 19:37 flood
* changelog (1.16), src/inet.c (1.2): OpenBSD SO_REUSEADDR patch.
1999-03-09 19:19 flood
* changelog (1.15), include/version.h (1.3) (utags: R1_2_0pre3):
Version 1.2.0pre3
1999-03-07 11:18 flood
* changelog (1.14), include/proftpd.h (1.5, R1_2_0pre6, R1_2_0pre3,
R1_2_0pre5), modules/mod_core.c (1.6, R1_2_0pre6, R1_2_0pre3,
R1_2_0pre5), src/dirtree.c (1.3, R1_2_0pre6, R1_2_0pre3,
R1_2_0pre5), src/main.c (1.9, R1_2_0pre6, R1_2_0pre3, R1_2_0pre5):
Added `MultilineRFC2228' directive and changed `ServerIdent'.
1999-03-05 11:55 flood
* modules/mod_xfer.c (1.6, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre5), src/timers.c (1.3,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre5) (utags: R1_2_0pre3): Oops. Last nights commit royally
screwed timers.
1999-03-04 21:34 flood
* Make.rules.in (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre3, R1_2_0pre5), Makefile.in (1.3, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre3, R1_2_0pre5), acconfig.h (1.2, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre3, R1_2_0pre5), changelog (1.13),
config.h.in (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre3,
R1_2_0pre5), configure (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre3, R1_2_0pre5), configure.in (1.3, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre3, R1_2_0pre5), contrib/mod_pam.c (1.2,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre3, R1_2_0pre5),
include/proftpd.h (1.4), modules/Makefile.in (1.2, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre3, R1_2_0pre5), modules/mod_core.c
(1.5), src/data.c (1.4, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre3, R1_2_0pre5), src/main.c (1.8): MacGyver's patch to do
argv[] rewriting the Right Way<tm>, and some minor socket error
handling fixes.
1999-03-04 20:53 flood
* changelog (1.12), include/io.h (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre3, R1_2_0pre5),
modules/mod_xfer.c (1.5), src/ident.c (1.3, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre3, R1_2_0pre5),
src/io.c (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre3, R1_2_0pre5), src/main.c (1.7): Fixed ident
& i/o (hanging) problems.
1999-03-04 18:44 flood
* changelog (1.11), modules/mod_xfer.c (1.4): what did I fix?
1999-03-04 18:29 flood
* include/timers.h (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre3, R1_2_0pre5),
modules/mod_auth.c (1.4, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre3, R1_2_0pre5), src/main.c (1.6),
src/support.c (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre3, R1_2_0pre5), src/timers.c (1.2): timer
code fixed
1999-02-13 20:36 flood
* modules/mod_ls.c (1.7, R1_2_0pre2, R1_2_0pre3): Ugg.. Yet another
mod_ls quickfix.
1999-02-13 19:47 flood
* modules/mod_auth.c (1.3, R1_2_0pre2): Ooops. add_userdir should
have tested for > 0.
1999-02-13 18:55 flood
* changelog (1.10), include/version.h (1.2) (utags: R1_2_0pre2):
Version 1.2.0pre2
1999-02-12 13:37 flood
* Makefile.in (1.2, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), changelog
(1.9), modules/mod_auth.c (1.2), modules/mod_core.c (1.4,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), modules/mod_ls.c (1.6),
modules/mod_xfer.c (1.3, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
src/main.c (1.5, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/proftpd.8
(1.2, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5): Mondo changes.
1999-01-27 16:06 flood
* changelog (1.8), include/support.h (1.2, R1_2_0pre6, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), modules/mod_ls.c (1.5), src/fs.c (1.3,
R1_2_0pre6, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/support.c
(1.2, R1_2_0pre6, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5): More
possibly MKD/CWD 'sploits fixed, and mod_ls workin well.
1999-01-21 10:32 flood
* modules/mod_ls.c (1.4), src/ident.c (1.2, R1_2_0pre2): NLST now
works properly! woo!
1999-01-18 21:00 flood
* modules/mod_readme.c (1.1, R1_2_0pre6, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5): mod_readme.c added to CVS
1999-01-18 19:34 flood
* changelog (1.7), include/data.h (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), modules/mod_ls.c (1.3),
src/data.c (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/fs.c (1.2), src/io.c (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/main.c (1.4): Still
working on NLST RFC959 compliane issue. ncftp client still showing
problems.
1998-11-01 13:08 flood
* changelog (1.6), configure (1.2, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), configure.in (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/README (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/mod_pam.c (1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/mod_ratio.c (1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/mod_readme.c (1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
include/proftpd.h (1.3, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
modules/mod_core.c (1.3), modules/mod_sample.c (1.2, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), modules/mod_xfer.c (1.2), src/dirtree.c
(1.2, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5): APPE, mod_pam & mod_readme
added
1998-10-29 19:38 flood
* changelog (1.5), include/proftpd.h (1.2), modules/mod_log.c (1.3,
R1_2_0pre2, R1_2_0pre3), src/main.c (1.3): Fix Debian bug #28641
1998-10-29 18:59 flood
* changelog (1.4), modules/mod_core.c (1.2), src/data.c (1.2):
Fixes to PASV/PORT.
1998-10-26 19:53 flood
* changelog (1.3), modules/mod_log.c (1.2): %{} argument fix in
mod_log.c
1998-10-23 06:21 flood
* changelog (1.2), include/pool.h (1.2, R1_2_0pre2, R1_2_0pre3),
modules/mod_ls.c (1.2), src/main.c (1.2), src/pool.c (1.2,
R1_2_0pre2, R1_2_0pre3): memory leak in mod_ls fixed
1998-10-17 21:24 flood
* .cvsignore (1.1), COPYING (1.1), INSTALL (1.1), Make.modules.in
(1.1), Make.rules.in (1.1), Makefile.in (1.1), README (1.1),
README.Solaris2.5x (1.1), README.linux-privs (1.1), acconfig.h
(1.1), changelog (1.1), config.guess (1.1), config.h.in (1.1),
config.sub (1.1), configure (1.1), configure.in (1.1), install-sh
(1.1), contrib/.cvsignore (1.1), contrib/README (1.1),
contrib/mod_linuxprivs.c (1.1), contrib/mod_ratio.c (1.1),
contrib/xferstats.holger-preiss (1.1), contrib/libcap/.cvsignore
(1.1), contrib/libcap/Makefile (1.1), contrib/libcap/_makenames.c
(1.1), contrib/libcap/cap_alloc.c (1.1),
contrib/libcap/cap_extint.c (1.1), contrib/libcap/cap_flag.c (1.1),
contrib/libcap/cap_proc.c (1.1), contrib/libcap/cap_sys.c (1.1),
contrib/libcap/cap_text.c (1.1), contrib/libcap/capability.h (1.1),
contrib/libcap/libcap.h (1.1), doc/API (1.1), doc/development.notes
(1.1), doc/license.txt (1.1), include/conf.h (1.1), include/data.h
(1.1), include/default_paths.h (1.1), include/dirtree.h (1.1),
include/fs.h (1.1), include/ftp.h (1.1), include/ident.h (1.1),
include/inet.h (1.1), include/io.h (1.1), include/libsupp.h (1.1),
include/log.h (1.1), include/modules.h (1.1), include/options.h
(1.1), include/pool.h (1.1), include/privs.h (1.1),
include/proftpd.h (1.1), include/sets.h (1.1), include/support.h
(1.1), include/timers.h (1.1), include/version.h (1.1),
lib/.cvsignore (1.1), lib/Makefile.in (1.1), lib/fnmatch.c (1.1),
lib/getopt.c (1.1), lib/getopt.h (1.1), lib/getopt1.c (1.1),
lib/glob.c (1.1), lib/glob.h (1.1), lib/pwgrent.c (1.1),
lib/strsep.c (1.1), lib/vsnprintf.c (1.1), modules/.cvsignore
(1.1), modules/Makefile.in (1.1), modules/glue.sh (1.1),
modules/mod_auth.c (1.1), modules/mod_core.c (1.1),
modules/mod_log.c (1.1), modules/mod_ls.c (1.1),
modules/mod_sample.c (1.1), modules/mod_site.c (1.1),
modules/mod_tar.c (1.1), modules/mod_test.c (1.1),
modules/mod_unixpw.c (1.1), modules/mod_xfer.c (1.1),
modules/module_glue.c.tmpl (1.1),
sample-configurations/anonymous.conf (1.1),
sample-configurations/basic.conf (1.1),
sample-configurations/virtual.conf (1.1), src/.cvsignore (1.1),
src/Makefile.in (1.1), src/auth.c (1.1), src/data.c (1.1),
src/dirtree.c (1.1), src/fs.c (1.1), src/ftpcount.1 (1.1),
src/ftpcount.c (1.1), src/ftpshut.8 (1.1), src/ftpshut.c (1.1),
src/ftpwho.1 (1.1), src/ident.c (1.1), src/inet.c (1.1), src/io.c
(1.1), src/log.c (1.1), src/main.c (1.1), src/modules.c (1.1),
src/pool.c (1.1), src/proftpd.8 (1.1), src/sets.c (1.1),
src/support.c (1.1), src/timers.c (1.1), src/utils.c (1.1),
src/xferlog.5 (1.1): Initial revision
1998-10-17 21:24 flood
* .cvsignore (1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8,
R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
COPYING (1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), INSTALL (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), Make.modules.in (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), Make.rules.in (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), Makefile.in (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), README (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), README.Solaris2.5x (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), README.linux-privs (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), acconfig.h (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), changelog (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), config.guess (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), config.h.in (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), config.sub (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), configure (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), configure.in (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), install-sh (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/.cvsignore (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/README (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/mod_linuxprivs.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), contrib/mod_ratio.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/xferstats.holger-preiss (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), contrib/libcap/.cvsignore (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/libcap/Makefile (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), contrib/libcap/_makenames.c
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/libcap/cap_alloc.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), contrib/libcap/cap_extint.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/libcap/cap_flag.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), contrib/libcap/cap_proc.c
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
contrib/libcap/cap_sys.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), contrib/libcap/cap_text.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), contrib/libcap/capability.h (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), contrib/libcap/libcap.h
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), doc/API (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), doc/development.notes
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), doc/license.txt
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), include/conf.h
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), include/data.h
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
include/default_paths.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/dirtree.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/fs.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/ftp.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/ident.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/inet.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/io.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/libsupp.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/log.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/modules.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/options.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/pool.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/privs.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/proftpd.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/sets.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/support.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/timers.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), include/version.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/.cvsignore (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/Makefile.in (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/fnmatch.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/getopt.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/getopt.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/getopt1.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/glob.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/glob.h (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/pwgrent.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/strsep.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), lib/vsnprintf.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/.cvsignore (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/Makefile.in (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/glue.sh (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_auth.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_core.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_log.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_ls.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_sample.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_site.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_tar.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_test.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_unixpw.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/mod_xfer.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), modules/module_glue.c.tmpl (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), sample-configurations/anonymous.conf
(1.1.1.1, R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9,
R1_2_0pre10, R1_2_0pre2, R1_2_0pre3, R1_2_0pre5),
sample-configurations/basic.conf (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), sample-configurations/virtual.conf (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/.cvsignore (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/Makefile.in (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/auth.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/data.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/dirtree.c (1.1.1.1,
R1_2_0pre6, R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10,
R1_2_0pre2, R1_2_0pre3, R1_2_0pre5), src/fs.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ftpcount.1 (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ftpcount.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ftpshut.8 (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ftpshut.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ftpwho.1 (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/ident.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/inet.c (1.1.1.1, R1_2_0pre6,
R1_2_0pre7, R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2,
R1_2_0pre3, R1_2_0pre5), src/io.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/log.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/main.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/modules.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/pool.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/proftpd.8 (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/sets.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/support.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/timers.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/utils.c (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5), src/xferlog.5 (1.1.1.1, R1_2_0pre6, R1_2_0pre7,
R1_2_0pre8, R1_2_0pre9, R1_2_0pre10, R1_2_0pre2, R1_2_0pre3,
R1_2_0pre5) (utags: R1_2_0pre1, start): Imported source for proftpd
1.2.0
|