]> arthur.barton.de Git - netatalk.git/blob - NEWS
systemd unit dir is /usr/lib/systemd/system now
[netatalk.git] / NEWS
1 Changes in 3.0.5
2 ================
3 * FIX: Fix a crash when using pam_winbind. Fixes bug #516.
4 * NEW: New global/volume option "ignored attributes"
5 * FIX: "afp listen" option failed to take IPv6 addresses. Bug #515.
6 * FIX: Fix a possible crash in set_groups. Bug #518.
7 * NEW: Send optional AFP messages for vetoed files, new option
8        "veto messages" can be used to enable sending messages.
9        Then whenever a client tries to access any file or directory
10        with a vetoed name, it will be sent an AFP message indicating
11        the name and the directory. From FR #81.
12 * NEW: New boolean volume option "delete veto files". If this option is
13        set to yes, then Netatalk will attempt to recursively delete any
14        vetoed files and directories. FR #82.
15 * UPD: systemd unit dir is /usr/lib/systemd/system .
16
17 Changes in 3.0.4
18 ================
19 * FIX: Opening files without metadata EA may result in an invalid
20        metadata EA. Check for malformed metadata EAs and delete them.
21        Fixes bug #510.
22 * FIX: Fix an issue with filenames containing non-ASCII characters that
23        lead to a failure setting the size of a files ressource fork.
24        This affected application like Adobe Photoshop where saving
25        files may fail. Fixes bug #511.
26 * UPD: Enhance ACL mapping, change global ACL option 'map acl' to take
27        the following options: "none", "rights" (default), "mode".
28        none   = no mapping, this resembles the previous false/no setting
29        rights = map ACLs to Finder UARights, this resembles the previous
30                 true/yes setting. This is the default.
31        mode   = map ACLs to Finder UARights and UNIX mode
32        From FR #73.
33 * FIX: Fix a possible crash in cname() where cname_mtouname calls
34        dirlookup() where the curdir is freed because the dircache
35        detected a dev/inode cache difference and evicted the object
36        from the cache. Fixes bug #498.
37 * FIX: Add missing include, fixes bug #512.
38 * FIX: Change default FinderInfo for directories to be all 0, fixes
39        bug 514.
40 * NEW: New option "afp interfaces" which allows specifying where
41        Netatalk listens for AFP connections by interface names.
42        From FR #79.
43
44 Changes in 3.0.3
45 ================
46 * UPD: afpd: Increase default DSI server quantum to 1 MB
47 * UPD: bundled libevent2 is now static
48 * NEW: --with-lockfile=PATH configure option for specifying an
49        alternative path for the netatalk lockfile.
50 * UPD: systemd service file use PIDFile and ExecReload.
51        From FR #70.
52 * UPD: RedHat sysvinit: rm graceful, reimplement reload, add condrestart
53 * FIX: Couldn't create folders on FreeBSD 9.1 ZFS fileystems.
54        Fixed bug #491.
55 * FIX: Fix an issue with user homes when user home directory has not the
56        same name as the username.
57        Fixes bug #497.
58 * UPD: Fix PAM config install, new default installation dir is
59        $sysconfdir/pam.d/. Add configure option --with-pam-confdir
60        to specify alternative path.
61 * NEW: AFP stats about active session via dbus IPC. Client side python
62        program `afpstats`. Requires dbus, dbus-glib any python-dbus.
63        configure option --dbus-sysconf-dir for specifying dbus
64        system security configuration files.
65        New option 'afpstats' (default: no) which determines whether
66        to enable the feature or not.
67 * NEW: configure option --with-init-dir
68 * NEW: dtrace probes, cf include/atalk/afp_dtrace.d for available
69        probes.
70 * UPD: Reload groups when reloading volumes. FR #71.
71 * FIX: Attempt to read read-only ._ rfork results in disconnect.
72        Fixes bug #502.
73 * FIX: File's ressource fork can't be read if metadata EA is missing.
74        Fixes bug #501.
75 * FIX: Conversion from adouble v2 to ea for directories.
76        Fixes bug #500.
77 * FIX: Error messages when mounting read-only filesystems.
78        Fixes bug #504.
79 * FIX: Permissions of ._ AppleDouble ressource fork after conversion
80        from v2 to ea.
81        Fixes bug #505.
82 * UPD: Use FreeBSD sendfile() capability to send protocol header.
83        From FR #75.
84 * UPD: Increase IO size when sendfile() is not used.
85        From FR #76.
86 * FIX: Can't set Finder label on symlinked folder with "follow symlinks = yes".
87        Fixes bug #508.
88 * FIX: Setting POSIX ACLs on Linux
89        Fixes bug #506.
90 * FIX: "ad ls" segfault if requested object is not in an AFP volume.
91        Fixes bug #496.
92
93 Changes in 3.0.2
94 ================
95 * NEW: afpd: Put file extension type/creator mapping back in which had
96        been removed in 3.0.
97 * NEW: afpd: new option 'ad domain'. From FR #66.
98 * FIX: volumes and home share with symlinks in the path
99 * FIX: Copying packages to a Netatalk share could fail, bug #469
100 * FIX: Reloading volumes from config file was broken.  Fixes bug #474.
101 * FIX: Fix _device-info service type registered with dns-sd API
102 * FIX: Fix pathname bug for FCE modified event.
103 * FIX: Remove length limitation of options like "valid users".
104        Fixes bug #473.
105 * FIX: Dont copy our metadata EA in copyfile(). Fixes bug #452.
106 * FIX: Fix an error where catalog search gave incomplete results.
107        Fixes bug #479.
108 * REM: Remove TimeMachine volume used size FCE event.
109 * UPD: Add quoting support to '[in]valid users' option. Fixes bug #472.
110 * FIX: Install working PAM config on Solaris 11. Fixes bug #481.
111 * FIX: Fix a race condition between dbd and the cnid_dbd daemon
112        which could result in users being disconnected from volumes
113        when dbd was scanning their volumes. Fixes bug #477.
114 * FIX: Netatalk didn't start when the last line of the config file
115        afp.conf wasn't terminated by a newline. Fixes bug #476.
116 * NEW: Add a new volumes option 'follow symlinks'. The default setting is
117        false, symlinks are not followed on the server. This is the same
118        behaviour as OS X's AFP server.
119        Setting the option to true causes afpd to follow symlinks on the
120        server. symlinks may point outside of the AFP volume, currently
121        afpd doesn't do any checks for "wide symlinks".
122 * FIX: Automatic AppleDouble conversion to EAs failing for directories.
123        Fixes bug #486.
124 * FIX: dbd failed to convert appledouble files of symlinks.
125        Fixes bug #490.
126
127 Changes in 3.0.1
128 ================
129 * NEW: afpd: Optional "ldap uuid encoding = string | ms-guid" parameter to
130        afp.conf, allowing for usage of the binary objectGUID fields from
131        Active Directory.
132 * FIX: afpd: Fix a Solaris 10 SPARC sendfilev bug
133 * FIX: afpd: Fix a crash on FreeBSD
134 * FIX: afpd: Fixes open file handle refcounting bug which was reported as
135        being unable to play movies off a Netatalk AFP share.
136        Bug ID 3559783.
137 * FIX: afpd: Fix a possible data corruption when reading from and writing
138        to the server simultaniously under load
139 * FIX: Fix possible alignment violations due to bad casts
140 * FIX: dbd: Fix logging
141 * FIX: apple_dump: Extended Attributes AppleDouble support for *BSD
142 * FIX: handling of '/' and ':' in volume name
143 * UPD: Install relevant includes necessary for building programs with
144        installed headers and shared lib libatalk
145 * UPD: libevent configure args to pick up installed version. Removed
146        configure arg --disable-libevent, added configure args
147        --with-libevent-header|lib.
148 * UPD: gentoo initscript: merge from portage netatalk.init,v 1.1
149 * REM: Remove --with-smbsharemodes configure option, it was an
150        empty stub not yet implemented
151
152 Changes in 3.0
153 ==============
154
155 * UPD: afpd: force read only mode if cnid scheme is last
156 * REM: afpd: removed global option "icon"
157 * FIX: CNID path for user homes
158
159 Changes in 3.0 beta2
160 ====================
161
162 * UPD: Solaris and friends: Replace initscript with SMF manifest
163 * FIX: Solaris and friends: resource fork handling
164
165 Changes in 3.0 beta1
166 ====================
167
168 * UPD: afpd: Performance tuning of read/write AFP operations. New option
169        "afp read locks" (default: no) which disables that the server
170        applies UNIX byte range locks to regions of files in AFP read and
171        write calls.
172 * UPD: apple_dump: Extended Attributes AppleDouble support.
173        (*BSD is not supported yet)
174
175 Changes in 3.0 alpha3
176 =====================
177
178 * NEW: afpd: Per volume "login message", NetAFP bug ID #18
179 * NEW: afpd: Cross-platform locking (share modes) on Solaris and derivates
180        with Solaris CIFS/SMB server. Uses new Solaris fcntl F_SHARE share
181        reservation locking primitives. Enabled by default, set global
182        "solaris share reservations" option to false to disable it.
183 * NEW: ad: ad set subcommand for changing Mac metadata on the server
184 * UPD: unix charset is UTF8 by default.
185        vol charset is same value as unix charset by default.
186 * UPD: .AppleDesktop/ are stored in $localstatedir/netatalk/CNID
187        (default: /var/netatalk/CNID), databases found in AFP volumes are
188        automatically moved
189 * FIX: afpd: Server info packet was malformed resulting in broken
190        server names being displayed on clients
191 * FIX: afpd: Byte order detection. Fixes an error where Netatalk on
192        OpenIndiana returned wrong volume size information.
193
194 Changes in 3.0 alpha2
195 =====================
196
197 * UPD: afpd: Store '.' as is and '/' as ':' on the server, don't
198        CAP hexencode as "2e" and "2f" respectively
199 * UPD: afdp: Automatic name conversion, renaming files and directories
200        containing CAP sequences to their not enscaped forms
201 * UPD: afpd: Correct handling of user homes and users without homes
202 * UPD: afpd: Perform complete automatic adouble:v2 to adouble:ea conversion
203        as root. Previously only unlinking the adouble:v2 file was done as root
204 * UPD: dbd: -C option removes CAP encoding
205 * UPD: Add graceful option to RedHat init script
206 * UPD: Add --disable-bundled-libevent configure options When set to yes,
207        we rely on a properly installed version on libevent CPPFLAGS and LDFLAGS
208        should be set properly to pick that up
209 * UPD: Run ldconfig on Linux at the end of make install
210 * FIX: afpd: ad cp on appledouble = ea volumes
211 * FIX: dbd: ignore ._ appledouble files
212 * REM: Volumes options "use dots" and "hex encoding"
213
214 Changes in 3.0 alpha1
215 =====================
216
217 * NEW: Central configuration file afp.conf which replaces all previous files
218 * NEW: netatalk: service controller starting and restarting afpd and cnid_metad
219        as necessary
220 * NEW: afpd: Extended Attributes AppleDouble backend (default)
221 * UPD: CNID databases are stored in $localstatedir/netatalk/CNID
222        (default: /var/netatalk/CNID), databases found in AFP volumes are
223        automatically moved
224 * UPD: Start scripts and service manifests have been changed to only start
225        the new netatalk service controller process
226 * UPD: afpd: UNIX privileges and use dots enabled by default
227 * UPD: afpd: Support for arbitrary AFP volumes using variable expansion has been
228        removed
229 * UPD: afpd: afp_voluuid.conf and afp_signature.conf location has been
230        changed to $localstatedir/netatalk/ (default: /var/netatalk/)
231 * UPD: afpd: default server messages dir changed to $localstatedir/netatalk/msg/
232 * UPD: dbd: new option -C for conversion from AppleDouble v2 to ea
233 * REM: AppleTalk support has been removed
234 * REM: afpd: SLP and AFP proxy support have been removed
235 * REM: afpd: legacy file extension to type/creator mapping has been removed
236 * REM: afpd: AppleDouble backends v1, osx and sfm have been removed
237
238 Changes in 2.2.4
239 ================
240
241 * FIX: Missing UAM links
242 * FIX: Lockup in AFP logout on Fedora 17
243 * FIX: Reset signal handlers and alarm timer after successfull PAM
244        authentication. Fixes a problem with AFP disconnects caused
245        by pam_smbpass.so messing with our handlers and timer.
246 * FIX: afpd: Fix a possible problem with sendfile on Solaris derived
247        platforms
248
249 Changes in 2.2.3
250 ================
251
252 * NEW: afpd: support for mdnsresponder
253 * NEW: afpd: new LDAP config option ldap_uuid_string
254 * UPD: based on Unicode 6.1.0
255 * UPD: experimental systemd service files: always run both afpd and cnid_metad
256 * UPD: afpd: Ensure our umask is not altered by eg pam_umask
257 * UPD: afpd: Use GSS_C_NO_NAME as server principal when Kerberos options -fqdn
258        and -krb5service are not set, from Jamie Gilbertson
259 * UPD: afpd: Changed behaviour for TimeMachine volumes in case there's a problem
260        talking to the CNID daemons. Previously the volume was flagged read-only
261        and an AFP message was sent to the client. As this might result in
262        TimeMachine assuming the backup sparse bundle is damaged, we now just
263        switch the CNID database to an in-memory tdb without the additional stuff.
264 * FIX: afpd: sendfile() on FreeBSD was broken, courtesy of Denis Ahrens
265 * FIX: afpd: Dont use searchdb when doing partial name search
266 * FIX: afpd: Fix a possible bug handling disconnected sessions,
267        NetAFP Bug ID #16
268 * FIX: afpd: Close IPC fds in afpd session child inherited from the afpd
269        master process
270 * FIX: dbd: Don't remove BerkeleyDB if it's still in use by eg cnid_dbd, fixes
271        bug introduced in 2.2.2
272 * FIX: debian initscript: start avahi-daemon (if available) before atalkd
273 * FIX: Zeroconf could not advertise non-ASCII time machine volume name
274
275 Changes in 2.2.2
276 ================
277
278 * NEW: afpd: New option "adminauthuser". Specifying eg "-adminauthuser root"
279        whenever a normal user login fails, afpd tries to authenticate as
280        the specified adminauthuser. If this succeeds, a normal session is
281        created for the original connecting user. Said differently: if you
282        know the password of adminauthuser, you can authenticate as any other
283        user.
284 * NEW: configure option "--enable-suse-systemd" for openSUSE12.1 and later.
285        "--enable-redhat-systemd" and "--enable-suse-systemd" are same as
286        "--enable-systemd".
287        "--enable-suse" is renamed "--enable-suse-sysv".
288 * NEW: experimental systemd service files in distrib/systemd/
289 * UPD: afpd: Enhanced POSIX ACL mapping semantics, from Laura Mueller
290 * UPD: afpd: Reset options every time a :DEFAULT: line is found in a
291        AppleVolumes file
292 * UPD: afpd: Convert passwords from legacy encoding (wire format) to host
293        encoding, NetAFP Bug ID #14
294 * UPD: afpd: Don't set ATTRBIT_SHARED flag for directories
295 * UPD: afpd: Use sendfile() on Solaris and FreeBSD for sending data
296 * UPD: afpd: Faster volume used size calculation for "volsizelimit" option,
297        cf man AppleVolume.default for details
298 * FIX: afpd: ACL access checking
299 * FIX: afpd: Fix an error when duplicating files that lacked an AppleDouble
300        file which lead to a possible Finder crash
301 * FIX: afpd: Read-only filesystems lead to afpd processes running as root
302 * FIX: afpd: Fix for filesystem without NFSv4 ACL support on Solaris
303 * FIX: afpd: Fix catsearch bug, NetAFP Bug ID #12
304 * FIX: afpd: Fix dircache bug, NetAFP Bug ID #13
305 * FIX: dbd: Better checking for duplicated or bogus CNIDs from AppleDouble
306        files
307 * FIX: dbd: Remove BerkeleyDB database environment after running `dbd`. This
308        is crucial for the automatic BerkeleyDB database upgrade feature which
309        is built into cnid_dbd and dbd.
310 * FIX: Fix compilation error when AppleTalk support is disabled
311 * FIX: Portability fixes
312 * FIX: search of surrogate pair
313
314 Changes in 2.2.1
315 ================
316
317 * NEW: afpd: disable continous service feature by default, new option
318        -keepsessions to enable it
319 * NEW: configure option "--enable-redhat-systemd" for Fedora15 and later.
320        "--enable-redhat" is renamed "--enable-redhat-sysv".
321 * UPD: afpd: Enhance ACL support detection for volumes: enable them per volume
322        if
323        1) ACL support compiled in, 2) the volume supports ACLs, 3) the new
324        volume option "noacls" is not set for the volume.
325        The previous behaviour was to enable ACL support for a volume if
326        1) it was compiled in and 2) the volume supported ACLs. There was no way
327        to disable ACLs for a volume.
328 * UPD: afpd: add a configurable hold time option to FCE file modification event
329        generation, default is 60 s, new option "fceholdfmod" to change it
330 * UPD: afpd: add support for new NetBSD quota subsystem, Bug ID 3249879
331 * FIX: afpd: increase BerkeleyDB locks and lockobjs
332 * FIX: afpd: create special folder as root
333 * FIX: afpd: fix compilation error if --enable-ddp is used
334 * FIX: afpd: More robust IPC reconnect error handling
335 * FIX: afpd: ACL access checking
336 * FIX: afpd: fix a possible race condition between SIGCHLD handler and
337        new connection attempts
338 * FIX: afpd: fix undefined behaviour when more then ~510 connetions where
339        established
340 * FIX: afpd: fix a crash when searching for a UUID that is not a special
341        local UUID and LDAP support is not compiled in
342 * FIX: afpd: .volinfo file not created on first volume access if user in rolist
343 * FIX: afpd: possible crash at startup when registering with Avahi
344        when Avahi is not running
345 * FIX: afpd: return correct user/group type when mapping UUIDs to names
346 * FIX: afpd: for directories add DARWIN_ACE_DELETE ACE
347        if DARWIN_ACE_ADD_SUBDIRECTORY is set
348 * FIX: afpd: afpd crashed when it failed to register with Avahi because eg
349        user service registration is disabled in the Avahi config
350 * FIX: dbd: function checking and removing malformed ad:ea header files failed
351        to chdir back to the original working directory
352 * FIX: cnid_dbd: increase BerkeleyDB locks and lockobjs
353 * FIX: cnid_dbd: implement -d option, deletes CNID db
354 * FIX: dbd: better detection of local (or SMB/NFS) modifications on AFP volumes
355 * FIX: suse: initscript return better status
356 * FIX: Sourcecode distribution: add missing headers
357 * FIX: Solaris 10: missing dirfd replacement function
358 * FIX: case-conversion of surrogate pair
359 * FIX: Compilation error on GNU/kFreeBSD, fixes Bug ID 3392794 and
360        Debian #630349
361 * FIX: Fix Debian Bug#637025
362 * FIX: Multiple *BSD compilation compatibility fixes, Bug ID 3380785
363 * FIX: precompose_w() failed if tail character is decomposed surrogate pair
364
365 Changes in 2.2.0
366 ==============
367
368 * NEW: afpd: new volume option "nonetids"
369 * NEW: afpd: ACL access check caching
370 * NEW: afpd: FCE event notifications
371 * NEW: afpd: new option "-mimicmodel" for specifying Bonjour model registration
372 * UPD: Support for Berkeley DB 5.1
373 * UPD: case-conversion is based on Unicode 6.0.0
374 * UPD: cnid_metad: allow up to 4096 volumes
375 * UPD: afpd: only forward SIGTERM and SIGUSR1 from parent to childs
376 * UPD: afpd: use internal function instead of popening du -sh in order to
377        calculate the used size of a volume for option "volsizelimit"
378 * UPD: afpd: Add negative UUID caching, enhance local UUID handling
379 * FIX: afpd: configuration reload with SIGHUP
380 * FIX: afpd: crashes in the dircache
381 * FIX: afpd: Correct afp logout vs dsi eof behaviour
382 * FIX: afpd: new catsearch was broken
383 * FIX: afpd: only use volume UUIDs in master afpd
384 * FIX: dbd: Multiple fixes, reliable locking
385 * FIX: ad file suite: fix an error that resulted in CNID database
386        inconsistencies
387
388 Changes in 2.2beta4
389 ===================
390
391 * NEW: afpd: new afpd.conf options "tcprcvbuf" and "tcpsndbuf" to customize
392        the corresponding TCP socket options.
393 * NEW: afpd: new afpd.conf option "nozeroconf" which disabled automatic
394        Zeroconf service registration.
395 * FIX: afpd: generate mersenne primes for DHX2 UAM once at startup,
396        not for every login
397 * FIX: afpd: DSI streaming deadlock
398 * FIX: afpd: extended sleep
399 * FIX: afpd: directory cache
400 * FIX: Support for platforms that do not have the *at functions
401 * UPD: afpd: put POSIX write lock on volume files while reading them
402
403 Changes in 2.2beta3
404 ===================
405
406 * FIX: afpd: fix option volsizelimit to return a usefull value for the
407        volume free space using `du -sh` with popen
408 * FIX: afpd: fix idle connection disconnects
409 * FIX: afpd: don't disconnect sessions for clients if boottimes don't match
410 * FIX: afpd: better handling of very long filenames that contain many
411        multibyte UTF-8 glyphs
412
413 Changes in 2.2beta2
414 ====================
415
416 * NEW: afpd: AFP 3.3
417 * UPD: afpd: AFP 3.x can't be disabled
418
419 Changes in 2.2beta1
420 ====================
421
422 * FIX: composition of Surrogate Pair
423 * UPD: gentoo,suse,cobalt,tru64: inistscript name is "netatalk", not "atalk"
424 * UPD: gentoo: rc-update install don't hook in the Makefile
425
426 Changes in 2.2alpha5
427 ====================
428
429 * UPD: afpd: new option "searchdb" which enables fast catalog searches
430        using the CNID db.
431 * UPD: Case-insensitive fast search with the CNID db
432 * UPD: cnid_dbd: afpd now passes the volume path, not the db path when
433        connecting for a volume. cnid_dbd will read the
434        ".AppleDesktop/.volinfo" file of the volume in order to figure
435        out the CNID db path and the volume charset encoding.
436
437 Changes in 2.2alpha4
438 ====================
439
440 * NEW: Enhanced CNID "dbd" database for fast name search support.
441        Important: this makes cnidscheme "cdb" incompatible with "dbd".
442 * NEW: afpd: support for fast catalog searches
443 * NEW: ad utility: ad find
444 * UPD: afpd: CNID database versioning check for "cdb" scheme
445 * UPD: cnid_dbd: CNID database versioning and upgrading. Additional
446        CNID database index for fast name searches.
447
448 Changes in 2.2alpha3
449 ====================
450
451 * FIX: afpd: various fixes
452 * FIX: Any daemon did not run if atalkd doesn't exist (redhat/debian)
453
454 Changes in 2.2alpha2
455 ====================
456
457 * FIX: afpd: fix compilation error when ACL support is not available
458 * FIX: Ensure Appletalk manpages and config files are distributed
459
460 Changes in 2.2alpha1
461 ====================
462
463 * NEW: ad utility: ad cp
464 * NEW: ad utility: ad rm
465 * NEW: ad utility: ad mv
466 * NEW: afpd: dynamic directoy and CNID cache (new config option -dircachesize)
467 * NEW: afpd: POSIX 1e ACL support
468 * NEW: afpd: automagic Zeroconf registration with avahi, registering both
469        the service _afpovertcp._tcp and TimeMachine volumes with _adisk._tcp.
470 * UPD: afpd: ACLs usable (though not visible on the client side) without common
471        directory service, by mapping ACLs to UARight
472 * UPD: afpd: performance improvements for ACL access calculations
473 * UPD: AppleTalk is disabled by default at configuration time. If needed
474        use configure switch --enable-ddp.
475 * FIX: afpd: Solaris 10 compatibilty fix: don't use SO_SNDTIMEO/SO_RCVTIMEO,
476        use non-blocking IO and select instead.
477 * FIX: cnid_dbd: Solaris 10 compatibilty fix: don't use SO_SNDTIMEO/SO_RCVTIMEO,
478        use non-blocking IO and select instead.
479 * REM: afile/achfile/apple_cp/apple_mv/apple_rm: use ad
480
481 Changes in 2.1.6
482 ================
483
484 * FIX: afpd: Fix for LDAP user cache corruption
485 * FIX: afpd: Fix for not shown ACLs for when filesyem uid or gid
486        couldn't be resolved because (eg deleted users/groups)
487 * FIX: gentoo: cannot set $CNID_CONFIG
488 * FIX: ubuntu: servername was empty
489 * FIX: Solaris: configure script failed to enable DDP module
490 * FIX: AppleDouble buffer overrun by extremely long filename
491 * UPD: afpd: return version info with machine type in DSIGetStatus
492 * UPD: dbd: use on-disk temporary rebuild db instead of in-memory db
493 * UPD: suse: initscript update
494
495 Changes in 2.1.5
496 ================
497
498 * UPD: afpd: support newlines in -loginmesg with \n escaping syntax
499 * UPD: afpd: support for changed chmod semantics on ZFS with ACLs
500        in onnv145+
501 * FIX: afpd: fix leaking ressource when moving objects on the server
502 * FIX: afpd: backport Solaris 10 compatibilty fix from 2.2: don't use
503        SO_SNDTIMEO/SO_RCVTIMEO, use non-blocking IO and select instead.
504 * FIX: afpd: misaligned memory access on Sparc in ad_setattr, fixes
505        bug 3110004.
506 * FIX: cnid_dbd: backport Solaris 10 compatibilty fix from 2.2: don't
507        use SO_SNDTIMEO/SO_RCVTIMEO, use non-blocking IO and select instead.
508
509 Changes in 2.1.4
510 ================
511
512 * FIX: afpd: Downstream fix for FreeBSD PR 148022
513 * FIX: afpd: Fixes for bugs 3074077 and 3074078
514 * FIX: afpd: Better handling of symlinks in combination with ACLs and EAs.
515        Fixes bug 3074076.
516 * FIX: dbd: Adding a file with the CNID from it's adouble file did
517        not work in case that CNID was already occupied in the database
518 * FIX: macusers: add support for Solaris
519 * NEW: cnid_metad: use a PID lockfile
520 * NEW: afpd: prevent log flooding
521 * UPD: dbd: ignore ".zfs" snapshot directories
522 * UPD: dbd: support interrupting -re mode
523
524 Changes in 2.1.3
525 ================
526
527 * FIX: afpd: fix a serious error in networking IO code
528 * FIX: afpd: Solaris 10 compatibilty fix: don't use SO_SNDTIMEO, use
529        non-blocking IO and select instead for writing/sending data.
530 * UPD: Support for BerkeleyDB 5.0.
531
532 Changes in 2.1.2
533 ================
534
535 * FIX: afpd: fix for possible crash in case more then one server is
536        configured in afpd.conf.
537 * FIX: afpd: ExtendedAttributes in FreeBSD
538 * FIX: afpd: sharing home folders corrupted the per volume umask.
539 * UPD: afpd: umask for home folders is no longer taken from startup umask.
540 * UPD: afpd: dont and permissions with parent folder when creating new
541        directories on "upriv" volumes.
542 * UPD: afpd: use 'afpserver@fqdn' instead of 'afpserver/fqdn@realm'.
543        Prevents a crash in older GNU GSSAPI libs on eg. CentOS 5.x.
544  
545 Changes in 2.1.1
546 ================
547
548 * UPD: fallback to a temporary in memory tdb CNID database if the volume
549        database can't be opened now works with the default backend "dbd" too.
550 * FIX: afpd: afp_ldap.conf was missing from tarball. This only effected
551        [Open]Solaris.
552 * FIX: afpd: Check if options->server is set in set_signature, preventing
553        SIGSEGV.
554 * FIX: afpd: server signature wasn't initialized in some cases
555 * FIX: DESTDIR support: DESTDIR was expanded twice
556 * FIX: Fix for compilation error if header files of an older Netatalk
557        version are installed.
558
559 Changes in 2.1-release
560 ======================
561
562 * NEW: afpd: new volume option "volsizelimit" for limitting reported volume
563        size. Useful for limitting TM backup size.
564 * UPD: dbd: -c option for rebuilding volumes which prevents the creation
565        of .AppleDouble stuff, only removes orphaned files.
566
567 Changes in 2.1-beta2
568 ====================
569
570 * NEW: afpd: static generated AFP signature stored in afp_signature.conf,
571        cf man 5 afp_signature.conf
572 * NEW: afpd: clustering support: new per volume option "cnidserver".
573 * UPD: afpd: set volume defaults options "upriv" and "usedots" in the
574        volume config file AppleVolumes.default. This will only affect
575        new installations, but not upgrades.
576 * FIX: afpd: prevent security attack guessing valid server accounts. afpd
577        now returns error -5023 for unknown users, as does AppleFileServer.
578
579 Changes in 2.1-beta1
580 ====================
581
582 * NEW: afpd: AFP 3.2 support
583 * NEW: afpd: Extended Attributes support using native attributes or
584        using files inside .AppleDouble directories.
585 * NEW: afpd: ACL support with ZFS
586 * NEW: cnid_metad: options -l and -f to configure logging
587 * NEW: IPv6 support
588 * NEW: AppleDouble compatible UNIX files utility suite `ad ...`.
589        With 2.1 only `ad ls`.
590 * NEW: CNID database maintanance utility dbd
591 * NEW: support BerkeleyDB upgrade. Starting with the next release
592        after 2.1 in case of BerkeleyDB library updates, Netatalk
593        will be able to upgrade the CNID databases.
594 * NEW: afpd: store and read CNIDs to/from AppleDouble files by default.
595        This is used as a cache and as a backup in case the database
596        is deleted or corrupted. It can be disabled with a new volume
597        option "nocnidcache".
598 * NEW: afpd: sending SIGINT to a child afpd process enables debug logging
599        to /tmp/afpd.PID.XXXXXX.
600 * NEW: configure args to download and install a "private" Webmin instance
601        including only basic Webmin modules plus our netatalk.wbm.
602 * NEW: fallback to a temporary in memory tdb CNID database if the volume
603        database can't be opened.
604 * NEW: support for Unicode characters in the range above U+010000 using
605        internal surrogate pairs
606 * NEW: apple_dump: utility to dump AppleSingle and AppleDouble files
607 * NEW: afpldaptest: utility to check afp_ldap.conf.
608 * UPD: atalkd and papd are now disabled by default. AppleTalk is legacy.
609 * UPD: slp advertisement is now disabled by default. server option -slp
610        SRVLOC is legacy.
611 * UPD: cdb/dbd CNID backend requires BerkeleyDB >= 4.6
612 * UPD: afpd: default CNID backend is "dbd"
613 * UPD: afpd: try to install PAM config that pulls in system|common auth
614 * UPD: afpd: symlink handling: never followed server side, client resolves
615        them, so it's safe to use them now.
616 * UPD: afpd: Comment out all extension->type/creator mappings in
617        AppleVolumes.system. They're unmaintained, possibly wrong and
618        do not fit for OS X.
619 * FIX: rewritten logger
620 * FIX: afpd: UNIX permissions handling
621 * FIX: cnid_dbd: always use BerkeleyDB transactions
622 * FIX: initscripts installation now correctly uses autoconf paths,
623        ie they're installed to --sysconfdir.
624 * FIX: UTF-8 volume name length
625 * FIX: atalkd: workaround for broken Linux 2.6 AT kernel module:
626        Linux 2.6 sends broadcast queries to the first available socket
627        which is in our case the last configured one. atalkd now tries to
628        find the right one.
629        Note: now a misconfigured or plugged router can broadcast a wrong route !
630 * REM: afpd: removed CNID backends "db3", "hash" and "mtab"
631 * REM: cnid_maint: use dbd
632 * REM: cleanappledouble.pl: use dbd
633 * REM: nu: use `macusers` instead
634
635 Changes in 2.0.5
636 ================
637
638 * NEW: afpd: Time Machine support with new volume option "tm".
639 * FIX: papd: Remove variable expansion for BSD printers. Fixes CVE-2008-5718.
640 * FIX: afpd: .AppleDxxx folders were user accessible if option 'usedots'
641        was set 
642 * FIX: afpd: vetoed files/dirs where still accessible
643 * FIX: afpd: cnid_resolve: don't return '..' as a valid name.
644 * FIX: uniconv: -d option wasn't working
645
646 Changes in 2.0.4
647 ================
648
649 * REM: remove timeout 
650 * NEW: afpd: DHX2 uams using GNU libgcrypt.
651 * NEW: afpd: volume options 'illegalseq', 'perm' and 'invisibledots'
652        'ilegalseq'  encode illegal sequence in filename asis, ex "\217-", which is not 
653        a valid SHIFT-JIS char, is encoded  as U\217 -.
654        'perm' value OR with the client requested permissions. (help with OSX 10.5
655        strange permissions).
656        Make dot files visible by default with 'usedots', use 'invisibledots' 
657        for keeping the old behavior, ie for OS9 (OSX hide dot files on its
658        own).
659 * NEW: afpd: volume options allow_hosts/denied hosts
660 * NEW: afpd: volume options dperm/fperm default directory and file
661        permissions or with server requests.
662 * NEW: afpd: afpd.conf, allow line continuation with \ 
663 * NEW: afpd: AppleVolumes.default allow line continuation with \
664 * NEW: afpd: Mac greek encoding.
665 * NEW: afpd: CJK encoding.
666 * UPD: afpd: Default UAMs: DHX + DHX2
667 * FIX: afpd: return the right error in createfile and copyfile if the disk
668        is full.
669 * FIX: afpd: resolveid return the same error code than OSX if it's a directory
670 * FIX: afpd: server name check, test for the whole loopback subnet 
671        not only 127.0.0.1.
672 * UPD: afpd: limit comments size to 128 bytes, (workaround for Adobe CS2 bug).
673 * UPD: afpd: no more daemon icon.
674 * UPD: usedots, return an invalide name only for .Applexxx files used by netatalk not
675        all files starting with .apple.
676 * UPD: cnid: increase the number of cnid_dbd slots to 512.
677 * FIX: cnid: dbd detach the daemon from the control terminal.
678 * UPD: cnid: never ending Berkeley API changes...
679 * UPD: cnid: dbd add a timeout when reading data from afpd client.
680 * UPD: cnid: Don't wait five second after the first error when speaking to the dbd
681        backend.
682 * FIX: papd: vars use % not $
683 * FIX: papd: quote chars in popen variables expansion. security fix.
684 * FIX: papd: papd -d didn't write to stderr.
685 * FIX: papd: ps comments don't always use ()
686 * FIX: many compilation errors (solaris, AFS, Tru64, xfs quota...).
687
688 Changes in 2.0.3
689 ================
690
691 * NEW: afpd: add a cachecnid option that controls if afpd should 
692        use the IDs stored in the AD2 files as cache. Defaults
693        to off.
694 * UPD: afpd: deal with more than 32 groups.
695 * FIX: afpd: several catsearch fixes, based on patch from
696        TSUBAKIMOTO Hiroya.
697 * FIX: afpd: fix a race when a client very quickly reconnects and 
698        tries to kill its old session.
699 * FIX: afpd: OSX style symlink caused problems with Panther clients.
700 * FIX: afpd: old files with default type didn't show the right icon
701        in finder, from Shlomi Yaakobovich, slightly modified.
702 * FIX: cnid_check: disable cnid_check if CNID db was configured with
703        transactions and really bail out after the first error.
704 * FIX: admin-group configure option was broken.
705 * FIX: several problems with IDs cached in AD2 files.
706 * FIX: Ignore BIDI in UTF8 hints from OSX.
707 * FIX: Lots of gcc warning fixes.
708 * FIX: small configure script changes.
709
710
711 Changes in 2.0.2
712 ================
713
714 * NEW: cnid: Add an indexes check and rebuild, optional for dbd 
715        (parameter check default no), standalone program cnid_index for
716        cdb.
717 * UPD: Enhanced afpd's -v command line switch and added -V for more 
718        verbose information
719 * UPD: uams_gss: build the principal used by uams_gss.so from afpd's
720        configuration, don't use GSS_C_NT_HOSTBASED_SERVICE
721 * UPD: cnid_dbd: add process id in syslog and small clean up
722 * REM: remove netatalkshorternamelinks.pl cf. SF bug [ 1061396 ]
723        netatalkshorternamelinks.pl broken
724 * FIX: afpd: check for DenyRead on FPCopyFile
725 * FIX: afpd: add missing flush for AD2 Metadata on FPCopyFile, SF bug 
726        [ 1055691 ] Word 98 OS 9 Saving an existing file
727 * FIX: afpd: Deal with AFP3 connection and type 2 (non-UTF8) names.
728        reported by Gair Heaton, HI RESOLUTION SYSTEMS
729 * FIX: afpd: Broken 'crlf' option
730 * FIX: afpd: fix SF bug [ 1079622 ] afpd/dhx memory bug, 
731        by Ralf Schuchardt
732 * FIX: afpd: Return an error if we cannot get the db stamp in 
733        afp_openvol.
734 * FIX: afpd: Fix slp registration with Solaris9 slpd, from
735        hat at fa2.so-net.ne.jp
736         
737
738 Changes in 2.0.1
739 ================
740
741 * NEW: --enable-debian configure option. Will install /etc/init.d/atalk
742        to get not in conflict with standard debian /etc/init.d/netatalk.
743        Reads netatalk.conf from $ETCDIR and not from /etc/default/
744 * UPD: Disable logger code by default. Log to syslog instead
745 * UPD: changed netatalk.conf default settings to prevent problems with
746        AppleTalk zone names containing spaces
747 * FIX: insecure tempfile handling bug in etc2ps.sh,
748        found by Trustix, CAN-2004-0974.
749 * REM: remove add_netatalk_printer and netatalk.template from stable 
750        branch until fixed. (possible symlink vulnerabilities)
751 * FIX: afpd: set hasBeenInited in default finder info. This bug caused 
752        endless finder refreshes with OS9 finder if the noadouble option 
753        was used. From TSUBAKIMOTO Hiroya.
754 * FIX: afpd: fix a bug in default CREATOR/TYPE handling. Due to this bug 
755        the type/creator mappings in AppleVolumes.system were ignored, 
756        causing problems i.e. with OS9 clients.
757 * FIX: AppleVolumes.system: By default don't define a CREATOR/TYPE for a
758        file of unknown type.
759 * FIX: fix two Tru64 UNIX compilation errors, 
760        from Burkhard Schmidt bs AT cpfs.mpg.de
761 * FIX: afpd: FPMapId wasn't using UTF8 for groups if requested by client.       
762
763 Changes in 2.0.0
764 ================
765
766 * UPD: afpd: add an error message if -ipaddr parameter cannot be parsed
767 * UPD: updated documentation
768 * FIX: afpd: fix a file descriptor and memory leak with OSX ._ resource fork
769 * FIX: afpd: Prevent overwriting a file by renaming a file in the same 
770        directory to the same name. Won't work with OSX, the dest file gets 
771        deleted by OSX first.
772 * FIX: sometimes '0' was used instead of 0 for creator/type
773 * FIX: removed setpgrp check from configure, we don't use it anymore and
774        it doesn't work with cross compile.
775 * FIX: fix for Solaris "make maintainer-clean", from Alexander Barton
776 * FIX: fix username matching bug in afppasswd. from kanai at nadmin dot org
777 * FIX: reworked username check a little. Depending on the UAM, the wrong
778        username _could_ have been selected.
779
780 Changes in 2.0-rc2
781 ==================
782
783 * UPD: use 0 0 for default creator/type rather than UNIX TEXT, from
784        Shlomi Yaakobovich.
785 * UPD: updated documentation
786 * UPD: change machine type from Macintosh to Netatalk in status reply
787 * FIX: afpd: CopyFile only create a resource fork for destination if source
788        has one.
789 * FIX: afpd: mangling: for utf8 --> max filename length is 255 bytes, else 31.
790 * FIX: cnid_dbd: fix a signed/unsigned, 16/32 bits mismatch. from Burkhard
791        Schmidt, bs at cpfs.mpg.de.
792 * FIX: afpd: After ad_setid don't flush resource fork if it has not been
793        modified.
794 * FIX: NEWS: Fixed ancient NEWS entries. Removed umlauts
795 * FIX: fix macname cache, SF bug 1021642
796 * FIX: revert Makefile change from 2.0-rc1. We have to include BDB_CFLAGS
797        after CFLAGS
798
799 Changes in 2.0-rc1
800 ==================
801
802 * NEW: new manual page for asip-status.pl
803 * UPD: updated documentation
804 * UPD: uams: link uam_dhx_passwd.so to lcrypt before lcrypto. might help with
805        MD5 passwords
806 * UPD: Improved BerkeleyDB detection
807 * UPD: sys/solaris/Makefile.in: enable 'make check', from Alexander Barton
808 * UPD: tcp wrappers detection should work on OpenBSD as well now
809 * UPD: macbin: increase the maximum size of macbinary forks, as suggested by 
810        Sourceforge bug ID 829221
811 * UPD: ASP: rework getstatus. use several ASP packets if the client allows
812        it, otherwise just send as much as we can
813 * FIX: FreeBSD 5 build, from Alex Barton (alex at barton.de)
814 * FIX: OSX 10.3 build
815 * FIX: papd: workaround a problem with PJL before Postscript
816 * FIX: afpd: make sure we only disconnect on old session if the users match
817 * FIX: apfd: Quark6 mangled long filenames should work better now
818 * FIX: enhance ADv1 to ADv2 conversion. Fixed a SIGSEGV reported by Mark Baker
819 * FIX: better detection of invalid resource forks
820 * FIX: fix some linking problems on OpenBSD
821 * FIX: afpd: catsearch.c, filedir.c: fix bogus casts, from Olaf Hering 
822        (olh at suse.de)
823 * FIX: afpd: don't try to create special folders and .volinfo on read-only
824        volumes
825 * FIX: iconv/unicode enhancements. fixed a sigsegv on conversion error
826 * FIX: configure.in: fix a typo, reported by Joerg Rossdeutscher
827 * FIX: uniconv: enhanced uniconv behaviour
828 * FIX: fixed some Solaris compilation problems
829 * FIX: papd/Makefile.am: add a missing $DESTDIR, from Vlad Agranovsky
830 * FIX: afpd: quota.c: remove a c99 declaration, from Yann Rouillard
831 * FIX: configure.in: Solaris/gcc 3.0 fix, from Yann Rouillard
832 * FIX: afpd: fix a SIGSEGV when sharing home dirs without any options in 
833        AppleVolumes.
834 * FIX: numerous small bugfixes
835
836 Changes in 2.0-beta2
837 ====================
838
839 * NEW: atalkd, papd and npb tools now support nbpnames with extended
840        characters
841 * NEW: integrated CUPS support for papd
842 * NEW: optionally advertise SSH tunneling capabilties
843 * NEW: automatic logfile removal for cnid_metad
844 * NEW: asip-status.pl has been added to netatalk
845 * UPD: updated documentation
846 * UPD: we now require Berkeley DB >= 4.1
847 * UPD: 64bit Linux fixes from Stew Benedict, Mandrakesoft
848 * UPD: remove --enable-sendfile
849 * UPD: more verbose error messages
850 * FIX: better handling for resource forks without read access
851 * FIX: Tru64 build, by Burkhard Schmidt
852 * FIX: MIT Kerberos detection
853 * FIX: varios *BSD compile problems
854 * FIX: compile problem with libiconv, reported by Joe Marcus Clarke
855 * FIX: adv1tov2: make it work with the new structure
856 * FIX: afpd: filenames longer than 127 bytes were not enumerated correctly,
857        reported by Thies C. Arntzen
858 * FIX: afpd: return IP before FQDN in status reply.
859 * FIX: afpd: Mac chooser could crash on a codepage conversion error
860 * FIX: afpd: KerberosV auth with Panther clients, make long AD tickets work,
861        reported by Andrew Smith
862 * FIX: atalkd: could send invalid NBPLKUP replies, e.g with more than 15
863        printers. Reported by Almacha
864 * FIX: papd: fix papd.conf parsing problems with consecutive ':' and missing 
865        newline. Reported by Craig White.
866 * FIX: megatron: make megatron work with UTF-8 volumes
867 * FIX: timeout: running timeout with commands which accept arguments, 
868        from Yuval Yeret.
869 * FIX: uniconv: fix a SEGFAULT, reported by Matthew Geier
870 * FIX: pam detection: PAM_C/LDFLAGS were always empty, from Alexander Barton
871 * FIX: numerous small bugfixes.
872
873 Changes in 2.0-beta1
874 ====================
875
876 * NEW: OSX style adouble scheme
877 * NEW: japanese SHIFT_JIS codepage (iconv supplied)
878 * NEW: Solaris kernel module build integrated with configure
879 * NEW: Gentoo start scripts
880 * NEW: cnid_dbd doesn't use transactions by default
881 * FIX: afpd: the volume casefold option was broken
882 * FIX: afpd: update AD2 headers and keep owner on file exchange
883 * FIX: Solaris 9 and FreeBSD 4.9/5.2 compilation
884 * FIX: free space reported with groups quotas on Linux
885 * FIX: OS9/OS X didn't update free space
886 * FIX: finder crash if folder opened got deleted by another process
887 * FIX: randnum UAM wasn't AFP3 ready
888 * FIX: numerous small bugfixes.
889
890 Changes in 2.0-alpha2
891 =====================
892
893 * NEW: uniconv tool for converting volume encoding.
894 * NEW: afpd: Make sure getstatus doesn't return loopback address as server IP.
895 * NEW: afpd: Specify USEDOTS with MSWINDOWS implicitely.
896 * NEW: afpd: SRVLOC register with IP address instead of hostname by default,
897        if -fqdn is specified register with FQDN.  Added extended character 
898        support for SLP, non ASCII characters are escaped Added ZONE to registration.
899 * NEW: atalkd: Make atalkd set interfaces to ALLMULTI on linux by default.
900 * NEW: cnid_metad: Use DB_PRIVATE attribute for dbd backend without transaction.
901 * FIX: afpd: Partial workaround for an OSX client deadlock.
902 * FIX: afpd: Reenumerate folder if db is out of sync in resolveID.
903 * FIX: afpd: Don't modify modification date in copyfile.
904 * FIX: afpd: Variable $v substitution: always use name defined in config files.
905 * FIX: libatalk: Speed optimisation for byte locking was broken on resource fork.
906 * FIX: Solaris 9 compilation.
907 * FIX: Tru64 compilation fixes.
908 * FIX: AFS compilation fixes.
909 * FIX: strncpy bugfix.
910 * FIX: configure, man pages update and small bugfixes.
911
912 Changes in 2.0-alpha1
913 =====================
914
915 * NEW: afpd: We now support AFP 3.x, which features long filenames and 
916        large file support
917 * NEW: CNID handling completely reworked. We now use per Volume configurable
918        CNID backends.
919 * NEW: Two new daemons, cnid_metad and cnid_dbd to implement the dbd CNID backend.
920        Using Berkeley DB transactions with the CNID database should be safe now.
921 * NEW: The on disk format of the CNID database has changed. We now support 8 byte
922        device and inode numbers and an additinal type field that should make 
923        detection of file/directory changes outside of afpd more robust. 
924        Changed from HASH to BTREE access which speeds things up in certain cases 
925        and reduces database file size.
926 * NEW: Long file name mangling is now implemented using the CNID ID, so no database is 
927        required to map names to mangled names. This is the same method Mac OS X uses. 
928 * NEW: New format (version 2) for Metadata in AppleDouble files. We record device and  
929        inode of the underlying file as well as the CNID. This can be used for recovery
930        and speeds up access to the CNID.
931 * NEW: The old NLS codepage system has been removed. It was replaced by an iconv 
932        based conversion system, which provides much more flexibility.
933 * NEW: You can safely use extended characters in volume names and for SIGUSR2 messaging.
934 * NEW: The default volume encoding is UTF-8.
935 * NEW: All documentation is now generated using DocBook. New or completely reworked 
936        sections about installing, setting up and upgrading Netatalk replace various 
937        README files in the doc directory.
938 * FIX: Protect afpd better against unexpected signals during updates of the CNID
939        database with the cdb backend. This makes database corruption less likely.   
940 * FIX: All manpages have been reviewed and should now be up to date.
941 * FIX: Tons of bug fixes since 1.6.4. Please consults the CVS change log for details.
942
943 Changes in 1.6.4
944 ================
945
946 * NEW: afpd: Using the mswindows option now implicitly specifies usedots.
947   [Sam Noble]
948 * UPD: afpd.8: Updated the option documentation.
949   [Thomas Kaiser, Sebastian Rittau]
950 * FIX: configure: Removed broken --with-flock-locks option. [Bjoern Fernhomberg]
951 * FIX: libatalk: Do not log network probe (OSX 10.3). [Didier Gautheron]
952 * FIX: libatalk: Deadlock in signal handlers. [Didier]
953 * FIX: libatalk: Compilation with Linux kernel 2.6 fixed. [Sebastian, Bjoern]
954 * FIX: afpd: Solaris compile issues. [Bjoern]
955 * FIX: afpd: If connection broke in dsi_tickle the child did never die. [Bjoern]
956 * FIX: afpd: Catsearch, fixes a possible segmentation fault. [Bjoern]
957 * FIX: afpd: Compilation issues. [Olaf Hering, Sebastian]
958 * FIX: cnid: Fix compile problems on Tru64. [Burkhard Schmidt]
959 * FIX: megatron: Fixed an uninitialized variable. [Olaf]
960 * FIX: installation: Don't overwrite PAM file if --enable-overwrite configure
961        option is not set. [Sam, Ryan Cleary]
962 * FIX: installation: Fixed BSD installation. [Toru TAKAMIZU]
963 * FIX: docs: Removed ssl-dir/ssl-dirs confusion from doc/INSTALL. [Bjoern]
964
965 Changes in 1.6.3
966 ================
967
968 * UPD: afpd: Infrastructural support for an upcoming Kerberos 5 UAM.
969        [Sam Noble]
970 * UPD: uams_dhx_passwd: Better random seed in Tru64. [Burkhard Schmidt]
971 * FIX: afpd: Bug in AFP connection negotiation stage. [Sam]
972 * FIX: afpd: Catsearch, when Mac and unix name differ, search on attributes.
973 * FIX: afpd: Files could be opened for writing on read-only filesystems.
974 * FIX: afpd: Debugging using SIGUSR1 was broken. [Stefan Muenkner]
975 * FIX: afpd: Segfault after login. [Robby Griffin, Sean Bolton]
976 * FIX: psf: Correct path to etc2ps.sh.
977 * FIX: shell_utils: Don't distribute generated files.
978 * FIX: aecho: -A option didn't work. [Chris Shiels]
979 * FIX: configure: Berkeley DB path detection could be wrong. [Stefan]
980 * FIX: Automake build fixes.
981
982 Changes in 1.6.2
983 ================
984
985 * FIX: atalkd: Fixes for reading long configuration file lines. [Dan Wilga]
986 * FIX: afpd: CNID id allocation in a multiuser environment.
987 * FIX: papd: Fix PSSP support when PAM is enabled.
988 * FIX: macusers: Can now cope with IP addresses as well as host names.
989 * FIX: etc2ps.sh: Install correctly.
990
991 Changes in 1.6.1
992 ================
993
994 * UPD: Improve --enable-fhs. [Olaf Hering]
995 * UPD: Add BDB 4.1.x support.
996 * UPD: Add more documentation on CNID, as well as list which versions
997        of Berkeley DB are supported.
998 * FIX: Codepage file maccode.koi8-r is now correctly cleaned.
999 * FIX: Fix init script location on SuSE. [Olaf]
1000 * FIX: Build fixes. [Olaf, Steven N. Hirsch]
1001 * FIX: Various bugs when a user doesn't have access permission to a folder.
1002        (Fixes an OSX kernel panic.)
1003 * FIX: CNID, folders' DID handling with concurrent access or symlinks.
1004        (Fixes an endless loop in afpd.)
1005
1006 Changes in 1.6.0
1007 ================
1008
1009 * FIX: pap looks at the STDOUT file descriptor to see if it's connected to
1010        a tty, instead of STDIN.
1011
1012 Changes in 1.6pre2
1013 ==================
1014
1015 * UPD: Removed --with-catsearch option from configure and enable FPCatSearch
1016        by default.
1017 * UPD: The dbpath argument does now support variable substitution.
1018 * FIX: Build fix for non-GNU-C compilers in libatalk/util/logger.c.
1019 * FIX: Two directories with the same name but different case confused the
1020        Mac Finder.
1021 * FIX: The ROOT_PARENT directory could get invalidated.
1022
1023 Changes in 1.6pre1
1024 ====================
1025
1026 * NEW: Long file name mangling support.
1027 * NEW: Improved log file support.
1028 * NEW: Server-side find capability ("FPCatSearch")
1029 * NEW: Concurrent datastore (CDB) is now the default CNID datastore.  This
1030        should be heavily tested in a multiuser environment.
1031 * NEW: Variable substitution support has been added for the dbpath AppleVolume
1032        option.
1033 * UPD: CNID DID handling is now enabled by default.
1034 * FIX: Various bug and build fixes as well as code cleanups.
1035
1036 Changes in 1.5.5
1037 ================
1038
1039 * NEW: Allow afpd debugging to be enabled by sending the afpd process
1040        a SIGUSR1.
1041 * NEW: Allow SLP to be disabled per afpd process by adding a new -noslp flag
1042        to afpd.conf.
1043 * FIX: Use server name (if not NULL) for the SLP URL.
1044 * FIX: papd: buffer overflow during config file read (Olaf Hering)
1045
1046 Changes in 1.5.4
1047 ================
1048
1049 * FIX: File open read only and then read write (aka pb with Illustrator).
1050 * FIX: Problems with unexpected EOF when reading files on a ddp connection
1051        Photoshop, old finder.
1052 * FIX: --with-nls-dir option does now work
1053
1054 Changes in 1.5.3
1055 ================
1056
1057 * UPD: Extend the --disable-shell-check functionality to ignore users
1058        with _no_ shell.  Also, send a log message if a user is refused login
1059        based on the fact that they have no shell.
1060 * UPD: Autoconf updates.
1061 * UPD: Tru64 afpd authentication updates.
1062 * UPD: As always: lots of minor code cleanups.
1063 * FIX: Problems with Photoshop trying to open image files has been
1064        corrected.
1065 * FIX: Preserve special permission bits when creating or modifying
1066        directories.
1067 * FIX: afp_deleteid() now deletes the specified file and not the parent
1068        directory.
1069 * FIX: papd does now announce that it supports binary data to its clients.
1070 * FIX: NetBSD ELF support.
1071 * FIX: acleandir.rc is now installed in the bin directory.
1072 * FIX: megatron does now compile even if compiled with -DDEBUG.
1073 * FIX: Clean up some syslog messages.
1074
1075 Changes in 1.5.2
1076 ================
1077
1078 * NEW: NetBSD support contributed by David Rankin and NetBSD contributors.
1079        This includes a new configure option --enable-netbsd.
1080 * NEW: Add the -client_polling afpd.conf flag to allow for clients to poll
1081        the server every 10 seconds for open window updates.  Currently
1082        this is the only way to get asynchronous directory updates.
1083 * UPD: Use separate macro for AFS configure check.
1084 * UPD: Some Perl scripts are now (partially) auto-generated. This improves
1085        out-of-the-box usage of Netatalk.
1086 * UPD: Solaris Kernel Makefile is now auto-generated. This fixes some path
1087        issues, but isn't perfect, yet. Added some Solaris compatibility
1088        fixes to the Kernel sources, too.
1089 * UPD: CNID DB code sync'd with the current CVS version.  NOTE: Using this
1090        code requires you to delete _all_ existing .AppleDB directories in
1091        order to avoid database corruption!
1092 * FIX: The file AppleVolumes.system contained wrong line breaks so that
1093        not all file types were properly recognized.
1094 * FIX: AFS compilation would fail due to a misnamed variable.
1095 * FIX: SLP configure check was wrong so SLP did not compile.
1096 * FIX: Fix the way quotas are handled under certain situations.
1097 * FIX: Do not enable debugging code if debugging option is not set.
1098 * FIX: Some problems with wrongly assigned DIDs were fixed.
1099 * FIX: Various bug fixes and code cleanups.
1100
1101 Changes in 1.5.1
1102 ================
1103
1104 * NEW: Added a program called cnid_didname_verify that can be used to
1105        verify the consistency of the CNID database.
1106 * NEW: New afpd option: -timeout. Warning: This still doesn't do what it's
1107        supposed to!
1108 * UPD: Code cleanups and compatibility fixes to macusers.
1109 * UPD: AppleVolumes.system was cleaned up.
1110 * FIX: Really fix Tru64 compilation (see last entry).
1111 * FIX: Hand correct error value back to AFP client when deleting files or
1112        directories fails.
1113 * FIX: Leading or trailing spaces are now forbidden on volumes that have
1114        the AFPVOL_MSWINDOWS flag set.
1115 * FIX: Minor code cleanups and warning fixes.
1116 * FIX: Make quota support work on FreeBSD.
1117
1118 Changes in 1.5.0
1119 ================
1120
1121 * FIX: Compilation on Tru64 systems was broken, since libtool's acinclude.m4
1122        file on the packagers system did not contain the necessary patch.
1123 * FIX: On some systems, atalkd refuses to start, since it couldn't detect
1124        any interfaces. This was caused by an overzealous validity check.
1125
1126 Changes in 1.5rc2
1127 =================
1128
1129 * FIX: contrib/shell_utils/lp2pap.sh was erased when "make clean" was called.
1130        Now we distribute lp2pap.sh.tmpl instead, and lp2pap.sh is automatically
1131        generated during package build.
1132 * FIX: Some platforms (notably Tru64) don't have the snprintf() call, which
1133        was used in etc/afp/afp_config.c. This call was replaced by sprintf()
1134        and prior bounds checking.
1135
1136 Changes from the 1.4b1 release:
1137 ===============================
1138
1139 *   Fixed the maximum free/total volume size in afpd.
1140
1141 *   Made ~ the default volume in afpd.
1142
1143 *   Fixed pid file handling and changed setpgrp() to setpgid() in afpd,
1144     papd, and atalkd.
1145
1146 *   Added code to afpd to set the Unix file time stamps with utime().
1147
1148 *   Fixed a bug in papd's printcap code which limited it to 15 or so
1149     printers.
1150
1151 *   Fixed papd's handling of piped printers.
1152
1153 *   Fixed papd's handling of bad job names.
1154
1155 *   Fixed atalkd to send NBP LKUP packets from NBP port.
1156
1157 *   Added "sync;sync;sync" to Solaris kinstall to help with streams
1158     file corruption.
1159
1160 *   Added nlocalrts to streams ddp.conf.  Thanks Thomas Tornblom.
1161
1162 *   Fixed signed extension infinite loop in Solaris module.
1163
1164 *   Moved all the config files to .../config.
1165
1166 Changes from the 1.3.3 release:
1167 ===============================
1168
1169 *   Added code from Sun Microsystems, Inc (OPCOM) for Solaris support.
1170     See COPYRIGHT.
1171
1172 *   Added support for FreeBSD, mostly changes by Mark Dawson and Julian
1173     Elischer.
1174
1175 *   All sorts of other stuff.
1176
1177 Changes from the 1.3.1 release:
1178 ===============================
1179
1180 *   Added options to psf's filter names to support accounting on HPs.
1181     !!! NOTE:  The location of the filters has changed, see the man
1182     page for where.
1183
1184 *   Added code from Alan Cox to support Linux.
1185
1186 *   Rewrote papd.  Now handles dropped connections better.
1187     Configuration has been modernized.  !!! NOTE: The format of the
1188     configuration file has changed, but NOT THE NAME.
1189
1190 *   Added Kerberos support to papd.
1191
1192 *   atalkd now removes routes on a SIGTERM.  Still can't just restart
1193     it, but it's closer.
1194
1195 *   Changed atalkd and the kernel driver to remove a hack added to
1196     support sending to 0.255.  Now the kernel will allow multiple open
1197     sockets with the same port, so long as the addess associated with
1198     the port is different.  atalkd now opens a socket for each port on
1199     each interface.
1200
1201 *   atalkd now rewrites its configuration file.  If no configuration
1202     file is given, one will be generated.  Permissions on the new
1203     configuration file will be inherited from the old one.  If there is
1204     no old one, permissions default to 644.  Won't rewrite the file if
1205     the owner doesn't have write permission.
1206
1207 *   Removed support for the "AFS Kerberos UAM", in favor of the
1208     "AuthMan UAM".  Kerberos support should now be much more
1209     straight-forward.
1210
1211 *   Fixed a bug in afpd which would cause incorrect group calculations
1212     on ultrix machines.
1213
1214 *   Fixed a bug in afpd which causes SimpleText and some other
1215     applications to silently fail to write.  There's also a bug in
1216     MacOS, but we can't fix that.
1217
1218 *   Fixed a bad interaction with afpd and AFS which would cause file
1219     writes to not propogate between AFS clients.
1220
1221 *   !!! CHANGED the name(s) of afpd's config files.  The new files are
1222     AppleVolumes.system and AppleVolumes.default.  If AppleVolumes.system
1223     exists, it is always read, AppleVolumes.default is only read if the
1224     user has no AppleVolumes file.  Included a flag "-u" to indicate
1225     which file has precedence.  "-u" user wins, otherwise ".system"
1226     wins.
1227
1228 *   Rewrote the AppleVolumes parsing code.  Now works.
1229
1230 *   Added a filename extension mapping to afpd.  User always takes
1231     precedence, regardless of the "-u" flag.  Code to change the type
1232     of all Unix files contributed by Kee Hinckley <nazgul@utopia.com>.
1233
1234 *   afpd now supports both UFS and AFS volumes simultaneously.  It also
1235     uses access() to attempt to calculate reasonable Mac permissions
1236     for AFS directories.
1237
1238 *   Changed reporting of file times.  Files that are written from Unix
1239     now update the Mac's idea of the files modification time.  Unix
1240     mtime is now reported instead of ctime.
1241
1242 *   Added support for a new UAM to afpd.  This requires that client
1243     Macs have MacTCP and AuthMan installed.  Should make running afpd
1244     for AFS easier.
1245
1246 *   Removed code so that otherwise valid volumes for which the mounting
1247     user has no permission will appear in the volume selection dialog
1248     on the Mac gray-ed out.
1249
1250 *   Added code from Chris Metcalf of MIT to the AppleDouble library
1251     which improves permission inheritance.
1252
1253 *   Added code from G. Paul Ziemba of Alantec, Inc to better report
1254     errors in psf.  Also changed psf to use syslog for errors that
1255     users aren't interested in.
1256
1257 *   Added information to psf's man page to better explain the
1258     interaction between psf, pap, and lpd.
1259
1260 *   Make psf/pap/psa do accounting when it's turnes on in
1261     /etc/printcap.
1262
1263 *   Changed pap's error message when there is no printer specified on
1264     the command line and no .paprc is found.  Also heavily modified
1265     pap's man page to reflect changes in the "new" version of pap,
1266     including moving it from section 8 to section 1.
1267
1268 *   Fixed a byte-order bug in pap's sequence numbers.  Doubt if pap has
1269     ever worked right on little endian machines!
1270
1271 *   Added a flag to pap to optionally close before receiving EOF from
1272     the printer.  Off by default.  psf calls pap with this option on.
1273
1274 *   Added timeouts to the nbp library calls.  This means that processes
1275     won't hang when atalkd dies during boot, thus hanging your
1276     machine.
1277
1278 Changes from the 1.3 release:
1279 =============================
1280
1281 *   Fixed a bug in afpd which would cause APPL mappings to contain both
1282     mac and unix path names.  The fixed code will handle the old
1283     (corrupted) database.
1284
1285 *   Fixed a *very* serious bug which would cause files to be corrupted
1286     when copying to afpd.
1287
1288 *   Fixed a bug in afpd which would cause replies to icon writes to
1289     contain the written icon.
1290
1291 *   Filled in the function code switch in afpd.  Previously, a hacker
1292     could probably have used afpd to get unauthorized access to a
1293     machine running afpd.
1294
1295 *   Fixed a bug in the asp portion of libatalk.a which could cause the
1296     malloc()/free() database to be corrupted.
1297
1298 *   Fixed a bug in atalkd's zip query code.  With this bug, only the
1299     first N % 255 nets get queried.  However, since nets bigger than
1300     255 are usually pretty unstable, the unqueried for nets will
1301     eventually get done, when N drops by one.
1302
1303 *   Suppressed a spurious error ("route: No such process") in atalkd.
1304
1305 Changes from the 1.2.1 release:
1306 ===============================
1307
1308 *   atalkd is completely rewritten for phase 2 support.  atalkd.conf
1309     from previous version will not work!
1310
1311 *   afpd now has better AFS support.  In particular, the configuration
1312     for AFS was made much easier; a number of Kerberos-related
1313     byte-ordering and time problems were found; clear-text passwords
1314     were added (thanks to geeb@umich.edu).
1315
1316 *   afpd now handles Unix permissions much better (thanks to
1317     metcalf@mit.edu).
1318
1319 *   There are many, many more changes, but most are small bug fixes.
1320
1321 Changes from the 1.2 release:
1322 =============================
1323
1324 *   The Sun support now uses loadable kernel modules (a la VDDRV)
1325     instead of binary patches. As such, it should work on any sunos
1326     greater than 4.1, and is confirmed to work under 4.1.1 and 4.1.2.
1327
1328 *   The DEC support no longer requires source. It also runs under
1329     ultrix 4.1 and 4.2. It still requires patching your kernel, but the
1330     patches are limited to those files available to binary-only sites
1331     -- primarily hooks for things like netatalk.
1332
1333 *   The etc.rc script now uses changes made to nbprgstr (see below).
1334
1335 *   aecho now takes machine names on the command line.
1336
1337 *   nbplkup now takes a command line argument specifying the number of
1338     responses to accept. It also takes its defaults from the NBPLKUP
1339     environment variable.
1340
1341 *   nbprgstr may be used to register a name at any requested port.
1342
1343 *   afpd now logs if an illegal shell is used during login, instead of
1344     silently denying service.
1345
1346 *   A bug in afpd which caused position information for the directory
1347     children of the root of a volume to be ignored has been fixed.
1348
1349 *   Several typos in afpd which would cause include files necessary to
1350     ultrix to be skipped have been fixed.
1351
1352 *   atalkd will no long propagate routes to networks whose zone
1353     it doesn't know.
1354
1355 *   atalkd no longer dumps core if it receives a ZIP GetMyZone request
1356     from a network whose zone it doesn't know. (Since this currently
1357     can only happen from off net, it's not precisely a legal request.)
1358
1359 *   pap and papd (optionally) no longer check the connection id in PAP
1360     DATA responses. Both also maintain the function code in non-first-packet
1361     PAP DATA responses.  These changes are work-arounds to deal with
1362     certain AppleTalk printer cards, notably the BridgePort LocalTalk
1363     card for HP LJIIISIs.
1364
1365 *   pap no longer sends an EOF response to each PAP SENDDATA request,
1366     only the first.
1367
1368 *   A bug in papd which would cause it to return a random value when
1369     printing the procset to a piped printer has been fixed.
1370
1371 *   A bug relating to NBP on reverse-endian machines has been fixed.
1372
1373 *   atp_rsel() from libatalk now returns a correct value even if it
1374     hasn't recieved anything yet.
1375
1376 *   atalk_addr() from libatalk no longer accepts addresses in octal
1377     format, since AppleTalk addresses can have leading zeros. Also it
1378     checks that the separator character is a '.'.
1379
1380 *   Pseudo man pages for nbplkup, nbprgstr, and nbpunrgstr, have been
1381     added.
1382
1383 *   The example in the psf(8) man page is now correct.
1384
1385 *   The man pages for changed commands have been updated.
1386
1387 *   The README files for various machine have been updated
1388     appropriately.