]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.39
- Fix scheduler to handle time skew (eg daylight savings).
[bacula/bacula] / bacula / kes-1.39
1               Technical notes on version 1.39  
2                         Kern Sibbald
3
4 General:
5 20Apr06
6 - Fix scheduler to handle time skew (eg daylight savings).
7 - Fix scheduler to use lock_jobs() to avoid most problems
8   with reload. Window is now milliseconds.
9 19Apr06
10 - Apply patch from Christopher Hull
11   - Allow multiple connections to database with different
12     parameters.
13   - Invalidate the scheduler when doing a reload. Fixes seg
14     fault, but still 60 second window.
15   - Additional info in Reschedule message.
16   - Use set_jcr_job_status() everywhere to prevent loss of
17     cancel, error.
18   - Display peer IP in FD if error from connecting DIR.
19   - Don't increment file count for DIRBEGIN.
20   - Replace illegal characters in Win32 filename by _.
21   - Add SE_CREATE_PERMANENT_NAME privilege in Win32.
22   - Hash hard link filenames rather than linked list.
23   - Fix for security failure in chdir on Win32.
24   - Add CreateDirectoryA/W win32 API entry points.
25 - Add /silent option to Win32 FD for Install/Remove service.
26 - Always print Heap statistics in FD.
27 18Apr06
28 - Remove the -f option from the chown in Makefile.in for more
29   portability.
30 - Change setting the group in Makefile.in to use chgrp for
31   more portability.
32 - Implement a write_store and read_store to replace
33   dirstore in reserve.c
34 - Implement a Bacula read/write lock for Python rather
35   than using the Python lock to avoid recursive problems.
36 - Correct the uninstall directory names in filed/Makefile.in
37   as reported by a user.
38 17Apr06
39 - Correct some problems with database creation (new tables).
40 - Replace a bunch of old 0x%x by %p.
41 - Get first cut of Migration with Job selection working.
42 16Apr06
43 - Change store_bit() to store_bool() for the Spooling in 
44   dird_conf.c -- bug reported by Robert Nelson.
45 15Apr06
46 - Correct Makefile bug found by Dan Langille.
47 14Apr06
48 - Correct Makefile for Solaris /bin/sh
49 - Correct mtx-changer.in for Solaris /bin/sh
50 - Abort if a conf resource does not have a Name =
51 12Apr06
52 - Change the name of the regex program to bregex.
53 - Add the bwild program to the tools directory. It is similar
54   to the bregex program.
55 - Implement create bregex.h and bregex.c in src/lib from the
56   Python regexp program.  
57 - Use the new bregex.c to implement Regex expressions on Win32.
58 11Apr06
59 - More work on migration.
60 - Implement wild program in tools directory for testing
61   wild-cards. Almost identical to the regex program.
62 - Up port VSS single thread locking code.
63 - Replace N_(..) by NT_(...) to inhibit translation of
64   commands.
65 - Modify Makefile to change the permissions on Working Directory
66   to 770 if the directory is created.
67 - Do not fail the Makefile if changing the permissions or 
68   owner/group on WorkingDir fails.
69 - Remove early selection of Scratch Volumes in the recycling
70   algorithm.
71 - Correct the old recycling algorithm so that Scratch Volumes
72   are selected when looking for a Volume in the changer.
73 - Correct a typo in the Verify SQL reported by Joe Park.
74 10Apr06
75 - Remove automatic case folding on Windows FDs. You must
76   explictly use the 'Ignore Case = yes' option.
77 - Remove the code added to 1.38.6 and 1.38.7 that pulls a
78   scratch volume in an Autochanger early in the 'recycling'
79   algorithm.  
80 09Apr06
81 - Make weof() and clrerror() methods of class DEVICE.
82 08Apr06
83 - Tweak license to include Microsoft restrictions.
84 - Move mysql.reconnect to after real_connect().  Thanks to
85   Frank Sweetser for the patch.
86 - Disallow a backslash in a File = directive (Windows junk)
87   unless the string is quoted.                     
88 - Apply Eric's patch to ua_label.c so that daemon protocol
89   is not translated.
90 - Add NT_ definition for strings that should not be translated.
91 - Apply NT_() to ua_label.c
92
93 - Remove timed wait for VSS on Win2K3 as it is not yet
94   implemented.
95 - Correct bacula.in script to reference bacula-ctl-xx in the
96   sysconfig directory rather than the bin directory.
97 26Mar06
98 - Fix a long standing bug in the bacula start/stop scripts.
99 - Attempt to add the new bacula-ctl-* files to the rpm.
100 - Switch to using typeof() for list traversing to avoid
101   as many FC5 g++ compiler warnings as possible.
102 25Mar06
103 - Split the bacula start/start script into four files:
104    bacula         -- starts and stops calling other scripts
105    bacula-ctl-dir -- starts/stops the director
106    bacula-ctl-fd  -- starts/stops the File daemon
107    bacula-ctl-sd  -- starts/stops the Storage daemon
108 24Mar06
109 - Create datestyle fix for PostgreSQL. Fixes bug #574.
110 - Correct editing of JobId from int to int64 in fd_cmds.c
111 - Eliminate FileSet name race with bash_spaces() and multiple
112   threads by bashing in a local.
113 - Fix error return from 'use storage' to print a correct error
114   message rather than nothing.
115 - Correct false re-read last block error message when two jobs 
116   are simultaneously writing at the end of a tape.
117 - Simplify exit conditions in the reserve.c code to avoid  
118   possible non-release of reservation_lock().
119 - Suffle lock order in reserve to avoid deadlock between
120   reservation lock and device mutex.
121 21Mar06
122 - Initialize jcr mutex before first use. Thanks to Thorsten for
123   tracking this down for me !!!! as it broke the Win32 build.
124 20Mar06
125 - Integrate addition of line count limitation to bsmtp -l from
126   Sebastian Stark <stark at tuebingen.mpg.de>
127 17Mar06
128 - Implement regex test program in tools directory.
129 - Attempt to fix time problem with bsmtp with foreign langs.
130 - Add strip_trailing_newline() submitted by user.
131 - Implement regex matching in migrate.c
132 16Mar06
133 - Fix bug #537 to allow arbitrary time to mount a volume for
134   restore, if polling is turned on.     
135 - If dir_user or dir-group is specified in ./configure apply it to
136   the working-dir. Fixes bug #533.
137 - If rescheduling a job cancel the previous incarnation with the SD.
138   Fixes bugs #566 and 557.
139 - Fix bug #567 do_message() definition type conflict.
140
141 14Mar06
142 - Add more jcr methods and make mutex and use_count private.
143 - Create lock/unlock methods for jcr.
144 - Fix PostgreSQL bug doing sql_data_seeek() by explicitly reading
145   records to get to seek position.
146 - Integrate patch from bug #561 to correct conio.c signal definitions.
147 - Fix Rescheduling failed Jobs. Ensure that SD message thread 
148   terminates correctly by doing pthread_kill(). Do not destroy
149   SD cond wait variable between executions of the job. Use local
150   mutex for cond variable to avoid blocking jcr chain. Fix poor 
151   use of jcr use count in jobq.c for restarted jobs.
152 - Fix obsolete usage of foreach_dlist() to use foreach_jcr() in
153   lib/jcr.c -- prevents locking the jcr chaing.
154 - Apply patch from bug #564, which corrects listing volumes with
155   multiple autochangers. Apply same fix to next volume list.
156 - Fix bug #562 where restore bootstrap file is not unique.
157 - More details in implementing David's migration syntax proposal.
158 - Save and restore dcr when swapping drives so that if we have
159   a write dcr it is not lost.
160 - Use new routine lock_reservations() to lock the reservations
161   system, and call it while looking for a volume in askdir.c.
162   This could possibly fix bug #543.
163 - Stop SD command loop if job is canceled.
164
165 08Mar06
166 - Remove old code from findlib/create_file.c
167 - Rename mac.c migrate.c
168 - Add user friendly display of VolBytes in job report.
169 - Rename target... to previous... to make it a bit easier to
170   understand.
171 - Add selection type and selection pattern to Migration (idea
172   given by David Boyes). 
173
174 04Mar06
175 - The po files should now be current.
176 - Fix new sql_use_result() code to properly release the
177   buffers in all cases.
178 - Use the keyword ujobid to mean the unique job id; job or jobname
179   to mean the Job name given on the Name directive, and jobid to
180   be the numeric (non-unique) job id.
181 - Allow listing by any of the above.
182 - Add the user friendly job report code for reporting job elapsed time
183   and rates with suffexes from John Kodis <kodis at comcast.net>.
184 - Add Priority and JobLevel as Python settable items.
185 - Use TEMPORARY table creation where the table is created by
186   Bacula.
187 - Add new code submitted by Eric for waiting on specific jobid.
188 - Add ACL checking for the dot commands.
189 - Fix restore of writable FIFOs.
190 - Fix a bug in bpipe where the string was freed too early.
191 27Feb06
192 - Modify the Python class examples to inherit object -- new way
193   of defining classes. Patch from Felix Schwarz.
194 - Implement jobuid to replace old usage of job in keywords as
195   suggested by Eric Bollengier.
196 - Apply patch for enhancing wait from Eric Bollengier. On can now:
197    wait  (wait for all jobs to stop)
198    wait jobid=nn
199    wait jobuid=unique id
200    wait job=job-name
201 - Implement write variables for Python to set Priority (anytime), and
202   Job Level, only during JobInit event.
203 26Feb06
204 - Fix the block listing bug pointed out by Arno.
205 - Update the po files at Eric's request.
206 24Feb06
207 - Fix Maximum Changer Wait, Maximum Open Wait, Maximum Rewind Wait to 
208   accept time qualifiers.
209 - Make catalog respect ACL.
210 - Add recycle count to Media record.
211
212 Changes to 1.39.6-beta1 24Feb04
213 23Feb06
214 - Add Rudolf Cejka's new rc-chio-changer.
215 - Implement pulling Volume from Scratch Pool if the
216   Volume is in the autochanger.
217 - Implement additional command arguments for update Volume.
218
219 Changes to 1.39.5 
220 22Feb06
221 - Back port changes to 1.38.5
222 - Fix recycle SQL for StorageId.
223 - Fix misplaced quote in mtx-changer script.
224 20Feb06
225 - Note. Your database must be updated, or you must create 
226   a new database. I have not yet incremented the database level.
227 - Add Location table. 
228 - Add LocationId, DeviceId, and MediaTypeId to Media record.
229 18Feb06
230 - Implement create/get mac record in database for adding extended
231   Migration data to the job record.
232 - Add new MAC table to update/make database scripts.
233 - Return Storage name used when getting VolumeNames for a job.
234 - Change bsr file keyword Storage to Device, which is more accurate.
235 - Ensure that Mac records are pruned/purged.
236 - Tweak SD tools to deal with changing media type.
237 - Integrate more dev.c subroutines as methods (e.g. strerror, bsr, ...)
238 - Pass pointer to dcr pointer to acquire_device_for_read() so
239   that the subroutine can switch devices, and hence dcrs.
240 - Modify the multiple MediaType read code to re-use the same
241   dcr when switching devices. This makes the code much more
242   robust.
243 - Integrate patch from Karl Hakimian that reads JobIds, FileIndexes
244   from a table for restore.
245 - Add Storage name to VolParams, but it really should be Device.
246 14Feb06
247 - Add disk-changer to scripts directory + configure/Makefile
248 - Eliminate PoolId from jcr -- it is in jcr->jr.PoolId
249 - Implement store_bit scanner to replace store_yesno.  Mostly done.
250 - Implement new store_bool that stores in a bool. 
251 - Add true/false to yes/no conf directives.
252 - Make first cut at changing appropriate store_yesno to store_bool.
253 - Complete implementation of Pool storage devices.
254 - Move starting clones to job.c
255 - Move create_restore_bootstrap_file() to job.c
256 - Make copy_storage() more general to be able to handle
257   Pool storage.
258 - Cleanup a lot of migration code for manual running, including
259   using Pool storage.
260 - Move getting a scratch Volume into a subroutine.
261 - Make all places a Volume that is added to a pool to 
262   respect max vols.
263 - Fix bug in autochanger recycle code (improper edit 64 bit).
264 - Fix segfault in restore command when no value specified.
265 - Start adding code to handle multiple MediaTypes in restore.
266 - Eliminate race condition in getting Volume name for
267   two drive autochanger.
268 - More debug code in autochanger.
269 - Add storage keyword to bootstrap file, add parsing.
270 - Move slot in bsr file into Volume record as there will be
271   a different slot for each Volume.
272 - Create reserve.h
273 07Feb06
274 - Implement Pool storage overrides.
275 06Feb06
276 - Implement first cut of Migration.
277 - Implement mysql_use_result() from patch by Karl Hakimian.
278   This reduces significantly the memory consumption during
279   the restore tree building, and hence runs faster too.
280 - Implement StorageId patch supplied by user (reggie) in bug
281   #536.  This should permit Bacula to work correctly with two
282   autochangers.
283 - Implement Job listing variations suggested by a user.
284 - Move updating bootstrap code in backup.c to subroutine
285   update_bootstrap_file().
286 - Add new job status elapsed time and bytes written user
287   friendly job report output patch sent by John Kodis
288   <kodis at comcast.ne>.
289 - Implement a storage list in Pools.
290 - Separate out setup_job() code from run_job().
291 - Get migration working -- lots of changes in mac.c in both
292   DIR and SD.
293 - Apply patch from user (Eric Bollinger I think) that fixes a  
294   DIR crash when no arguments are supplied to a dot command.
295 - Fix typo (strcpy->strcmp) in ua_prune.c as reported by Martin.
296 - Fix command arg name->volume in label command of gnome-console.
297 - Fix SD acquire.c to release correct DCR by explicitly testing
298   on the dcr address rather than trying to devine if it is a read
299   or write dcr.  This failed in error conditions when the device was
300   not fully setup.
301  
302 30Jan06
303 - Apply user supplied patch for more readable rate output
304   in job report.
305 - Continue implementing migration.
306 - Implement support for removable filesystems in SD.
307 - Ensure that btraceback scripts can be read by anyone.
308 - Replace dvd-freespace and dvd-writepart by dvd-handler.
309 - Correct bug where canceling restore before the FD contacts
310   the SD causes the drive to be left in read mode.
311 - Move ofline_or_rewind into DEVICE::close().
312 - Eliminate close_device.
313 - Convert several dev subroutines to methods (e.g. bsf,
314   eod, ...)
315 - Eliminate force_close_device().
316 - Implement Device Type directive in Device resource that
317   can have values File, Tape, Fifo, DVD, or Prog.
318 - Add has_cap() method to Device.
319 Changes to 1.39.4
320 17Jan06
321 - Add patch from bug #527 to allow RedHat user to specify
322   options/user/group for starting each daemon in      
323   /etc/sysconf/bacula.
324 16Jan06
325 - Add two new queries to query.sql provided by Arno. One
326   list volumes known to the Storage device, and the other
327   lists volumes possibly needing replacement (error, ...).
328 15Jan06
329 - Add periodic (every 24 hours) garbage collection of memory 
330   pool by releasing free buffers.
331 14Jan06
332 - Correct bug counting sized (for display only) in smartall.c
333 - Print FD mempool stats if debug > 0 rather than 5.
334 12Jan06
335 - Make db_lock() mutex error fail the job rather than abort
336   Bacula.  Canceling the job caused the mutex to fail.
337 - Correct bug in alist.c that re-allocated the list if the
338   number of items goes to zero.
339 - Move the reservation system thread locking to the top level
340   so that one job at a time tries all possible drives before
341   waiting.
342 - Implement a reservation 'fail' message queue that is built         
343   and destroyed on each pass through the reservation system.
344   These messages are displayed in a 'Jobs waiting to reserve
345   a drive' list during a 'status storage='.  Note, multiple
346   messages will generally print for each JobId because they
347   represent the different problems with either the same drive
348   or different drives.  If this output proves too confusing
349   of voluminous, I will display it only when debug level 1
350   or greater is enabled in the SD.
351 11Jan06
352 - Add enable/disable job=<job-name>.  This command prevents
353   the specified job from being scheduled. Even when disabled,
354   the job can be manually started from the console.
355 - During 'update slots' clear all InChanger flags where the
356   StorageId is zero (old Media records).
357
358 Beta release 1.38.4:
359 09Jan06
360 - Fix autochanger code to strip leading spaces from returned
361   slots number. Remove bc from chio-changer.
362 - Back port a bit of 1.39 crypto code to reduce diffs.
363 - Fix first call to autochanger that missed close()ing the
364   drive. Put close() just before each run_program().  Fixes
365   Arno's changer bug.
366 07Jan06
367 - Add PoolId to Job record when updating it at job start time.
368 06Jan06
369 - Pull in more code from 1.39 so that there are fewer file
370   differences (the new ua_dotcmds.c, base64.h, crypto.h
371   hmac.c jcr.c (dird and lib) lib.h md5.h parse_conf.c 
372   util.c. Aside from ua_dotcmds.c these are mostly crypto
373   upgrades.
374 - Implement new method of walking the jcr chain. The
375   incr/dec of the use_count is done within the walking
376   routines.  This should prevent a jcr from being freed
377   from under the walk routines.
378
379
380 Changes to 1.39.3:
381 04Jan06
382 - Start implementing Verify list output.
383 - Move the suitable_drive flag to a better place to prevent
384   premature termination of the reservation if all drives
385   are busy -- should fix Arno's diff/inc pool failures.
386 26Dec05
387 - Add mutex to single thread VSS code in Win32.
388 22Dec05
389 - Simplify code in askdir.c that waits for creating an appendable
390   volume so that it can handle multiple returns from the wait
391   code.
392 - Modify the wait code to permit multiple returns.
393 - Return a zero when "autochanger drives" is called and
394   it is not an autochanger.
395 - Make rewind_dev() a method taking a DCR as an argument.
396   This permits closing and reopening the drive if the
397   rewind fails as happens if the drive was loaded while the
398   file descriptor was open. This refreshes the file descriptor.
399 - Remove the ST_OPENED flag and always rely on fd < 0 for knowing
400   if the device is open or not.  This should eliminate
401   Arnos problem.
402 - Return error if reserve cannot find at least one suitable device.
403 - Make wait_for_sysop() return correct state information.
404 - Fix Win32 state file problem. write was not using compat
405   code. This should fix bug #500.
406 21Dec05
407 - Modify gui on command to set only GUI mode and not batch.
408 - Modify .messages command to always print messages regardless
409   of the mode.
410 - If GUI mode is on, suppress automatic printing of 
411   You have messages. 
412 - Delete old bnet packet code.
413 - Ignore new BNET_START_SELECT and BNET_END_SELECT signals in
414   wx-console.
415 - Modify restore command in wx-console to set gui on and to use
416   only .messages instead of messages.  Hopefully this fixes bug
417   #514.
418 - Fix seg fault in exit of acquire when canceling a job --
419   reported by Wolfgang Denk
420 - Pull in latest reservation system changes from 1.38
421 - Make .messages command always print messages regardless
422   of the automessages flag.
423 17Dec05
424 - Fix seg fault if user labels a drive directory bug #513
425 - Remove quotes around Version as it breaks things.
426 16Dec05
427 - Merge in Aleksandar Milivojevic's mods to the spec file.
428 - Apply sparse code fix for raw drives and fifos. Bug 506
429 - Thorsten fixed Unicode cd problem with wx-console bug 505.
430 14Dec05
431 - Correct reservation system to do a last ditch try
432   for any mounted volume, then anyone anywhere.
433 - Add quotes around table Version because of
434   error in MySQL 4.1.15 -- bug report submitted.
435 - Correct some minor problems with btape in the fill
436   command.
437 - Updates to ssh-tunnel from Joshua Kugler.
438 - Added a report.pl program from Jonas Bjorklund.            
439 - Simplify the O_NONBLOCK open() code for tape drives,
440   and always open nonblocking.
441 - Do not wait for open() if EIO returned (shouldn't happen).
442 - Eliminate 3 argument to tape open().
443 - Correct the slot # edited in the 3995 Bad autochanger unload
444   message.
445 - With -S on bscan (show progress) do not divide by zero.
446 13Dec05
447 - Make cancel pthread_cond_signal() pthread_cond_broadcast().
448 - When dcr is freed, also broadcast dev->wait_next_vol signal.
449 - Remove unused code in wait_for_device.  
450 - Make wait_for_device() always return after 60 seconds of wait.
451
452 Changes to 1.39.2:
453 13Dec05
454 - Add stubs for non-crypto build.
455 12Dec05
456 - Use localhost if no network configured
457 11Dec05
458 - Eliminated duplicate MaxVolBytes in cat update -- bug 509.
459 - Remove debug print.
460 - Add bail_out in error during state file reading.
461 10Dec05
462 - Merge changes made to 1.38.3 into HEAD
463 - Add stubs for pygtk-console code
464 - Create Makefile.in for pygtk-console code
465 09Dec05
466 - Merge updates into 1.38 branch
467 - Update specs to include mysql4 define.
468 - Fix when attributes are sent, must be after binit().
469 - Stop read_record() if status not ok in second loop.
470 - Return rec->FileIndex in dcr->VolLastIndex for normal
471   and partial records in read_record().  This allows bscan
472   to get FileIndex at EOT correct.
473 - Fix butil.c to correctly set dcr -- fixes seg fault in bls.
474 08Dec05
475 - Fix Win32 built to work with new crypto code.
476 - Apply patch supplied by user (slightly modified) to fix
477   correct detection of holes in block devices and FIFOs. 
478   Bug # 506.
479 - Apply patch supplied by user (slightly modified) 
480   to fix SD hang with multiple pools and bad client
481   IP. Fixes bug # 508.
482 07Dec05
483 - Add nagios plugin to the examples directory. Submitted by
484   Christian Masopust.
485 - Remove warning message about multiple saves of hardlinked files
486   from find_one.c as it can generate too many warning messages.
487 - Modify most restore error messages to be queued so that they
488   appear at the end of the job rather than mixted with the restore
489   listing where they could be "lost".
490 06Dec05
491 - Reset timeout values before select() per patch from 
492   Frank Sweetser for problems with non-blocking sockets.
493 - Unlink the state file if either reading or writing it gets
494   errors.  Hopefully this will fix Win32 exit problems.
495 - Add sanity check in append.c to ensure that dcr is not NULL.
496   This can happen if multiple drive autochanger SCSI control
497   channel and drive indicies do not correspond.
498 05Dec05
499 - Get next volume from Scratch pool before creating a volume.
500 - Set new Pool defaults in Vol when moved from Scratch Pool.
501 - Remove argument from create_bacula_database for SQLite as it
502   caused an error.
503 - Add back index code so that two drive autochangers can get
504   a second tape.
505 - Change a bunch of debug levels to aid debugging autochangers.
506 - Fix reservation so that mutexes are properly applied.
507 - Rework reservation algorithm so that two drives can be used
508   at the same time.
509 04Dec05
510 - Landon merged his data encription changes into the HEAD
511 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at 
512   If this patch is applied, the number of days can be specified with
513   "list nextvol days=xx"
514   or
515   "status dir days=xx"
516   My use case is to be able to preview the next scheduled job (and the 
517   next tape to be used) on fridays if there are no scheduled jobs during 
518   the weekend.
519 Changes to 1.39.1:
520 03Dec05
521 - Fix font code in gnome2 console user patch. Fixes bug #501.
522 - Fix malformatted bnet error message that caused seg fault
523   fixes bug 502
524 - Applied user patch to improve README.vc8 in src/win32.
525 29Nov05
526 - Add Migrate, Copy, Archive Job types (some where there)
527 - Correct some more editing of JobId's (for 64 bit compatibility).
528 - Ensure that StorageId is stored in Media record when ever possible.
529 - Add Migration Job to Job.
530 - Add Migration Time, Migration High Bytes, Migration Low Bytes
531   Next Pool to Pool resource.
532 - Add more code to mac.c (migration archive copy).
533 - Change Start Storage daemon job to require read and write storage
534   pointers.
535 - Pass read storage data to SD as well as write storage data.
536 - Remove old code from winservice.cpp
537 - Break on error in scan.
538 - Fix typo in signal.c
539 - Separate read/write DCR in SD.  Add jcr->read_dcr.
540 - Cleanup how find_device() works.
541 - Add read output to Status in SD.
542 Changes to 1.39.0:
543 23Nov05
544 - Add red-black btree routines
545 21Nov05
546 - Remove abs() in bfile.c so that it compiles on Solaris. 
547   Bug #491.
548 20Nov05
549 - Fix crash in tray-monitor when daemon disconnects. Bug #479.
550 - Fix bnet-server bug found on OpenBSD. Bug #486
551 - Fix cancel failure bug. Bug #481
552 - Fix failure when Pool name has spaces. Bug #487   
553 - Fix SD crash in autochanger code. Mutex failure. Bug #488
554 - Fix a couple of free()s in src/filed/acl.c
555 - Fix memory overrun in bfile.c in building OS X resource
556   fork filename. Bug #489 
557 - Add Pool name to SD status output.
558 14Nov05
559 - Apply SunOS patch for ACLs submitted by David Duchscher.                  
560 - Make sure to set storage before trying to set drive.
561 - Add bacula_mail_summary.sh to examples directory. It makes
562   a single email summary of any number of jobs. Submitted
563   by Adrew J. Millar.
564 - Make sure when we do a mount to unblock the device even
565   if the drive could not be opened.  
566 13Nov05
567 - Remove the USE_WIN32STREAMEXTRACTION #defines (always on)
568   and correct a few minor problems to make it build on Linux.
569 10Nov05
570 - Remove delete of CVS from all Makefiles
571 - Fix seg fault when clicking on Add button in wx-console
572   restore panel.  Bug #470.
573 - Fix copyright date and URL typo -- bug #468.
574 - Change autostart install for FreeBSD to look for rc.conf  
575   rather than rc.local as suggested fix for bug #466.
576 - Apply patch supplied by Eric Bollinger to fix PostgreSQL    
577   grant on status. Bug #465
578 - Apply patch supplied by Eric Bollinger to fix PostgreSQL
579   update script. Bug #464
580 - Tweak #ifdefing a bit in new Win32 stream code.
581 - Fix #ifdeffing for FD_NO_SEND_TEST.
582 - Add documentation of performance #defines