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
|
2012-04-09 13:48 arthur
* [r1649] compile, depcomp: update files from recent automake
2012-03-23 10:18 arthur
* [r1643] nslcd/pam.c: increase buffer for pam_authz_search as
suggested by Chris J Arges
2012-03-16 15:00 arthur
* [r1642] pynslcd/attmap.py: support the upper and lower functions
in attribute mapping expressions
2012-03-16 13:53 arthur
* [r1641] pynslcd/attmap.py, pynslcd/common.py, pynslcd/pam.py:
refactor some of the attribute mapping code to introduce a
mapping instance that does the hard work and support the lower()
and upper() attribute mapping functions
2012-03-16 12:48 arthur
* [r1640] pynslcd/pynslcd.py: implement a getpeercred() function
2012-03-16 09:46 arthur
* [r1639] nslcd/myldap.c: always try to log the ldap error, the
diagnostic message and errno if available in a consistent format
2012-03-16 08:28 arthur
* [r1638] nss/common.h: put both tio_skip() and tio_close() within
if (fixes r1637) and clarify documentation of one part of the
code
2012-03-14 20:31 arthur
* [r1637] common/tio.c, common/tio.h, nss/common.h: read any
remaining available data from the stream when closing the
connection in a normal way to prevent Broken pipe messages in
nslcd
2012-03-14 20:26 arthur
* [r1636] common/tio.c: ensure that we don't try to read more than
SSIZE_MAX bytes
2012-03-13 19:32 arthur
* [r1635] AUTHORS, man/nslcd.conf.5.xml: document the fact that
each thread opens it's own connection (patch by Chris Hiestand)
2012-03-13 18:29 arthur
* [r1634] AUTHORS, man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/cfg.h,
nslcd/common.h, nslcd/group.c, nslcd/netgroup.c, nslcd/passwd.c,
nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
make whether or not to do case-sensitive filtering configurable
(patch by Matthew L. Dailey)
2012-03-13 18:03 arthur
* [r1633] compile, config.guess, config.sub, missing: update from
latest automake
2012-03-10 20:57 arthur
* [r1632] nslcd/cfg.c: when doing DNS queries for SRV records
recognise default ldap and ldaps ports
2012-03-10 20:41 arthur
* [r1631] nslcd/common.h: add missing include for
_POSIX_HOST_NAME_MAX (thanks Mel Flynn)
2012-03-10 20:17 arthur
* [r1628] nslcd/pam.c: fix log message for invalid pam_authz_search
as reported by Matt Rae
2012-03-05 22:27 arthur
* [r1627] nslcd/myldap.c: remove extra newline from log message
2012-03-05 21:53 arthur
* [r1626] compat/ldap_compat.h, nslcd/myldap.c: provide more
detailed logging information for ldap_start_tls_s() failures
(based on a patch by Mel Flynn)
2012-02-29 21:44 arthur
* [r1625] nslcd/myldap.c: log the first 10 search results in debug
mode to make debugging easier (patch by Matthijs Kooijman)
2012-02-29 21:26 arthur
* [r1624] README, nslcd/nslcd.c: update copyright years
2012-01-29 15:37 arthur
* [r1616] ChangeLog, NEWS, configure.ac, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get files ready for
0.8.6 release
2012-01-29 15:13 arthur
* [r1615] pynslcd/alias.py, pynslcd/cache.py, pynslcd/common.py,
pynslcd/ether.py, pynslcd/group.py, pynslcd/host.py,
pynslcd/netgroup.py, pynslcd/network.py, pynslcd/passwd.py,
pynslcd/protocol.py, pynslcd/rpc.py, pynslcd/service.py,
pynslcd/shadow.py: implement a naive offline cache
2012-01-29 14:50 arthur
* [r1614] pynslcd/group.py: small simplification in group lookups
(member attributes are not requested anyway)
2012-01-29 14:39 arthur
* [r1613] pynslcd/alias.py, pynslcd/common.py, pynslcd/ether.py,
pynslcd/group.py, pynslcd/host.py, pynslcd/netgroup.py,
pynslcd/network.py, pynslcd/passwd.py, pynslcd/protocol.py,
pynslcd/rpc.py, pynslcd/service.py, pynslcd/shadow.py: split the
result handling into a convert() and write() step
2012-01-20 20:08 arthur
* [r1611] nslcd/netgroup.c, pynslcd/pynslcd.py: formatting fixes
2012-01-20 16:18 arthur
* [r1605] nslcd/nslcd.c: clarify error messages and fix typo in
comment
2012-01-20 16:01 arthur
* [r1604] Makefile.am, debian: separate the Debian packaging from
main sources switching to non-native Debian package (using
svn-buildpackage)
2012-01-20 15:43 arthur
* [r1603] pynslcd/Makefile.am: add missing Python modules to
tarball
2012-01-17 19:41 arthur
* [r1597] AUTHORS, nss/bsdnss.c: FreeBSD compilation fixes by Maxim
Vetrov
2012-01-17 19:38 arthur
* [r1596] common/nslcd-prot.c, nslcd/nslcd.c: pass the correct size
of named socket address (fixes FreeBSD issue, fixes r1295)
2012-01-16 21:17 arthur
* [r1595] INSTALL, compile, depcomp, install-sh, py-compile: update
files from recent automake
2012-01-09 12:15 jhrozek
* [r1594] nslcd/common.c: Add a matching va_end() for va_start() in
mysnprintf()
2012-01-09 12:11 jhrozek
* [r1593] nslcd/myldap.c: Warn if ldap_set_option() fails for
LDAP_OPT_ERROR_NUM
2012-01-09 12:10 jhrozek
* [r1592] nslcd/nslcd.c: Warn if fd cannot be closed in is_locked()
2012-01-09 12:07 jhrozek
* [r1591] nslcd/netgroup.c: Check NULL return in write_netgroup()
2012-01-09 12:04 jhrozek
* [r1590] nslcd/pam.c: Do not leak memory if myldap_escape() fails
2012-01-09 11:54 jhrozek
* [r1589] nslcd/pam.c: Return from update_username() if
myldap_get_values() returns invalid value
If myldap_get_values() failed for the attmap_passwd_uid,
nss-pam-ldapd
would dereference a NULL pointer.
2012-01-06 13:59 arthur
* [r1588] pynslcd/alias.py, pynslcd/cfg.py, pynslcd/common.py,
pynslcd/ether.py, pynslcd/group.py, pynslcd/host.py,
pynslcd/mypidfile.py, pynslcd/netgroup.py, pynslcd/network.py,
pynslcd/pam.py, pynslcd/passwd.py, pynslcd/protocol.py,
pynslcd/pynslcd.py, pynslcd/rpc.py: user the logging framework,
handle exceptions properly and some cleanups
2012-01-05 21:30 arthur
* [r1587] debian/po/zh_CN.po: updated Simplified Chinese (zh_CN)
translation of debconf templates by zym
2012-01-02 20:46 arthur
* [r1586] debian/po/nb.po: updated Norwegian Bokmål (nb)
translation of debconf templates by Bjørn Steensrud
2011-12-31 12:40 arthur
* [r1584] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
files ready for 0.8.5 release
2011-12-30 17:41 arthur
* [r1583] debian/control: fix versioned build dependency on
debhelper
2011-12-28 23:06 arthur
* [r1582] pynslcd/config.py.in: remove some information from config
that we don't expect to use
2011-12-28 22:52 arthur
* [r1581] configure.ac, pynslcd/cfg.py, pynslcd/common.py,
pynslcd/config.py.in, pynslcd/group.py, pynslcd/pynslcd.py:
support for reading the configuration file (not all options are
used though)
2011-12-28 22:44 arthur
* [r1580] pynslcd/cfg.py, pynslcd/pynslcd.py: move the state
variables (from command line) from the configuration to the main
module
2011-12-28 22:29 arthur
* [r1579] pynslcd/pam.py: fall back to trying to authenticate with
provided password (in case rootpwmodpw is not set or unusable)
2011-12-28 22:10 arthur
* [r1578] pynslcd/group.py: never request group members for
GroupByMemberRequest
2011-12-28 22:09 arthur
* [r1577] pynslcd/group.py: instead of modifying attmap, modify
attribute list
2011-12-28 21:29 arthur
* [r1576] pynslcd/group.py, pynslcd/passwd.py: fix references to
attmap (broken in r1571)
2011-12-28 17:07 arthur
* [r1575] nslcd/nslcd.c: typo fix in comment
2011-12-27 21:05 arthur
* [r1574] pynslcd/common.py, pynslcd/group.py, pynslcd/netgroup.py,
pynslcd/passwd.py, pynslcd/shadow.py: make logging more
consistent and remove test bases from shadow and passwd maps
2011-12-27 18:04 arthur
* [r1573] pynslcd/cfg.py, pynslcd/ether.py, pynslcd/group.py,
pynslcd/netgroup.py, pynslcd/pam.py, pynslcd/passwd.py,
pynslcd/pynslcd.py, pynslcd/shadow.py, pynslcd/tio.py: PEP8 fixes
2011-12-27 17:53 arthur
* [r1572] debian/copyright: update copyright information
2011-12-12 22:59 arthur
* [r1571] pynslcd/alias.py, pynslcd/common.py, pynslcd/ether.py,
pynslcd/group.py, pynslcd/host.py, pynslcd/netgroup.py,
pynslcd/network.py, pynslcd/passwd.py, pynslcd/protocol.py,
pynslcd/rpc.py, pynslcd/service.py, pynslcd/shadow.py: define the
search separately from the request
2011-12-12 21:53 arthur
* [r1570] pynslcd/alias.py, pynslcd/attmap.py, pynslcd/common.py,
pynslcd/ether.py, pynslcd/group.py, pynslcd/host.py,
pynslcd/netgroup.py, pynslcd/network.py, pynslcd/passwd.py,
pynslcd/protocol.py, pynslcd/rpc.py, pynslcd/service.py,
pynslcd/shadow.py: move check of required attributes and other
common tests to the Request.handle_entry() method
2011-12-10 22:17 arthur
* [r1569] nslcd/cfg.c: properly log failures to lookup DNS SRV
records
2011-12-10 22:17 arthur
* [r1568] nslcd/nslcd.c: properly handle failures to truncate the
pid file
2011-12-10 21:09 arthur
* [r1567] debian/nslcd.config: get the first configuration value
instead of the last because tha one is also written
2011-12-10 21:03 arthur
* [r1566] debian/nslcd.config: fix a deprecated use of head without
the -n option
2011-12-10 20:15 arthur
* [r1565] debian/rules: enable more hardening options (-fPIE
doesn't work yet because we use -fPIC in some places)
2011-12-10 13:29 arthur
* [r1564] debian/libnss-ldapd.config, debian/libnss-ldapd.postrm:
ensure that the output of nss_list_configured() is space
separated
2011-12-10 11:45 arthur
* [r1563] m4/ax_pthread.m4: update macro from autoconf-archive
2011-12-09 08:58 jhrozek
* [r1560] nslcd/myldap.c: Fix a typo in disconnect logic
2011-12-01 21:43 arthur
* [r1558] nslcd/nslcd.c: ensure that uid, gid and pid vars are
properly initialised and log denied requests
2011-11-30 21:51 arthur
* [r1557] nslcd/passwd.c: ensure that /etc/nsswitch.conf is only
loaded once after start-up
2011-11-18 13:24 arthur
* [r1556] debian/libnss-ldapd.config: simplification of logic to
overwrite list of enabled /etc/nsswitch.conf services in debconf
(based on r1555 of 0.7 branch)
2011-10-12 20:50 arthur
* [r1554] debian/control: add versioned dependency on libpam for
mutiarch support
2011-10-12 20:07 arthur
* [r1553] AUTHORS, nss/bsdnss.c: implement group membership NSS
function by Tom Judge (taken from FreeBSD PR 154000)
2011-10-10 19:05 arthur
* [r1552] debian/rules: keep nslcd running during package upgrades
2011-10-02 11:17 arthur
* [r1551] nslcd/pam.c: reduce loglevel of user not found messages
to avoid spamming the logs with useless information (thanks Wakko
Warner)
2011-09-30 11:48 jhrozek
* [r1547] nslcd/cfg.c, nslcd/group.c, nslcd/passwd.c,
nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
Use an explicit base of 10 for strtouid()/strtogid()/strtol()
calls
2011-09-21 18:59 arthur
* [r1546] debian/nslcd.config: treat the "hard" value for
tls_reqcert as if it was "demand"
2011-09-14 19:13 arthur
* [r1543] debian/libnss-ldapd.config, debian/libnss-ldapd.postrm,
debian/nslcd.config, debian/nslcd.init, debian/nslcd.postinst:
make whitespace matching consistent in regular expressions
(thanks Nick)
2011-09-09 16:08 arthur
* [r1542] nslcd/alias.c, nslcd/attmap.c, nslcd/common.c,
nslcd/common.h, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
nslcd/netgroup.c, nslcd/network.c, nslcd/pam.c, nslcd/passwd.c,
nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
make validation log messages consistent
2011-09-09 16:02 arthur
* [r1541] nslcd/nsswitch.c: add missing include
2011-09-08 20:57 arthur
* [r1540] nslcd/network.c, nslcd/passwd.c: grow gecos buffer size
and consistency improvements to other buffers
2011-09-08 20:52 arthur
* [r1539] nslcd/ether.c, nslcd/host.c, nslcd/network.c: give string
representations of addresses more logical names
2011-09-07 20:04 arthur
* [r1538] debian/copyright, debian/po/sv.po: updated Swedish (sv)
translation of debconf templates by Martin Bagge
2011-09-04 19:19 arthur
* [r1536] AUTHORS, ChangeLog, NEWS, TODO, configure.ac,
debian/changelog, debian/copyright, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get files ready for
0.8.4 release
2011-09-04 08:48 arthur
* [r1535] tests/test_getpeercred.c: warn when we couldn't get the
gid or pid, the uid is the only really interesting bit
2011-09-04 08:42 arthur
* [r1534] tests/test_tio.c: add casts from size_t to int for printf
2011-09-04 08:40 arthur
* [r1533] debian/rules: ignore failures in tests
2011-09-04 08:40 arthur
* [r1532] debian/rules: use auto-detection for LDAP library and
defaults for config file, socket and pidfile (no changes)
2011-09-03 15:57 arthur
* [r1531] debian/libnss-ldapd.config, debian/libnss-ldapd.postinst,
debian/libnss-ldapd.postrm, debian/libpam-ldapd.postinst: support
spaces before and after database name while parsing
/etc/nsswitch.conf and reduce the number of places where parsing
is done
2011-08-30 18:58 arthur
* [r1530] debian/nslcd.postinst: correctly handle leading and
trailing spaces in preseeded uri option (patch by Andreas B.
Mundt)
2011-08-30 18:47 arthur
* [r1529] configure.ac, nslcd/myldap.c: move LDAP_DEPRECATED and
LDAP_REFERRALS to configure.ac to ensure that tests from
configure see the same API
2011-08-29 20:57 arthur
* [r1528] configure.ac, nslcd/common.c, nslcd/common.h: implement
and use a strtoui() function if uid_t or gid_t is of size
unsigned int (thanks Jakub Hrozek)
2011-08-29 19:18 arthur
* [r1527] pynslcd/Makefile.am: get rid of automake warning
2011-08-29 19:16 arthur
* [r1526] configure.ac: silence autoconf warnings, patch by Jakub
Hrozek
2011-08-29 19:01 arthur
* [r1525] debian/po/nl.po: some changes based on feedback by Jeroen
Schot
2011-08-27 21:22 arthur
* [r1524] configure.ac, nslcd/cfg.c, nslcd/common.h, nslcd/group.c,
nslcd/passwd.c: provide strtouid() and strtogid() functions that
use strtoul() or strtoull() (thanks Jakub Hrozek)
2011-08-27 20:57 arthur
* [r1523] nslcd/cfg.c, nslcd/group.c, nslcd/passwd.c,
nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
check errno after calls to strtol() to ensure that numbers that
are too large for type will be reported (thanks Jakub Hrozek)
2011-08-27 15:08 arthur
* [r1522] AUTHORS, nslcd/myldap.c: pass a statically allocated
callback structure to OpenLDAP because it doesn't make it's own
copy (thanks Jakub Hrozek) (fixes a problem in r1490)
2011-08-27 14:48 arthur
* [r1521] debian/po/nl.po: some changes based on feedback by Paul
Gevers
2011-08-26 19:21 arthur
* [r1520] debian/po/nl.po: first attempt at Dutch (nl) translation
2011-08-26 10:11 arthur
* [r1519] debian/po/ca.po, debian/po/fi.po, debian/po/gl.po,
debian/po/it.po, debian/po/nb.po, debian/po/nl.po,
debian/po/sv.po, debian/po/vi.po, debian/po/zh_CN.po: small
formatting changes to header
2011-08-25 20:05 arthur
* [r1518] debian/po/es.po: updated Spanish (es) translation of
debconf templates by Francisco Javier Cuadrado
2011-08-24 20:47 arthur
* [r1517] nslcd/cfg.c: fix typo (thanks Nalin Dahyabhai)
2011-08-24 20:22 arthur
* [r1515] nslcd/cfg.c: fix a problem with uninitialised memory
while parsing the tls_ciphers option (was broken in r853, similar
problem was fixed in r910, reported by Isaac Freeman)
2011-08-24 19:02 arthur
* [r1514] debian/po/de.po: updated German (de) translation of
debconf templates by Chris Leick
2011-08-24 18:51 arthur
* [r1513] AUTHORS, man/nslcd.conf.5.xml, nslcd/cfg.c: support
querying DNS SRV records from a different domain than the current
one (based on a patch by James M. Leddy)
2011-08-23 20:03 arthur
* [r1512] debian/po/cs.po: updated Czech (cs) translation of
debconf templates by Miroslav Kure
2011-08-19 15:57 arthur
* [r1511] debian/po/fr.po: typo fix provided by Christian Perrier
2011-08-17 19:38 arthur
* [r1510] AUTHORS: add new translators to AUTHORS file
2011-08-17 19:04 arthur
* [r1509] debian/po/ja.po: updated Japanese (ja) translation of
debconf templates by Kenshi Muto
2011-08-17 18:44 arthur
* [r1508] debian/po/pt.po: updated Portuguese (pt) translation of
debconf templates by Américo Monteiro
2011-08-14 19:29 arthur
* [r1507] debian/po/pt_BR.po: updated Brazilian Portuguese (pt_BR)
translation of debconf templates by Denis Doria
2011-08-14 17:03 arthur
* [r1506] ChangeLog, ChangeLog-2009, ChangeLog-2010, Makefile.am:
split 2009 and 2010 changes to separate ChangeLog files
2011-08-14 15:39 arthur
* [r1505] nss/networks.c: remove unused variable
2011-08-14 14:09 arthur
* [r1504] nslcd/Makefile.am, pam/Makefile.am, tests/Makefile.am:
put external libraries at the end when linking
2011-08-14 14:03 arthur
* [r1503] configure.ac: remove some tests for symbols we aren't
using
2011-08-14 14:02 arthur
* [r1502] debian/libnss-ldapd.lintian-overrides: add lintian
override for SONAME check
2011-08-14 12:54 arthur
* [r1501] debian/po/pt_BR.po: updated Brazilian Portuguese (pt_BR)
translation of debconf templates by Denis Doria
2011-08-14 10:34 arthur
* [r1500] debian/po/da.po: update Danish (da) translation of
debconf templates by Joe Hansen
2011-08-14 10:27 arthur
* [r1499] debian/po/sk.po: added Slovak (sk) translation of debconf
templates by Slavko
2011-08-14 10:18 arthur
* [r1498] debian/po/fr.po: updated French (fr) translation of
debconf templates by Christian Perrier
2011-08-14 10:04 arthur
* [r1497] debian/po/ru.po: updated Russian (ru) translation of
debconf templates by Yuri Kozlov
2011-08-10 20:02 arthur
* [r1496] AUTHORS: fix spelling of name (sorry about that)
2011-08-09 15:36 arthur
* [r1495] nslcd/passwd.c: check nsswitch.conf mtime to see whether
file should be reloaded
2011-08-09 09:09 arthur
* [r1494] debian/po/ca.po, debian/po/cs.po, debian/po/da.po,
debian/po/de.po, debian/po/es.po, debian/po/fi.po,
debian/po/fr.po, debian/po/gl.po, debian/po/it.po,
debian/po/ja.po, debian/po/nb.po, debian/po/nl.po,
debian/po/pt.po, debian/po/pt_BR.po, debian/po/ru.po,
debian/po/sv.po, debian/po/templates.pot, debian/po/vi.po,
debian/po/zh_CN.po: run debconf-updatepo to update .pot and .po
files
2011-08-09 09:02 arthur
* [r1493] debian/nslcd.templates, man/nslcd.conf.5.xml: small
language updates based on feedback by Justin B Rye
2011-08-08 08:09 arthur
* [r1492] debian/nslcd.templates: incorporate feedback on debconf
templates by debian-l10n-english@lists.debian.org (thanks Justin
B Rye and Christian PERRIER)
2011-08-07 16:40 arthur
* [r1491] Makefile.am, debian/compat, debian/control,
debian/libnss-ldapd.install,
debian/libnss-ldapd.lintian-overrides,
debian/libnss-ldapd.postinst, debian/libpam-ldapd.install,
debian/rules, debian/source/lintian-overrides: build Debian
packages with multiarch support
2011-08-07 13:10 arthur
* [r1490] AUTHORS, nslcd/myldap.c: set the socket timeout in a
connection callback to avoid timeout issues during the SSL
handshake (based on a patch by Stefan Völkel)
2011-08-06 20:36 arthur
* [r1489] debian/copyright, m4/ax_pthread.m4: update AX_PTHREAD
from http://www.gnu.org/software/autoconf-archive/ax_pthread.html
2011-08-05 21:42 arthur
* [r1488] pynslcd/group.py, tests/test_myldap.c: replace last
traces of groupOfUniqueNames
2011-08-05 21:28 arthur
* [r1487] nslcd/Makefile.am, nslcd/common.h, nslcd/nsswitch.c,
nslcd/passwd.c, tests/Makefile.am: check whether the NSS shadow
map queries LDAP before returning x as a password has for shadow
users
2011-08-05 20:58 arthur
* [r1486] tests/README, tests/test.ldif.gz, tests/test_nsscmds.sh:
update tests with change of member/uniqueMember default change
(r1484)
2011-08-05 11:52 arthur
* [r1485] nslcd/group.c, nslcd/myldap.c, nslcd/myldap.h,
nslcd/passwd.c: implementation of myldap_get_values_len() to use
ldap_get_values_len() instead of ldap_get_values() to fix some
problems with binary data in returned attribute values (patch by
Wesley Mason)
2011-08-03 19:54 arthur
* [r1484] README, nslcd.conf, nslcd/attmap.c, nslcd/attmap.h,
nslcd/group.c, pynslcd/group.py, tests/test_myldap.c: switch to
using the member attribute by default instead of uniqueMember
2011-07-21 20:41 arthur
* [r1483] README: remove obsolete attribute from documentation
2011-07-15 20:13 arthur
* [r1482] debian/nslcd.init: on restart only log_end_msg once
2011-07-04 21:18 arthur
* [r1481] configure.ac: show the default value for the
pam-seclib-dir option
2011-07-03 20:34 arthur
* [r1480] compat/getpeercred.c: fix header
2011-07-03 20:34 arthur
* [r1479] compat/pam_compat.h: provide PAM_AUTHTOK_RECOVERY_ERR for
systems with only PAM_AUTHTOK_RECOVER_ERR
2011-07-02 21:50 arthur
* [r1478] Makefile.am, debian/compat, debian/control,
debian/libpam-ldapd.install, debian/libpam-ldapd.pam-auth-update,
debian/nslcd.install, debian/pam-configs,
debian/pam-configs/ldap, debian/rules: switch to dh for
debian/rules and bump debhelper compatibility to 8
2011-07-02 21:20 arthur
* [r1476] nslcd/group.c, nslcd/host.c, nslcd/network.c,
nslcd/passwd.c, nslcd/shadow.c: make buffer sizes consistent,
grow gidNumber buffer to hold larger numbers and small
consistency improvements
2011-06-10 08:49 arthur
* [r1475] nslcd/pam.c: correctly only check password expiration
when authenticating, only check account expiration when doing
authorisation check
2011-06-05 20:18 arthur
* [r1474] nslcd/cfg.c, nslcd/pam.c: check all variables in
pam_authz_search to see if they exist
2011-06-05 20:15 arthur
* [r1473] nslcd/cfg.c, nslcd/common.c: mark more strings as const
and don't free() data returned by cfg_getdomainname()
2011-06-05 09:14 arthur
* [r1471] common/expr.c, tests/test_expr.c: handle expressions
where the expander function returns NULL (handle it as an empty
string)
2011-06-05 08:58 arthur
* [r1470] nslcd/myldap.c: fix r1468
2011-06-05 08:54 arthur
* [r1468] nslcd/myldap.c: simplify and correct find_rdn_value() to
handle splitting attribute and value correctly
2011-06-05 08:03 arthur
* [r1467] config.guess, config.sub: include updated files
2011-05-23 20:05 arthur
* [r1466] tests/test_common.c: add test case for two-character user
name
2011-05-21 14:52 arthur
* [r1464] nslcd/myldap.c: fix problem with partial attribute name
matches in DN (e.g. uid vs. uidNumber) (thanks to Timothy White
for the fix)
2011-05-13 13:10 arthur
* [r1462] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
files ready for 0.8.3 release
2011-05-13 13:02 arthur
* [r1461] debian/libnss-ldapd.postinst: don't unconditionally
restart nscd but just try to invalidate the cache for the maps
that change
2011-05-13 13:01 arthur
* [r1460] debian/libnss-ldapd.config: correctly pick up current
configuration of /etc/nsswitch.conf when running dpkg-reconfigure
2011-05-13 12:41 arthur
* [r1459] debian/control: upgrade to standards-version 3.9.2
2011-05-13 12:15 arthur
* [r1458] common/expr.c, common/expr.h: switch variable expander
function type name because _t suffix is reserved
2011-05-13 11:57 arthur
* [r1457] debian/control, debian/nslcd.config: 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)
2011-05-13 07:48 arthur
* [r1456] debian/nslcd.config: fix domain to basedn expansion when
having more than two domain parts (patch by Per Carlson)
2011-05-13 07:04 arthur
* [r1455] pynslcd/alias.py, pynslcd/common.py, pynslcd/ether.py,
pynslcd/group.py, pynslcd/host.py, pynslcd/netgroup.py,
pynslcd/network.py, pynslcd/pam.py, pynslcd/passwd.py,
pynslcd/protocol.py, pynslcd/rpc.py, pynslcd/service.py,
pynslcd/shadow.py: simplify request handling by passing read
parameters around in a dict instead of setting object properties
(this mainly simplifies search filter building)
2011-05-01 19:08 arthur
* [r1454] pynslcd/alias.py, pynslcd/attmap.py, pynslcd/common.py,
pynslcd/ether.py, pynslcd/group.py, pynslcd/host.py,
pynslcd/netgroup.py, pynslcd/network.py, pynslcd/pam.py,
pynslcd/passwd.py, pynslcd/protocol.py, pynslcd/rpc.py,
pynslcd/service.py, pynslcd/shadow.py, pynslcd/tio.py: implement
attribute mapping functionality and do some refactoring
2011-05-01 12:18 arthur
* [r1453] pynslcd/pam.py: remove unneeded import
2011-05-01 12:14 arthur
* [r1452] pynslcd/alias.py, pynslcd/common.py, pynslcd/ether.py,
pynslcd/host.py, pynslcd/netgroup.py, pynslcd/network.py,
pynslcd/pam.py, pynslcd/passwd.py, pynslcd/protocol.py,
pynslcd/rpc.py, pynslcd/service.py, pynslcd/shadow.py: pass dn
and attributes to functions separately
2011-05-01 12:06 arthur
* [r1451] pynslcd/group.py, pynslcd/pam.py, pynslcd/pynslcd.py:
small code improvements
2011-04-30 21:28 arthur
* [r1450] pam/common.h: make log message clearer when nslcd returns
an empty response (user not handled)
2011-04-30 21:26 arthur
* [r1449] nslcd/pam.c: close the nslcd connection to signal LDAP
server unavailable to PAM module
2011-04-30 21:01 arthur
* [r1448] pam/pam.c: split setting up of configuration into
separate function
2011-04-30 19:54 arthur
* [r1447] nslcd/pam.c: improve password change failed error message
2011-04-30 14:37 arthur
* [r1446] nslcd/common.h, nslcd/pam.c, nslcd/shadow.c: check shadow
properties (similarly to what pam_unix does) in the PAM handling
code
2011-04-30 09:15 arthur
* [r1445] pam/pam.c: do not attempt to change password as root when
changing an expired password
2011-04-30 08:39 arthur
* [r1444] nslcd/pam.c: fix return value of try_autzsearch() when no
match found
2011-04-30 08:12 arthur
* [r1443] nslcd/pam.c: use the right DN in the pam_authz_search
option
2011-04-30 08:00 arthur
* [r1442] nslcd/shadow.c: move code for getting shadow expiry
properties to a separate function
2011-04-29 21:06 arthur
* [r1441] nslcd/pam.c: move most of the code for building the
authorisation search into the try_autzsearch() function
2011-04-29 18:21 arthur
* [r1440] nslcd.h, pam/pam.c: support more PAM status codes over
the nslcd protocol
2011-04-29 18:19 arthur
* [r1439] nslcd/shadow.c, pynslcd/shadow.py: set maxdays to -1 to
indicate no expiry (instead of a long time)
2011-04-28 18:47 arthur
* [r1438] pynslcd/alias.py, pynslcd/common.py, pynslcd/ether.py,
pynslcd/group.py, pynslcd/host.py, pynslcd/netgroup.py,
pynslcd/network.py, pynslcd/pam.py, pynslcd/passwd.py,
pynslcd/protocol.py, pynslcd/rpc.py, pynslcd/service.py,
pynslcd/shadow.py: put standard library imports before
application imports and remove some unused imports
2011-04-28 18:32 arthur
* [r1437] pynslcd/group.py: remove duplicate and wrong write()
method
2011-04-24 21:01 arthur
* [r1436] nslcd/pam.c: make request indicator shorter
2011-04-24 20:54 arthur
* [r1435] nslcd.h: document use of returned authorisation message
2011-04-24 20:52 arthur
* [r1434] nslcd/pam.c: no longer use the userdn parameter passed
along with each request (this may mean one or two more lookups
when doing authentication but simplifies things)
2011-04-24 20:26 arthur
* [r1433] tests/test_pamcmds.expect: improve handling of
test_login_unknown
2011-04-22 10:02 arthur
* [r1431] nslcd/myldap.c: report correct reported error from
ldap_abandon()
2011-04-18 21:30 arthur
* [r1430] nslcd/nslcd.c: fix r1429 to properly handle absence of
RTLD_NODELETE
2011-04-18 20:53 arthur
* [r1429] nslcd/nslcd.c: support systems without RTLD_NODELETE
2011-04-16 14:00 arthur
* [r1428] nslcd.conf: add example configuration provided by Wesley
Mason
2011-04-15 21:20 arthur
* [r1427] compat/Makefile.am, compat/strndup.c, compat/strndup.h,
configure.ac, nslcd/group.c, nslcd/passwd.c: provide replacement
implementation for strndup() for systems that don't have it
2011-04-15 21:20 arthur
* [r1426] AUTHORS: add Wesley Mason to AUTHOS file (was missing
from r1425)
2011-04-15 21:16 arthur
* [r1425] man/nslcd.conf.5.xml, nslcd/common.c, nslcd/common.h,
nslcd/group.c, nslcd/passwd.c: support using the objectSid
attribute to provide numeric user and group ids, based on a patch
by Wesley Mason
2011-04-15 19:10 arthur
* [r1424] tests/test_nsscmds.sh, tests/test_pamcmds.expect,
tests/test_pamcmds.sh: allow running test_{nss,pam}cmds tests
from another directory
2011-04-03 21:10 arthur
* [r1423] nslcd/group.c, nslcd/pam.c, nslcd/passwd.c: make user and
group name validation errors a little more informative
2011-03-31 20:50 arthur
* [r1422] AUTHORS: add some people who seemed to be missing from
the AUTHORS file
2011-03-31 20:22 arthur
* [r1421] common/tio.c: tv_usec in struct timeval must be lower
than 1000000 (patch by SATOH Fumiyasu)
2011-03-31 20:16 arthur
* [r1420] AUTHORS, Makefile.am: use $(mkinstalldirs) instead of
$(INSTALL_DATA) -D because -D is not supported on all operating
systems (patch by SATOH Fumiyasu)
2011-03-31 19:16 arthur
* [r1419] man/nslcd.conf.5.xml, nslcd/cfg.c: allow usernames of
only two characters
2011-03-26 20:51 arthur
* [r1417] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
files ready for 0.8.2 release
2011-03-26 16:16 arthur
* [r1416] tests/Makefile.am, tests/test_nsscmds.sh,
tests/test_pamcmds.sh: ensure that all test source files are
distibuted and can tests can be run when source directory differs
from build directory
2011-03-26 14:36 arthur
* [r1415] pynslcd/common.py: sync validname regular expression with
nslcd
2011-03-25 21:39 arthur
* [r1414] configure.ac, nslcd/nslcd.c: no longer indefinitely wait
for all worker threads to finish before exiting (but wait a few
seconds on platforms with pthread_timedjoin_np())
2011-03-25 16:15 arthur
* [r1413] tests/Makefile.am, tests/test_cfg.c, tests/test_common.c,
tests/test_myldap.c: re-organise tests somewhat making things
more consistent
2011-03-25 16:08 arthur
* [r1412] debian/nslcd.config, debian/nslcd.postinst: integrate
patch by Daniel Dehennin to not loose debconf values of
previously set options with dpkg-reconfigure
2011-03-25 13:30 arthur
* [r1411] configure.ac, man/nslcd.conf.5.xml, nslcd/cfg.c,
nslcd/cfg.h, nslcd/common.c, tests/Makefile.am,
tests/test_common.c: implement a validnames option that can be
used to fine-tune the test for valid user and group names using a
regular expression
2011-03-24 22:19 arthur
* [r1410] pynslcd/protocol.py, pynslcd/pynslcd.py, pynslcd/rpc.py,
pynslcd/service.py: implement service, protocol and rpc lookups
2011-03-24 22:18 arthur
* [r1409] pynslcd/host.py, pynslcd/network.py: fix the case where
the RDN is for some reason not in the cn
2011-03-24 22:15 arthur
* [r1408] pynslcd/pam.py: fix configuration name
2011-03-24 22:09 arthur
* [r1407] pynslcd/mypidfile.py: truncate pidfile to ensure remains
of previous value is gone
2011-03-23 21:55 arthur
* [r1406] pynslcd/host.py: fix use of spaces
2011-03-23 21:43 arthur
* [r1405] nslcd/protocol.c, nslcd/shadow.c: fix descriptions of
files
2011-03-23 21:28 arthur
* [r1403] compat/daemon.h, configure.ac, nslcd/nslcd.c: provide a
definition of daemon() for systems that lack it
2011-03-23 20:30 arthur
* [r1402] compat/ether.h: typo fix in comment
2011-03-19 15:14 arthur
* [r1401] Makefile.am, common, compat, nslcd, nss, pam, tests,
tests/test_expr.c, tests/test_pamcmds.expect, tests/test_tio.c:
more tests and general test improvements
2011-03-19 15:14 arthur
* [r1400] common/expr.c, nslcd/myldap.h, nslcd/nslcd.c,
nss/common.h, nss/prototypes.h, pam/common.h, pam/pam.c: small
code improvements
2011-03-19 15:13 arthur
* [r1399] nslcd/log.c, nslcd/log.h: remove logging functionality
that isn't used
2011-03-18 14:33 arthur
* [r1398] tests, tests/Makefile.am, tests/in_testenv.sh,
tests/test_nsscmds.sh, tests/test_pamcmds.expect,
tests/test_pamcmds.sh: implement test cases for some of the
common PAM actions (test environment required for this)
2011-03-17 21:02 arthur
* [r1397] configure.ac, tests/Makefile.am, tests/common.h,
tests/test_cfg.c, tests/test_common.c, tests/test_expr.c,
tests/test_getpeercred.c, tests/test_myldap.c, tests/test_tio.c:
put all assertion functions and compatibility code into one
header file
2011-03-17 21:01 arthur
* [r1396] nslcd.conf: put idle_timelimit option in Active Directory
example with low enough default
2011-03-16 21:54 arthur
* [r1395] tests/Makefile.am, tests/test_aliases.c,
tests/test_ethers.c, tests/test_group.c, tests/test_hosts.c,
tests/test_netgroup.c, tests/test_networks.c,
tests/test_nslcd_group.c, tests/test_passwd.c,
tests/test_protocols.c, tests/test_rpc.c, tests/test_services.c,
tests/test_shadow.c: remove legacy test code that is no longer
used
2011-03-14 21:42 arthur
* [r1394] pam/pam.c: check for user existence before trying
password change
2011-03-14 20:19 arthur
* [r1393] common/tio.c: fix a problem in the timeout paramater that
was being passed to select() and could contain too many µsec
(fixes Solaris runtime issue)
2011-03-13 15:25 arthur
* [r1392] tests/test_nsscmds.sh: fix name of script in header
2011-03-12 08:41 arthur
* [r1391] configure.ac: include the resolv library for hstrerror()
on platforms that need it (thanks Peter Bray)
2011-03-12 08:34 arthur
* [r1390] nslcd/common.h, nslcd/pam.c: put all HOST_NAME_MAX
fallbacks in common.h and fall back to _POSIX_HOST_NAME_MAX
(thanks Peter Bray)
2011-03-11 20:37 arthur
* [r1389] Makefile.am: ensure that permissions are sane in the
distributed tarball
2011-03-11 18:02 arthur
* [r1388] nslcd/myldap.c: fix problem with endless loop on
incorrect password
2011-03-11 15:49 arthur
* [r1387] nslcd/common.c, nslcd/common.h: move HOST_NAME_MAX
fallback definition to header file
2011-03-10 21:45 arthur
* [r1385] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
files ready for 0.8.1 release
2011-03-10 20:35 arthur
* [r1384] Makefile.am, common/tio.c, compat/Makefile.am,
compat/ether.h, compat/ldap_compat.h, compat/pam_get_authtok.c,
man/Makefile.am, nslcd/attmap.c, nslcd/attmap.h, nslcd/common.c,
nslcd/common.h, nss/prototypes.h, pam/common.h, pynslcd/ether.py,
pynslcd/pynslcd.py, pynslcd/tio.py: update copyright headers to
add missing years
2011-03-09 22:33 arthur
* [r1383] nslcd/pam.c: fix compiler warning
2011-03-09 22:32 arthur
* [r1382] nslcd/pam.c, nslcd/passwd.c: properly handle
user-not-found errors when doing authentication (CVE-2011-0438)
2011-03-06 15:58 arthur
* [r1381] pynslcd/Makefile.am, pynslcd/netgroup.py,
pynslcd/pynslcd.py: implement module for netgroup lookups
2011-03-06 15:09 arthur
* [r1380] pynslcd/Makefile.am, pynslcd/network.py,
pynslcd/pynslcd.py: add network name lookups
2011-03-06 15:06 arthur
* [r1379] tests/test.ldif.gz, tests/test_nsscmds.sh: add some test
groups and add the arthur user to them to test whether all are
returned correctly
2011-03-06 14:52 arthur
* [r1378] Makefile.am: pass --enable-pynslcd with distcheck
2011-03-06 14:52 arthur
* [r1377] pynslcd/Makefile.am: clean up compiled python files
2011-03-06 14:49 arthur
* [r1376] pynslcd/host.py: fix search filter objectClass for hosts
2011-03-06 14:23 arthur
* [r1375] nslcd/log.c, nslcd/log.h, nslcd/nslcd.c: ensure that
session id is only logged while handling a connection
2011-03-06 13:01 arthur
* [r1374] man/nslcd.conf.5.xml: note that attribute mapping
expressions cannot be used for all attributes
2011-02-14 21:12 arthur
* [r1373] pynslcd/Makefile.am, pynslcd/host.py, pynslcd/pynslcd.py,
pynslcd/tio.py: implement module for hostname lookups
2011-02-14 21:11 arthur
* [r1372] pynslcd/ether.py: fix comment
2011-02-14 21:08 arthur
* [r1371] pynslcd/Makefile.am, pynslcd/debugio.py: clean up and add
missing files to installation
2011-02-11 22:18 arthur
* [r1370] configure.ac: fix FreeBSD nss_ldap soname (as seen in
current FreeBSD packaging)
2011-02-11 22:16 arthur
* [r1369] nslcd/nslcd.c: create the directory for the socket and
pidfile
2011-01-29 20:19 arthur
* [r1368] man/nslcd.conf.5.xml: document a proper replacement for
pam_check_host_attr (thanks Luca Capello) and add a section on
quoting
2011-01-29 20:15 arthur
* [r1367] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/common.c,
nslcd/common.h, nslcd/pam.c: implement a fqdn variable that can
be used inside pam_authz_search filters
2011-01-23 20:59 arthur
* [r1366] man/nslcd.conf.5.xml: name pam_check_service_attr and
pam_check_host_attr options in manual page and indicate how
pam_authz_search replaces them
2011-01-05 19:39 arthur
* [r1365] AUTHORS, HACKING, configure.ac, debian/copyright,
nss/Makefile.am, nss/bsdnss.c, nss/exports.freebsd,
nss/prototypes.h: add FreeBSD support, partially imported from
the FreeBSD port (thanks to Jacques Vidrine, Artem Kazakov and
Alexander V. Chernikov)
2011-01-01 14:46 arthur
* [r1364] nss/Makefile.am: put solnss.c under
EXTRA_nss_ldap_so_SOURCES
2011-01-01 14:25 arthur
* [r1363] man/nslcd.8.xml, man/nslcd.conf.5.xml,
man/pam_ldap.8.xml: add ids to options so we can more easily
reference them from elsewhere (especially useful for generated
HTML)
2011-01-01 14:12 arthur
* [r1362] nslcd/myldap.c: include definition of rc in all code
paths because it's used most of the time
2011-01-01 14:10 arthur
* [r1361] configure.ac: fix quoting of NSS_MODULE_OBJS expression
to one that is supported by more shells
2011-01-01 14:07 arthur
* [r1360] nss/Makefile.am: ensure that solnss.c ends up in tarball
|