Fix image scaling issues.
[obnox/samba-ctdb.git] / WHATSNEW.txt
1                    =================================
2                    Release Notes for Samba 3.2.0pre3
3                                Mar 28, 2008
4                    =================================
5
6 This is the third preview release of Samba 3.2.0.  This is *not*
7 intended for production environments and is designed for testing
8 purposes only.  Please report any defects via the Samba bug reporting
9 system at https://bugzilla.samba.org/.
10
11 Please be aware that Samba is now distributed under the version 3
12 of the new GNU General Public License.  You may refer to the COPYING
13 file that accompanies these release notes for further licensing details.
14
15 Major enhancements in Samba 3.2.0 include:
16
17   File Serving:
18   o Use of IDL generated parsing layer for several DCE/RPC
19     interfaces.
20   o Removal of the 1024 byte limit on pathnames and 256 byte limit on
21     filename components to honor the MAX_PATH setting from the host OS.
22   o Introduction of a registry based configuration system.
23   o Improved CIFS Unix Extensions support.
24   o Experimental support for file serving clusters.
25   o Support for IPv6 in the server, and client tools and libraries.
26   o Support for storing alternate data streams in xattrs.
27   o Encrypted SMB transport in client tools and libraries, and server.
28   o Support for Vista clients authenticating via Kerberos.
29
30   Winbind and Active Directory Integration:
31   o Full support for Windows 2003 cross-forest, transitive trusts
32     and one-way domain trusts.
33   o Support for userPrincipalName logons via pam_winbind and NSS
34     lookups.
35   o Expansion of nested domain groups via NSS calls.
36   o Support for Active Directory LDAP Signing policy.
37   o New LGPL Winbind client library (libwbclient.so).
38
39   Joining:
40   o New NetApi library for domain join related queries (libnetapi.so)
41     and example GTK+ Domain join gui.
42   o New client and server support for remotely joining and unjoining
43     Domains.
44   o Support for joining into Windows 2008 domains.
45
46   Users & Groups:
47   o New ldb backend for local group mapping tables
48   o Raised level of security defaults for authentication operations.
49
50
51   Documentation:
52   o Inclusion of an HTML version of the 3rd edition of "Using Samba"
53     from O'Reilly Publishing.
54
55
56 Now Licensed under the GNU GPLv3
57 ================================
58
59 The Samba Team has adopted the Version 3 of the GNU General Public
60 License for the 3.2 and later releases.   The GPLv3 is the updated
61 version of the GPLv2 license under which Samba is currently
62 distributed. It has been updated to improve compatibility with other
63 licenses and to make it easier to adopt internationally, and is an
64 improved version of the license to better suit the needs of Free
65 Software in the 21st Century.
66
67 The original announcement is available on-line at
68
69     http://news.samba.org/announcements/samba_gplv3/
70
71
72 New Security Defaults for Authentication
73 ========================================
74
75 Support for LanMan passwords is now disabled in both client and server
76 applications.  Additionally, clear text authentication requests are
77 disabled by default in client utilities such as smbclient and all
78 libsmbclient based applications.  This will affect connection both
79 to and from hosts running DOS, Windows 9x/ME, and OS/2.  Please refer
80 to the "Changes" section for details on the exact parameters that were
81 updated.
82
83
84 Registry Configuration Backend
85 ==============================
86
87 Samba is now able to use a registry based configuration backed to
88 supplement smb.conf settings.  This feature may be enabled by setting
89 "config backend = registry" in the [global] section of smb.conf for a
90 registry only configuration, or by specifying "include = registry" to
91 include global options from registry for a mixed setup.
92
93 The new parameter "registry shares = yes" in the [global] section of
94 smb.conf can be used to activate share definitions from registry.
95 These shares are loaded on demand by the server. Registry shares are
96 automatically activated by the global registry options above.
97
98 The configuration stored in registry can be conveniently managed using
99 the "net conf" command.
100
101 More information may be obtained from the smb.conf(5) and net(8) man
102 pages.
103
104
105 Removed Features
106 ================
107
108 Both the Python bindings and the libmsrpc shared library have been
109 removed from the tree due to lack of an official maintainer.
110
111 As smbfs is no longer supported in current kernel versions, smbmount has
112 been removed in this Samba version. Please use cifs (mount.cifs) instead.
113 See examples/scripts/mount/mount.smbfs as an example for a wrapper which
114 calls mount.cifs instead of smbmount/mount.smbfs.
115
116
117 Modified API for libsmbclient
118 ==============================================================================
119
120 Maintaining ABI compatibility for libsmbclient has become increasingly
121 difficult to accomplish, while also keeping the code organization such that it
122 is easily readable.  Towards the goal of maintaining ABI compatibility and
123 also keeping the code easy to maintain and enhance, the API has been enhanced.
124 In particular, the fields in the SMBCCTX context structure are no longer
125 intended to be read/write by the user, and are marked as deprecated.  An
126 application that previously accessed the members of the SMBCCTX context
127 structure will now encounter warnings if recompiled.  This is intentional, to
128 encourage implementation of the small changes required for the new interface.
129 The number of changes is expected to be quite small for the vast majority of
130 applications, and no changes need be made for many applications.  The changes
131 required for KDE (konqueror) to conform to the new interface, for example, are
132 only four lines in only one file.
133
134 Instead of the application manually changing or reading values in the context
135 structure, there are now setter and getter functions for each configurable
136 member in that structure.  Similarly, the smbc_option_get() and
137 smbc_option_set() functions are deprecated in favor of the setter/getter
138 interface.  The setters and getters are all documented in libsmbclient.h
139 under these comment blocks:
140
141   Getters and setters for CONFIGURATION
142   Getters and setters for OPTIONS
143   Getters and setters for FUNCTIONS
144   Callable functions for files
145   Callable functions for directories
146   Callable functions applicable to both files and directories
147
148 Example changes that may be required to eliminate "deprecated" warnings:
149
150   /* Set the debug level */
151   context->debug = 99;
152 changes to:
153   smbc_setDebug(context, 99);
154
155   /* Specify the authentication callback function */
156   context->callbacks.auth_fn = auth_smbc_get_data;
157 changes to:
158   smbc_setFunctionAuthData(context, auth_smbc_get_data);
159
160   /* Specify the new-style authentication callback with context parameter */
161   smbc_option_set("auth_function", auth_smbc_get_data_with_ctx);
162 changes to:
163   smbc_setFunctionAuthDataWithContext(context, auth_smbc_get_data_with_ctx);
164
165   /* Set kerberos flags */
166   context->flags = (SMB_CTX_FLAG_USE_KERBEROS |
167                     SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS);
168 changes to:
169   smbc_setOptionUseKerberos(context, 1);
170   smbc_setOptionFallbackAfterKerberos(context, 1);
171
172
173
174
175 ######################################################################
176 Changes
177 #######
178
179 smb.conf changes
180 ----------------
181
182     Parameter Name                      Description     Default
183     --------------                      -----------     -------
184     administrative share                New             No
185     client lanman auth                  Changed Default No
186     client ldap sasl wrapping           New             plain
187     client plaintext auth               Changed Default No
188     clustering                          New             No
189     cluster addresses                   New             ""
190     config backend                      New             file
191     ctdb socket                         New             ""
192     debug class                         New             No
193     lanman auth                         Changed Default No
194     ldap debug level                    New             0
195     ldap debug threshold                New             10
196     mangle map                          Removed
197     min receive file size               New             0
198     open files database hashsize        Removed
199     read bmpx                           Removed
200     registry shares                     New             No
201     winbind expand groups               New             1
202     winbind rpc only                    New             No
203
204     New special meaning of "include = registry".
205
206
207 Changes since 3.2.0pre2:
208 -----------------------
209
210
211 o   Michael Adam <obnox@samba.org>
212     * Fix session setup with security = share.
213     * Fix segfault in testparm.
214     * Fix several Makefile issues.
215     * Fix build of bin/net on Solaris.
216     * Reformat the parm table of loadparm to use named initializers.
217     * Fix %I macro expansion for IPv4 mapped IPv6 addresses.
218     * Convert registry.tdb to use dbwrap and fix memleaks.
219     * Several make test fixes and improvements.
220     * Several libreplace extensions and fixes (portet from v4-0-test).
221     * Rename libnet_conf to libsmbconf and introduce backend abstraction layer.
222     * Add text backend to libsmbconf, based on params.c.
223     * Fix handling of includes in registry libsmbconf backend.
224     * Fix net conf import by reading from text backend.
225     * Add a "net registry" command to locally access the registry.
226     * Add getvalue subcommand to "net rpc registry".
227     * Add testsuites for libsmbconf and "net registry".
228     * Fix Coverity IDs 517, 536, 545.
229     * Remove unneeded REGISTRY_HOOKS layer from reghook cache
230       to allow plugging one backend to multiple keys more easily.
231     * Add smbconf_init dispatcher taking source strings like "backend:path"
232     * Fix handling of dangling parameters (without share) in libsmbconf.
233     * Introduce special meaning of "include = registry" to complement
234       the registry-only configuration of "config backend = registry".
235     * Enhance error propagation by making several registry functions
236       return WERROR.
237     * Fix loading of registry shares in smbd by fixing the token.
238     * Fix a segfault in tdb_wrap_log().
239
240
241 o   Jeremy Allison <jra@samba.org>
242     * BUG 5311: Fix IPv6 issue with hosts allow/deny settings.
243     * BUG 5372: Fix client timeouts in large CUPS installations.
244     * Fix problem with nmbd not waiting until interfaces come up.
245     * Fix S3 to pass the test_raw_oplock_exclusive3 test.
246     * Fix MSDFS bug breaking MS clients in some cases by ensuring 
247       the target host is ourselves.
248     * Rewrite the wrap checks to deal with gcc 4.x optimisations.
249
250
251 o   Kai Blin <kai@samba.org>
252     * BUG 4235: Prevent ntlm_auth from sending BH responses without a message.
253     * Fix one BH message.
254
255
256 o   Gerald (Jerry) Carter <jerry@samba.org>
257     * Fix libtdb some to move back towards allowing out of tree builds.
258     * Ignore port when pulling IP addr from struct sockaddr_storage..
259
260
261 o   Guenther Deschner <gd@samba.org>
262     * Fix build of pam_smbpass.
263     * Fix lp_load with an empty registry and "config backend = registry".
264     * Fix build targets for bin/net.
265     * Fix _dssetup_DsRoleGetPrimaryDomainInformation().
266     * Fix the build of cifs.spnego.
267     * Migration of the SRVSVC client and server DCE/RPC code to IDL
268       based structures and autogenerated code
269
270
271 o   Björn Jacke <bj@sernet.de>
272     * Add AC_TRY_RUN_STRICT support for Sun Studio compiler.
273
274
275 o   Volker Lendecke <vl@samba.org>
276     * Add support for async SMB requests.
277     * Add transactions to the dbwrap API.
278     * Add "net idmap aclmapset".
279     * Change default bufsize to 512k.
280     * Fix Coverity IDs 473, 481, 506, 507, 525, 526, 527, 528, 529, 530, 537,
281       538, 547, 548, 551, 552, 553, 554, 555, 557, 558, 559, 563, 564, 567.
282       ... and half a ton more
283     * Fix some warnings in the tsmsm module.
284     * Fix warnings.
285     * BUG 4901: Fix "ldap passwd sync = only".
286     * BUG 5334: Fix download of empty files using smbclient.
287     * BUG 5307: Fix notify changes.
288     * BUG 5317: Fix debug output in domain_client_validate.
289     * BUG 5338: Fix format string issue in rpcclient.
290     * Convert account_pol.tdb and share_info.tdb to dbwrap.
291     * Protect group_mapping.tdb ops with transactions.
292     * BUG 5366: "passwd program" should work on Solaris 10 again now.
293     * A level 25 setuserinfo does change the pwdlastset, fixes XP joins.
294     * BUG 5350: A Samba DC trusting NT4 should do an anon session setup.
295     * BUG 5375: Fix a segfault with "security=share" and [in]valid users.
296     * Fix printing from DOS clients -- introduced by inbuf/outbuf rewrite.
297     * Fix wbinfo -a trusted\\user%password on a Samba DC with trusts.
298     * BUG 5341: Fix async smbclient get command on Solaris.
299     * Make winbind use NetSamLogonEx when possible.
300     * Merge fixes in the 3-0-ctdb cluster code.
301     * Fix a segfault in snprintf replacement code.
302     * Fix a regression for wbinfo --group-info if winbind separator is set
303
304
305 o   Derrell Lipman <derrell@samba.org>
306     * Check for NULL pointers before dereferencing them.
307     * Fix use of AuthDataWithContext capability.
308
309
310 o   Stefan Metzmacher <metze@samba.org>
311     * Add dbwrap_tdb2 backend, useful for cluster setups.
312     * Add more functions to libwbclient:
313       - wbcGetGroups()
314       - wbcInterfaceDetails()
315       - wbcListUsers()
316       - wbcListGroups()
317       - wbcLookupUserSids()
318       - wbcSetUidMapping()
319       - wbcSetGidMapping()
320       - wbcSetUidHwm()
321       - wbcSetGidHwm()
322       - wbcResolveWinsByName()
323       - wbcResolveWinsByIP()
324       - wbcCheckTrustCredentials()
325     * Let wbinfo use libwbclient where possible.
326     * Let net use only libwbclient to access winbindd.
327     * Make socket wrapper pcap support more portable.
328     * Some libreplace backports from v4-0-test.
329     * Store the write time in the locking.tdb,
330       so that smbd passes the BASE-DELAYWRITE test.
331     * Run RAW-SEARCH and BASE-DELAYWRITE by 'make test'.
332     * Let each process use its own connection to ctdb
333       in cluster mode.
334     * Add a reinit_after_fork() helper function to correct
335       reinitialize the same things in all cases.
336     * Fix a chicken and egg problem with "include = registry".
337
338
339 o   Karolin Seeger <kseeger@samba.org>
340     * Fix usage message for "net idmap dump".
341
342
343 o   Andrew Tridgell <tridge@samba.org>
344     * Suppress superfluous message.
345
346
347 o   Marc VanHeyningen <marc.vanheyningen@isilon.com>
348     * Coverity fixes.
349
350
351 Changes since 3.2.0pre1:
352 -----------------------
353
354 o   Michael Adam <obnox@samba.org>
355     * Add library for access to the registry configuration data.
356     * BUG 5023: Separate NFS4 and POSIX ACL code in file access checks.
357     * BUG 4308: Fix Excel save operation ACL bug.
358     * Refactor and consolidate logic for retrieving the machine
359       trust password information.
360     * VFS API cleanup (remove redundant parameter).
361     * BUG 4801: Correctly implement LSA lookup levels for LookupNames.
362     * Add new option "debug class" to control printing of the debug class.
363       in debug headers.
364     * Enable building of the zfsacl and notify_fam vfs modules.
365     * BUG 5083: Fix memleak in solarisacl module.
366     * BUG 5063: Fix build on RHEL5.
367     * New smb.conf parameter "config backend = registry" to enable registry
368       only configuration.
369     * Move "net conf" functionality into a separate module libnet_conf.c
370     * Restructure registry code, eliminating the dynamic overlay.
371       Make use of reg_api instead of backend code in most places.
372     * Add support for intercepting LDAP libraries' debug output and print
373       it in Samba's debugging system.
374     * Libreplace fixes.
375     * Build fixes.
376     * Initial support for using subsystems as shared libraries.
377       Use talloc, tdb, and libnetapi as shared libraries internally.
378
379
380 o   Jeremy Allison <jra@samba.org>
381     * Added support for IPv6 client and server connections.
382     * Add in the recvfile entry to the VFS layer.
383     * Removal of pstring data type.
384     * Remove unused utilities: smbctool and rpctorture.
385     * Fix service principal detection to match Windows Vista
386       (based on work from Andreas Schneider).
387     * Encrypted SMB transport in client tools and libraries, and server.
388
389
390 o   Kai Blin <kai@samba.org>
391     * Added support for an SMB_CONF_PATH environment variable
392       containing the path to smb.conf.
393     * Various fixes to ntlm_auth.
394     * make test now supports more extensive SPOOLSS testing using vlp.
395     * Correctly handle mixed-case hostnames in NTLMv2 authentication.
396
397
398 o   Gerald (Jerry) Carter <jerry@samba.org>
399     * Add Winbind client library.
400     * Decouple static linking between smbd and winbindd's client
401       interface.
402
403
404 o   Guenther Deschner <gd@samba.org>
405     * Enhance client and server remote registry access.
406     * Add client calls for remotely joining a computer to a domain
407       (including calls from "net dom" command).
408     * Add libnetapi.so library for joining domains including
409       sample GTK+ app.
410     * Fixes for Vista SP1 Kerberos authdata handling to only pickup
411       the PAC.
412     * Various error code and error message fixes.
413     * Add initial draft of libnetconf to allow programmatic
414       configuration changes.
415     * Add libnet_join internal library for programmatically joining
416       and unjoining Domains.
417     * Add various fixes and new calls to libnetapi.so library.
418     * Various fixes for DsGetDcName and conversion to IDL based
419       structures.
420     * Fixes for pidl to correctly generate WERROR based client calls.
421     * Fixes for pidl to generate output that complies to coding
422       conventions.
423     * Various IDL fixes.
424     * Add ads_get_joinable_ous() to libads to get list of joinable ous.
425     * Add get_logon_hours_from_pdb() to comply with new IDL based
426       structures.
427     * Add debugging capabilities to dump AD connections to libads
428       (using ndr_print).
429     * Add "dump-domain-list" command for smbcontrol to retrieve better
430       debugging information out of winbindd.
431     * Migration of the entire client and server DCE/RPC code to IDL
432       based structures and autogenerated code for DSSETUP, LSA, SAMR
433       and NETLOGON.
434     * Started migration of client and server DCE/RPC code to IDL based
435       structures and autogenerated code for NTSSVC, SVCCTL and
436       EVENTLOG.
437     * Use IDL and autogenerated code for samlogoncache and Kerberos
438       PAC handling.
439     * Various fixes and cleanup of Kerberos PAC handling.
440     * Fix segfault in _srv_net_file_enum.
441     * Conversion of client join and unjoin code to libnet_join.
442     * Add remote join/unjoin server-side implementation.
443     * Removed a lot of code which has become obsolete.
444
445
446 o   Steve Langasek <vorlon@debian.org>
447     * Integrate 2 out of 3 --with-fhs patches from Debian packaging
448       for better adherence to the FHS standard.
449
450
451 o   Volker Lendecke <vl@samba.org>
452     * Add talloc_stackframe() and talloc_pool() features.
453     * Removal of pstring data type.
454     * Add generic a in-memory cache.
455     * Import the Linux red-black tree implementation.
456     * Remove large amount of global variables.
457     * Support for storing xattrs in tdb files.
458     * Support for storing alternate data streams in xattrs.
459     * Implement a generic in-memory cache based on rb-trees.
460     * Add implicit temporary talloc contexts via talloc_stack().
461     * Speed up the smbclient "get" command
462     * Add the aio_fork module
463     * Fix bug 4901
464
465 o   Derrell Lipman <derrell@samba.org>
466     * Modified libsmbclient API for more easily maintaining ABI compatibility
467       while adding new features to libsmbclient.
468
469 o   Stefan Metzmacher <metze@samba.org>
470     * Refactor Winbind internal parent-child interface tables
471       to achieve better unit testing support.
472     * Add nss_wrapper API for local Winbind unit tests.
473     * Networking fixes to the libreplace library.
474     * Pidl fixes.
475     * Remove unused Winbind pipe calls.
476     * Build fixes.
477     * Fix for a crash bug in pidl generated client code.
478       This could have happend with [in,out,unique] pointers
479       when the client sends a valid pointer, but the server
480       responds with a NULL pointer (as samba-3.0.26a does for some calls).
481     * Change NTSTATUS into enum ndr_err_code in librpc/ndr.
482     * Remove unused calls in the struct based winbindd protocol.
483     * Add --configfile option to wbinfo.
484     * Convert winbind_env_set(), winbind_on() and winbind_off() into macros.
485     * Return rids and other_sids arrays in WBFLAG_PAM_INFO3_TEXT mode.
486     * Implement wbcErrorString() and wbcAuthenticateUserEx().
487     * Convert auth_winbind to use wbcAuthenticateUserEx().
488
489
490 o   James Peach <jpeach@samba.org>
491     * Add support for DNS Service Discovery.  Based on work from
492       Rishi Srivatsavai <rishisv@gmail.com>.
493
494
495 o   Andreas Schneider <anschneider@suse.de>
496     * Don't restart winbind if a corrupted tdb is found during
497       initialization.
498     * Fix Windows 2008 (Longhorn) join.
499     * Add share parameter "administrative share".
500
501
502 o   Karolin Seeger <ks@sernet.de>
503     * Improve error messages of net subcommands.
504     * Add 'net rap file user'.
505     * Change LDAP search filter to find machine accounts which
506       are not located in the user suffix.
507     * Remove smbmount.
508
509
510 o   David Shaw <dshaw@jabberwocky.com>
511     * BUG 5073: Allow "delete readonly = yes" to correctly override
512       deletion of a file.
513
514
515 o   Rishi Srivatsavai <rishisv@gmail.com>
516     * Register the smb service with mDNS if mDNS is supported.
517     * Add smbclient support for basic mDNS browsing.
518
519
520 o   Andrew Tridgell <tridge@samba.org>
521     * Fix padding between Winbind 32bit/64bit client library in
522       the request/response structures.
523     * Added a syncops VFS module for file systems which do not
524       guarantee meta-data operations are immediately committed to
525       disk in stable form.
526
527
528 o   Jelmer Vernooij <jelmer@samba.org>
529     * Additional portability support for building shared libraries.
530
531
532 o   Corinna Vinschen <corinna@vinschen.de>
533     * Get Samba version or capability information from Windows user space.
534
535
536 Original 3.2.0pre1 commits:
537 ---------------------------
538 o   Michael Adam <obnox@samba.org>
539     * Unified POSIX ACL detection including support for FreeBSD and
540       HP-UX.
541     * Performance improvements for Winbind's lookup functions (names,
542       SIDs, and group membership) when joined to an AD domain.
543     * Winbind cache validation support.
544     * Store domain trust passwords for Samba domain controller's in
545       the domain's passdb backend.
546     * Merged \winreg server code from the SAMBA_3_2 development branch.
547     * Fixes for libreplace.
548     * Implement new registry configuration backend.
549
550
551 o   Jeremy Allison <jra@samba.org>
552     * Add support for file system objectIDs.
553     * Winbind cache validation support.
554     * Add in the UNIX capability for 24-bit readX.
555     * Improve Delete-on-Close semantics.
556     * Removal of static file and path name buffers in SMB file serving
557       code.
558
559
560 o   Danilo Almeida <dalmeida@centeris.com>
561     * Move the machine account to the OU specified when running "net
562       ads join".
563
564
565 o   Andrew Bartlett <abartlet@samba.org>
566     * Tighten authentication protocol defaults in client tools and
567       servers.
568
569
570 o   Gerald (Jerry) Carter <jerry@samba.org>
571     * Implement support for one-way trusts and two-way cross-forest
572       transitive trust in winbindd.
573     * Fixes for Winbind's offline/disconnected logon support when
574       using remote idmap backends.
575     * Fix LookupNames and LookupSids to use the same resolution
576       heuristics as Windows XP.
577     * Fix lockups in Winbind when running nscd.
578     * UPN logon support in pam_winbind.
579     * Add support for GNU linker scripts when build shared libraries
580       (based on work by Julien Cristau <jcristau@debian.org> and James
581       Peach).
582
583
584 o   Guenther Deschner <gd@samba.org>
585     * Additional support for decoding and downloading group policy
586       objects from Active Directory.
587     * Improvements to "net ads keytab" command.
588     * Fixes for linking against Heimdal Kerberos client libs.
589     * Support LDAP range retrieval searches.
590     * Fixes for failure to refresh user ticket caches in Winbind.
591     * UPN logon support in pam_winbind.
592     * Add KDC locator plugin for MIT kerberos 1.6 or later.
593
594
595 o   Steve Langasek <vorlon@debian.org>
596     * Allow SIGTERM to cause nmbd to exit while awaiting a interface
597       to come up.
598
599
600 o   Volker Lendecke <vl@samba.org>
601     * Merge experimental cluster support patches from the ctdb branch.
602     * Add tdb storage abstraction for ctdb.
603     * Use IDL for internal message passing system.
604     * Add client support for the SamLogonEx() authentication request.
605     * Implement RPC proxy stubs in the Samba server code to allow
606       replacing implementation functions one by one.
607     * Remove static incoming and outgoing buffers from core server SMB
608       packet processing code.
609     * Add "net sam rights" command.
610
611
612 o   Steve French <sfrench@samba.org>
613     * Fixes for mount.cifs Linux utility.
614
615
616 o   Stefan Metzmacher <metze@samba.org>
617     * Fixes for libreplace.
618     * Add support for LDAP digital signing policy.
619     * Experimental clustered file system support.
620
621
622 o   Lars Mueller <lars@samba.org>
623     * Makefile and build fixes.
624     * Add pam_pwd_expire for pam_winbind (original patch from Andreas
625       Schneider).
626
627
628 o   James Peach <jpeach@apple.com>
629     * Fixes for setgroups() and *BSD and Darwin.
630     * Support membership of >16 groups on Darwin.
631
632
633 o   Jiri Sasek <Jiri.Sasek@Sun.COM>
634     * Added vfs_zfsacl module.
635
636
637 o   Karolin Seeger <ks@sernet.de>
638     * Add deletelocalgroup and unmapunixgroup subcommand to "net sam".
639     * Cleanup internal passdb functions.
640
641
642 o   Simo Sorce <idra@samba.org>
643     * Fixes for IDmap and Passdb backends.
644
645
646 o   Andrew Tridgell <tridge@samba.org>
647     * Port ldb from the Samba 4 tree and add ldb group mapping plugin.
648     * Move several file serving related tdb files to use the dbwrap
649       API internally.
650     * Cleanup the GPFS VFS plugin.
651     * Experimental clustered file system support.
652
653
654 o   Jelmer Vernooij <jelmer@samba.org>
655     * Implement NDR basic to support utilizing IDL files from Samba 4
656       tree for general DCE/RPC parsing stubs.
657
658
659
660 ######################################################################
661 Reporting bugs & Development Discussion
662 #######################################
663
664 Please discuss this release on the samba-technical mailing list or by
665 joining the #samba-technical IRC channel on irc.freenode.net.
666
667 If you do report problems then please try to send high quality
668 feedback. If you don't provide vital information to help us track down
669 the problem then you will probably be ignored.  All bug reports should
670 be filed under the Samba 3.2 product in the project's Bugzilla
671 database (https://bugzilla.samba.org/).
672
673
674 ======================================================================
675 == Our Code, Our Bugs, Our Responsibility.
676 == The Samba Team
677 ======================================================================
678