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