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
|
nss-pam-ldapd (0.9.11-1) unstable; urgency=medium
* New upstream release:
- add support for Python 3 in pynslcd and utilities
- fix crash in chsh.ldap (thanks Mizunashi Mana)
- test suite improvements
* Drop patches
* Mark the pynslcd tests as flaky because they are likely to fail
* Switch to Python 3 (closes: #937165)
* Update debian/copyright
* Upgrade to standards-version 4.4.1 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Sun, 06 Oct 2019 23:00:06 +0200
nss-pam-ldapd (0.9.10-2) unstable; urgency=medium
[ Arthur de Jong ]
* Fix crash in chsh.ldap (closes: 908319)
* Make signing key minimal (thanks lintian)
* Upgrade to standards-version 4.3.0 (no changes needed)
* Remove code that handled upgrades from pre-0.9 versions of nss-pam-ldapd
[ Sunil Mohan Adapa ]
* Change ca-certificates as dependency instead of recommends since
initial configuration uses certificates (closes: #877002).
-- Arthur de Jong <adejong@debian.org> Sun, 20 Jan 2019 17:08:01 +0100
nss-pam-ldapd (0.9.10-1) unstable; urgency=medium
* New upstream release:
- make password expiry messages correct and consistent (thanks Têko
Mihinto)
- add domain variable for use in pam_authz_search
- allow logging longer lines
- create nslcd socket after dropping privileges to avoid slow start-ups
* Set Vcs-* to salsa.debian.org
* Upgrade to standards-version 4.2.1 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Sun, 02 Sep 2018 17:25:16 +0200
nss-pam-ldapd (0.9.9-1) unstable; urgency=medium
* new upstream release:
- support spaces in attribute mapping expressions
- allow parsing longer lines in the configuration file
- allow for longer host names (closes: #890508)
* upgrade to debhelper compatibility level 7
* upgrade to standards-version 4.1.3 (change package priority to optional)
* do not run test suite if DEB_BUILD_OPTIONS contains nocheck
-- Arthur de Jong <adejong@debian.org> Mon, 19 Feb 2018 21:00:00 +0100
nss-pam-ldapd (0.9.8-1) unstable; urgency=medium
* new upstream release:
- add a pam_authc_search option that can be used to configure the search
operation that is performed after authentication
- add nss_uid_offset and nss_gid_offset options that can be used to
change returned numeric user and group ids from LDAP (thanks Seth
Wright)
- do not retry failed user password on second LDAP server
- the validnames option now also applies to shadow lookups
- support ethernet addresses in LDAP in compact and long formats
- improvements to getent.ldap command (a few minor bug fixes and
preparations for Python 3 support)
- log entries and lookups failing nss_min_uid at debug level
* update links to use HTTPS
* remove --no-create-home from adduser to hide a few warnings
(closes: #858826)
* remove pie from hardening blacklist because it is no longer needed for
stretch (thanks Adrian Bunk) (closes: #859432)
* update debian/copyright
* upgrade to standards-version 4.0.0 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Tue, 27 Jun 2017 22:00:00 +0200
nss-pam-ldapd (0.9.7-2) unstable; urgency=medium
* recommend ca-certificate which is needed due to adding tls_cacertfile by
default (see #750949) and the checking of tls_cacertfile in 0.9.7
(closes: #836720)
* fix parsing of nslcd.conf tls_cacert option in package configuration
(closes: #851564)
* add dependency on lsb-base for init script (thanks lintian)
-- Arthur de Jong <adejong@debian.org> Sun, 22 Jan 2017 16:00:00 +0100
nss-pam-ldapd (0.9.7-1) unstable; urgency=medium
* new upstream release:
- check existence of TLS certificate and key files on start-up
- fix password policy expiration handling when password was about to
expire (thanks Mathieu Baeumler for tracking this down)
(closes: #794068)
- fix updating of shadowLastChange attribute when chasing referrals
(thanks Vasilis Tsiligiannis)
- add an pam_authc_ppolicy option to allows completely disabling ppolicy
handling (thanks Mathieu Baeumler)
- fix handling of nss_disable_enumeration (thanks Andrew W Elble for
pointing this out)
- display human readable password expiry messages (thanks Mathieu
Baeumler)
- fix error when changing PAM user name (thanks 依云)
- support substring expressions ${var:offset:length} in attribute mapping
(thanks Giovanni Mascellani)
- also honor the ignorecase option in PAM
* drop fix-ppolicy-expiration-warnings.patch which is part of 0.9.7
* put nsswitch.conf services in more natural order in debconf question
* update debian/copyright
-- Arthur de Jong <adejong@debian.org> Sun, 14 Aug 2016 23:00:00 +0200
nss-pam-ldapd (0.9.6-4) unstable; urgency=medium
* debconf translation updates:
- Brazilian Portuguese by Adriano Rafael Gomes (closes: #799414)
* have init script stop action only return when nslcd has actually stopped
(closes: #814881)
* update Vcs and homepage URLs to HTTPS (thanks lintian)
* remove explicit ldconfig call from libnss-ldapd.postrm (thanks lintian)
* upgrade to standards-version 3.9.8 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Fri, 27 May 2016 11:30:00 +0200
nss-pam-ldapd (0.9.6-3) unstable; urgency=medium
* fix-ppolicy-expiration-warnings.patch: fix password policy expiration
warnings (closes: #794068)
-- Arthur de Jong <adejong@debian.org> Sun, 30 Aug 2015 14:00:00 +0200
nss-pam-ldapd (0.9.6-2) unstable; urgency=medium
* ensure proper return code of init script (closes: #794686)
-- Arthur de Jong <adejong@debian.org> Thu, 13 Aug 2015 21:00:00 +0200
nss-pam-ldapd (0.9.6-1) unstable; urgency=medium
* new upstream release:
- fix a race condition in signal handling during start-up that would
cause nslcd to exit if a signal (such as SIGUSR1 that can be sent when
network status changes) is received (closes: #759544)
- fix signed integer overflow on 32bit systems when using objectSid
(thanks Geoffrey McRae)
- allow longer configuration values (thanks Jed Liu)
- add an nss_getgrent_skipmembers option to disable retrieving group
members to improve performance in specific environments
- add an nss_disable_enumeration option to disable full listing of all
users and groups to improve performance in specific environments
(thanks Andrew Elble)
* drop avoid-signal-race.patch which is part of 0.9.6
* drop XS-Testsuite from debian/control
* use pathfind from Developer's Reference instead of full path to nslcd and
pynslcd
-- Arthur de Jong <adejong@debian.org> Fri, 19 Jun 2015 11:30:00 +0200
nss-pam-ldapd (0.9.5-2) unstable; urgency=medium
* avoid-signal-race.patch: avoid a signal mask race condition that could
prevent nslcd from starting correctly during boot (closes: #759544)
-- Arthur de Jong <adejong@debian.org> Thu, 16 Apr 2015 22:00:00 +0200
nss-pam-ldapd (0.9.5-1) unstable; urgency=medium
* new upstream release:
- handle situation better when server (or firewall) closed the connection
(thanks Tim Harder)
- make daemonising a little more robust and try to log more failures
- fix integer format strings (thanks Jianhai Luan and Patrick McLean)
- documentation updates (thanks Dalibor Pospíšil)
- fix range check for search access (thanks David Binderma)
- fix a bug in the NSS library when encountering IPv6 addresses in
the hosts map (thanks Mark R Bannister)
- adjust the Linux OOM (Out-Of-Memory) killer score to avoid killing
nslcd (thanks Patrick McLean)
* drop use-ip-range-for-tests.patch which is part of 0.9.5
* debian/copyright: copyright year updates
* upgrade to standards-version 3.9.6 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Fri, 10 Apr 2015 16:00:00 +0200
nss-pam-ldapd (0.9.4-3) unstable; urgency=low
* use-ip-range-for-tests.patch: use a different IP range for running the
autopkgtest tests to avoid conflicts in test environments
* debconf translation updates:
- Norwegian Bokmål by Petter Reinholdtsen (closes: #758693)
* prefer nslcd as nslcd-2 implementation (closes: #760287)
* do not remove PAM profile when another architecture remains (taken from
the libpam_ldap package)
-- Arthur de Jong <adejong@debian.org> Sun, 28 Sep 2014 15:00:00 +0200
nss-pam-ldapd (0.9.4-2) unstable; urgency=low
* debconf translation updates:
- Portuguese by Américo Monteiro (closes: #751047)
- French by Christian Perrier (closes: #751100)
- Japanese by Kenshi Muto (closes: #752515)
- Russian by Yuri Kozlov (closes: #752550)
- Dutch by Arthur de Jong
- Swedish by Martin Bagge (closes: #753691)
(with corrections by Anders Jonsson)
- Czech by Miroslav Kure (closes: #753710)
- Danish by Joe Hansen (closes: #753948)
- Turkish by Mert Dirik (closes: #754101)
- Slovak by Slavko (closes: #754284)
- German by Chris Leick (closes: #754476)
- Polish by Michał Kułach (closes: #754989)
- Spanish by Matías A. Bellone (closes: #755037)
- Italian by Beatrice Torracca (closes: #755282)
* for new installs add tls_cacertfile /etc/ssl/certs/ca-certificates.crt to
nslcd.conf (closes: #750949)
* provide a debconf prompt for tls_cacertfile if TLS is enabled and reqcert
is configured (closes: #750949, #661872)
* update autopkgtest tests to dump daemon debug info if tests fail and not
stop the tests on first failure
-- Arthur de Jong <adejong@debian.org> Wed, 23 Jul 2014 21:00:00 +0200
nss-pam-ldapd (0.9.4-1) unstable; urgency=medium
* upload to unstable
* new upstream release:
- also handle password policy information on BIND failure (this makes it
possible to distinguish between a wrong password and an expired
password)
- fix mapping the member attribute to an empty string
- any buffers that may have held passwords are cleared before the memory
is released
- increase buffer size for passwords to support extremely long passwords
(thanks ushi)
- increase buffer size for DN to support very long names or names with
non-ASCII characters
- log an error in almost all places where a defined buffer is not large
enough to hold the provided data instead of just (sometimes silently)
failing
- logging improvements (start-up problems, login failures)
* add signature checking option to watch file
* add a debian/upstream/metadata file
-- Arthur de Jong <adejong@debian.org> Sun, 08 Jun 2014 14:00:00 +0200
nss-pam-ldapd (0.9.3-1) experimental; urgency=low
* new upstream release:
- make the dn2uid cache lifetime configurable with the cache
configuration option
- have the nslcd process only exit after the service is completely
available to avoid race conditions in the init script
- the nslcd daemon now properly daemonises (double fork)
- support mapping the member attribute to an empty string to disable the
functionality to do extra lookups for member DN to member uid
translations
- implement deref control handling to request the LDAP server to
dereference group member attribute values to uid values
- support getting built-in groups from Active Directory (thanks Davy
Defaud)
- fix for pwdLastSet attribute value handling (thanks Joshua Shire)
- fix a possible crash in the NSS module when retrieving large networks
entries (thanks Lukas Slebodnik)
- correct NSS h_errnop return value to indicate buffer too small (thanks
Nalin Dahyabhai)
- fix a bug with shadow values on 64-bit architectures (closes: #739330)
* debian/copyright: copyright year updates
* add build dependencies for used Python modules because the new upstream
version checks them with configure script
-- Arthur de Jong <adejong@debian.org> Wed, 12 Mar 2014 23:00:00 +0100
nss-pam-ldapd (0.9.2-1) experimental; urgency=low
* new upstream release:
- increase password value buffer size (by Bersl)
- avoid more broken pipe errors by using a low timeout when aborting
reading requested information from nslcd (thanks John Sullivan)
- only log broken pipe errors in debugging mode
- fix buffer overflow on interrupted read that is hard to trigger (thanks
John Sullivan)
- use clock_gettime() with CLOCK_MONOTONIC for timeout calculations to
avoid clock adjustments errors (thanks John Sullivan)
- extend test suite to test for CLOCK_MONOTONIC and timed IO timeout
calculations
- increase the maximum number of base statements per map to 31
- use larger nslcd send buffers to reduce the number of write operations
in nslcd and consequently the number of reads in the NSS and PAM modules
(thanks John Sullivan)
- also run invalidators after first successful search
- various clean-ups, portability improvements and fixes for compiler
warnings
- import configure checks of Python modules
- provide a script for setting up slapd in a test environment,
automatically loaded with the required test data
- add script for evaluating test environment availability
- portability improvements in the test scripts and test environment
* avoid prompting to restart services on initial install
* upgrade to standards-version 3.9.5 (no changes needed)
* add DEP-8 autopkgtest end-to-end tests of installed packages running an
LDAP server and performing NSS and PAM operations
-- Arthur de Jong <adejong@debian.org> Thu, 31 Oct 2013 23:00:00 +0100
nss-pam-ldapd (0.9.1-2) experimental; urgency=low
* mark pynslcd as multi-arch foreign to allow it to satisfy dependencies
on any arch
* add init script dependency on $network to ensure that network is up
before starting nslcd (closes: #726435)
* clean generated manual pages to allow the package to be built twice in
a row
* when upgrading from a pre-0.9 version, have the nslcd preinst check if
a screensaver is running that could end up locking users out of their
system (heavily based on the eglibc and pam packaging)
* when upgrading from a pre-0.9 version, have the nslcd postinst check
if any services need to be restarted to load the new modules (heavily
based on the eglibc and pam packaging)
* debconf translation updates:
- Dutch by Arthur de Jong
-- Arthur de Jong <adejong@debian.org> Fri, 18 Oct 2013 16:00:00 +0200
nss-pam-ldapd (0.9.1-1) experimental; urgency=low
* new upstream release:
- rename the nscd_invalidate option to reconnect_invalidate and allow
flushing the nfsidmap cache with the new option (perhaps a fix for
#500778)
- implement an -n switch to not daemonise (by Caleb Callaway)
- nslcd will now return partial shadow information to non-root users to
avoid authorisation problems with setgid shadow authentication helpers
with some PAM stacks (closes: #706913)
- nslcd will now retry failing LDAP connections after receiving SIGUSR1
- the code for the nslcd utilities (getent.ldap and chsh.ldap) is now
installed in /usr/share/nslcd-utils
- improve error and help output of the getent.ldap command
- documentation updates
- fix for a potential, small memory leak in PAM module regarding temporary
saving of old password
- a large number of bug fixes and improvements in pynslcd
- hide passwords from the pynslcd debug output
- support start_tls, pam_password_prohibit_message, nss_min_uid and
nss_initgroups_ignoreusers in pynslcd
- fix rootpwmodpw handling in pynslcd
- complete a basic PAM implementation in pynslcd (some things such as
shadow attribute checking remain to be implemented)
* drop 02-fix-missing-self.patch which is part of 0.9.1
* install the same documentation in pynslcd as with nslcd
* debian/nslcd.config: properly handle preseeding and reading values
from the configuration file by forcefully overwriting debconf values
from nslcd.conf and not overwriting debconf values when reading other
configuration files (closes: #717063)
* fix the tests by adding python-daemon and python-ldap to Build-Depends
and fixing the permissions of the test configuration file
* install an if-up scripts for nslcd that sends SIGUSR1 to the daemon to
re-check LDAP server availability
-- Arthur de Jong <adejong@debian.org> Tue, 27 Aug 2013 20:00:00 +0200
nss-pam-ldapd (0.9.0-2) experimental; urgency=low
* debconf translation updates:
- Japanese by Kenshi Muto (closes: #711867)
- Russian by Yuri Kozlov (closes: #711884)
- Slovak by Slavko (closes: #711889)
- Portuguese by Américo Monteiro (closes: #712231)
- Danish by Joe Hansen (closes: #712311)
- German by Chris Leick (closes: #712728)
- French by Christian Perrier (closes: #712847)
- Turkish by Atila KOÇ (closes: #712876)
- Czech by Miroslav Kure (closes: #713047)
- Italian by Beatrice Torracca (closes: #713987)
- Dutch by Arthur de Jong
- Swedish by Martin Bagge (closes: #714651)
* new debconf translations:
- Polish by Michał Kułach (closes: #713921)
* remove debian/pynslcd.init in clean target
* move python build dependency from Build-Depends-Indep to Build-Depends
because dh_python2 is used for every dh invocation
-- Arthur de Jong <adejong@debian.org> Mon, 15 Jul 2013 23:00:00 +0200
nss-pam-ldapd (0.9.0-1) experimental; urgency=low
* new upstream release:
- use network byte order in the the communications protocol between
nslcd and NSS and PAM modules to work on mixed endian multiarch
systems (closes: #659488)
- netgroup lookups now makes a distinction between empty netgroups and
non-existing netgroups
- request and handle password policy controls on LDAP authentication
- implement support for nested groups which can be enabled with the
nss_nested_groups option (thanks Steve Hill) (closes: #647502)
- add a log option to configure log level and logging to plain files
(closes: #699841)
- add an nscd_invalidate option to invalidate the nscd cache after
recovering from LDAP connection problems (to clear any negative cache
entries)
- allow trimming expressions with ${foo#bar} syntax in attribute mapping
expressions (thanks Thorsten Glaser) (closes: #695044)
(pynslcd supports trimming expressions with full shell glob matching)
- support password modification in pynslcd
- support children search scope for systems that have it
- add a getent.ldap utility to perform nslcd queries bypassing the libc
NSS stack
- implement functionality for changing user information and provide a
chsh.ldap utility to allow users to change their login shell
- remove deprecated use_sasl, reconnect_tries, reconnect_maxsleeptime and
tls_checkpeer options which have been replaced long ago
- allow names with one character in default validnames option and allow
parentheses (taken from Fedora packages)
- fall back to updating the lastChange attribute with the normal LDAP
connection
- dump full nslcd configuration at debug level on start-up
- export an _nss_ldap_version symbol in the NSS module to make finding
version mismatches easier (the NSS module version is logged from nslcd)
- documentation improvements
- temporary disable the caching functionality of pynslcd
- usability improvements in the pynslcd implementation
* debian/copyright: copyright year updates
* introduce a nslcd-2 (for the protocol version) virtual package that can
be shared between nslcd, pynslcd and potentially nssov
* introduce a nslcd-utils package that contains the getent.ldap and
chsh.ldap utilities
* libnss-ldapd.postrm: do not offer to remove entries from nsswitch.conf
when switching between module implementation or architecture
* feedback from the debian-l10n-english contributors on the debconf
templates and package descriptions (closes: #707193) (thanks Christian
PERRIER and Justin B Rye)
* introduce a pynslcd package that provides an alternative, experimental
implementation of nslcd in Python (this package shares configuration
and packaging scripts with nslcd)
* 02-fix-missing-self.patch: fix a bug in pynslcd
* ensure that /var/run/nslcd is not removed and /etc/nslcd.conf is not
purged as long as an nslcd implementation is still present
-- Arthur de Jong <adejong@debian.org> Fri, 07 Jun 2013 13:00:00 +0200
nss-pam-ldapd (0.8.13-1) unstable; urgency=low
* new upstream release:
- include an extra sanity check to ensure not too many file
descriptors are open
- fix handling of gid configuration option if it listed before the uid
option
- return NSS_STATUS_TRYAGAIN on zero-length (but not-NULL) buffer (thanks
Jakub Hrozek)
- provide an _nss_ldap_version symbol in the NSS module to help debug
problems with a newer nslcd
- retry updating the lastChange attribute with the normal nslcd LDAP
connection if the update with the user's connection failed
- avoid processing passwd_byuid requests for uids below nss_min_uid
- fix a few minor or very unlikely to occur memory leaks
- miscellaneous minor changes, fixes and compatibility improvements
* drop 01-fix-set-usec-instead-of-sec.patch which is part of 0.8.13
* remove compatibility code that converted nss-ldapd.conf to nslcd.conf
for upgrading from pre-0.7 versions of nss-ldapd (thanks Dominik George)
* remove code for fixing permissions when upgrading from a pre-0.6.7.1
version
* updated Turkish debconf translation by Atila KOÇ (closes: #701067)
* drop Richard A Nelson from uploaders
* add build dependency on autotools-dev to ensure config.sub and
config.guess are automatically updated during build
-- Arthur de Jong <adejong@debian.org> Sun, 05 May 2013 20:00:00 +0200
nss-pam-ldapd (0.8.12-1) experimental; urgency=low
* new upstream release:
- fix a problem with the sasl_canonicalize option that would cause
errors on non-SASL enabled systems
- ensure that the file descriptors in the NSS and PAM modules for
connecting to nslcd are closed on exec of the process
- allow attribute options in attribute mapping expressions
- show reconnect messages when failing over to a different LDAP server
or re-establishing the connection to an LDAP server (the message
accidentally got hidden in 0.7.4)
- small improvement to PAM error logging
* added Turkish debconf translation by Atila KOÇ (closes: #694420)
* 01-fix-set-usec-instead-of-sec.patch: fix a problem in the timeout
calculation used in the communication protocol between nslcd and the
NSS and PAM modules, thanks Julien Cristau
-- Arthur de Jong <adejong@debian.org> Sun, 09 Dec 2012 20:34:25 +0100
nss-pam-ldapd (0.8.11-1) experimental; urgency=low
* new upstream release:
- add a pam_password_prohibit_message nslcd.conf option to deny password
change (thanks to Ted Cheng)
- add a sasl_canonicalize option to allow disabling of hostname
canonicalisation in OpenLDAP
- have the nslcd daemon load the nslcd user's supplementary groups to have
more flexibility with assigning group permissions (LP: #1020303)
- fix logic error when falling back to getting ranged attribute values for
possibly binary attributes (thanks scan-build)
- fix a problem when storing negative hit to dn2uid cache (thanks
scan-build)
- small portability improvements
- grow all search filter buffers to 4096 bytes
* drop 01-use-poll-instead-of-select.patch which is part of 0.8.11
* install upstream ldapns.ldif instead of debian/ldapns.ldif one
* mark ldapns.schema and ldapns.ldif as example files
* upgrade to standards-version 3.9.4 (no changes needed)
* small language improvement in debconf template and list more SASL
mechanisms
* update X-Start-Before in the init script so that nslcd is started
before various IMAP servers (closes: #692633)
* update X-Start-Before in the init script so that nslcd is started
before a display manager
* update Should-Start in the init script so that nslcd is started after
a Kerberos KDC is available
-- Arthur de Jong <adejong@debian.org> Fri, 16 Nov 2012 21:00:00 +0100
nss-pam-ldapd (0.8.10-3) unstable; urgency=low
* fix a problem in sed logic for commenting out disabled options
(closes: #689296)
* support "EXTERNAL" SASL mechanism in debconf configuration (LP: #1063923)
(the debconf template has been postponed to avoid having to update all
translations for a relatively minor change)
* 01-use-poll-instead-of-select.patch: use poll() instead of select()
for checking file descriptor activity to also correctly work if more
than FD_SETSIZE files are already open (closes: #690319) (CVE-2013-0288)
-- Arthur de Jong <adejong@debian.org> Sun, 14 Oct 2012 23:00:00 +0200
nss-pam-ldapd (0.8.10-2) unstable; urgency=low
* fix typo in comment (thanks Caleb Callaway)
* install a ldapns.ldif in nslcd doc directory (closes: #674591)
* ensure that time is set before starting k5start to ensure that Kerberos
ticket is granted (closes: #659227)
* properly parse and write configuration options with an optional map
parameter during debconf configuration (LP: #1029062)
-- Arthur de Jong <adejong@debian.org> Fri, 31 Aug 2012 23:30:00 +0200
nss-pam-ldapd (0.8.10-1) unstable; urgency=low
* new upstream release:
- documentation improvements
- fix a problem that causes the PAM module to prompt for a new password
even though the old one was wrong
- log successful password change in nslcd
-- Arthur de Jong <adejong@debian.org> Fri, 29 Jun 2012 12:30:00 +0200
nss-pam-ldapd (0.8.9-1) unstable; urgency=low
* new upstream release:
- allow the pam_authz_search option to be specified multiple times
- implement extra range checking of all numeric values
- make documentation up-to-date
- compatibility improvements
-- Arthur de Jong <adejong@debian.org> Sun, 20 May 2012 23:00:00 +0200
nss-pam-ldapd (0.8.8-3) unstable; urgency=low
* don't clear the tls_reqcert option when using ssl without the
start_tls option or an ldaps:// URL (closes: #672301)
-- Arthur de Jong <adejong@debian.org> Thu, 17 May 2012 13:15:00 +0200
nss-pam-ldapd (0.8.8-2) unstable; urgency=low
* switch PAM config back to additional because if shadow information is
provided pam_unix accepts the user and causes pam_ldap to be skipped
-- Arthur de Jong <adejong@debian.org> Wed, 02 May 2012 22:48:23 +0200
nss-pam-ldapd (0.8.8-1) unstable; urgency=low
* new upstream release:
- fix a problem in the handling of PAM requests in nslcd (closes: #670419)
- install the ldapns.schema in nslcd docs (closes: #669680)
* use the configuration file contents to determine the authentication
type, not the debconf database (closes: #670133) (LP: #1000205)
* switch PAM account type to primary because it now does all the
authorisation checks that pam_unix also does
* drop functionality to check whether shadow information is exposed
in /etc/nsswitch.conf, it was no longer needed sine 0.8.4
* ensure that /var/run/nslcd is not removed during upgrades
-- Arthur de Jong <adejong@debian.org> Fri, 27 Apr 2012 11:20:00 +0200
nss-pam-ldapd (0.8.7-1) unstable; urgency=low
* new upstream release:
- log the first 10 search results in debug mode to make debugging
easier (patch by Matthijs Kooijman)
- provide more detailed logging information for LDAP errors, this
should especially help for TLS related problems (based on a patch by
Mel Flynn)
- fix logging of invalid pam_authz_search value (LP: #951343)
- when doing DNS queries for SRV records recognise default ldap and
ldaps ports (closes: #661955)
- make whether or not to do case-sensitive filtering configurable
(patch by Matthew L. Dailey)
- document the fact that each thread opens it's own connection (patch
by Chris Hiestand)
- some small portability improvements
- try to prevent some of the Broken pipe messages in nslcd
- increase buffer used for pam_authz_search as suggested by Chris J Arges
* update the X-Start-Before header in the init script to ensure that nslcd
is started before the display managers
* update debhelper dependency and remove lintian override
* mark nslcd as multi-arch foreign to allow it to satisfy dependencies
on any arch
* drop no-symbols-control-file lintian override which is no longer needed
* upgrade to standards-version 3.9.3 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Sun, 22 Apr 2012 22:00:00 +0200
nss-pam-ldapd (0.8.6-1) unstable; urgency=low
* new upstream release:
- a number of code improvements by Jakub Hrozek
* switch to non-native packaging
- add debian/watch file
- update Vcs-Svn and Vcs-Browser control fields
* updated Norwegian Bokmål debconf translation by Bjørn Steensrud
(closes: #654273)
* updated Simplified Chinese debconf translation by zym (closes: #654679)
* automatically comment out mapping of uniqueMember to member on upgrades
because member is default now
* debian/copyright: copyright year updates
-- Arthur de Jong <adejong@debian.org> Sun, 29 Jan 2012 17:35:00 +0100
nss-pam-ldapd (0.8.5) unstable; urgency=low
* support larger gecos values (closes: #640781)
* updated Swedish debconf translation by Martin Bagge (closes: #640623)
* consistently handle whitespace in configuration file during package
configuration (thanks Nick) (closes: #641619)
* add a versioned dependency on libpam0g to ensure the PAM libraries are
multiarch-aware
* in debconf, treat the "hard" value for tls_reqcert as if it was "demand"
(closes: #642347)
* reduce loglevel of user not found messages to avoid spamming the logs
with useless information (thanks Wakko Warner) (closes: #641820)
* other logging improvements
* keep nslcd running during package upgrades (closes: #644892)
* explicitly parse numbers as base 10 (thanks Jakub Hrozek)
* implement FreeBSD group membership NSS function (thanks Tom Judge)
* fix an issue where changes in /etc/nsswitch.conf were not correctly
picked up and could lead to lookups being disabled on upgrade
(closes: #645599)
* fix an issue with detecting the uid of the calling process and log
denied shadow requests in debug mode
* fix a typo in the disconnect logic code (thanks Martin Poole)
* enable hardening options during build
* implement configuration file handling in pynslcd and other pynslcd
improvements (pynslcd is not in a Debian package yet)
* update debian/copyright
-- Arthur de Jong <adejong@debian.org> Sat, 31 Dec 2011 13:30:00 +0100
nss-pam-ldapd (0.8.4) unstable; urgency=low
* Upload to unstable
* switch to using the member attribute by default instead of
uniqueMember (backwards incompatible change)
* only return "x" as a password hash when the object has the shadowAccount
objectClass and nsswitch.conf is configured to do shadow lookups using
LDAP (this avoids some problems with pam_unix)
* fix problem with partial attribute name matches in DN (thanks Timothy
White)
* fix a problem with objectSid mappings with recent versions of OpenLDAP
(patch by Wesley Mason)
* set the socket timeout in a connection callback to avoid timeout
issues during the SSL handshake (patch by Stefan Völkel)
* check for unknown variables in pam_authz_search
* only check password expiration when authenticating, only check account
expiration when doing authorisation
* make buffer sizes consistent and grow all buffers holding string
representations of numbers to be able to hold 64-bit numbers
* update AX_PTHREAD from autoconf-archive
* support querying DNS SRV records from a different domain than the current
one (based on a patch by James M. Leddy)
* fix a problem with uninitialised memory while parsing the tls_ciphers
option (closes: #638872) (but doesn't work yet due to #640384)
* implement bounds checking of numeric values read from LDAP (patch by
Jakub Hrozek)
* correctly support large uid and gid values from LDAP (patch by Jakub
Hrozek)
* improvements to the configure script (patch by Jakub Hrozek)
* switch to dh for debian/rules and bump debhelper compatibility to 8
* build Debian packages with multiarch support
* ship shlibs (but still no symbol files) for libnss-ldapd since that was
the easiest way to support multiarch
* fix output in init script when restarting nslcd (closes: #637132)
* correctly handle leading and trailing spaces in preseeded debconf uri
option (patch by Andreas B. Mundt) (closes: #637863)
* support spaces around database names in /etc/nsswitch.conf while
configuring package (closes: #640185)
* updated Russian debconf translation by Yuri Kozlov (closes: #637751)
* updated French debconf translation by Christian Perrier (closes: #637756)
* added Slovak debconf translation by Slavko (closes: #637759)
* updated Danish debconf translation by Joe Hansen (closes: #637763)
* updated Brazilian Portuguese debconf translation by Denis Doria
* updated Portuguese debconf translation by Américo Monteiro
* updated Japanese debconf translation by Kenshi Muto (closes: #638195)
* updated Czech debconf translation by Miroslav Kure (closes: #639026)
* updated German debconf translation by Chris Leick (closes: #639107)
* updated Spanish debconf translation by Francisco Javier Cuadrado
(closes: #639236)
* updated Dutch debconf translation by Arthur de Jong with help from Paul
Gevers and Jeroen Schot
-- Arthur de Jong <adejong@debian.org> Sun, 04 Sep 2011 21:00:00 +0200
nss-pam-ldapd (0.8.3) experimental; urgency=low
* support using the objectSid attribute to provide numeric user and group
ids, based on a patch by Wesley Mason
* check shadow account and password expiry properties (similarly to what
pam_unix does) in the PAM handling code
* implement attribute mapping functionality in pynslcd
* relax default for validnames option to allow user names of only two
characters (closes: #620235)
* make user and group name validation errors a little more informative
* small portability improvements
* general code improvements and refactoring in pynslcd
* some simplifications in the protocol between the PAM module and nslcd
(without actual protocol changes so far)
* fix debconf LDAP search base suggestion when domain has more than two
parts (patch by Per Carlson) (closes: #626571)
* search for LDAP server by looking for SRV _ldap._tcp DNS records and
try to query LDAP server for base DN during package configuration
(based on work by Petter Reinholdtsen for the sssd package)
* upgrade to standards-version 3.9.2 (no changes needed)
-- Arthur de Jong <adejong@debian.org> Fri, 13 May 2011 15:00:00 +0200
nss-pam-ldapd (0.8.2) experimental; urgency=low
* fix problem with endless loop on incorrect password
* fix definition of HOST_NAME_MAX (closes: #618795) and fall back to
_POSIX_HOST_NAME_MAX
* ignore password change requests for users not in LDAP (closes: #617452)
* many clean-ups to the tests and added some new tests including some
integration tests for the PAM functionality
* some smaller code clean-ups and improvements
* improvements to pynslcd, including implementations for service, protocol
and rpc lookups
* implement a validnames option that can be used to filter valid user and
group names using a regular expression
* integrate patch by Daniel Dehennin to not loose debconf values of
previously set options with dpkg-reconfigure (closes: #610117)
* improvements to the way nslcd shuts down with hanging worker threads
-- Arthur de Jong <adejong@debian.org> Sat, 26 Mar 2011 19:00:00 +0100
nss-pam-ldapd (0.8.1) experimental; urgency=low
* SECURITY FIX: the PAM module will allow authentication for users that do
not exist in LDAP, this allows login to local users with an
incorrect password (CVE-2011-0438)
the exploitability of the problem depends on the details of
the PAM stack and the use of the minimum_uid PAM option
* add FreeBSD support, partially imported from the FreeBSD port (thanks to
Jacques Vidrine, Artem Kazakov and Alexander V. Chernikov)
* document how to replace name pam_check_service_attr and
pam_check_host_attr options in PADL's pam_ldap with with pam_authz_search
in nss-pam-ldapd (closes: #610925)
* implement a fqdn variable that can be used in pam_authz_search filters
* create the directory to hold the socket and pidfile on startup
* implement host, network and netgroup support in pynslcd
-- Arthur de Jong <adejong@debian.org> Thu, 10 Mar 2011 22:00:00 +0100
nss-pam-ldapd (0.8.0) experimental; urgency=low
* include Solaris support developed by Ted C. Cheng of Symas Corporation
* include an experimental partial implementation of nslcd in Python
(disabled by default, see --enable-pynslcd configure option)
* implement a nss_min_uid option to filter user entries returned by LDAP
* implement a rootpwmodpw option that allows the root user to change a
user's password without a password prompt
* try to update the shadowLastChange attribute on password change
* all log messages now include a description of the request to more easily
track problems when not running in debug mode
* allow attribute mapping expressions for the userPassword attribute for
passwd, group and shadow entries and by default map it to the unmatchable
password ("*") to avoid accidentally leaking password information
* numerous compatibility improvements
* add --with-pam-seclib-dir and --with-pam-ldap-soname configure options to
allow more control of hot to install the PAM module
* add --with-nss-flavour and --with-nss-maps configure options to support
other C libraries and limit which NSS modules to install
* allow tilde (~) in user and group names (closes: #607640)
* improvements to the timeout mechanism (connections are now actively timed
out using the idle_timelimit option)
* set socket timeouts on the LDAP connection to disconnect regardless of
LDAP and possibly TLS handling of connection
* better disconnect/reconnect handling of error conditions
* some code improvements and cleanups and several smaller bug fixes
* all internal string comparisons are now also case sensitive (e.g. for
providing DN to username lookups, etc)
* signal handling in the daemon was changed to behave more reliable across
different threading implementations
* nslcd will now always return a positive authorisation result during
authentication to avoid confusing the PAM module when it is only used for
authorisation (closes: #604147)
* implement configuring SASL authentication using Debconf, based on a patch
by Daniel Dehennin (closes: #586532) (not called for translations yet
because the English text is likely to change)
-- Arthur de Jong <adejong@debian.org> Thu, 30 Dec 2010 20:00:00 +0100
nss-pam-ldapd (0.7.13) unstable; urgency=low
* fix handling of idle_timelimit option
* fix error code for problem while doing password modification
-- Arthur de Jong <adejong@debian.org> Sat, 11 Dec 2010 22:00:00 +0100
nss-pam-ldapd (0.7.12) unstable; urgency=low
* set a short socket timeout when shutting down the connection to the LDAP
server to avoid disconnect problems when using TLS
(addresses part of #596983)
-- Arthur de Jong <adejong@debian.org> Fri, 29 Oct 2010 18:00:00 +0200
nss-pam-ldapd (0.7.11) unstable; urgency=low
* updated Vietnamese debconf translation by Clytie Siddall (closes: #598500)
* grow the buffer for the PAM ruser to not reject logins for users with
a ruser including a domain part (closes: #600065)
-- Arthur de Jong <adejong@debian.org> Fri, 15 Oct 2010 15:30:00 +0200
nss-pam-ldapd (0.7.10) unstable; urgency=low
* handle errors from ldap_result() better and disconnect (and reconnect)
in more cases (closes: #596983)
-- Arthur de Jong <adejong@debian.org> Fri, 24 Sep 2010 09:00:00 +0200
nss-pam-ldapd (0.7.9) unstable; urgency=low
* fix for --with-nss-ldap-soname configure option by Julien Cristau
* fix double "be" in English template thanks to Christian Perrier
(closes: #593646)
* updated Czech debconf translation by Miroslav Kure (closes: #593510)
* updated Simplified Chinese debconf translation by zym
* updated Italian debconf translation by Vincenzo Campanella
* updated Japanese debconf translation by Kenshi Muto (closes: #593692)
* updated Danish debconf translation by Joe Hansen (closes: #594205)
* updated French debconf translation by Christian Perrier (closes: #594311)
* updated German debconf translation by Chris Leick (closes: #594456)
* updated Catalan debconf translation by Agusti Grau
* updated Swedish debconf translation by Martin Ågren (closes: #594679)
* updated Spanish debconf translation by Francisco Javier Cuadrado
(closes: #594723)
-- Arthur de Jong <adejong@debian.org> Sat, 28 Aug 2010 20:45:00 +0200
nss-pam-ldapd (0.7.8) unstable; urgency=low
* minor portability improvements and clean-ups (thanks Alexander V.
Chernikov and Ted C. Cheng)
* don't expand variables in rest of ${var:-rest} and ${var:+rest}
expressions if it is not needed (closes: #592320)
* libpam-ldapd.postinst: offer to add ldap to shadow in nsswitch.conf if
a potential broken configuration is found (closes: #592104)
(thanks to Justin B Rye for the template review)
* merge the suggests of libnss-ldapd and libpam-ldapd into those of the
nslcd package to have a single consistent list of PAM alternatives
(closes: #591773)
* add libpam-sss as an alternative to libpam-ldapd (closes: #591773)
* upgrade to standards-version 3.9.1 (no changes needed)
* updated Portuguese debconf translation by Américo Monteir
(closes: #593404)
* updated Russian debconf translation by Yuri Kozlov (closes: #593491)
* added Norwegian Bokmål debconf translation by Bjørn Steensrud
(closes: #593501)
-- Arthur de Jong <adejong@debian.org> Wed, 18 Aug 2010 21:00:00 +0200
nss-pam-ldapd (0.7.7) unstable; urgency=low
* don't use use_authtok for password modification by default
* fine-tune pam-auth-update configuration after discussion with Steve
Langasek (see: #583492)
Note that this currently requires that shadow information is also provided
by LDAP (in /etc/nsswitch.conf).
* ensure that nslcd is started after hostname lookups are available so
getting to the LDAP server via DNS will work (patch by Petter
Reinholdtsen) (closes: #585968)
* start k5start from the init script to keep the Kerberos ticket active if
nslcd is configured for SASL GSSAPI Kerberos authentication, based on a
patch by Daniel Dehennin (closes: #585639)
* upgrade to standards-version 3.9.0 (switch to Breaks/Replaces instead of
Conflicts)
* refactoring and simplification of PAM module which also improves logging
* implement a nullok PAM option and disable empty passwords by default
* portability improvements and other minor code improvements
* the mechanism to disable name lookups through LDAP from within the nslcd
process has been improved
* the undocumented use_sasl option has been removed (specifying sasl_mech
now implies use_sasl)
* the sasl_mech, sasl_realm, sasl_authcid, sasl_authzid and sasl_secprops
configuration options are now documented
-- Arthur de Jong <adejong@debian.org> Sat, 03 Jul 2010 17:00:00 +0200
nss-pam-ldapd (0.7.6) unstable; urgency=low
* include libpam-heimdal in libnss-ldapd recommends list of PAM
implementations (closes: #582407)
* fix a problem with empty attributes if expression-based attribute
mapping is used (patch by Nalin Dahyabhai)
* make debug logging for pam_authz_search option a little more informative
* documentation improvements
* update pam-auth-update configuration to always perform LDAP autorisation
for LDAP users
-- Arthur de Jong <adejong@debian.org> Thu, 27 May 2010 21:00:00 +0200
nss-pam-ldapd (0.7.5) unstable; urgency=low
* fix a problem in the session handling of the PAM module if the minimum_uid
option was used (Debian package default)
* refactor the PAM module code to be simpler and better maintainable
* perform logging from PAM module to syslog and support the debug option to
log more information
* Switch to "3.0 (native)" format.
-- Arthur de Jong <adejong@debian.org> Thu, 13 May 2010 20:17:39 +0200
nss-pam-ldapd (0.7.4) unstable; urgency=low
* fix a buffer overflow that should have no security consequences
* perform proper fail-over when authenticating in the PAM module
(closes: #577593)
* add an nss_initgroups_ignoreusers option to ignore user name to group
lookups for the specified users
* add an pam_authz_search option to perform a flexible authorisation check
on login (e.g. to restrict which users can login to which hosts, etc)
* implement a minimum_uid option for the PAM module to ignore users that
have a lower numeric user id and make 1000 the default value for Debian
(closes: #579574)
* change the way retries are done to error out quicker if the LDAP server
is down for some time (this should make the system more responsive when
the LDAP server is unavailable) and rename the reconnect_maxsleeptime
option to reconnect_retrytime to better describe the behaviour
* only log "connected to LDAP server" if the previous connection failed
(closes: #483795)
* documentation improvements
* debian/nslcd.config: also parse /etc/ldap.conf for systems that put NSS
and PAM configuration there
-- Arthur de Jong <adejong@debian.org> Sat, 08 May 2010 12:00:00 +0200
nss-pam-ldapd (0.7.3) unstable; urgency=low
* allow password modification by root using the rootpwmoddn configuration
file option (the user will be prompted for the password for rootpwmoddn
instead of the user's password)
* the LDAP password modify EXOP is first tried without the old password and
if that fails retried with the old password
* when determining the domain name (used for some value of the base and uri
options) also try to use the hostname aliases to build the domain name
(patch by Jan Schampera)
* perform locking on the pidfile on start-up to ensure that only one nslcd
process is running and implement a --check option (patch by Jan Schampera)
* documentation improvements
* upgrade to standards-version 3.8.4 (no changes needed)
* start nslcd before apache for systems that use LDAP users to run virtual
hosts (closes: #565971)
-- Arthur de Jong <adejong@debian.org> Sat, 27 Feb 2010 16:00:00 +0100
nss-pam-ldapd (0.7.2) unstable; urgency=low
* some attributes may be mapped to a shell-like expression that expand
attributes from LDAP entries; this allows attributes overrides, defaults
and much more (as a result the passwd cn attribute mapping has been
removed because the gecos mapping is now "${gecos:-$cn}" by default)
* update the NSS module to follow the change in Glibc where the addr
parameter of getnetbyaddr_r() was changed from network-byte-order to
host-byte-order
* properly escape searches for uniqueMember attributes for DN with a comma
in an attribute value
* miscellaneous improvements to the configure script implementing better
(and simpler) library detection
* some general refactoring and other miscellaneous improvements
* make configure check if we need to explicitly link to -llber
(closes: #555779)
* libnss-ldapd: recommend libpam-krb5 as an alternative to libpam-ldapd for
Kerberos environments
* updated Italian debconf translation by Vincenzo Campanella
(closes: #556107)
* fix nslcd postrm to remove old config file (thanks piuparts)
-- Arthur de Jong <adejong@debian.org> Mon, 28 Dec 2009 13:30:00 +0100
nss-pam-ldapd (0.7.1) unstable; urgency=low
* implement password changing by performing an LDAP password modify EXOP
request (closes: #550836)
* fix return of authorisation check in PAM module (patch by Howard Chu)
* fix "Use StartTLS?" debconf question when no ssl option is defined in the
config
* fix for problem when authenticating to LDAP entries without a uid
attribute in the DN
* general code clean-up and portability improvements and include all
needed header files (closes: #547206)
* provide more information with communication error messages
* updated German debconf translation by Erik Schanze (closes: #546244)
* updated Vietnamese debconf translation by Clytie Siddall (closes: #548037)
-- Arthur de Jong <adejong@debian.org> Tue, 20 Oct 2009 12:00:00 +0200
nss-pam-ldapd (0.7.0) unstable; urgency=low
* rename software to nss-pam-ldapd to indicate that PAM module is now a
standard part of the software
* split into the binary packages libnss-ldapd, libpam-ldapd and nslcd
(libpam-ldapd packaging used a patch for libpam-ldap by Steve Langasek)
(closes: #535505)
* the configuration file name has been changed to /etc/nslcd.conf (package
upgrade should migrate the configuration)
* updated Galician debconf translation by Marce Villarino (closes: #537424)
* patch by Petter Reinholdtsen to fix init script to start before autofs
(closes: #544093)
* the default values for bind_timelimit and reconnect_maxsleeptime were
lowered from 30 to 10 seconds (closes: #532874)
* upgrade to standards-version 3.8.3 (no changes needed)
* password hashes are no longer returned to non-root users (based on a patch
by Alexander V. Chernikov)
-- Arthur de Jong <adejong@debian.org> Tue, 01 Sep 2009 17:00:00 +0200
nss-ldapd (0.6.11) unstable; urgency=low
* fix user name to groups mapping (a bug in buffer checking in initgroups()
that was introduced in 0.6.9)
* fix a possible buffer overflow with too many uidNumber or gidNumber
attributes (thanks to David Binderman for finding this)
* lookups for group, netgroup, passwd, protocols, rpc, services and shadow
maps are now case-sensitive
* test suite is now minimally documented
* added --disable-sasl and --disable-kerberos configure options
* changed references to home page and contact email addresses to use
arthurdejong.org
* upgrade to standards-version 3.8.2 (no changes needed)
* make configuring SSL/TLS possible with debconf (closes: #529985)
* updated Finnish debconf translation by Esko Arajärvi (closes: #534343)
* updated Japanese debconf translation by Kenshi Muto (closes: #534399)
* updated Russian debconf translation by Yuri Kozlov (closes: #534780)
* updated Swedish debconf translation by Martin Ågren (closes: #534869)
* updated Spanish debconf translation by Francisco Javier Cuadrado
(closes: #535438)
* updated Portuguese debconf translation by Américo Monteiro
(closes: #535641)
* updated Czech debconf translation by Miroslav Kure (closes: #535678)
* updated French debconf translation by Christian Perrier (closes: #536717)
-- Arthur de Jong <adejong@debian.org> Sun, 12 Jul 2009 22:30:00 +0200
nss-ldapd (0.6.10) unstable; urgency=low
* implement searching through multiple search bases, based on a patch by
Leigh Wedding
* fix a segmentation fault that could occur when using any of the tls_*
options with a string parameter (closes: #531113)
* miscellaneous improvements to the experimental PAM module
* implement PAM authentication function in the nslcd daemon
* the code for reading and writing protocol entries between the NSS module
and the daemon was improved
* documentation updates
* removed SSL/TLS related warnings during startup
* added Finnish debconf translation by Esko Arajärvi (closes: #530284)
* added Richard A Nelson (Rick) <cowboy@debian.org> to uploaders
-- Arthur de Jong <adejong@debian.org> Wed, 03 Jun 2009 15:00:00 +0200
nss-ldapd (0.6.9) unstable; urgency=low
* produce more detailed logging in debug mode and allow multiple -d options
to be specified to also include logging from the LDAP library
* some LDAP configuration options are now initialized globally instead of
per connection which should fix problems with the tls_reqcert option
(closes: #521617)
* documentation improvements for the NSLCD protocol used between the NSS
module and the nslcd server
* imported the new PAM module from the OpenLDAP nssov tree by Howard Chu
(note that the PAM-related NSLCD protocol is not yet finalised and this
module is not built by default)
* in configure script allow disabling of building certain components
* fix a problem with writing alternate service names and add checks for
validity of passed buffer in NSS module (closes: #527246)
* ask the user whether LDAP should be removed from /etc/nsswitch.conf at
package removal time (closes: #523483)
* remove /var/run/nslcd on package removal
* updated Danish debconf translation by Jonas Smedegaard (closes: #525075)
* updated Japanese debconf translation by Kenshi Muto (closes: #525085)
* updated Portugese debconf translation by Américo Monteiro
(closes: #525530)
* added Italian debconf translation by Vincenzo Campanella (closes: #525784)
* updated French debconf translation by Guillaume Delacour (closes: #526638)
* updated Swedish debconf translation by Martin Ågren (closes: #526757)
* updated Russian debconf translation by Yuri Kozlov (closes: #527102)
* updated Spanish debconf translation by Francisco Javier Cuadrado
(closes: #527242)
* added Galician debconf translation by Marce Villarino (closes: #527327)
-- Arthur de Jong <adejong@debian.org> Sat, 09 May 2009 22:00:00 +0200
nss-ldapd (0.6.8) unstable; urgency=high
* SECURITY FIX: the nss-ldapd.conf file that is installed was created
world-readable which could cause problems if the bindpw
option is used (CVE-2009-1073)
this has been fixed and warnings have been added to the
manual page and sample nss-ldapd.conf (closes: #520476)
* clean the environment and set LDAPNOINIT to disable parsing of LDAP
configuration files (.ldaprc, /etc/ldap/ldap.conf, etc)
* remove sslpath option because it wasn't used
* correctly set SSL/TLS options when using StartTLS
* rename the tls_checkpeer option to tls_reqcert, deprecating the old name
and supporting all values that OpenLDAP supports
* allow backslashes in user and group names execpt as first or last
character
* check user and group names against LOGIN_NAME_MAX if it is defined
* fix for getpeercred() on Solaris by David Bartley
* debian/control: change section to admin to follow change in override file
* add lintian override for missing shlibs and symbols control files (we are
a shared library that should not be directly linked to)
* upgrade to standards-version 3.8.1 (no changes needed)
* upgrade to debhelper compatibility level 7
-- Arthur de Jong <adejong@debian.org> Sat, 22 Mar 2009 22:00:00 +0100
nss-ldapd (0.6.7) unstable; urgency=low
* a fix for a problem in debconf configuration that would ignore user input
and use automatically detected values instead (closes: #505384)
-- Arthur de Jong <adejong@debian.org> Fri, 14 Nov 2008 16:30:00 +0100
nss-ldapd (0.6.6) unstable; urgency=low
* clarify relationship to nss_ldap in package description (closes: #499892)
* fix test for nscd init script in postinst (closes: #504142)
* allow spaces in user and group names (closes: #488635)
* if ldap_set_option() fails log the option name instead of number
* retry connecting to LDAP server in more cases
-- Arthur de Jong <adejong@debian.org> Tue, 04 Nov 2008 22:30:00 +0100
nss-ldapd (0.6.5) unstable; urgency=low
* updated Swedish debconf translation by Martin Ågren (closes: #492910)
* updated Danish debconf translation by Jonas Smedegaard (closes: #493973)
-- Arthur de Jong <adejong@debian.org> Fri, 22 Aug 2008 11:00:00 +0200
nss-ldapd (0.6.4) unstable; urgency=medium
* set urgency medium in an attempt to get in before the freeze
(not much code changes)
* fix for the tls_checkpeer option
* fix incorrect test for ssl option in combination with ldaps:// URIs
* improvements to Active Directory sample configuration
* implement looking up search base in rootDSE of LDAP server
(closes: #489361)
-- Arthur de Jong <adejong@debian.org> Sun, 20 Jul 2008 10:30:00 +0200
nss-ldapd (0.6.3) unstable; urgency=low
* retry connection and search if getting results failed with connection
problems (some errors only occur when getting the results, not when
starting the search) (closes: #474178, #484798)
* add support for groups with up to around 150000 members (assuming user
names on average are a little under 10 characters)
(closes: #481077, #479552)
* problem with possible SIGPIPE race condition was fixed by using send()
instead of write()
* add uid and gid configuration keywords that set the user and group of the
nslcd daemon
* run nslcd as user nslcd and group nslcd by default (note that this can
affect access to SSL/TLS and/or SASL files)
* add some documentation on supported group to member mappings
* add sanity checking to code for when clock moves backward
(closes: #480197)
* log messages now include a session id that makes it easier to track errors
to requests (especially useful in debugging mode)
* miscellaneous portability improvements
* increase buffers and timeouts to handle large lookups more gracefully
(further addresses #474174)
* implement SASL authentication based on a patch by Dan White
* allow more characters in user and group names
* upgrade to standards-version 3.8.0 (no changes needed)
* removed lintian override (seems to be no longer necessary)
-- Arthur de Jong <adejong@debian.org> Sun, 15 Jun 2008 15:00:00 +0200
nss-ldapd (0.6.2) unstable; urgency=low
* all user and group names are now checked for validity are specified in the
POSIX Portable Filename Character Set
* support retrieval of ranged attribute values as sometimes returned by
Active Directory (closes: #476454)
* added the threads keyword to configure the number of threads that should
be started in nslcd
* handle empty netgroups properly (closes: #478764)
* change the time out and retry mechanism for connecting to the LDAP server
to return an error quickly if the LDAP server is known to be unavailable
for a long time (this removed the reconnect_tries option and changes the
meaning of the reconnect_sleeptime and reconnect_maxsleeptime options)
(closes: #474174)
* increased the time out values between the NSS module and nslcd because of
new retry mechanism
* implement new dict and set modules that use a hashtable to map keys
efficiently
* use the new set to store group membership to simplify memory management
and eliminate duplicate members (closes: #474218)
* the uniqueMember attribute now only supports DN values
* implement a cache for DN to user name lookups (15 minute timeout) used for
the uniqueMember attribute to save on doing LDAP searches for groups with
a lot of members, based on a patch by Petter Reinholdtsen
(closes: #478267)
* only guess default search base in package configuration if the value
doesn't seem to be preseeded (closes: #475830)
* improvements to the tests
* if any of the ldap calls return LDAP_UNAVAILABLE or LDAP_SERVER_DOWN the
connection is closed
* improve dependencies in LSB init script header to improve dependency based
booting (closes: #478807)
-- Arthur de Jong <adejong@debian.org> Sun, 04 May 2008 14:30:00 +0200
nss-ldapd (0.6.1) unstable; urgency=low
* new release (closes: #474232)
* numerous small fixes and compatibility improvements
* the I/O buffers between nslcd and NSS module are now dynamically sized and
tuned for common requests
* correctly follow referrals
* add StartTLS support by Ralf Haferkamp of SuSE
* miscellaneous documentation improvements
* remove code for handling rootbinddn/pw because it is unlikely to be
supported any time soon
* fix a problem with realloc()ed memory that was not referenced
(closes: #472814)
* fix for a crash in group membership buffer growing code thanks to Petter
Reinholdtsen
* some improvements to the Active Directory sample configuration
* remove warning for failing to retrieve objectClass (closes: #472872)
* fix init script exit code with stop while not running (closes: #473920)
* fixes to the _nss_ldap_initgroups_dyn() function to properly handle the
buffer and limits passed by Glibc
* fixes to the member to groups search functions to correctly handle
uniqueMember attributes
* only return shadow entries to root users
* make maintainer scripts more gracefully handle repeated options
(closes: #471131)
* fix a problem with rootbinddn being incorrectly copied from
/etc/libnss-ldap.conf on installation (closes: #471146)
* fix handling of spaces in values when using debconf (closes: #474371)
* updated Spanish debconf translation by Rudy Godoy Guillén
(closes: #463894)
* updated Dutch debconf translation by Bart Cornelis (closes: #469176)
-- Arthur de Jong <adejong@debian.org> Sun, 06 Apr 2008 13:00:00 +0200
nss-ldapd (0.6) unstable; urgency=low
* fix parsing of map option in nss-ldapd.conf
* fix bug in handling of userPassword values
* remove warning about missing loginShell attribute
* support the uniqueMember LDAP attribute that holds DN values
* support ldap as a compat service in /etc/nsswitch.conf
* implement _nss_ldap_initgroups_dyn() to allow username->groups searches
* fix retry mechanism with get*ent() functions where a too small buffer was
passed by libc (to support groups with a lot of members) (closes: #457936)
* fix a bug in reporting of communications problems between nslcd and the
NSS library
* test and log failures of all LDAP library calls
* improved tests
* miscellaneous compatibility improvements to try to support more LDAP
libraries and platforms
* support compilation with OpenLDAP 2.4 and newer
* define LDAP_DEPRECATED for now to have definitions for deprecated
functions (closes: #463421)
* some configure script improvements
* updated German debconf translation by Erik Schanze (closes: #462841)
* install the NSS library under /lib instead of /usr/lib to make it easier
to umount /usr if it's on a separate file system (closes: #439355)
* don't ship a shlibs file any more because we're not providing a normal
shared library
-- Arthur de Jong <adejong@debian.org> Sun, 03 Feb 2008 22:00:00 +0100
nss-ldapd (0.5) unstable; urgency=low
* major structural changes in the LDAP lookup code using a newly implemented
module that does memory management, session handling, paging and all other
painful things with a simple interface
* rewritten LDAP query and result handling code, now generating warnings
about incorrect entries in the LDAP directory
* IPv6 addresses in host lookups are now supported
* added Kerberos ccname support (with the krb5_ccname option) thanks to
Andreas Schneider and Ralf Haferkamp from SuSE and remove
--with-gssapi-dir, --enable-configurable-krb5-ccname-gssapi and
--enable-configurable-krb5-ccname-env configure options and having
automatic detection instead
* added support for DNS SRV record lookups by specifying DNS as uri thanks
to Ralf Haferkamp and Michael Calmer from SuSE
* added support for DOMAIN as base DN which uses the host's domain to
construct a DN
* removed nss_connect_policy, bind_policy and sizelimit options
* cleaned up and documented reconnect logic with reconnect_tries,
reconnect_sleeptime and reconnect_maxsleeptime options
* configuration values with spaces in them (e.g. distinguished names) are
now handled properly
* fix a small memory leak in the I/O module
* miscellaneous code improvements (better source code comments, more
consistent logging, portability improvements, more tests, etc)
* improvements to documentation
-- Arthur de Jong <adejong@debian.org> Wed, 27 Dec 2007 11:00:00 +0100
nss-ldapd (0.4.1) unstable; urgency=low
* updated French debconf translation by Cyril Brulebois (closes: #433248)
* updated Japanese debconf translation by Kenshi Muto (closes: #446580)
* remove S runlevel from Default-Stop in init script (closes: #447949)
* fix a problem with network name lookups where the lookup would result
in the wrong call to nslcd
* fix wrong default filter for rpc lookups
* fix a number of memory leaks (thanks valgrind) (closes: #447997)
(all memory leaks during normal operation should be fixed now)
-- Arthur de Jong <adejong@debian.org> Thu, 26 Oct 2007 10:00:00 +0200
nss-ldapd (0.4) unstable; urgency=low
* remove nss_schema configfile option
* temporary remove support for uniqueMember group membership attributes
(will be re-added in a later release)
* removed support for nested groups, if this is really needed (please ask or
file a bug if you want it) it can be re-added later on
* added missing docbook sources for manual pages to tarball (closes: #442688)
* major cleanups and simplifications in the core LDAP query code (we don't
need to worry about SIGPIPE because nslcd does that globally, locking
because a connection is only used by one thread) and more simplifications
in the the LDAP connection and query state
* get base, scope, filter and map configfile directives properly working
* simplifications in LDAP reconnect logic (some work remains to be done in
this area)
* issue warnings or errors for untested or unsupported configuration options
* properly handle multiple URIs in Debian configuration
* documentation improvements
-- Arthur de Jong <adejong@debian.org> Fri, 05 Oct 2007 22:00:00 +0200
nss-ldapd (0.3) unstable; urgency=low
* added XS-Vcs-Svn and XS-Vcs-Browser as specified in #391023
* improved manual pages and use docbook2x-man for generating them
* a bug in the communication buffer handling code was fixed
* a bug in the dictionary code was fixed (code not yet in use)
* a fix for the init script that used a wrong pidfile
* configuration file handling code was rewritten to better maintainable
* some configuration file options have changed which means that
compatibility with the nss_ldap configuration file is lost
* configuration syntax is now documented in the nss-ldapd.conf(5) manual
page
* support for dnsconfig was removed
* the configuration file no longer supports using multiple search bases
* removed nss_initgroups and nss_initgroups_ignoreusers options
* removed --enable-paged-results configure option and use pagesize
configuration file option to specify usage of paging at runtime
* added Portuguese debconf translation by Américo Monteiro
(closes: #433039)
* Debian package configuration improvements and simplifications
* use docbook2x-man for generating manual pages
* miscellaneous documentation improvements including improved manual pages
* general code reorganisation and clean-ups to achieve another 9% code
reduction relative to 0.2.1 release (more than 40% relative to nss_ldap)
* SASL, Kerberos and SSL/TLS support remain untested
-- Arthur de Jong <adejong@debian.org> Sun, 26 Aug 2007 19:00:00 +0200
nss-ldapd (0.2.1) unstable; urgency=low
* fix permissions of server socket (this fixes a problem where non-root
users were unable to do lookups)
* fix configure script to properly check for pthread support
* small code improvements
* general build system cleanups
* add more information to debian/copyright
-- Arthur de Jong <adejong@debian.org> Sun, 17 Jun 2007 18:30:00 +0200
nss-ldapd (0.2) unstable; urgency=low
* fixes to the netgroup lookup code
* more simplifications and improvements in the code almost 5% code reduction
(compared to release 0.1) and 37% reduction in gcc warnings (from 443 in
251 to 389 in 0.1 and 244 in 0.2)
* a lot of code improvements thanks to flawfinder, more gcc warnings, splint
and rats
* license change from GNU Library General Public License to GNU Lesser
General Public License (with the permission of Luke Howard)
* fix logging code to be cleaner and always use our own logging module
* a start has been made to make the code more testable and initial work to
set up a testing framework
* implemented a timeout mechanism in the communication between the NSS part
and the nslcd server part
* install NSS library files in /usr/lib instead of /lib (they won't work
without /usr anyway)
* fixed debian/copyright file to include information on all files
-- Arthur de Jong <adejong@debian.org> Sun, 10 Jun 2007 01:27:52 +0200
nss-ldapd (0.1) unstable; urgency=low
* initial release of nss-ldapd (should be functional but not yet stable
enough for production use)
* fork from the nss_ldap which was originally written by Luke Howard of PADL
Software Pty Ltd. changing package name to nss-ldapd and changing
versioning schema
* the functionality was split into a thin NSS library and a simple daemon
proxying the requests to the LDAP server (see README for rationale)
* a lot of dead and old compatibility code was removed (about 25% of the
code was removed) (more simplifications to come)
* the test code was rewritten
* build script simplifications
* default configuration file has been changed to /etc/nss-ldapd.conf
* most documentation has been updated and rewritten
* improved Debian packaging configuration with auto-detection of proper
default settings
* switched to native package (no deviation from "upstream")
-- Arthur de Jong <adejong@debian.org> Fri, 22 Dec 2006 23:00:00 +0100
libnss-ldap (251-5.2) unstable; urgency=high
* Non-maintainer upload.
* When doing substitutions in libnss-ldap.conf, pass the values to the Perl
program as environment variables instead of directly to the program;
should eliminate the problems with having to escape them.
(Closes: #376684, #386141)
* Change the init script policy. Instead of stopping libnss-ldap.init on
clean shutdown (touching a file) and starting it after networking (rm-ing
it), we touch the file in /lib/init/rw as soon as possible (right before
udev is started, touching a file) and stop it after initial system bootup.
This fixes both issues with /var being on a separate partition, and
unclean shutdown where the file would not be created. (To make sure we
don't get similar problems during shutdown, we create it in runlevels 0
and 6 as before, but we don't assume it's still there when we boot, since
it's on a tmpfs now.) (Closes: #375077)
* Block SIGPIPE in do_atfork_child(), as some versions of libldap2 in some
circumstances (notably with TLS enabled) write data onto our dummy socket
during close, which raises a SIGPIPE that should not be delivered on to the
application. (Closes: #376426, #388574)
-- Steinar H. Gunderson <sesse@debian.org> Fri, 29 Sep 2006 12:29:33 +0200
libnss-ldap (251-5.1) unstable; urgency=low
* Fixed regexp in postinstall script as described by
Peter Buecker in the BTS (closes: #377895)
-- Mathias Weyland <mathias@weyland.ch> Sat, 9 Sep 2006 18:28:54 +0200
libnss-ldap (251-5) unstable; urgency=low
* Handle case when /var/lib is not yet available
(ie: very early in the boot process)
-- Stephen Frost <sfrost@debian.org> Mon, 26 Jun 2006 14:53:29 -0400
libnss-ldap (251-4) unstable; urgency=low
* Added system which implicitly sets bind_policy to 'soft'
during system boot/shutdown. This is implemented by an
init script run at end of system boot and start of system
shutdown which creates/removes a file in /var/lib/libnss-ldap
called 'bind_policy_soft'. When this file exists the policy
is treated as 'soft' regardless of the configuration in
/etc/nss-ldap.conf. Note that soft doesn't mean 'always
fail' but rather only try to connect to each URI listed in
the configuration file once, with no sleeping.
Closes: #375077, #375215
-- Stephen Frost <sfrost@debian.org> Mon, 26 Jun 2006 14:03:21 -0400
libnss-ldap (251-3) unstable; urgency=low
* Handle both host and uri cases from debconf, Closes: #375097
* Escape dashes in value handling, Closes: #375108
-- Stephen Frost <sfrost@debian.org> Fri, 23 Jun 2006 23:11:24 -0400
libnss-ldap (251-2) unstable; urgency=low
* Copy existing ldap.secret to new location, if it exists.
-- Stephen Frost <sfrost@debian.org> Thu, 22 Jun 2006 21:59:20 -0400
libnss-ldap (251-1) unstable; urgency=low
* New upstream version, Closes: #332600
* Upstream fixes, Closes: #323580, #302391, #308490
* Maintainer upload, Closes: #316973, #335133
* Changed debconf 'host' question to 'uri', Closes: #312284, #359341
* Added additional commentary to the ldap.conf, Closes: #368191, #369192
* Enabled configurable krb5 CCNAME, Closes: #352032
* Included Swedish, Vietnamese and Czech translations,
Closes: #317672, #312435, #340633
* Modified syslog() calls to use LOG_AUTHPRIV facility, Closes: #310421
* Removed build-depend on libdb4.2-dev, Closes: #302541
* Changed nscd restart to use invoke-rc.d, Closes: #367766
* Changed depends to allow debconf-2.0, Closes: #332001
* Ensure that libnss-ldap is compiled with libpthread,
Closes: #314461, #330911, #366540, #347477
* Changed to using upstream manpage, Closes: #302396
* Added escaping to password handling, Closes: #341539
* Moved ldap.secret to libnss-ldap.secret, Closes: #302562
* Upstream removed RFC from tarball, Closes: #199810
* Cleaned up copyright file, Closes: #364051
* Fixed possible overflow in uid/gid handling, Closes: #354093
-- Stephen Frost <sfrost@debian.org> Thu, 22 Jun 2006 10:01:07 -0400
libnss-ldap (238-1) unstable; urgency=low
* New upstream version, Closes: #292538
* Appears to be fixed accorindg to upstream changelog, Closes: #282209
* Added --enable-paged-results, Closes: #272793, #273793
* Link against libldap_r instead of libldap, Closes: #277640
* Updated Catalan translation, Closes: #279432
* Updated German translation, Closes: #280996
-- Stephen Frost <sfrost@debian.org> Tue, 29 Mar 2005 23:04:48 -0500
libnss-ldap (220-1) unstable; urgency=low
* New upstream version, Closes: #254605, #259243
(Apparently, anyway. I reproduced the problem with the old
version and then installed the new and it fixed it. I'm
not 100% sure that a malformed DB_CONFIG couldn't still
cause some problem though. It would seem more like a
problem w/ libdb in any case though...)
(Why was this sev:normal?) Closes: #254608, #258811
* Updated Russian translation, Closes: #221658
* Netgroups Description fixed, Closes: #222602, #222603
* Updated French translation, Closes: #235163
* Updated Danish translation, Closes: #235316
* Added Catalan translation, Closes: #248721
-- Stephen Frost <sfrost@debian.org> Sat, 7 Aug 2004 15:49:05 -0400
libnss-ldap (215-1) unstable; urgency=low
* New upstream version.
-- Stephen Frost <sfrost@debian.org> Sun, 15 Feb 2004 22:08:50 -0500
libnss-ldap (211-4) unstable; urgency=low
* Try again to fix the build problem on the buildds. Very odd.
-- Stephen Frost <sfrost@debian.org> Fri, 3 Oct 2003 09:33:06 -0400
libnss-ldap (211-3) unstable; urgency=low
* Attempt to fix build problem with installing nss_ldap.so into debian/tmp
(It didn't create the directories for some reason.. Very odd.)
-- Stephen Frost <sfrost@debian.org> Thu, 2 Oct 2003 16:14:14 -0400
libnss-ldap (211-2) unstable; urgency=low
* Add -fPIC for silly systems, Closes: #213513.
-- Stephen Frost <sfrost@debian.org> Wed, 1 Oct 2003 14:56:44 -0400
libnss-ldap (211-1) unstable; urgency=low
* New upstream release, Closes: #207046.
* New maintainer
* Moved to CDBS
* Nuked the (pretty much) unnecessary/unused patches.
* Added nl.po and ja.po translations, Closes: #204758, #210973.
* Added minor patch to improve logging, Closes: #194044.
* Added in people.ldif/groups.ldif examples, Closes: #202629.
-- Stephen Frost <sfrost@debian.org> Wed, 10 Sep 2003 22:19:21 -0400
libnss-ldap (207-1) unstable; urgency=low
* New upstream release (Closes: #192161)
* Updated standards-version to 3.5.9, no changes.
* Make the build scripts use -fPIC for the whole process. (Closes: #185937)
* Removed LdapNS-howto, it's outdated (Closes: #179359)
* Updated nsswitch.ldap to reflect the current state of libnss-ldap
(Closes: #192208)
-- Sami Haahtinen <ressu@debian.org> Fri, 9 May 2003 13:35:31 +0300
libnss-ldap (204-3) unstable; urgency=low
* Re-update the french Debconf translations from bug #183953.. bad DDTP!
BAD! (Closes: #185914)
* Regenerate automake and autoconf files (Closes: #185937)
-- Sami Haahtinen <ressu@debian.org> Sun, 23 Mar 2003 11:16:48 +0200
libnss-ldap (204-2) unstable; urgency=low
* Fixed the build problems, by adding automake1.6 to dependancies
(Closes: #184692)
* Added debconf translations from ddtp
-- Sami Haahtinen <ressu@debian.org> Fri, 14 Mar 2003 22:44:55 +0200
libnss-ldap (204-1) unstable; urgency=low
* New upstream release
* Switched to CBS.
* Disabled our IPv6 patch, the upstream has new additions to IPv6
-- Sami Haahtinen <ressu@debian.org> Sun, 9 Mar 2003 02:41:03 +0200
libnss-ldap (203-1) unstable; urgency=low
* New upstream release
* Applied patch by Steve Langasek to read the debconf questions from the
configuration file instead of using the previously given (Closes: #156858)
* Bumped Standards-Version to 3.5.8.0
-- Sami Haahtinen <ressu@debian.org> Mon, 16 Dec 2002 21:39:44 +0200
libnss-ldap (202-0.1) unstable; urgency=low
* Non-maintainer upload
* New upstream release
* partially fix IPv6 problems
-- Bastian Blank <waldi@debian.org> Sun, 15 Dec 2002 17:51:06 +0100
libnss-ldap (199-1) unstable; urgency=low
* New upstream release
* Upstream added new option bind_policy added documentation to manual
* Enabling SSL support again. (Closes: #147106)
* Added libdb-dev to build depends, schema mapping needs it.
* Changed config to use Debconf::Client::ConfModule now that woody is out.
* Fixed the ###DEBCONF### detection which caused a bit of problems for some
users.
-- Sami Haahtinen <ressu@debian.org> Wed, 14 Aug 2002 19:43:57 +0300
libnss-ldap (188-1) unstable; urgency=low
* New upstream release
* Upstream now includes the patch from Luca Filipozzi which improves the
socket handling in extreme cases. (Closes: #140854)
-- Sami Haahtinen <ressu@debian.org> Tue, 7 May 2002 22:28:58 +0300
libnss-ldap (186-1) unstable; urgency=low
* New upstream release
* Added french translation of debconf templates.
Thanks go to Philippe Batailler (Closes: #140827)
* Upstream included the patch from bug 140854, which adds better handling of
extreme filehandle usage, a big thanks to Luca Filipozzi for sorting this
out with the upstream (Closes: #140854)
* Added an extra note about ###DEBCONF### in configuration to README.Debian,
hopefully people will read it. there is a note about this when debconf is
run, but it's not critical so it's on medium priority. sigh...
(Closes: #139959)
* enabled schema mapping (Closes: #131280)
* Made postinst change the permission back from 0600 if it wasn't wanted,
interestin and ugly hack, but hey.. atleast it works.. =)
(Closes: #130871)
-- Sami Haahtinen <ressu@debian.org> Thu, 4 Apr 2002 21:20:40 +0300
libnss-ldap (184-2) unstable; urgency=low
* Setting FD_CLOEXEC to the socket. (Closes: #136953)
-- Sami Haahtinen <ressu@debian.org> Sun, 24 Mar 2002 21:17:22 +0200
libnss-ldap (184-1) unstable; urgency=low
* New upstream release
* Improved SIGPIPE handling (Closes: #130006,#92199)
* Rebuild fixes bug 133398 (Closes: #133398)
-- Sami Haahtinen <ressu@debian.org> Sat, 16 Feb 2002 12:35:19 +0200
libnss-ldap (176-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Wed, 9 Jan 2002 10:05:30 +0200
libnss-ldap (174-1) unstable; urgency=medium
* New upstream release
* Moved Configuration template to /usr/share/libnss-ldap
* Changed config to use the stubbed Debconf library (and raised the urgency
to medium, this needs to go to woody) (Closes: #121918)
* Applied the Grammar Patch by Branden Robinson (Closes: #121567)
* Fixed some major stupidity in Debconf configuration script.
-- Sami Haahtinen <ressu@debian.org> Tue, 11 Dec 2001 15:32:03 +0200
libnss-ldap (173-1) unstable; urgency=low
* New upstream release
* Added Brazilian translation, thanks to Andre Luis Lopes (Closes: #114007)
-- Sami Haahtinen <ressu@debian.org> Sat, 17 Nov 2001 00:42:07 +0200
libnss-ldap (172-1) unstable; urgency=low
* New upstream release
* Fixed priorities, related to bug #108864
* Rewrote configuration script in perl, still the same is waiting for
postinst
-- Sami Haahtinen <ressu@debian.org> Wed, 5 Sep 2001 22:00:48 +0300
libnss-ldap (163-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Wed, 11 Jul 2001 20:09:48 +0300
libnss-ldap (162-1) unstable; urgency=low
* New upstream release
* This release fixes the syncronous lookups bug..
-- Sami Haahtinen <ressu@debian.org> Wed, 11 Jul 2001 16:54:41 +0300
libnss-ldap (161-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Tue, 10 Jul 2001 17:21:40 +0300
libnss-ldap (160-2) unstable; urgency=low
* removed the _nss_ldap_getbyname synchronous patch (Closes: #103734)
-- Sami Haahtinen <ressu@debian.org> Sat, 7 Jul 2001 00:51:45 +0300
libnss-ldap (160-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Thu, 5 Jul 2001 17:40:10 +0300
libnss-ldap (159-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Thu, 28 Jun 2001 09:47:59 +0300
libnss-ldap (156-1) unstable; urgency=low
* New upstream release
* Finally a working version!
* --disable-ssl was applied upstream
-- Sami Haahtinen <ressu@debian.org> Fri, 22 Jun 2001 08:26:41 +0300
libnss-ldap (155-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Wed, 20 Jun 2001 23:57:02 +0300
libnss-ldap (154-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Wed, 20 Jun 2001 10:02:31 +0300
libnss-ldap (153-1) unstable; urgency=low
* New upstream release
* Added patch: --disable-ssl
-- Sami Haahtinen <ressu@debian.org> Tue, 5 Jun 2001 23:06:14 +0300
libnss-ldap (150-4) unstable; urgency=low
* Fixed bash-ism in postinst (Closes: #95275)
-- Sami Haahtinen <ressu@debian.org> Thu, 26 Apr 2001 22:17:06 +0300
libnss-ldap (150-3) unstable; urgency=low
* 'Not really my day' release.
* This time really fixed the one broken db_input (Closes: #94795)
* added Debconf question for LDAP version (Closes: #94789)
* cleaned up the example ldap.conf which is used as a base for a new install
-- Sami Haahtinen <ressu@debian.org> Sun, 22 Apr 2001 11:03:04 +0300
libnss-ldap (150-2) unstable; urgency=low
* missed one db_input when i was checking for '|| true's fixed now.
(Closes: #94710)
-- Sami Haahtinen <ressu@debian.org> Sat, 21 Apr 2001 19:37:57 +0300
libnss-ldap (150-1) unstable; urgency=low
* New upstream release
* Converted to debconf
* /etc/libnss-ldap.conf is no longer listed as a conffile
-- Sami Haahtinen <ressu@debian.org> Mon, 16 Apr 2001 01:40:54 +0300
libnss-ldap (149-2) unstable; urgency=low
* Removed reference to debconf from postinst (Closes: #93180)
-- Sami Haahtinen <ressu@debian.org> Sat, 7 Apr 2001 14:42:09 +0300
libnss-ldap (149-1) unstable; urgency=low
* New upstream release
-- Sami Haahtinen <ressu@debian.org> Sun, 11 Mar 2001 18:50:15 +0200
libnss-ldap (140-3) unstable; urgency=low
* Took over the package from evo
-- Sami Haahtinen <ressu@debian.org> Wed, 28 Feb 2001 15:24:38 +0200
libnss-ldap (140-2) unstable; urgency=low
* Fixed debian/rules to remove debug stuff (yes, upstream configure is
broken, already reported); closes: #85084.
-- Davide Puricelli (evo) <evo@debian.org> Tue, 6 Feb 2001 14:37:46 +0100
libnss-ldap (140-1) unstable; urgency=low
* New upstream version.
* I've decided to remove all debconf support from /etc/libnss-ldap.conf
until I manage to find a better way to handle configuration modifications.
closes: #82102, #83766.
-- Davide Puricelli (evo) <evo@debian.org> Mon, 5 Feb 2001 17:25:35 +0100
libnss-ldap (123-2) unstable; urgency=low
* "s/Suggests/Depends" debconf; debconf ask you if you want or not to use the
ldap version of /etc/nsswitch.conf; closes: #78110.
-- Davide Puricelli (evo) <evo@debian.org> Tue, 28 Nov 2000 19:56:37 +0100
libnss-ldap (123-1) unstable; urgency=low
* New upstream version.
* Fixed a stupid typo into debian/templates.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 24 Nov 2000 16:10:41 +0100
libnss-ldap (122-2) unstable; urgency=low
* Compiled against libldap2 2.0.7-1; closes: #72118, #75325.
Thanks to Martijn van de Streek and Sami Haahtinen.
* Added "Suggests: debconf" and removed some debug stuff from postinst;
closes: #76363.
* debian/postinst: now we must restart nscd if it's running.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 11 Nov 2000 19:15:41 +0100
libnss-ldap (122-1) unstable; urgency=HIGH
* New upstream version that fixes an important security related bug.
For more info check http://bugzilla.padl.com/show_bug.cgi?id=49.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 3 Nov 2000 21:28:45 +0100
libnss-ldap (120-1) unstable; urgency=low
* New upstream version.
* Added debconf support, patch provided by Michael Vogt <mvogt@acm.org>.
* Standard compliant to 3.2.1
-- Davide Puricelli (evo) <evo@debian.org> Sun, 15 Oct 2000 13:37:11 +0200
libnss-ldap (118-1) unstable; urgency=low
* New upstream version.
* This situation isn't reproducible by me or other people, probably
it's a local problem, so I'm closing it; if it occurs also with new
upstream version feel free to reopen the bug. closes: #72118.
* Now ssh doesn't segfault, here we go! :)
-- Davide Puricelli (evo) <evo@debian.org> Thu, 12 Oct 2000 17:33:27 +0200
libnss-ldap (116-2) unstable; urgency=low
* Oops, previous version was broken, now it should work,
I hope :); closes: #71749.
-- Davide Puricelli (evo) <evo@debian.org> Mon, 18 Sep 2000 19:05:21 +0200
libnss-ldap (116-1) unstable; urgency=low
* New upstream version.
* Compiled against libldap2.
-- Davide Puricelli (evo) <evo@debian.org> Thu, 14 Sep 2000 19:38:32 +0200
libnss-ldap (115-1) unstable; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Thu, 31 Aug 2000 17:06:59 +0200
libnss-ldap (113-1) unstable; urgency=low
* New maintainer.
* New upstream version.
* Fixed LdapNS-howto.txt; closes: #68430.
* ldapmigrate and ldapinit are into a different upstream
tarball; closes: #66194.
-- Davide Puricelli (evo) <evo@debian.org> Wed, 23 Aug 2000 21:51:06 +0200
libnss-ldap (110-2) frozen unstable; urgency=low
* Fix minor (but important) thinko in previous patch
-- Ben Collins <bcollins@debian.org> Thu, 29 Jun 2000 22:48:41 -0400
libnss-ldap (110-1) frozen unstable; urgency=low
* uptream patch merge with fixes, closes: #62695
* After looking at this, I think it is better to let nss_ldap continue
to use only RFC compliant attributes and not support non-RFC compliant
ones, closes: #48953
* Added patch to escape search filter from user input, closes: #66116
-- Ben Collins <bcollins@debian.org> Thu, 29 Jun 2000 22:08:38 -0400
libnss-ldap (99-1) unstable; urgency=low
* New upstream version.
-- Ben Collins <bcollins@debian.org> Thu, 16 Dec 1999 21:30:07 -0500
libnss-ldap (97-1) unstable; urgency=low
* New upstream version, ChangeLog reports fix for..., closes: #48953
-- Ben Collins <bcollins@debian.org> Thu, 25 Nov 1999 01:27:27 -0500
libnss-ldap (87-1) unstable; urgency=low
* New upstream version
* Standard compliant to 3.0.1.1
-- Ben Collins <bcollins@debian.org> Sun, 3 Oct 1999 14:40:59 -0400
libnss-ldap (2.65-1) unstable; urgency=low
* New upstream source
* Reompiled against newest libopenldap1
-- Ben Collins <bcollins@debian.org> Sat, 12 Jun 1999 14:35:49 -0400
libnss-ldap (2.64-1) unstable; urgency=low
* New upstream release
* Removed nsswitch.ldap from /etc on install...it's still in /usr/doc
closed: #37186
-- Ben Collins <bcollins@debian.org> Sat, 8 May 1999 20:11:04 -0400
libnss-ldap (2.60-1) unstable; urgency=low
* New upstream version
-- Ben Collins <bcollins@debian.org> Fri, 16 Apr 1999 12:31:09 -0400
libnss-ldap (2.55-1) unstable; urgency=low
* New upstream source with a lot of GLIBC 2.1 changes merged in
-- Ben Collins <bcollins@debian.org> Sun, 11 Apr 1999 12:37:44 -0400
libnss-ldap (2.54.4-1) unstable; urgency=low
* New upstream release
* Lot's of glibc 2.1 related patches merged upstream
* Makefile changes merged upstream
-- Ben Collins <bcollins@debian.org> Tue, 23 Mar 1999 19:44:14 -0500
libnss-ldap (2.54-1) unstable; urgency=low
* New upstream source
* Added manpage for libnss-ldap.conf from rage.net
* Redid make setup to be more glibc like in the library install (so name
is generated based on current installation as well as links)
* Added LdapNS-howto.txt from rage.net
* Cleaned up patch for glibc 2.1 (libc-lock.h) to allow compilation
under glibc 2.0 still
-- Ben Collins <bcollins@debian.org> Tue, 9 Mar 1999 00:43:31 -0500
libnss-ldap (2.49-2) unstable; urgency=low
* Updated soname to match glibc 2.1
* libc-lock.h is now in /usr/include/bits (glibc 2.1)
* Added recommend for nscd (improves performance)
-- Ben Collins <bcollins@debian.org> Sat, 6 Mar 1999 18:02:22 -0500
libnss-ldap (2.49-1) unstable; urgency=low
* Initial Release.
-- Ben Collins <bcollins@debian.org> Thu, 11 Feb 1999 22:46:20 -0500
|