]> git.sur5r.net Git - bacula/bacula/blob - bacula/ChangeLog
03b17e22c4e87ebb21171aa0953f16f951a4e2a6
[bacula/bacula] / bacula / ChangeLog
1 2003-xx-xx Version 1.31 Beta xxJun03
2 - Very preliminary support for Gnome-2.0.  Text does not yet work.
3 - Correct buffer corruption in find_one.c with long directory names (Win32).
4 - Make setting owner on directories M_ERROR rather than M_WARNING.
5 - Fix printing of JobId in run listing for restore job.
6 - Reduce heartbeat read check interval to every 10 seconds on Cygwin because
7   there is no working pthread_kill().
8 - I finally designed a test for multiple simultaneous jobs,
9   and sure enough it broke when the jobs are split over multiple
10   volumes.  Now fixed and working!
11 - Eliminated a few "duplicate" error messages by testing for canceled.
12 - Add ASSERT for device use count going negative.
13 - Fix BlockNumber checking in stored/read.c (got first one wrong).
14 - If socket is timed out, do a shutdown(fd,2) instead of close().
15 - Fixed return status from SD to FD by setting JobStatus in append_end() 
16 - Add arrays to Environment variables. Elements separated by |.
17 - Implement Reschedule On Error, Reschedule Interval, Reschedule Times.
18 - Add a new pool PM_NAME -- gets a name length buffer.
19 - Implement fast cancel of FD blocked on writing to SD by using
20   pthread_cancel(). Turned off on Cygwin due to bug.
21 - Add code to handle EAGAIN in writing (probably not necessary). Use
22   select().
23 - Eliminate size_t from pool control buffers.
24 - Complete Counter resource.
25 - Complete LabelFormat (except for WrapCounter) plus counter
26   inrementation.
27 - This needs a database change to eliminate PoolId from counters.
28 - Made a more compact format for the document index.
29 - Add Phil's checkhost to examples directory (thanks Phil).
30 - Implement generalized LabelFormat (documentation to come).
31 - Implement Counter resource.
32 - Cleanup examples/kernsconfig
33 - Implement restore to a specific date.
34 - Fixed a but in automatic labeling (and use durations expiring) analysed
35   and reported by Rob Proffitt (thanks!).
36 - Cleaned up a few Cygwin compile problems.
37 - Made a 10Jun03 release (it is in production here)
38 - Finally took the big plunge and fixed restoration of links and other
39   files that have been changed between the backup and restore. Basically
40   if the file exists, it is deleted, then re-created.
41 - Purge only Volumes marked Append, Full, Used, or Error.
42 - Allow pruning of volumes marked Append, in addition to Full and Used.
43
44
45 2003-06-10 Version 1.31 Beta 10Jun03
46 - Eliminated all plain email addresses and replaced them with " at " in
47   place of @ to reduce havesting by spammers.  Doc + Web Site.
48 - Started working on making POOLMEM a struct rather than a char. Lots of
49   work to do.
50 - Fixed bscan to handle -V option.
51 - Fixed bscan to handle two File volumes.
52 - Corrected a misplaced comma it get_fileset() in cats pointed out by bscan.
53 - Added two Volume bscan test to regression scripts -- write two volumes,
54   purge and delete everything, bscan the tapes, and do a restore. It works!
55 - Reorganized the backup/restore code to move the attribute information into
56   an ATTR packet, which is passed in place of tons of arguments.  Moved some
57   code into lib/attr.c and lib/attr.h.  Then eliminated all the duplicate
58   attribute code.
59 - Moved FT_ types into baconfig.h.
60 - Defined FT_ types to use only 16 bits. The upper half of the word is
61   reserved for adding optional fields in the attributes packet.
62 - Moved jcr->where into common part of jcr and have it deleted in lib/jcr.c
63 - Put all attribute reading code on switch() with cases instead of a big
64   if (restore.c, bls.c, bextract.c, bscan.c, ...)
65 - set_attributes() now takes ATTR packet, and thus has much fewer args.
66 - moved print_ls_output() into lib/attr.c  
67 - implemented is_stream_supported().
68 - create_file() now takes ATTR packet so has many fewer args.
69 - add mtime_only code.
70 - Rewrote bnet.c read and write routines to quit if bsock->terminated is
71   set.  This will allow setting non-blocking writes and then receiving
72   a termination message and terminating the Job immediately rather than
73   waiting 2 hours for the line to timeout.
74 - Put catalog db name in some error messages.
75 - Code for restore is now much cleaner, with much of it in lib/attr.c,
76   and it is now common for all readers.
77 - Add first cut of proper support for Win32 Backup code.
78 - Fix bug in restore Win95/98/Me.
79 - Pass mtime_only flag to FD. Needs config record.
80
81 2003-06-04 Version 1.31 Beta 04Jun03
82 - Fix block.c to check errno only in case of return status -1 as 
83   suggested by Justin Gibbs (FreeBSD).
84 - Implemented qfill command in btape for quick testing write/read of a tape.
85 - Discovered that FreeBSD pthreads re-use the same thread id, which causes
86   the SD to fail when a user leaves a device unmounted (old pid is reused
87   and lock_device() thinks the same thread is calling again leading to
88   inconsistent state). Set id to zero after blocking the device during
89   unmount.
90 - A lot of clean up, moving subroutines around for TermCode.
91 - Free ua->prompt when Job terminates.
92 - Add AutoPrune and Recycle to values copied from Pool resource
93   into Pool record on create/updated.
94 - Implemented bsr for Verify VolumeToCatalog. 
95 - Improved the Verify Job report using SD and FD term codes.
96 - Split tree handling routines from ua_restore.c to ua_tree.c
97 - Split bsr routines from ua_restore.c to bsr.c and bsr.h 
98 - Fixed clash between FD and SD returned job values. Report now contains
99   values from FD.  Maybe I should change? or give both.
100 - Attempt to fix negative use_count for dev packet in SD by adding
101   a couple of open_dev().   This may be cause of Dan's crash.
102 - Clear no_wait_id when device is unblocked. This may be cause of Dan's crash.
103 - Eliminate old "new lock code".
104 - Add configure of mtx-changer for mtx path.
105 - Always rewind tape before releasing it (for FreeBSD).
106 - StartBlock was one too large for second volume.
107 - Fixed restore to display status from both SD and FD.
108 - Unified return status message for backup and restore.
109 - Corrected segmentation fault reported by Dan when doing "label barcodes"
110   on a File.
111 - Corrected a segmentation fault when attempting to send a JobMedia record
112   to the Console -- reported by Dan.
113 - Added MySQL documentation for using the threaded libraries.
114 - Added new columns and tables to Catalog database.
115 - Wrote alter scripts and tested them (thanks to Dan for the help) on
116   MySQL and SQLite.
117 - Started using enums where ever possible when passing flags to 
118   subroutines. This helps make the source much more readable.
119 - Corrected a bug where a vertical database listing was being used in
120   the query command.
121 - Added new argument to parse_args() to prevent command arg overflow.
122 - Renamed ua_db_query.c ua_query.c.
123 - Split scan.c out of lib/util.c
124 - Perhaps I have *finally* fixed the command line history in gnome-console.
125 - Added support for smartalloc for any global new or delete command
126   by overloading the global operators.
127 - Made the default time with no qualifier day rather than seconds.
128 - Fixed a bug in the store_size() routine that improperly converted from
129   double to uint32_t.
130 - Started using "bool" where possible.
131 - Zap SD session key once it is used.
132 - Added *lots* more checking for strcpy -- bstrncpy(), ... 
133 - Added CreateTime field to FileSet record and print it to distinguish
134   FileSets. 
135 - Print an information message when a new FileSet is created.
136 - Include the FileSet date/time in the Job report.
137 - Indicate if a Job is upgraded in the Job report and from what previous level.
138 - Incremented the database version.
139 - Ensure that any DB error message is printed if the start_time of a previous
140   save is not found.
141 - Free orphaned buffer in ua_restore.c in case of database error.
142 - Implement enum for response DISPLAY_ERROR and NO_DISPLAY
143 - Implement enum for create_pool (POOL_OP_CREATE, POOL_OP_UPDATE).
144 - Make sure FileSets printed in restore are in order.
145 - Add a number of bstrncat, and other protected string operations.
146 - Clean up old structs in dird_conf.h
147 - Remove all Slot invalidation code.
148 - Add Automatic choice message to all do_prompt() calls.
149 - Eliminate JobId from restore if not used.
150 - Clean up a few error messages.
151 - Make fill/unfill commands work correctly in btape.
152 - Enhance btape fill and unfill commands.
153 - Implement real Pmsg() code so that negative levels work in Dmsg()
154 - Implement block number check -- had to turn it off because it doesn't
155   work.  Need to verify that it is the correct block and that block
156   numbers are properly written.
157 - Moved readline from depkgs1 to depkgs.
158 - Reworked the configure code to handle readline correctly. This was broken
159   mostly due to the fact that the readline routines are nested down one
160   directory.  Also, I missed one header file that was needed (possibly added
161   in a later version).
162 - Put correct include on the dependencies make for Console readline.
163 - Remove JobMediaId from VOL_PARAMS (no longer needed).
164 - Sort VOL_PARAMS by JobMediaId using SQL in cats.
165 - Add jcr as argument to block.c read_block... routines so that error
166   messages are immediately displayed.
167 - Make bsr_dev() edit an error message if it is turned off and return 0.
168 - Add checking for the BlockNumber in the read routines -- lots of
169   false matches are found -- much check writing end.
170 - Now sort bsr volumes by JobMediaId -- produces better results.
171 - It turns out that under certain circumstances, when doing a restore, the
172   Volumes will not be written to the BSR in the correct order.  I don't
173   know exactly why, but many thanks to Dan Langille for reporting this.
174   The solution is to sort the Vol_Params within each bsr (done), and to
175   sort the bsr chain (not yet implemented). Note, the bsr chain should
176   always be in order unless the user explicitly specifies the JobIds in
177   a different order.          
178 - Began implementing C++ structs rather than typedef structs as in C.
179 - Added volatile to a lot of variables that are used in two threads at
180   the same time. This should prevent improper optimization.   
181 - Fixed a missing space in the "run job=xxx where=" the where was
182   glued to the end of the previous stuff (bootstrap filename). 
183 - I *finally* found the cause of the mysterious failure of shell expansion.
184   It was due to the read() getting interrupted!  That's what opening up
185   SIGCHLD will do!
186 - Remove unused default tape drive names.
187 - Create a new status.c file in stored and split the status code out of dircmd.c
188
189 2003-05-22 Version 1.31 Beta 22May03
190 - I discovered that C++ permits "prototyping" structures e.g. struct A; is
191   a valid statement. This permitted me to eliminate all the void *jcr, in
192   favor of JCR *jcr, which pointed out a number of bugs in block.c.
193 - Change lib/bmisc.c to bsys.c (system routines).
194 - Add set_working_directory() to lib/util.c
195 - Remove some unneeded setjcr_job_status() since Jmsg(jcr, M_FATAL,...)
196   already sets it.  
197 - Do not increment jcr->Errors for Fatal errors -- they represent non-fatal
198   errors.
199 - Fix a few more places in FD where Errors was not incremented.
200 - Print unexpected (or incorrect) termination message returned from FD.
201 - Use switch() instead of giant if statement in verify_vol.c
202 - Protect overrun from do_shell_expansion() by passing max length.
203
204 2003-05-20 Version 1.31 Beta 20May03
205 - Add mandrake to platforms
206 - Suppress error messages if no bytes written to tape.
207 - Suck up bootstrap file even on error so that Dir sees our error message.
208 - Pretty much finish off the Win32 backup code.
209 - Add DESTDIR code to autostart for creating non-root rpms
210 - Echo input read from a script in Console.
211 - Clarify error message for VerifyToCatalog
212 - Add error counts in restore for M_NOTSAVED.
213 - Adapt bfile.c to handle both Win95 files as well as WinXP files.
214 - Add MTIOCERRSTAT for FreeBSD (clear error status).
215 - Correct double jobmedia record when cancel at EOM reported by Phil.
216 - Correct possible write at beginning of tape during cancel at EOM
217   as reported by Phil.
218 - Document in detail how Incremental and Differential jobs work.
219 - Add non-fatal error count on backup and restore Job reports.
220 - Remove a couple uses of lld -- now prefer to edit and use %s.
221 - Fix directory could not be accessed on Win32.
222 - Improve message indicating that last Full backup not found. 
223 - Fix free() too early in directory traversal code.
224 - Prune Jobs with no JobFiles or that have JobStatus!='T'
225 - Add a few more command line scans for prune/purge.
226 - Restrict valid characters in a Volume name, and document it.
227 - Make new Win32 save/restore work. Still a bit more to do.
228 - Use reentrant version of mysqlclient library.
229 - Use more machine independent way of finding gcc version.
230 - Fix race condition in sql_list where messages edited before locking.
231 - Lots of testing saving/restoring 6GB files.
232 - Add where to restore where=/tmp
233 - Complete implementation of Win32 streams in FD. Must test. Also,
234   must implement new streams in SD.
235 - Make termination of daemons more "error" tolerant.  
236 - Make default "duration" days rather than seconds if there is no modifier.
237 - Install bcopy.
238 - Add detection of available Win API's so that a single binary will
239   work on all Windows systems.  Reference those APIs through a pointer.
240 - Remove use_win_backup_api and enable it in bfile.c if system supports it.
241 - Modify dev.c so that it works if MTEOM is not defined (BSDI).
242 - Change MT_xxx to BMT_xxx to prevent conflicts with BSDI.
243 - Detect strtoll() in configure.
244 - Implement replacement for strtoll() for BSDI.
245 - Add platform files for BSDI.
246 - Use Jmsg() instead of Jmsg1() in acquire because File:line prefixed in dev.c
247 - Use Jmsg() in write_block_to_dev() so that no messages are lost.
248 - Rework autochanger code in restore to handle case of cassette not in magazine.
249 - Implement Windows BackupRead/Write(). I now have permissions right!!!!
250 - Additions to the manual (Purging, Autopruning).
251 - Add doc to code in autoprune.
252 - Begin adding Level = Base.
253 - Make Jmsg recognize console and direct messages directly back to it.
254 - Hopefully fix mess in mount.c when a tape expires.  
255 - Fix restore bug recently introduced due to Unix backwards status convention.
256 - New bacula.spec from Scott
257 - Add globals for database name and version and print them in traceback.
258 - Eliminate SubSysDirectory in each daemon conf file.
259 - Implement get_yesno() and get_pint() in UA.
260 - Make Jmsg aware of console. Messages now sent directly to Console.
261 - Created a single bacula.spec.in for by the MySQL and SQLite builds.
262 - Added proper configuration to console.in and gconsole.in
263 - Start adding textdomain() code for translating.
264 - A number of minor code cleanups.
265 - Rework shell expansion just a bit.
266 - Add rewind() when releasing a tape before acquiring the next one.
267 - Implement addition of Description in Service entry for Win32.
268 - Update manual to eliminate unclear autochanger points as mentioned
269   by Dan Langille.
270 - Implement DESTDIR everywhere.
271 - Rework spec files for 1.31 and combine the main spec and the client
272   only spec making a client package. At the same time, rename the packages
273   so it is a bit clearer to the user. Also fix the build to work
274   as non-root (scriptdir was not prefixed with $RPM_BUILD_ROOT).
275 - Correct Auto Changers and all other forms to Autochangers in the
276   manual.
277 - John reported needing to do two "mount" requests, and indeed that
278   was the case. It turns out that pthread_cond_timedwait() does not
279   always return zero when awaken by a pthread_cond_signal().
280 - Include RunBeforeJob and RunAfterJob output in job output report.
281 - Implement a "real" Admin job that prints a mini-job report.
282 - Clean up a few error messages in findlib and filed.
283 - Recent changes to gnome-console caused initial output to be
284   lost -- now fixed.
285 - The Win32 version crashed after each job. After hours, it turns out
286   that when running with LocalSystem privilege (and not as a user), when
287   Cygwin does pthread_kill(id, SIGUSR2), it gets a memory fault.
288 - Moved stored/fdmsg.c to lib/bget_msg.c, and moved SD messages to
289   stored.c.  So now bget_msg() can be used by both the SD and FD.
290 - Changed Director's bget_msg() to be called bget_dirmsg() to avoid
291   any possible confusion.
292 - Implemented bget_msg() in general everywhere in the FD except for
293   job.c where the Dir and FD are communicating.
294 - Implemented a Director only heartbeat in the FD for the cases where
295   there is either no connection to the SD or the FD is already reading
296   from the SD.  start_dir_heartbeat() ...
297 - Add heartbeat to restore and verify volume.
298 - Add "Heartbeat Interval" to Storage resource, which sets interval the
299   SD sends heartbeats to the FD and DIR, 0 disables heartbeats.
300 - Add "Heartbeat Interval" to FileDaemon resource, which sets the interval
301   the FD sends heartbeats to the DIR, 0 disables heartbeats. 
302 - Added heartbeat from FD to Dir every HB_TIME rather than forwarding
303   SD heartbeats.
304 - First cut label dialog.
305 - Turn on new semaphore code for simultaneous Jobs.
306 - Fix cancel trying to release semaphore's not acquired.
307 - Implement get_pint() and get_yesno() for UA.
308 - Implement find_arg_with_value() for UA.
309 - All command line "slot" to be specified for label command.
310 - Rework heartbeat code in FD to correctly terminate.
311 - Fix btraceback to use smtp and to eliminate double //
312 - Fix "storage" command to include ssl for verify and restores.
313 - Add Heartbeat code when SD is waiting on a tape -- heartbeat every 20 mins
314   to keep stateful firewalls from timing out the connections.
315 - Fix src/stored/Makefile.in typo causing problems in statically linking
316   btape.  Thanks to Lutz for reporting this.
317 - Create an is_client_alive script for checking if a client is alive.
318   Using this script prevents generating error messages.
319 - Added corrections and updates to manual provided by Phil -- thanks.
320 - Added RequireSSL to each program/daemon configuration.
321 - Added EnableSSL to each correspondent for each program.
322 - Added the Console resource to the Director (need to
323   implement individual Console authorization).
324
325 2003-04-28 Version 1.30 released
326 - Fix command history for gnome-console (must malloc).
327 - Add two cancel points in acquire_resources(). The job will not
328   be immediately terminated in all cases.
329 - The new AutoMount code broke File archives -- fixed.
330 - Correct watchdog mutex race introduced yesterday.
331 - Add JobLevel to Admin run started by UA.
332 - Add -v to daemon startup scripts
333 - Implement bmicrosleep(sec, msec);
334 - Implement When for "run" command.
335 - Remove unsigned from socklen_t definition in hopes it will work better
336   with older systems.
337 - Remove code that attempts to set PID dir and SUBSYS dir if they
338   do not exist because it set them to sbindir!
339 - Modify mount to initially attempt to read the volume if Bacula
340   wants a tape, none is mounted, and "Automatic Mount = yes" is set.
341 - Prohibit setting --sbindir and --with-subsys-dir the same.
342 - Fix missing argument that cause Kaboom in update slots.
343 - Fix orphaned bsock when UA gets error contacting FD or SD
344 - Nearly full implementation of Win Backup API, but it does not
345   work due to lack of permission! Arggg!
346 - Implemented restoring directory permissions as they should be.
347 - Implemented reasonable regression script.  It found a number of
348   restore errors.
349 - Implemented the following @ commands in the console that work directly
350   in the console rather than in the Director.
351     input - read input from a file
352     output - write output to file
353     tee    - tee output to file and terminal
354     time   - print current time
355     version - print current version
356     exit    - quit
357     quit    - quit
358 - Implemented new bfile io routines that will permit implementation of
359   Windows native APIs for reading/writing files.
360 - By default always update hard links with the prefix, but do
361   not update soft links.  It seems inconsistent, but it is what
362   cp does.
363 - Implement wait command in Console that waits until no jobs are running. 
364 - Fixed the < code in Include/Excludes, which forgot to skip over the <.
365 - Do NOT attempt to chmod() a soft link as it will change the file behind
366   the link!
367 - OOPS! Lutz ran into a problem. In attempting to prevent string overflows,
368   I used bstrncpy() on a variable that was malloc'ed thus truncating 
369   Volume names!  Arrrggggg!
370 - Lots of documentation of new features.
371 - Rework Volume name scanning in console, made much more logical
372   and corrected a bug (confusion in calling sequence).
373 - Cleaned up a few error messages in cats adding more info.
374 - Add the IP address to error messages due to bad connects to servers.
375 - Implement default File output in config files so user can start
376   saving right away without a tape drive.
377 - Protect inet_ntoa() with mutex in case it is not thread safe.
378 - Eliminate termcap from use in gnome console.
379 - Remove unused SD maximum volume files and maximum volume jobs. They
380   are implemented in the Director.
381 - Make the default for Incremental and Differential saves to compare
382   against both st_mtime and st_ctime rather than just st_mtime.
383   This includes files moved or copied.
384   Thanks to Matthias Wamser for bringing this fix to our attention.
385 - On Win32 clients, make a pass through the include/exclude patterns
386   and change any back slashes to foward slashes. Prevents creating
387   unusable directory names containing both conventions.
388 - Move ls -l output on restored files to M_RESTORED class.
389 - Make gnome-console compile correctly on RH8.0
390 - label barcodes now works.
391 - Implemented "update slots".
392 - Tweak btape "test" to always print suggestion for re-read last block.
393 - Implemented "Cleaning Prefix"
394 - Update alter_mysql_tables.in
395 - More work on barcodes.
396 - Zap VolHdr in SD when attempting to label a tape that is not
397   there.  Prevents false tape names the next label command.
398 - First cut of bar code reading is implemented. It doesn't do
399   anything but return the list to the Director.
400 - Implemented relabel command that relabels "Purged" Volumes.
401 - Check exit code in RunBeforeJob and err the job if it is non-zero.
402 - Remove old testsuite -- too complicated
403 - Print length when Authorization fails because of bad length.
404 - Fix problem of NumVols in Pool getting reset on startup.
405 - Implement full listing of DB records by listing them vertically
406   instead of horizontally.
407 - Make changes to mysql scripts as suggested by Lutz Kittler
408 - Fixed code to write Uname to Client record.
409 - Fixed a problem (in btape) where Pmsg() was not printing.
410 - Moved re-read last block test to last in "test" command of btape.
411 - Lots of new documentation.
412 - Fixed newvol.c to handle retrying 10 times if the volume name already exists.
413 - Removed int_least16_t from sha1.h because it does not exist on some systems.
414 - Release job in SD if canceled and waiting on a mount (better cancellation).
415 - Prompt for Client in restore if not specified.
416 - Print "Selection is empty!" if no selection list found.
417 - Add new spec files and bacula.desktop from Scott.
418 - Update client every time a job is run.
419 - Add verbose option to daemons for printing more user error info.
420 - Test if console works with readline 4.3 (yes, it is OK).
421 - Release new depkgs
422 - Release new winbacula.
423 - Add Uname info to Client DB record.
424 - Improve error messages and make them more consistent when a non-existent
425   Device is requested.
426 - Separated the -mwindows option so that only Windows programs
427   are built with it (bacula-fd, ...) the tty tools such as console
428   dbcheck, smtp, testfind, ... are now able to be run in a standard
429   Windows DOS box.
430 - Add | and < options to Exclude the same as in Include.  
431 - Add typed in input to the text window in the gnome-console.
432 - Change function that gets the entry text (previously had orphaned buffer).
433 - Fix multiple Director problem in gnome-console (thanks to Lutz Kittler).
434 - Thanks to Renato, I was able to test Bacula on a FreeBSD tape drive.
435   There are a number of significant differences: 1. reading less than
436   the number of bytes in a record returns an I/O error.  2. ioctl(MTEOM)
437   looses the file position. 3. Reading two two EOF marks (or ioctl(MTEOM))
438   leave you positioned after the second EOF, so you must backspace file
439   to be able to append.
440 - Added BSF at EOM = yes/no to Device resource to allow proper positioning
441   at the end of a FreeBSD tape.
442 - Made btape "test" do much better testing of error conditions (i.e.
443   it now ensures that the append went well). It will automatically
444   detect problems and apply fixes and then retry the test, if it
445   finally succeeds, it clearly says what directives need changing.
446 - Add Scott Barninger's rpm changes to the build environment
447 - Add changes to mtx-changer so users can add eject and sleep for
448   certain autochangers.
449 - Implemented FreeBSD chflags (user defined flags).
450 - Turn restore errors during setting of owner and modes into
451   warning messages -- for restoring files as non-root.
452 - Fix how prefixes are handled in restoring soft links.
453 - Modified btape "test" command to do only those things that
454   Bacula actually does. There is much more explanation, ...
455 - Update manual.
456 - Finally had to back up to gcc version 2 from version 3 to avoid version
457   3 nightmares.   
458 - Final cygwin tweaks.
459 - Move start time to *after* the resource locks are acquired.
460 - Unable to duplicate Phil's disabling of Bacula with nmap, but
461   did make the authentication code a bit more conservative for
462   dealing with bad input.
463 - Added code to the query command to escape all strings input
464   before substitution and sending to the SQL engine.
465 - Escape user entered filenames for restore command.              
466 - Cleaned up the waiting code a bit -- using broadcast instead
467   of signal and counting the waiters.
468 - Implement new pthreads semaphore code.
469 - #define new semaphore code rather than workq on USE_SEMAPHORE.
470 - Lots of improvements to the document to address recent support requests.
471 - Implement cycle through a set of tapes suggested by Eugeny
472   Fisher with the "RecycleOldestVolume=yes" record in the
473   Pool resource.  Basically this record causes Bacula to purge
474   to oldest tape when no more tapes are found.
475 - Correct a number of small incorrect interactions between limit
476   variables during recycling.
477 - Corrected a bug in db_create_media_record() where VolMaxFiles and
478   VolMaxJobs was not written to the database.
479 - When the Director starts, the Pool record is updated in the
480   database with the current contents of the Pool resource.
481 - Corrected bnet_connect() to immediately stop (rather than looping
482   for the timeout period) if there is a fatal error (socket, or
483   hostname to ip).
484 - Reworked "purge" code to make purging Volumes easier.
485 - Made "list volumes" list the volumes in all pools -- also
486   "list volumes pool=Default" does not produce and error message.
487 - List Pool record after doing "update pool".
488 - Remove pid file code from Win32 -- not really necessary.
489 - Make bnet handle null jcr during cancel rather than crash.
490 - Add CygwinInstall.bat and CygwinUnInstall.bat
491 - Add db_lock() around newvol.c code to prevent race condition if multiple
492   callers want a new Volume name.
493 - Lots of cleanup to Win32 code, with additional error messages.
494 - Make Bacula work on Win95 (test for GetAttributesEx).
495 - Add better error messages when end of media is reached or volume
496   capacity execed.
497 - Turned off signal catching in readline(), necessary to keep console
498   from crashing on ctl-Z with RedHat 8.0.  Thanks to David Craigon for
499   testing this.
500 - Make the 3rd and hopefully final change to the Finclude structures.
501   This new version permits multiple sets of options (more code to be
502   written) to be applied against the same set of files. Thus one can
503   have options that with match of *.gz and a different set of options
504   for *.c, ...
505 - Integrated GNOME Console font resource code supplied by Phil Stracchino.
506 - Check for job_cancelled() in bnet_connect() code to stop wait loop if
507   client not available.
508 - Fix early end of file scanning conf file in lex.c, which previously
509   caused ABORT -- now reports error.  This could happen with an unterminated
510   string for example.
511 - Move Maximum File Size code before write and detect error on writing EOF.
512 - Additional fix for Solaris 2.6 and a bdb.c fix submitted by Armin Buehler.
513 - Added detection for Solaris 2.6, which uses older setsockopt() calls.
514 - Defined sockopt_val_t for setsockopt() calls.
515 - Added fixes sent by Bevan Anderson that fix multiple connects to FD
516   (I zap keys for security, so must put back dummy key).  Also a fix
517   to the Internal database that wrote garbage after the filename in
518   the database.
519 - Back out the __SVR4 changes.
520 - Add automatic configuration of socklen_t
521 - Attempt to fix problems reported by Lutz with multiple simultaneous
522   open file Volumes (experimental code). Serialized acquire. This may
523   fix the problem, but more thought and testing is necessary.
524 - Add table of "supported" autochanger models.
525 - Add Solaris 2.6 (__SRV4) changes sent by Peter Schmitz.
526 - Correct tape selection code in SD (|| => &&). Thanks to Chuck Hemker
527   for the patch.
528 - Eliminate FileOptions. Implement new Finclude and Fexclude that
529   have file options contained in it.  New structure must be transmitted
530   to FD.
531 - Split Include/Exclude into new inc_conf.c file.
532 - Cleanup new Include/Exclude and FileOptions.  Structures in Director
533   now correct.  Must transmit FileOptions to FD.
534 - WARNING:  With the adddress and port code in the Catalog you MUST
535   remove old address= and dport= records!!!!!
536 - Added code to remove cancelled jobs from the workq -- needs testing.
537 - Added first cut AIX from output James MacLean sent me.
538 - Second cut of FileOptions.
539 - First cut of parsing FileOptions and Counters.
540 - Added address:port for MySQL as well as socket for local access.
541 - Fixed job.c in filed to properly handle excluded files. Apparently
542   I changed the daemon protocol but forgot to update the code.
543 - Enhance testfind to handle include and exclude files
544 - Fix getdomainname() prototype for Darwin
545 - Added new -u and -g options for specifying userid and groupid to
546   use when running, so that Bacula can reduce its privileges.
547 - When Bacula was hanging due to an NFS volume being down, I 
548   fixed a few places in the File daemon where is should have immediately
549   terminated the connection instead of waiting for the Director to do so.
550 - Added first cut support for Darwin.
551 - Temporarily comment out the O_NOFOLLOW to avoid possible subtle problems.
552 - Implemented O_NOFOLLOW in creating files in create_file.c to prevent
553   creating a file at the end of a symbolic link.
554 - Use chown() if lchown() does not exist (e.g. Darwin).
555 - Always close stdin on startup to avoid having /dev/console attached.
556 - Change all DATE occurrences to BDATE because it is used by Cygwin headers.
557 - Add printing of Volume names in SD status output.
558 - Display all open devices in device chain in SD status output.
559 - All changing Pool in console run command.
560 - Thanks to Eric Bollengier for pointing out that the run_program()
561   return status was not correctly generated. Now fixed (I hope).
562 - Corrected crash in Internal Database getting Volumes.
563 - Flush all daemon messages at the end of every job.
564 - Fix Install.bat script so that Bacula restarts after reboot on WinNT/2K systems.
565 - Minor changes in the gnome-console directory.
566 - Integrated in my old Tcl/Tk code into src/tconsole and moved it up
567   from C to C++.  Pretty crude, but it is a beginning.
568 - Close syslog() %n exploit in message.c
569 - Edit space before each line in gconsole.
570 - Added INCEXE structure so we can have FileOptions.
571 - Added support for multiple simultaneous open file volumes.
572 - Fix hard linked files so that the one saved is always restored.
573 - Add * to restore "dir" listing to indicate marked files.
574 - Add ability to make md5sum and sha1sum in lib directory.
575 - Work a bit more on the new daemon protocol.
576 - Use unmask of 022 or more restive
577 - Create File volumes with 0640 permissions
578 - Added support for SHA1 signature. Need to modify DB to have type.
579 - Document SHA1.
580 - Work a bit on getting proper child status from bpipe calls.
581 - Added Ludwig's mtx-changer to the examples/devices directory.
582 - Added a Warning not to use the Internal Database when it is initialized.
583 - Compiled and tested SHA1, and added it to the library.
584 - Added code to print the "load slot" status after autoloading.
585
586 =============================================================================
587 2003-01-24 Version 1.29 released
588 23Jan03
589 - Tightened up permissions on all .conf files to be 640 so they are not
590   world readable.
591 22Jan03
592 - Added prefixlinks=yes/no Job record to specify applying the Where
593   prefix to absolute soft links.  Code is not yet passed to FD, because
594   FD would then be incompatible with version 1.28.
595 - Added skeleton of installation for Gentoo release for Patrick Naubert.
596 - Add timer on open() for reading or writing a FIFO file.
597 - Put btraceback and btraceback.gdb in sysbin dir (a bit of polution,
598   but at least dumps will work).
599 20Jan03
600 - Added "append" all messages to a log to default bacula-dir.conf
601 - Added WriteBootstrap to default bacula-dir.conf
602 - Made smartall.c print "Out of memory" if malloc() fails.
603 - Added pthread btimer routines.
604 - Added timer to FIFO open statement
605 - George was still having problems with VolUseDuration failing.
606   On looking into it, one line of code subtracting 1900 was
607   mysteriously missing from the source -- bizarre.
608 18Jan03
609 - Yesterday's version corrects all the problems I was
610   previously having, and my production jobs are now completing
611   properly.
612 - Added a #define dev_cap() to test the capabilities bits. I just
613   makes the code a bit shorter and a bit simpler.
614 - Added phase 1 support for an output fifo device. The big 
615   difference here is that it is a STREAM device, which means that
616   Bacula will only write to it and not read. Thus, Bacula assumes
617   that the correct "Volume" is mounted and will construct a valid
618   label (without needing the Volume to be prelabeled), and write
619   to the device.
620 - Added phase 1 support for input from fifo device (suppress re-read,
621   add empty buffer flag).
622 17Jan03
623 - Improve printout of dbcheck with # files/path fixing.
624 - Zap SD authorization code after use.
625 - Added <> back to smtp (think about this some)
626 - Doc
627 16Jan03
628 - Massive change to add jcr as the first argument to nearly
629   every db_ call. This is because I was storing the jcr in the
630   db structure, which will not work because everyone shares
631   exactly the same structure.
632 - More cleanups of error termination status in filed.
633 - Found another bug in message.c where %s was missing in JmsgN. A lot
634   of cleanup in message.c
635 - Found places where filename listing was made (restore, verify
636   vol) where the buffer could possibly overrun.
637 - Chain include files on the end of the list so that the
638   order will be correct.
639 - Rewrote mtx-changer to output one slot per line terminated by
640   a colon followed by an optional Volume Tag for the "list" command.
641   Preparation for handling Volume Tags.
642 - My production crash remains elusive. Adding debug code or running
643   under the debugger eliminates the problem. I found a case in
644   message.c where I was extending the message string by two 
645   characters to send it to the console. VERY BAD. Rewritten.
646 - Started implementing fifo and program handlers (i.e. streams)
647   in the Storage daemon. Lots to do.
648 - Added a trace capability where trace statements are written
649   to a file. Tmsg(). Hopefully this won't be used much.
650 - Running lots of "production" saved by scheduling a few minutes
651   after the current time -- slow process ...
652 15Jan03
653 - Removed <> on From and To in smtp.c as suggested by James MacLean.
654 - Added code to suppress spurious error messages during cancel,
655   but I was unable to eliminate all errors -- to be worked
656   on later.
657 - Up size of print buffer from 2000 to 5000.
658 - My production run failed again. I'm beginnig to suspect 
659   hardware problems because running by hand or under the
660   debugger always works -- we will see.
661 - Added Update Volume VolFiles to reset correct tape files 
662   a bit dangerous.
663 - Use the mysql_escape_string() rather than internal version.
664 14Jan03
665 - Cleanup handling of JobStatus by creating a subroutine.
666 - Fix a number of minor things with JobStatus.
667 - Print FD and SD JobStatus on backup report.
668 - Add JCR to findlib -- so now FD stops normally when cancelled.
669 - My production Director segment faulted during the second Job.
670   I haven't been able to track it down. After rebuilding, all
671   jobs finished correctly.
672 - In investigating the duplicated Paths, I found that there
673   were 10,552 of them -- only Path records. After checking the
674   code, I do not see the reason, but I've enhanced the code to
675   print the full path name.
676 - I made a few improvements to tools/dbcheck. Mostly it provides
677   a bit more feedback with verbose mode on when eliminating
678   duplicate filenames or paths.
679 13Jan03
680 - During four simultaneous backups, the File daemon started
681   detecting buffer corruptions. It turns out to be due to the
682   fact that the smartall.c routines were not thread safe. They
683   are now.
684 - Based on input from James MacLean and team, I eliminated a number
685   of places where printf could be recursively called by using "%s".
686 - It turns out that because of an error of my understanding of
687   mysql_escape_string(), the last argument was taken as the length
688   of the string to be escaped rather than the maximum length.  I've
689   now corrected all my code -- Thanks James.
690 12Jan03
691 - George Motter reported problems with UseDurations, and it seems 
692   that there were a number of inconsistencies and problems with
693   FirstWritten and LastWritten.  Hopefully for the most part they
694   are now corrected.  Also fixed LabelDate if done through Console.
695 - Try to chase down reasons why there would be buffer overruns.
696   Added P & V around referencing last_fname for status.
697   Rewrote find_one.c with MEMPOOL, but not yet tested enough
698   to commit.
699 10Jan03
700 - Give extra margin to converting filenames from Unix to Windows
701   in attribs.c of findlib -- dumb cygwin API doesn't provide for
702   a length.
703 - Added file:line traceback to size_of_pool_memory, check... and 
704   realloc  in an attept to get closer to the memory overrun reported
705   by James MacLean.
706 09Jan03
707 - Made yet another fix to quoted string -- paths!  Thanks to
708   Scott Medlock for reporting this.
709 - Made | and < work.
710 - Implemented FIFO reading/writing. To do so, simply explicitly mention
711   the fifo file (named pipe) in the Include AND add the new option
712   readfifo=yes
713 08Jan03
714 - Started implementing | and < on Include names.
715 - Changed source to . in cats directory as requested by Andrew Kokarev.
716
717 =============================================================================
718 2003-01-05 Version 1.28b released
719 - Corrected a typo of working_directory in bacula-dir.conf
720   reported by James MacLean.
721 - Fixed the fact that path and filenames in some cases were not
722   being quoted before going into the database. Many thanks to
723   James MacLean for reporting this.
724
725 =============================================================================
726 2003-01-05 Version 1.28a released
727 - Corrected a missing quote in bacula-dir.conf reported by James MacLean
728
729 =============================================================================
730 2003-01-05 Version 1.28 released
731 General:
732 - Implemented Bare Metal Recovery for Linux and manual procedures for Solaris
733 - Now using only a single technotes file kes-1.28 and will add to
734   it as the development goes on.
735 - Wrote a general purpose bi-directional pipe command. This replaces
736   previous use of pipes as well as the run_program previously used.
737 - Make BSRs stop if no more matches are possible.
738 - Allow unliminted number of devices in Storage daemon.
739 - Allow connections to Storage daemon before all devices are initialized.
740 - Better documentation (and btape test command) on using fixed block
741   tape drivers.
742
743 Changes submitted this submission:
744 04Jan03
745 - Add cygreadline5.dll to Win32 release -- needed for console
746 03Jan03
747 - Add scripts make_catalog_backup and delete_catalog_backup that makes and
748   deletes an ASCII copy of the catalog for backup. An example of how
749   to use it is in the <bacula-src/src/dird/bacula-dir.conf file.
750 - Made a nicer column oriented listing of scheduled jobs for "status dir".
751 02Jan03
752 - Added backup/restore of raw partitions.
753 - Corrected restoration of files in root directory (problem with
754   splitting path from file).
755 01Jan03
756 - Finally decided to cleanup handling of splitting path and filenames
757   in the cats directory. Now the code is in one place sql.c and it
758   is done using Pool memory, so there are no length restrictions.
759 31Dec02
760 - Add start of Solaris bare metal recovery
761 - Add Site Visit usage statistics to Web page
762 - Got Bacula listed on www.backupcentral.com
763 30Dec02
764 - Retest bare metal recovery on Linux 2 times with verify
765 - Cleanup printout of verify differences using proper casting to
766   handle shorts and long longs.
767 29Dec02
768 - Added --enable-client-only to ./configure
769 - Modified --enable-static-sd to work better and documented it.
770 - Fixed Restore options (never,ifnewer, ...). They now work.
771 - Moved the stored.c Resource lock into the allocation thread so
772   that the same thread sets/clears it. This created a problem on
773   FreeBSD.
774 28Dec02
775 - Added more rescue documentation.
776 - Did a spell check of the Bacula doc.
777 - Modified bscan to use the working directory as specified in the
778   configuration file as the default.
779 25Dec02
780 - Fixed an important bug reported by George Motter that caused only
781   the last option on an Include record to be used (all previous options
782   were lost).
783 24Dec02
784 - Chase down some inconsistencies in creating Media records from
785   the Pool defaults, and in updating/creating the Pool from the
786   resource. Also fixed the cats DB routines to include all
787   fileds (VolUseDuration was missing for example).
788 21Dec02
789 - Added building static versions of daemon static-bacula-dir, ...
790 - Fine tuned the rescue (bare metal) code including support for grub.
791 - Added skeleton freebsd rescue
792 - Corrected SQL syntax error in autoprune code (JobType => Type).
793 - Added error messages for SQL errors in autopruning.
794 19Dec02
795 - Documented Bare Metal Recovery
796 - Create new "rescue" directory containg the Bare Metal Recovery code.
797 - Fiddle with SQL a bit for pruning as apparently the last InitCatalog
798   was pruned after the expiration date eventhough it was the ONLY copy!
799   I'm not sure this is fixed yet.
800 18Dec02
801 - Allow Director to pass a NUL where string to FD (fix in FD).
802 - Fix installation mv of query.sql.
803 - Make sure btraceback.gdb is not wiped on "make distclean"
804 - Corrected a bug in mod of replace options pointed out by Dave Anderson.
805 16Dec02
806 - Started adding FileOptions ...
807 - Fixed  and incorrect print out of the number of files restored (Jarif).
808 - Finally fixed EndBlock (and file address for Files) in catalog!
809 - Added hostname to tape header as always planned.
810 - Removed Level code (will not implement unless strong demand exists).
811 - Tweaked bscan to print number of errors ignored before first SOS.
812 - Enhanced btape "fill" to permit using one tape and to dump last
813   block before writing and upon read back.
814 - Make fsf_dev() return 0 on fail and 1 on success.
815 - Use new db_get_job_volume_parameters() to enhance Write Bootstrap to
816   contain more info (start/end file/block, file indexes).
817 - Added --enable-static-fd, sd, and dir to configuration to enable making
818   static versions of the daemons.
819 13Dec02
820 - The btape test program was indicating errors on Adrian's machine
821   using the ATAPI (ide-scsi) tape drive. It turns out that this
822   is a fixed block driver as a consequence, Bacula must be setup
823   to write fixed blocks. btape was not always using the fixed
824   blocks defined in the Bacula config, so that has been updated.
825   It now works fine. A lot of tips added to the Bacula test command 
826   to help guide the user.
827 - Documentation of the above significantly improved in the manual.
828 12Dec02
829 - Added code in watchdog to permit setting and clearing child timers. If
830   the timer expires, the child process is killed.
831 - Modified restore to handle differential jobs.
832 - Added a new test to the btape "test" command
833 09Dec02
834 - More documentation of new features (week position in scheduler, bsr).
835 - Re-read last block written on full tape to verify it.
836 - Fix segmentation fault with btape fill command due to missing FileSet MD5.
837 07Dec02
838 - Created better SQL input editing routines str_to_int64 and str_to_uint64()
839 - Pull Client from database in Console restore command.
840 - Create a Unique list of Volumes to be mounted (previously had repeats).
841 - Made many of the SQL searches better by using the ClientId rather than the name 
842   in the restore Console command.
843 - Modified reading of a tape to include the VolFile info. Once the
844   tape is past the specified file, reading stops.  The BSR now includes
845   both the VolFile and VolBlock. Currently VolBlock is not used.  
846 - Handle multiple volumes better by creating a real volume list with all
847   parameters in it.
848 - Display "At prompt waiting for input" in gnome console when at subcommand   
849   prompt.
850 - Broke ascii to internal and internal to string editing routines out into
851   new lib/edit.c file.
852 02Dec02
853 - Added a readme and an afs-bacula script to the examples directory
854   that permits Bacula to backup an AFS filesystem. Thanks to
855   Lucas Mingarro for the submission.
856 - Added A Sun-desktop autoloader script and Device definition to the
857   examples/devices subdirectory.  Thanks to Lucas Mingarro for the
858   submission.
859 - If the WriteBootStrap fails, the job will now be marked in error.
860 - Added a week position to the scheduler syntax that allows you to
861   specify 1st, 2nd, 3rd, 4th, or 4th, or first, ... fifth as a week
862   position specification in front of a day. So if you say
863
864     1st sun ...
865
866   the scheduler will start only on the first sunday of the month.  The
867   day specification can also be a day range e.g. sun-fri.
868   This code is untested.
869 - Implemented bpipe.h and bpipe.c in src/lib, which defines a bi-directional
870   pipe.  This allows executing other programs and sending them information
871   as well as getting info from them.   
872 - Replaced the previous pipe usage with bpipes in RunBeforeJob and   
873   RunAfterJob.
874 - The mail program now uses bpipes rather than pipes, which means that any
875   error output will appear in the job output (truly bi-directional).
876 - Modified BSR to handle counts and to stop when no more matches are possible.
877   This is untested.
878 - Improved error messages in smtp.
879
880 =============================================================================
881 2002-12-12 Version 1.27d
882 - This is a minor update that fixes a segmentation fault in btape
883   as well as reduces non-important error messages in bscan.
884
885 2002-11-29 Version 1.27c
886 - Yet another silly error duplicating a column name in the SQLite
887   make tables.  No code change, just a make file.
888
889 2002-11-29 Version 1.27b
890 - Set DB version to 5 in DB make files.
891
892 2002-11-28 Version 1.27a
893 - Use g++ instead of gcc for testfind in tools 
894
895 2002-11-27 Version 1.27 (26Nov02) released 28 November 2002
896
897 General: from kes25Nov02
898 - Mostly Cygwin changes
899
900 Changes submitted this submission:
901 - Updated bdb_find.c to have new calling sequence for db_find_job_start_time
902 - dird/catreq.c edit in Volume name in error messages to SD
903 - attribs.c switch to using the cygwin API to convert from POSIX paths
904   to Win32 paths. This now permits Win32 path specifications in Include
905   statements (all combinations not yet tested).  It also avoids the large
906   number of errors seen by Lutz if a Win32 path is specified in the Dir.
907 - Update testfind help and remove set_attribsEx debug code.      
908 - Build testfind as default.
909 - Turn off debug message in stored/askdir.c
910
911 General: from kes21Nov02
912 - Another change in the database. You MUST either re-initialize
913   your database or use the appropriate ./alter_xxx_tables in
914   the src/cats directory.
915
916 Changes submitted this submission:
917 - Additional documentation.
918 - Added MaxVolFiles to the database (not yet implemented in code).
919 - Increased the database version from 3 to 4.
920 - Change VolMaxBytes to MaxVolBytes, which is much more descriptive.
921 - Compressed unnecessary spaces out of a lot of SQL statements.
922 - Changed many %d to %u where unsigned integers are used.
923 - Added the Bacula version and build date to each backup output.
924   This will help knowing what version of Bacula was used.
925 - Implemented VolUseDuration MaxVolBytes, MaxVolFiles, and MaxVolJobs
926   based on maximums set in the Volume (Media) record rather than in the
927   resource. This means the values can be individually set on a Volume basis.
928 - Allow commas separating Include options (this was a subtle bug).
929 - Added maximum string length argments to a number of subroutines to
930   prevent buffer overflows. Most notably was do_prompt().
931 - Replaced MANY occurrences of strcpy() with bstrncpy(), which guarantees
932   both that the length is not exceeded and that the string is properly terminated.
933   This has a risk of a certain destabilization -- as does the changes to
934   the SQL noted above.
935 - In cram-md5 routine use my_name if gethostname() returns an error.
936 - Increase timeout from 2 minutes to 3 minutes in authorization code.
937 - Check the full string including \n in authorization.
938 - Throw away any response longer than MAXSTRING.
939 - Added a number of additional error checks on subroutine return statuses.
940 - Replaced as many lld's with edit_uint64 as I could find.
941 22Nov02:
942 - Added MaxVolBytes to Pool record - had forgotten it. Updated DB version.
943 23Nov02
944 - Update manual to document new Pool/Volume attributes
945 - Correct make_sqlite_tables (typo, plus missing value in Pool)
946 - Fix bizarre behavior in gnome-console and console when auth fails.
947 - Add Pool attribute query
948 - Add a few more error messages in askdir.c
949 - More strcpy() conversions to bstrncpy().
950
951 General: from kes18Nov02
952 - Did a number of cleanups of string copying to limit the length
953   and prevent buffer overflows.
954
955 Changes submitted this submission:
956 - Added a mutex arount the gethostbyname() so that multiple simultaneous
957   jobs get the correct address.
958 - Added the MaxVolJobs to the Media alter tables script for MySQL (forgot it).
959 - Changed arg to db_find_job_start_time to be POOLMEM for returning the string.
960 - Add the new VolUseDuration and MaxVolJobs to all the db_ routines.
961 - Use bstrncpy() in most places in the db_ routines to prevent a bad 
962   database from crashing Bacula (self protection).
963
964 General: from kes13Nov02
965 - You MUST either re-initialize your databases or use the 
966     ./alter_mysql_tables
967   or  
968     ./alter_sqlite_tables
969   in the <bacula-src>/src/cats directory to modify your database tables.
970 - Major improvements to dbcheck including an interactive mode.
971
972 Changes submitted this submission:
973 - Implemented VolumeUseDuration and MaximumVolumeJobs which control
974   when a tape can be marked Used.
975 - New tape status "Used" means it was used and cannot be used any more.
976 - Defined utime_t which is 64 bit epoch time in seconds.  btime_t is
977   64 bit epoch time in microseconds.
978 - Created alter_xxx_tables to add new columns (VolUseDuration, MaxVolJobs) to
979   database. Incremented db version.
980 - Changed a few subroutine names concerning dates to be more descriptive.
981 - Fixed several places where the last filename was not stored in JCR in
982   FD verify_vol.c and restore.c
983 - Major update to dbcheck.  Unfortunately I used subselects, which work
984   perfectly fine in SQLite, but not at all in MySQL.  I must now rework
985   it for MySQL. What a pain!
986 - Removed "Database found" from configure output. It was no longer used or valid.
987 - Corrected doc --working-dir => --with-working-dir  Thanks to Tuck for 
988   reporting this.
989 - Added the database name to the error message for mismatched DB version.
990 - Commented out GMP and CWEB from configure as they are not currently used.
991
992 General: from kes09Nov02
993 - Converted the manual over to a new format written in wml. This
994   gives navigation buttons on the top and bottom of each page
995   as well as a standard page size.
996 - Updated the main Web site, providing a menu bar to the left
997   and much better organization and presentation of the information.
998 - Added code to recognize a Volume written with a larger block
999   size than specified. The code automatically adjusts. 
1000
1001 Changes submitted this submission:
1002 - Created a new scripts directory and moved most of the scripts
1003   previously in the main directory there. This cleans things up
1004   quite a bit.
1005 - Moved the randpass stuff into autoconf.
1006 - ensure that the generic make_bacula_tables and drop_bacula_tables
1007   are installed.
1008 - Added code to filed to allow it to be run from inetd.  Just add the
1009   -i option.  I have not tested it.
1010
1011 General: from kes30Oct02
1012 - Alex found a problem with GZIP compression -- fixed.
1013 - bacula stript fixes.
1014 - Segment fault in Director fixed.
1015 - Added openbsd to platforms
1016
1017 Changes submitted this submission:
1018 - GZIP compression was broken for large files due to a variable that
1019   is changed during the compression. This was relatively easy to fix.
1020   However, there were a number of fixes required to make GZIP and SPARSE
1021   files work together. Found one more place in bextract where SPARSE_GZIP
1022   testing was missing.
1023 - During testing of the above, I ran into the restore problem of multiple
1024   FileSet records. Fixed by including the FileSetId and the MD5 on the
1025   selection string, then always using the FileSetId. It is a bit
1026   confusing for the user, but ...
1027 - Francis found a problem with bacula.in (fixed - thanks)
1028 - I found another problem with bacula.in, so now it REALLY should work
1029   on most systems.
1030 - Added the Replace options code for restores. Not tested.
1031 - Fixed an ugly stack overrun bug in reading the config file
1032   that has been in for a long time.  I found this in testing on FreeBSD
1033   where the Director seg faulted.
1034
1035 General: from kes29Oct02
1036 - Major change to the bnet communications routines.
1037
1038 Changes submitted this submission:
1039 - Modified the bacula script to use pid files, so this script should
1040   now work on more platforms.  Updated devel_bacula as well.
1041 - Added the full GNU hostname on the configuration print output.
1042 - Added gettimeofday() to configure, and tweaked a few variables for
1043   OpenBSD.
1044 - Added a chapter to the manual on Porting Bacula to other platforms.
1045 - Documented in Tips how to use the WriteBootstrap record.
1046 - Modified bc_types.h to error if 64 bit types are not found.
1047 - Pass replace option for restore to the FD (no code to use it yet).
1048 - Modify the FD to pass back the GNU OS string as well as the DISTNAME
1049   and DISTVER. This needs to be put in the Client record in the catalog.
1050 - Major reworking of the bnet routines to eliminate the zero length which
1051   previously indicated a signal. This risks to create some subtle communications
1052   bugs.  The changes now permit blank lines to be sent from the user to the
1053   Director.
1054 - Found and corrected a few more places where the Win32 attributes were not
1055   being recognized.
1056 - Permit spaces in the Where string (restore) by bashing/unbashing them.
1057 - Handle quotes correctly in the Console program (actually Dir ua code).
1058   Previously they were not handled in the middle of a string.
1059 - Corrected two error message (error reading file), which previously stated
1060   it was a network error.
1061 - Reworked the files in the binary Windows release. Removed unused programs 
1062   and added a README with the copyright as suggested by John. Also added
1063   console.exe to the release.
1064 - Found and corrected an autoloader mount problem where the wrong tape
1065   was specified.  Previously it looped, then gave up.  Now it correctly
1066   detects the volume is not correct and zaps the Slot in the catalog.
1067
1068 General: from kes23Oct02
1069 - I have mainly worked on getting all the details of a Restore
1070   to work correctly (new tape format, support for Win32 
1071   attributes, ...)
1072 - Trademarked name Bacula.
1073 - Implement Bacula tape format 11 (1.0 Immortal). This format
1074   will be maintained forever.
1075 - Accept Any Volume is yes by default. This modifies Bacula's behavior
1076   when writing tapes.
1077
1078 Changes submitted this submission:
1079 - Corrected a bug on FreeBSD where CFLAGS would get a "yes". I was
1080   unable to reproduce this, but a user confirmed the correction.
1081   It was a problem with detection of largefile support, which FreeBSD 
1082   has by default.
1083 - Added a new "license" chapter in the manual. Re-licensed a number of
1084   library routines (bnet.c, hmac.c md5.c, cram-md5, ...) with LGPL so that they
1085   can be used in proprietary software to access Bacula if so desired.
1086 - Move Director's AutoChanger doc to correct location (in Storage      
1087   resource). 
1088 - Document why trademark (to protect compatibility).
1089 - Implement and turned on Bacula tape format 11 (also BB02). This
1090   format moves the VolSessionId and VolSessionTime from each record 
1091   header into the Block header. This is MUCH more efficient when reading
1092   records as now whole blocks can be skipped.   
1093   Also added JobStatus in End Of Session record, and added MD5 for
1094   FileSet, which is necessary to insure uniqueness.
1095 - Implement a new Bacula time format for btime_t. It is Epoch time
1096   in microseconds (i.e. base 1 Jan 1970 in microseconds).
1097   This replaces previous floating point times.
1098 - Added Win32 extended attributes. In doing so, I moved all attribute
1099   handling from src/lib into src/findlib.  Added new streams for 
1100   Win32 attributes and for GZIP Win32 attributes.
1101 - Modified "Accept Any Volume" so that it really permits any volume
1102   in the pool to be mounted.  
1103 - Removed "Mount Anonymous Volumes" from Storage daemon config.
1104 - Implemented sparse files. You must add "sparse=yes" on the include line
1105   for it to be enabled.
1106 - Print "None" in backup summary rather than 0.0% if there is no compression
1107   enabled.
1108 - Improved error checking in daemon connection/authentication code to prevent
1109   garbage data from harming a Bacula daemon.
1110 - All daemon tools MUST have a config file.
1111 - Completely strip drive specification on Win32 if a Where prefix is specified.
1112 - Corrected DB info for writing to files. Now the File Address is stored
1113   in File-Block variables in the catalog.
1114 - All Storage daemon tools now use common code for acquiring/reading
1115   Volumes.
1116 - If a device is unmounted, report it even if the device is not open. This
1117   will help inform users who have BLOCKED Bacula by unmounting a drive.
1118
1119
1120 =============================================================================
1121 2002-10-12 Version 1.26 (10Oct02)
1122 General: from kes10Oct02
1123 - Changed Job name conventions to avoid : which is an illegal
1124   character on Windows.
1125
1126 Changes submitted this submission:
1127 - Added check for inet_pton to configure.in. If it does not
1128   exist (e.g. Windows) use inet_aton
1129 - Documentation on GZIP.
1130 - Another restore doc example.
1131 - Documented btape fill command.
1132 - Set default restore directory from /tmp to /tmp/bacula-restores
1133 - Add additional no find error messages to sql_get.c
1134 - Creating a bootstrap file on Windows failed because the Job name
1135   contained colons which are illegal on Windows. Replaced the
1136   colons with periods.  This corrects the Windows restore problem.
1137 - Print number of files to be restored in "restore" command.
1138 - On Windows systems, if there is a prefix, completely eliminate
1139   any drive: at the beginning of a path.
1140 - Minor corrections to the tree routines to handle Windows
1141   files such as c:/ better. Previously it insisted on /c:/, which
1142   would then not be found in the catalog for a "dir" command.
1143 - Modified cd command in restore to try /c: if c: fails.
1144 - Add a new S_ISWIN32 bit to the st_mode word so that low level
1145   routines that create files do not print error messages.
1146 - More work must be done to restore all Windows files correctly.
1147   Currently the following bits are not handled:
1148     Archive
1149     Hidden
1150     System 
1151   Also, all the dates are not properly restored.
1152
1153 General: from kes09Oct02
1154 - More documentation.
1155 - Implemented new fill command in btape that permits filling
1156   a tape and then reading it back to ensure that it works
1157   with Bacula.
1158
1159 Changes submitted this submission:
1160 - Added ReadBytes to JCR, which contains Job bytes read by
1161   FD, JobBytes contains compressed output of FD.
1162 - Modified FD to pass back JobStatus, ReadBytes, JobBytes, ...
1163   for backup jobs.  This is upward compatible.
1164 - Modified backup termination status report to contain the
1165   compression ratio 100 * (1 - compressed-bytes/uncompressed-bytes)
1166   This will always be zero if no software compression was
1167   done, or if you are using a version 1.25 or older FD.
1168 - Pickup Job termination status of FD in backup, so now
1169   the termination status represents the state of all three
1170   daemons.
1171 - Implemented new fill command in btape that permits filling
1172   a tape and then reading it back to ensure that it works
1173   with Bacula.
1174
1175 General: From kes06Oct02
1176 - Implemented first major cut of bscan -- program to scan a tape
1177   and recreate a Bacula catalog.
1178 - Fixed lseek() relative negative seek that prevented writing multiple
1179   jobs to a File volume.
1180 - Implemented BB02 tape format -- currently turned off for writing.
1181
1182 Changes submitted this submission:
1183 - Updated README
1184 - Implemented new BB02 tape format, which moves the VolSessionId and
1185   VolSessionTime from the record headers into the Block header.  It
1186   is currently turned off.
1187 - Implemented new btime time/date format on the tape. This is currently
1188   turned off.
1189 - Added JobStatus to EOS tape label. This is currently turned off.
1190 - Changed start_block, ... to StartBlock in JCR for uniformity.
1191 - Print a message telling which tables were dropped/made with  
1192   ./drop_bacula_tables.
1193 - Return JobType and JobLevel in db_get_job_record().
1194 - Implemented get_current_btime(), which returns btime_t.
1195 - Bump debug message max size to 2000 bytes.
1196 - Add btime_t serial/unserial routines.
1197 - Rework all tape label routines to integrate btime and other
1198   label format changes (currently turned off -- for writing).
1199 - Fix lseek() to always be positive -- block.c
1200 - Consolidate record, block, and label major #defines in block.h.
1201 - Major implementation of bscan. Some more minor tweaking will be
1202   necessary.  E.g. add multiple records for multiple simultaneous
1203   Jobs.
1204 - Cleanup lseek() to always use off_t as second argument.
1205 - Add new "created" tape label (EOT_LABEL). This generates a callback
1206   to the read_records() routine when the final end of all tapes is
1207   reached allowing proper termination and updating of the media records.
1208
1209 General: From kes25Sep02
1210 - Added means to bind servers to specific address.
1211 - Documentation
1212
1213 Changes submitted this submission:
1214 - Added DirAddress, FDAddress, and SDAddress records to the corresponding
1215   resources that allow the server to bind to a specific address 
1216   rather than any address.  This security improvement was suggested by
1217   a user -- thank you.
1218 - Eliminated deprecated "Address" record from all sample Storage resources.
1219 - Made quite a lot of improvements to the bscan program. Much more
1220   to do. Aside from details, it is able to recreate a database
1221   from which you can do a restore.
1222 - The s option is not accepted on all versions of ar, so replaced it
1223   by an explicit ranlib call.
1224 - Fixed a bug that caused the Director to crash if you rudely bring
1225   down the console program in the middle of an SQL command.
1226 - Fixed a bug (missing break) that caused scheduled Admin jobs to
1227   be listed as "Unknown type".
1228 - Removed old code from Storage daemon that used a separate FD port.
1229
1230 General:  From kes14Sep02
1231 - Better key generation on non OpenSSL systems.
1232 - 64 bit file address support if available.
1233 - Implement autochanger for reading
1234 - Lots of cleanup of tape reading code.
1235 - Automatically create all Pool resources when Bacula starts.
1236 - Implement bscan.c
1237 - Implement autochanger use via the Console commands "add" and "label"
1238 - Begin implementation of a regression script 
1239 - Write bootstrap after ever job
1240
1241 Changes submitted this submission:
1242 - After noticing that the non OpenSSL random key generator was
1243   not good on Solaris, John wrote a very nice randpass generator.
1244 - Integrated John's makeSessionKey for generating the FD->SD
1245   authorization.
1246 - Statically link tools (doesn't work on Solaris).
1247 - Document how to debug Bacula (new chapter in the manual)
1248 - Remove unneeded printing of error message in sql_get.c
1249 - Free SD description config record (previous oversight)
1250 - Bash spaces when sending Director names, and unbash them when 
1251   received.
1252 - Ensure no divide by zero in rate computation in backup.c
1253 - Implement WriteBootstrap in backup.c
1254 - Allow tape reading to request volume information for any
1255   volume.
1256 - Create all Pool resources at startup.
1257 - Show only Backup jobs in Restore listing of last 20 Jobs.
1258 - Handle 64 bit stat packets in restore.
1259 - Don't do shell expansion on store_dir in config if string 
1260   starts with |.  This is used for piping the program for the
1261   WriteBootstrap.
1262 - Ignore SIGHUP -- DéjàGnu was triggering this. 
1263 - Implement autochanger for reading, many changes to 
1264   acquire_device_for_read()
1265 - Implement callback for reading Volume. Implement in bextract,
1266   bls, and bscan.
1267 - Implement bscan
1268 - Add count to bsr.
1269 - Fix Volume in bsr.
1270 - Move autochanger code to new subroutine in mount.c
1271
1272 =============================================================================
1273 2002-09-05 Version 1.25a (05Sep02) Released
1274 - Fix unitialized stack variable in bextract so it
1275   will always read the currently mounted tape.
1276
1277 =============================================================================
1278 2002-09-04 Version 1.25 (01Sep02) Released
1279   General:
1280 - Added .cvsignore files in each directory to cut down on the
1281   CVS output when scanning directories and finding Makefiles
1282   and such which are not part of the CVS tree.
1283
1284   Changes submitted this submission:
1285 - Cleaned up a lot of the error messages in Verify, including
1286   indenting.
1287 - Had to remove some of the "automatic" error message printing
1288   in the DB because they are in fact things that come up 
1289   for Verify but not really errors.
1290
1291
1292   2002-08-30 Version 1.25 (30Aug02) Beta
1293   From kes30Aug02
1294 - Fixed a bug where only the first file was restored if
1295   it is hard linked. The other links were lost.
1296 - In some cases of restoring to alternate directories, softlinks
1297   were not properly restored.
1298
1299   From kes28Aug02
1300   General:
1301 - Bacula backups now run up to 12 times faster than version 1.24
1302 - Bacula can run multiple simultaneous Jobs.
1303 - Had to turn off TRANSACTIONS in SQLite because it doesn't work
1304   with multiple simultaneous jobs (I'm working on this).
1305 - Added a better Job printout for Restore Jobs.
1306 - Added a save/restore Rate to backup and restore jobs. This
1307   does not yet subtract out operator wait time so it will be
1308   underestimated it the Job waits on the tape (mount/label).
1309 - Fixed a major bug caused by free()ing a buffer twice in
1310   the Restore code. This made the SD more or less useless after
1311   any restore Job. Arrggg!
1312 - DIR - SD protocol changed, both must be updated at the same time.
1313 - DIR - FD protocol changed in upward compatible way. Upgrade of   
1314   FD not required, but recommended.
1315
1316   Changes submitted this submission:
1317 - Added bell to "make" when errors are detected.
1318 - Changed default compile option from -g to -g -O2
1319 - Additional documentation as usual -- much based on questions or
1320   feedback from users. Thanks.
1321 - Fixed example config files to use new syntax and to have a 
1322   Restore Job.
1323 - Define ETIME to ETIMEOUT for Irix
1324 - Added JCR filed to DB structure permitting direct printing error
1325   messages from within the Database subroutines.
1326   Some error messages may be printed twice as a consequence.
1327   When I see them or someone reports them, I will remove the double.
1328 - Added JCR to the bsock structure. This allows direct printing
1329   of network errors from within the network code.
1330 - Made most "trivial" debug messages have level 100 or greater. This
1331   allows for easier debugging of new code using the range below 100.
1332 - Began replacing all Emsg() with Jmsg() using a NULL as the JCR in    
1333   Jmsg() is the same as Emsg().
1334 - Fixed several crashes in the Director because of malformed config files.
1335 - Added SpoolAttributes to Job resource.
1336 - Pass CatalogFiles to SD. If set to no, the attributes are dropped 
1337   within the SD rather than being sent to the DIR.
1338 - Cleaned up a number of information/error messages in user interface.
1339   This includes eliminating the "pretty please" response in favor of
1340   "yes/no" to delete volumes and pools.
1341 - Cleaned up quite a number of uninitialized variables reported when going
1342   to -O2, most were harmless, but a couple could cause problems.
1343 - The cd command in restore was not working correctly (it didn't allow some
1344   legal cds).
1345 - Fixed a segmentation violation in the directory tree handling code in 
1346   the restore command.
1347 - Handle a few error conditions in the restore command better.
1348 - Permit "Where" to be set to nul in modification of a run command.
1349 - Clarified the error message for Verify if an InitCatalog has not previously
1350   been done -- thanks Chuck.
1351 - Add MaximumConcurrentJobs to FD.
1352 - Added code to mem_pool to die if a buffer is released twice.
1353 - Lots of work done on SD for multiple simultaneous jobs. Split device.c
1354   into device.c, mount.c and acquire.c
1355 - Started writing new lock code for SD, but may back it out -- needs more
1356   thought. Current code works, but is too complicated. Maybe can simplify it.
1357 - Cleaned up the SD tools code quite a bit. Added bootstrap to all tools.
1358 - Ensure that tape session labels are not split across two blocks. This makes
1359   reading them back much easier.
1360 - Fixed another restore bug concerning tape labels on multi-volume saves.
1361
1362 =============================================================================
1363 2002-08-14 Version 1.24
1364   From kes12Aug02
1365 - Made a new tools directory.
1366 - Moved smtp into the tools directory.
1367 - Created a dbcheck program in the tools directory that
1368   checks for certain database errors and if requested fixes them.
1369 - Put the database link flags on DB_LIBS so that it now only is
1370   on binaries that actually need it.
1371 - Document dbcheck and testfind programs.
1372 - Move testfind to tools directory.
1373 - Check for FileSet after getting Client name in Restore command.
1374   Modify all necessary SQL commands to accept FileSetId.
1375 - Add a db_get_fileset_record in cats directory.
1376 - Correct list last 20 files concatenation to be MySQL 
1377   dependent. They aren't SQL standard. Use SQL standard || for
1378   other SQL programs.
1379 - Modify dir command in file selection to produce a long form
1380   listing of the file/directory name.
1381 - Add platforms/irix/*.in files to CVS
1382 - Make Console command scanner accept quoted value fields.
1383 - If after selecting Client to restore, there are multiple
1384   FileSets, ask user to select one.
1385 - After obtaining JobIds for restore, ensure that there is only
1386   one MediaType, and select a Storage resource to be used.
1387
1388   From kes11Aug02
1389 - Made restore actually work.
1390 - Made console and gconsole be configured (requested by Chuck)
1391 - Updated kernstodo
1392 - changed fs in Job record to fileset for clarity
1393 - The console run command was not properly picking up the command
1394   line arguments.  Fixed!
1395 - Changed add/remove/rm to mark/unmark
1396 - Volume keyword VolumeName was wrong, changed to Volume (in restore bsr).
1397 - Pass jcr to parse_bsr, and if non-NULL, it will output error messages
1398   to Job stream rather than Emsg.
1399 - Modified lexical scanner to include caller context so that jcr can
1400   be stored in lex context allowing error messages to be properly 
1401   routed.
1402 - Renamed the Job message chain to be jcr_msgs. This eliminated the      
1403   previous confusion with the default value, now named jcr->messages.
1404 - Implemented multi-volume bsr records.    
1405 - Implemented pm_strcat() and pm_strcpy() to cat/add to memory pool
1406   buffers in same way as strcat/strcpy, but expanding buffer.
1407 - Modified db_get_volume_names to handle arbitrarily long Volume list.
1408
1409   From kes07Aug02
1410 - If the Console program terminated during the printing of messages,
1411   the message file was left locked. This was corrected by using the
1412   new read-write lock code.  
1413 - Implemented Pw() and Vw() for obtaining and releasing a write lock
1414   using the rwl_xxx routines.
1415 - Deleted some old pthread_mutex code from mysql.c
1416 - In making the Irix port, I previously corrected the base64 routine so 
1417   they were not sensitive to the machine definition of char. This made
1418   them incompatible with previous versions invalidating MD5 signatures
1419   which are in base64 format. I have now corrected this, making the
1420   routines compatible with the previous version but also insensitive
1421   to the default definition of char.
1422 - Removed some unnecessary NPRT() usage in signal.c (pointed out by
1423   the Irix compiler).
1424 - Add back BNET_NONO for compatibility with older File daemons.
1425 - Implement runing a restore Job in the restore command.
1426 - Make installation of query.sql unconditional. To prevent you own file
1427   from being overwritten, give it a different name.
1428 - Made parse_command_args() in ua take command from ua->cmd, this
1429   simplifies it and allows usage in other places -- e.g. building
1430   arguments for created run command in restore.
1431 - Cleaned the naming of s_full_ctx to be s_jobids.
1432 - Write the bsr created in restore to "working-directory"/restore.bsr
1433 - Fix bugs in command line scanner in run command -- also some misplaced
1434   breaks!
1435 - Eliminate static cmd in ua_server.c
1436 - Eliminate segmentation fault when using the Run command in the
1437   Console -- forgot to init_msgs().
1438
1439   From kes06Aug02
1440 - Did a good amount of documentation.
1441 - Added sql_cmds.c to CVS, forgot, pointed out by Chuck.
1442 - Added new platforms/irix directory to CVS
1443 - Turn off transaction debug code in sql.c
1444 - Reworked the scheduler so that it handles the same Job starting
1445   twice in the same hour. Previously it took one or the other.
1446 - Tightened up the "slop" in the timings that I programmed to ensure
1447   that the same job isn't run twice or that no job was missed.
1448 - Increase the sleep time.
1449 - Used job_type_to_str() in status so that Admin jobs are correctly reported.
1450 - Add internationalization message chars to a number of routines
1451   in util.c
1452 - Make the watchdog timer clear the mutex when it exits.
1453 - Some tweaks to the Restore command. It needs fixing when a Job spans
1454   two or more volumes.
1455
1456   From kes05Aug02
1457 - Initial cut at adding Irix File daemon support.
1458 - Lots of work on the restore command.
1459 - Take a stab at eliminating the "broken pipe message"
1460   when the console program prematurely terminates.
1461 - Reimplemented transactions for SQLite by keeping
1462   them all in the same thread.
1463 - quit in the Console program now waits for Bacula to
1464   quit. To immediately quit, you must enter .quit
1465 - Eliminated BNET_EOF -- this COULD have some negative consequences
1466   on interdaemon communications.
1467 - Define Job termination status for Admin jobs.
1468 - Write new bstrncpy() function that guarantees that strcpy is
1469   properly terminated.
1470 - Fixed command input in ua_input.c to accept quoted items as a
1471   single field. 
1472
1473   From kes01Aug02
1474 - The changes that added indexes to the SQLite database were
1475   lost -- thanks to Chuck for pointing this out. Redone.
1476 - Fixed a problem quoting strings in SQLite. This showed up
1477   as database errors with files containing ' or " in the filename.
1478 - Implemente restore command -- still in progress.
1479 - Added indexes to all fields in SQLite that exist in MySQL.
1480 - Moved unused immortal files from src/lib to src/immortal.
1481   This will permit splitting depkgs.
1482 - Started work on adding embedded MySQL. Cannot get the tables
1483   to work for the moment. Please don't try to use this option.
1484 - Convert to using single quotes for enclosing all strings.
1485 - Implement correct quoting algorithm for SQLite strings.
1486   Is dequoting needed?
1487 - Started centralizing SQL statments in the Director in sql_cmds.c
1488 - Changed a number of M_ABORTs to M_ERROR_TERM so that program terminates
1489   but does not produce a dump.
1490 - Allow wild-card matches in bsr for Client name, and Job.
1491 - Change OflineOnUnmount=no as default.
1492 - Fixed improper printing of filenames containing a space in bls.c
1493   Thanks to Carlos for reporting this.
1494
1495 ===========================================================================
1496 2002-07-26 Release 1.23a
1497 - Fix segmentation fault is FD status.
1498 - Turn off TRANSACTIONs for SQLite.                        
1499
1500 ===========================================================================
1501 2002-07-23 Release 1.23
1502   From kes22Jul02
1503 - Updated Bacula to handle some minor differences in MySQL 4.0.2
1504   (still works with older MySQLs).
1505 - Updated MySQL documentation to correct some minor errors.
1506 - Added kernstodo to CVS
1507 - Fixed create_mysql_database, which I recently accidently broke.
1508 - Disallow zero length volume names in Console program.
1509 - Create alter_mysql_tables and alter_sqlite_tables for conversion
1510   from 1.22 table format to 1.23 table format.
1511
1512   From kes20Jul02
1513 - Investigation of SQLite performace problems reported by Chuck.
1514 - Updated ChangeLog
1515 - Updated README
1516 - made root@localhost the default email address because many smtp
1517   servers reject root but accept root@localhost
1518 - Added an autochangers chapter to the manual.
1519 - Documented most of the new features in 1.23
1520 - Modified the SQLite interface code to start a transaction at the
1521   beginning of a job and commit it at the end of the job. It
1522   also commits it after 10000 changes. Hopefully this will
1523   improve performance.
1524 - Set the default cache pages from 2000 to 10000 for SQLite (i.e.
1525   about 15Megs of memory) hoping to improve performance.
1526 - Terminate last filename referenced in FD prior to copy to
1527   avoid race problem with multiple threads and no locking.
1528 - Enhanced the status output to include the JobType                
1529 - Print an error message if the email program terminates in error.
1530 - If your machine has an MTUNLOCK, do it before doing an OFFLINE to
1531   ensure that the door is unlocked.
1532 - Added code to stored/append.c to spool attributes. This is in
1533   a testing stage and must be explicitly enabled.
1534 - Added a no_attributes variable to stored/append.c that prevents
1535   the attributes from being sent to the Director. As yet, no way
1536   to turn it on.
1537 - Modified SQLite code so that after 10000 updates any transaction
1538   is committed, then restarted. This keeps it from using too much
1539   memory.
1540 - Set the default cache size to 10000 pages (previously 2000).
1541 - Fixed a segmentation fault on Sun due to no default value for
1542   the JobStatus.
1543 - Added the same indexes to SQLite that I exist in MySQL. This
1544   VASTLY reduces CPU usage for lots of inserts.
1545 - Added spooling to bnet_send().
1546
1547   From kes18Jul02
1548 - The following two changes were prompted by questions/suggestions
1549   from A Morgan.
1550 - If you have "AlwaysOpen = no" in your SD Device
1551   resource, Bacula will free() the drive when it
1552   is finished with the Job.
1553 - If you have "Offline On Unmount = yes", in your
1554   SD Device resource, Bacula will offline (or eject)
1555   the tape prior to freeing it.
1556 - Added Maximum Open Wait to allow open() to wait if drive is busy.
1557 - Added RunBeforeJob and RunAfterJob records to Job records.
1558   This permits running an external program with the following editing
1559   codes:
1560     %% = %
1561     %c = Client's name
1562     %d = Director's name
1563     %i = JobId
1564     %e = Job Exit
1565     %j = Job
1566     %l = Job Level
1567     %n = Job name
1568     %t = Job type
1569
1570   From kes17Jul02
1571 - Added autochanger support to devices.c
1572 - Allow user to change Slot in the Volume record.
1573 - Implemented code in lib to run an external program
1574   (tape changer)
1575 - Implemented a changer script for mtx.
1576 - Currently the changer commands used are:  
1577     loaded -- returns number of slot loaded or 0
1578     load   -- loads a specified slot
1579     unload -- unloads the device (returns casette to slot)
1580 - Other changer commands defined but not yet used:
1581     list   -- returns list of slots containing a cassette
1582     slots  -- returns total number of slots 
1583 - Implemented ChangerCommand, specified in the SD Device
1584   resource, permits editing of:
1585       %% = %
1586       %a = archive device name
1587       %c = changer device name
1588       %f = Client's name
1589       %j = Job name
1590       %o = command
1591       %s = Slot base 0
1592       %S = Slot base 1
1593       %v = Volume name
1594 - Implemented MaximumChangerWait default 120 seconds. It is 
1595   specified in the SD Device resource.
1596
1597   From kes15Jul02
1598 - Moved techlogs from main directory to be subdirectory of doc
1599 - Added code for strerror_r, and detection of gethostbyname_r().
1600 - The protocol between the Director and the SD has changed.
1601 - Major rework of SD tape mounting to prepare for Changer commands.
1602 - Separated Update Media record and Create JobMedia record. These
1603   are done from the SD by calling the Director. Need separate Create
1604   JobMedia so that when a Job spans a volume, all other Jobs writing
1605   the same volume will also have JobMedia records created.
1606 - Added message to user indicating selection aborted if he enters .
1607   to a Console selection request.
1608 - Create a jobstatus_to_ascii() routine for use in status commands.
1609   This makes a single routine from three separate pieces of code.
1610   Updated the code to properly handle more (all) termination statuses.
1611 - Tried to fix the gnome-console to handle history a bit better. There
1612   are still some problems with focus not being properly set to the edit
1613   box after history replacement.
1614 - Removed the shutdown() from bnet_close() hoping to fix Console termination
1615   errors that are occassionally seen -- no luck.
1616 - Moved add_str() to lib/util and renamed it add_str_to_pool_mem() so that
1617   it can be used to edit Job termination codes and Changer command codes.
1618 - Reworked how the SD mounts tapes (in device.c) so that control passes through
1619   only a single routine. The logic is much simpler than previously, and now
1620   adding AutoChanger code is straight forward.
1621 - Made SD tape mounting much more fault tolerant -- more cases retry instead
1622   of terminating the Job.
1623 - Wrote code to edit_device_codes() for Changer commands. Not yet fully     
1624   implemented.
1625 - Added a ChangerDevice directive to the Device resource. Still need to add
1626   ChangerCommand.
1627
1628   From kes07Jul02
1629 - This documents what I did while on vacation. 
1630 - A fair amount of documentation.
1631 - Implemented Verify Volume to Catalog (needs renaming)
1632 - Modified the database to include new MarkId field as
1633   well as Counters. Database level is incremented from 1 to  2.
1634 - Added first cut of managing autochangers by implementing Slot in DB.
1635 - Fixed a good number of M_ERROR messages to be M_FATAL where appropriate.
1636   Also converted a number of Emsg() to Jmsg() permitting better Job error
1637   messages.
1638 - First cut at implementing a general packet passing mechanism for bsock
1639   to replace printf and sscanf for passing data.     
1640 - Made make_xxx_tables and drop_xxx_tables and create_xxx_database
1641   for bdb as well as sqlite. With this each database has the
1642   same set of scripts (with the exception that MySQL has grant_privileges).
1643 - Modified Makefile to only install the database scripts for the
1644   database that you are using.
1645 - Updated the pdf script to include all the html files.
1646 - Did quite a lot of documentation.
1647 - Made Bacula compile correctly with DEBUG turned off.
1648 - Implemented Pmsg() macros that permit using the debug print
1649   routines even with DEBUG off.
1650 - Updated job_cancelled() macro to handle JS_FatalError.
1651 - Changed db_find_last_full_verify() to db_find_last_jobid(). This
1652   permits working with Verify Volume to Catalog.
1653 - Removed TRANSACTION code from incrementing NextId for SQLite. 
1654 - Implemented quick and dirty (not fully functional code) so that
1655   console program does not die if ctl-Z is entered. 
1656 - Cleaned up backup.c a bit adding a bail_out goto to ensure proper
1657   handling of errors with minimum code.
1658 - Added passing Slot back and forth to Storage daemon with Volume info.
1659 - Implemented Slot in Media record in DB.
1660 - Implemented first cut of Counter resource in dird_conf.c. A counter
1661   resource is part of the Pool resource.
1662 - Implemented necessary database record. However, the resource doesn't
1663   yet create a DB record.
1664 - Implemented onefs (One File System) and recurse options on Include
1665   resource.
1666 - Implemented autopruning of Verify and Restore Jobs.
1667 - Did a better job of calculating thread_concurrency() for Sun systems.
1668   This permits better multi-threading allowing all the threads to run
1669   at the same time.
1670 - Implemented a wait_for_storage_daemon_termination(), which is used by
1671   backup and verify volume.
1672 - Clarified a number of UA prompts, and add feedback where certain commands
1673   completed but printed nothing. (More work to be done here).
1674 - Added a pile of new code to implement Verify Volume to Catalog. It is sort
1675   of a hybrid of "restore" and "verify" in that it actually reads the tape,
1676   then compares it to the catalog.  Need Verify Volume to Client.
1677 - Added a good number of checks for job_cancelled() this should permit
1678   quicker and more reliable cancelling of jobs.
1679 - Fixed one bug in restore where I used ofile instead of lname, which means
1680   that if the lname was too long, the memory was not properly reallocated.
1681 - Cleaned up find_one.c in findlib quite a bit.
1682 - Link smtp static so that it works even if the libraries are messed up.
1683 - If mail host is not found, retry with local host in smtp.
1684 - Added slot and stream to the bootstrap record processing.
1685 - Do offline on tape cartrige for unmount command. This can be turned off
1686   by the user in the config file. OffLineOnUnmount in Device resource.
1687 - Implemented AutoChanger = yes/no in Device resource.
1688
1689 ===========================================================================
1690 2002-07-07 Release 1.22
1691 - All the basic Restore code to handle the boostrap file is
1692   now implemented with the exception of the Console Restore command.
1693 - Retained compatibility with previous Restore providing no 
1694   bootstrap file is specified. However, the old code (JobId based)
1695   will go away in a future release.
1696 - Fixed a number of segmentation faults in the Console program due
1697   to printing of NULL pointers -- thanks to Chuck and his Sun for
1698   finding and reporting them -- mostly in ua_output.c.
1699
1700   From kes25Jun02
1701 - Null pointers now are printed as *None* if NPRT() is used.
1702 - At the request of Phil, all resources are now chained in in the
1703   order they appear in the config file.
1704 - Implement Bootstrap record in the Director's config file, which
1705   allows you to specify a predefined bootstrap file for Restore Jobs.
1706 - Allow Bootstrap on the Restore record. This is deprecated.
1707 - Implemented code to pass the Bootstrap file, if defined, to the
1708   File daemon, then from the File daemon to the Storage daemon.
1709 - Added ability to set Bootstrap file in the Console when running a Restore.
1710 - Allow scan_error() routine to be passed to lex_open_file(). This permits
1711   using lex in the Storage daemon without worrying that it will ABORT on
1712   a syntax error.  More work is needed to direct the error messages correctly.
1713 - Improved error messages a bit when config syntax errors are found.
1714 - Tested and corrected some errors in match_bsr.c
1715 - Removed askdir.c from bls and bextract by defining dummy entry points.
1716 - bextract now has bootstrap pretty well integrated.
1717 - Changed bextract ABORTs into FATAL and exit(1) or ERROR_TERMINATE.
1718   More user friendly.
1719 - Eliminated at least one lld and replaced it by edit_uint64() 
1720 - Eliminated a few more _PROTO()s.
1721 - Corrected a problem with the SQL for in query.sql for 
1722   Listing Volumes to Restore All Files
1723
1724   From kes22Jun02
1725 - Additional documentation.
1726 - Reduce the time the jcr mutex is locked in lib/jcr.c
1727 - More null pointer printing fixes in lib/parse_conf.c (debug output only).
1728 - Added daemon filename to Kaboom message so I know what daemon died.
1729 - Fix big bad bug introduced in watchdog.c last update that caused
1730   a segmentation violation (forgot to check for NULL pointer).
1731 - Add a bit more info to bad returns from Stored when starting
1732   a job fails.
1733
1734   From kes21Jun02
1735 - Fixed scan_to_eol
1736 - Fixed backup scanning forgot one T_STRING -> T_UNQUOTED_STRING
1737 - changed all rwlock_t to brwlock_t to avoid conflicts with
1738   Solaris library.
1739 - Added NPRT() macro to allow printing of NULL pointers, which
1740   segment fault on Solaris.
1741 - Cast printing of pid_t to int for Solaris compiler.
1742
1743   From kes20Jun02
1744 - Added expect argment to lex_get_token().
1745 - Added tree.c and tree.h to lib directory.
1746
1747   From kes19Jun02
1748 - Improvements to the bootstrap compiler
1749 - Implemented first cut of bootstrap code in the Storage daemon
1750 - Modified the authentication code to be more explicit during 
1751   failures.
1752 - Added a few more debug message numbers with more arguments (Dmsg10, ...)
1753 - Added more and more precise error messages when authentication fails.
1754 - Implemented new "expect" codes in the lexical scanner that allows
1755   the caller to specify what he wants.                   
1756 - Added integer, positive integer, 64 bit integer, and integer ranges,
1757   and name scanning to lex.
1758 - Implemented new lex code in parse_conf.c, this reduces significantly
1759   the code.
1760 - Hopefully fixed a watchdog race bug that caused the watchdog to time
1761   out a line after 1 hour rather than 6 days.
1762
1763   From kes15Jun02
1764 - Implemented a Bootstrap file parser and matcher.
1765 - Implemented first cut of bootstrap code in bextract  
1766 - Started clarifying different termination codes.
1767 - Added M_ERROR_TERM to immediately terminate the daemon -- no dump.
1768   Also changed a few termination codes as appropriate.
1769 - Fixed create_jobmedia_record() to include all the fields such as
1770   StartFile/EndFile, StartBlock/EndBlock.
1771 - Print user friendly message when query mode ends.
1772 - Fixed ls style print routines (bextract, bls, restore) to check
1773   buffer size, to print the link if any, and to used edit_uint64()
1774   instead of %lld.
1775 - Moved scan_to_eol() and s_err() to lex.c to avoid dragging in 
1776   parse_conf.c for new bsr scanning code.
1777 - New files: bsr.h, parse_bsr.c and match_bsr.c. parse_bsr.c parses
1778   a Bootstrap file, and match_bsr.c matches a bsr against a tape.
1779 - use strcasecmp() in several places instead of lcase().
1780 - Add first cut of bootstrap to bextract.
1781 - Added File Size limit -- writes EOF after limit exeeded.
1782
1783 ===========================================================================
1784 2002-06-12 Release 1.21
1785 - Fixed several problems with filenames being truncated if
1786   they contain spaces. Thanks to the user that reported this.
1787 - N.B. To get the new queries, after the "make" and 
1788   "make install" you must explicitly replace the
1789   existing query.sql by query.sql.new.  query.sql is a
1790   user configuration file, so it is not overwritten.
1791 - Added GZIP compression of Included files.  
1792 - Added additional fields to tape SOS record permitting better
1793   recovery with no database.
1794 - Be sure to remove any !terminate statements you may have
1795   in your config files.
1796 - MUST UPDATE ALL DAEMONS due to protocol change to handle new
1797   tape format.
1798
1799   From kes11Jun02:
1800 - Updated examples directory with my most recent config files.
1801 - Modified the M_TERM meaning to mean that Bacula has
1802   terminated in error without producing a dump. Previously,
1803   it meant that Bacula terminate (with or without error).
1804   You should remove any !terminate from your messages
1805   resources.
1806 - Changed the order of the libraries in the link so that
1807   tcp wrappers link properly. Thanks Phil for reporting this.
1808 - A user reported that filenames containing spaces were truncated
1809   in bextract. This was indeed the case. They were also truncated
1810   in Restore as well as in Verify. They are, hopefully, all fixed
1811   now.
1812 - Made a few error conditions in Verify non-fatal.
1813 - Modified the Console "query" command to permit multiple SQL
1814   statements per command. 
1815 - Implemented three new "query" options: 
1816     List last 10 Full Backups for a Client
1817     List Volumes used by selected JobId
1818     List Volumes to Restore All Files
1819   To use them, simply type "query" to the Console program, and
1820   select the one you want.
1821 - Modified bextract to default to extracting all files (i.e. /).
1822 - Cleaned up the code in bextract a bit.
1823
1824   From kes03Jun02:
1825 - Improve Verify command to include files examined.
1826 - Eliminate fcntl() locking of the console file and replaced
1827   it with a pthreads mutex.
1828 - Note Director - SD protocol is changed to handle new tape
1829   information (Fileset, JobType, JobLevel).
1830 - Create config.out that contains a summary of ./configure
1831   to see what you previously configured: "cat config.out"
1832 - Implemented GZIP compression.  Added addition syntax to
1833   Include { } resource to permit setting of any GZIP compression
1834   level:
1835      compression=GZIP
1836      compression=GZIP1
1837      ...
1838      compression=GZIP9
1839
1840   Level 1 is minimum compression and level 9 is maximum. Using just
1841   GZIP gives the default (level 6).
1842 - Enhanced the tape format to include the unique Job name, FileSetName,
1843   JobType, and JobLevel in the Start/End of Session records. The code
1844   detects that tape level difference and acts accordingly. You can 
1845   add data in the new format to old tapes.
1846 - Fixed an incorrect display message in the prune command.
1847 - Began implementation of Verify Volume and Verify Data.
1848 - Cleaned up File daemon restore.c a bit ensuring that termination 
1849   cleanup is done and all possible Emsgs are converted to Jmsgs.
1850 - Modify bls.c to use common setup routines. This reduced the big
1851   code duplication that creeped in when I added different listing
1852   options. Also, changing tapes is now handled uniformily in a subroutine.
1853
1854 ===========================================================================
1855 2002-05-27 Release 1.20
1856 - Started documenting Catalog Pruning and Recycling.
1857   Added catmaintenance.html and recycling.html
1858 - Fixed the query command bug.
1859 - Implemented PID files to prevent two copies of Bacula
1860   from running at the same time. Be sure you --with-pid-dir
1861   points to a working directory.
1862 - Modified ASSERT() to cause a segmentation violation. This
1863   permits a core dump.
1864 - Worked on gnome-console. It paints better, it tells you if it
1865   is ready to accept a command or processing one, and it is
1866   almost entirely GTK+ (rather than GNOME, I'm removing GNOME
1867   a bit at a time).
1868 - Limit to 100 the number of tape labeling errors in a single Job.
1869 - Add some additional ASSERT()s to the database routines. I don't
1870   like ASSERTs but they do catch bugs.
1871 - Tested and debugged recycling of Volumes.  Needed to change
1872   the Director-SD protocol slightly.
1873 - Removed the experimental SIGHUP in the Director as it is a
1874   potential source of errors.
1875 - Added Level, Pool, Messages, and Storage keyword/value scanning
1876   to the Schedule Run record.
1877 - Improved printing of Schedule resources with "show schedules"
1878 - Do not autoprune Jobs/Files if the Job errs.
1879 - Updated newvol() to pass back the updated Media record.   
1880 - Fixed the "update pool" command, which was broken during a much
1881   earlier code reorganization.
1882 - Improved a few of the pruning messages.
1883 - Removed readline inclusions from gnome-console (hang over from console).
1884 - Make Jmsg use daemon message handler if no message handler is defined.
1885   This is always the case in the SD and FD.
1886 - Started removing __PROTO(). With C++ prototypes are manditory, so why
1887   keep around legacy code.
1888 - Added a good deal of message internationalization -- more to be done.
1889 - Move cached Path into mdb structure and use POOLMEM.
1890 - Fix verify bug introduced last update causing incorrect diffs 
1891   by turning off autopruning.
1892 - Started adding code to distinguish Errors from Fatal Errors.
1893 - Errors are now counted in message.c for a Job.
1894 - More POOLMEM cleanups.
1895 - Implemented Automatic pruning.
1896 - Implemented Automatic recycling of Volumes.
1897 - Added PruneJobs/Files/Volumes=yes or no to Job resource. If set,
1898   it forces the specified pruning.
1899 - Modified rwlock to accept multiple nested write lock
1900   requests.
1901 - Modified the cats directory to use the new rwlock mechanism
1902   in place of P() and V(). 
1903 - Defined db_lock(mdb) and db_unlock(mdb). They are in effect
1904   transaction locks. 
1905 - Add CVS Id's to most files.
1906 - Made first cut at AutoPrune
1907 - Added new autoprune file that is called at the end of
1908   each Job. It then decides when and what to prune and
1909   calls the UA prune routines.
1910 - Modified Run (in Schedule resource) to permit overrides of
1911   Level, Pool, Storage, and Messages. (not tested).
1912 - Added more POOLMEM in place of char.
1913 - Implemented daemon pid files. This prevents multiple 
1914   daemons from running simultaneously. You can run multiple
1915   daemons if they listen on different ports.
1916 - Documented the Schedule resource a bit better.
1917 - Began gently adding a POOLMEM type (perviously void).
1918   For the moment it is a #define to char, but long term
1919   it should be its own typedef.
1920 - Corrected a bit of spacing on the status bar of gnome-console
1921 - Added Admin and Archive Job types.
1922 - Implemented multiple Messages resources. Each daemon has
1923   its own message resource, which defaults if not defined.
1924   Jobs may now have different message handlers.
1925 - Cleaned up a bit of duplicate code in backup, verify, and
1926   restore by creating appropriate subroutines in job.c
1927 - Added Type, Client, FileSet, and Level resource record
1928   definitions to the Director. These can be used in place
1929   of the Backup = ..., Verify = ..., ... commands.  This needs
1930   documenting.
1931 - Corrected an incorrect message in the prune code and added
1932   the number of Files pruned in the message.
1933 - Corrected several paint problems with gnome-console.
1934 - Added a bit of printout in signal handler during traceback.
1935 - Cleaned up most of sm_check() to be turned on/off by define
1936   in version.h
1937
1938 ===========================================================================
1939 2002-05-10 Release 1.19
1940 - Allow the user to select a new period for pruning.
1941 - Lots of additions to the manual -- prune and purge
1942   commands documented.
1943 - Applied Phil's configure.in fix for --prefix, ...
1944 - Fixed bug found by Phil (patch supplied) in updating
1945   MD5 signatures (revert to 32 bit FileId, move "static"
1946   variables into JCR) (catreq.c fd-cmds.c).
1947 - Reverted to using INTEGER for FileId in make_sql_tables
1948   due to a bug in MySQL.
1949 - Change editing code to %d for FileId.
1950 - Remove sqlite in make distclean in cats directory.
1951 - Remove console.conf in console during make distclean.
1952 - Remove gnome-console.conf during make distclean.
1953 - Remove bacula-dir.conf during make distclean.
1954 - Set default level when using Console if none specified.
1955   Bug reported by Phil.
1956 - A simple . command from Console is ignored.   
1957 - Change program named from filed to bacual-fd in winmain.cpp
1958 - Change default config file for Win32 in winmain.cpp
1959 - Free namebuf on early return from find_one.c. Bug reported by Phil.
1960 - Modify testfind.c to dump orphaned buffers.
1961 - Removed terabytes from parse_conf.c because of problems with
1962   older gcc compilers.
1963 - Turn off gnome options in gnome-console by constructing empty argv.
1964 - Fixes to Verify when only MD5 differs.
1965 - Insert 0 for MD5 as default rather than space.
1966 - Allow .messages "transparent" command while reading input
1967   in UserAgent server.
1968 - In dird/verify.c ensure that correct filename is printed if only
1969   the MD5 differs. Minor reindenting caused large diff.
1970 - Delete unused code from backup.c
1971 - In filed/verify.c ensure that same algorithm as backup.c is used
1972   to pass back MD5 signatures -- especially for directories and files
1973   that cannot be read. Change dummy filename from X to *MD5-id*.
1974   This dummy value should never be printed.
1975 - Make gnome-console poll Director every 5 seconds for output.
1976   This means that queued up messages are displayed at reasonable
1977   intervals. Delete some unused code hanging around from the tty
1978   console program.
1979 - Begin implementation of prune commands.
1980 - Add command line history to gnome-console. Not yet saved across sessions.
1981 - Fixed some broken URLs in the manual.
1982 - Added JobId type.
1983 - Wrote first cut of "prune files" and "prune jobs".
1984 - Added command line history to gnome-console 2500 lines max.
1985 - Widened store_time() and associated variables to 64 bits using
1986   new btime_t definition.
1987 - Removed GNOME about box and replaced it with 
1988   a somewhat crude Gtk+ about box in the gnome-console.
1989 - Widened StartDay in the Job DB record to be 64 bits.
1990 - Changed edit_uint_ to edit_uint64_ everywhere. Much more
1991   descriptive of what is done.
1992 - Removed most llds and replaced them with %s and edit_uint64.
1993   This makes the code a bit easier to read for beginners.
1994 - Added a btime_t typedef which is 64 bits wide.
1995 - Added most of the code needed to do Purge and Prune of
1996   database. Not yet tested. Please do not use.
1997 - Additional config options for Console.
1998 - Started adding code for Automatic Recycling of Volumes.
1999 - Allow arbitrary length filenames in Verify code.
2000 - Fix incorrect filename in Verify code.
2001 - Significant enhancement to number scanning in config parser.
2002 - Requires initializing MySQL tables, or applying cats/alter.sql
2003   to modify Media table.
2004 - Modified Makefile to printer a much more visible
2005   message if the make ends in error.
2006 - Added the Purge value to the VolStatus in the Media table.
2007   This value is set if the Volume is purged.
2008 - Enhanced the db_delete_media_record() routine to delete
2009   all associated records in the database.
2010 - Modified Console to always write to the variable "output"       
2011   rather than stdout. This will permit directing output to a file.
2012 - Enhanced the Console configuration file to have a Console 
2013   resource. This will allow us to add an rcfile and history file.
2014 - Modified Find_next_vol in catreq.c to search for "Recycle"
2015   volumes if there are none marked Append. Also made Get_Vol_info
2016   return the VolStatus to the Storage daemon.
2017 - Allow upper/lower case match on job level names.
2018 - Added another warning message to the Console "delete media" command.
2019 - Corrected a number of FileId types from uint64_t to FileId_t in
2020   ua_retention.c.
2021 - In ua server close database before freeing JCR (because pointer is
2022   kept in ua and jcr structures).
2023 - parse all numbers as doubles. Do lots of checking for valid number
2024   formats. Allow numbers in scientific form (e.g. 1.5e+10).
2025 - Remove terabyte modifier as it doesn't work in some compilers.
2026 - Fix bug in handling some modifiers.
2027 - Added all necessary code for Recycle to Storage daemon. A Volume
2028   marked Recycle will now be overwritten.
2029 - Filled out the prune command a bit and did some testing.
2030 - Make console accept redirected input.
2031 - Altered the Table definitions to include Recycle,
2032   FileRetention, JobRetention, and AutoPrune.
2033 - Widened StartDay to 64 bits.
2034 - Use JobId_t in more places. 
2035 - Added the new table fields to the database record definitions.
2036 - Changed Recycle from string to a binary quantity.
2037 - Added a Version table with a VersionId to detect.
2038   future changes in the database. This should prevent
2039   a Bacula from working with a database that is not in sync.
2040 - Modify Console to accept input from a file. This will permit
2041   the .read command and allow reading a .rc file.
2042 - Added new retention and recycle variables to the Director's configuration.
2043 - The UA subroutines or commands can now be called from core
2044   code because the output routines detect the absence of a 
2045   UA socket and direct output to the Job.
2046 - Added a verbose flage to the ua packet to permit reduction of
2047   output while running a UA command (prune) from a Job.
2048 - Did a fair amount of work on the prune command. Prune Volume now works.
2049 - Purge Volume now works.
2050 - Made last changes for integrating prune and purge commands.
2051 - Add -ltermcap to CONS_LIBS when readline is configured.
2052   More work to be done to search for termcap.
2053 - Added cats/drop_sqlite_tables.in, which will delete the SQLite database.
2054 - Got CWEB working so that we can compile filesys.w and immortal.w
2055 - Modified depkgs to include cweb.             
2056 - Note, CWEB is not yet used by the core Bacula code.
2057 - Made cats/alter.sql, which alters an old database to bring it
2058   up to the new format. This only works with MySQL since SQLite does
2059   not have the ALTER SQL command.
2060 - Changed the old StartDay field in the db to be JobTDate, which is
2061   the latest time/date in widened Unix time format that the Job ran.
2062   This value is used when doing pruning.
2063 - Added code in cats/sql.c to verify that the database internal version
2064   corresponds to the db version compiled in Bacula. It is set to 1 currently.
2065 - Lots of changes to cats to bring the SQL up to date with the new 
2066   retention period changes.
2067 - Added Console command code to permit changing a Volume's retention period.
2068 - Removed old code that used date_encode() and replaced it with widened
2069   Unix time().
2070 - Started modifying Message resource scanner so that we can have multiple
2071   message resources. Much more work to be done.
2072 - Moved scanning for time into new library routine string_to_btime().
2073
2074 ===========================================================================
2075 2002-04-22 Release 1.18
2076 - Applied Phil's configure.in fix for --prefix, ...
2077 - Fixed bug found by Phil (patch supplied) in updating
2078   MD5 signatures (revert to 32 bit FileId, move "static"
2079   variables into JCR) (catreq.c fd-cmds.c).
2080 - Reverted to using INTEGER for FileId in make_sql_tables
2081   due to a bug in MySQL.
2082 - Change editing code to %d for FileId.
2083 - Remove sqlite in make distclean in cats directory.
2084 - Remove console.conf in console during make distclean
2085 - Remove gnome-console.conf during make distclean
2086 - Remove bacula-dir.conf during make distclean
2087 - Set default level when using Console if none specified.
2088   Bug reported by Phil.
2089 - A simple . command from Console is ignored.   
2090 - Change program named from filed to bacual-fd in winmain.cpp
2091 - Change default config file for Win32 in winmain.cpp
2092 - Free namebuf on early return from find_one.c. Bug reported by
2093   Phil.
2094 - Modify testfind.c to dump orphaned buffers.
2095 - Removed terabytes from parse_conf.c because of problems with
2096   older gcc compilers.
2097 - Turn off gnome options in gnome-console by constructing empty
2098   argv.
2099
2100 ===========================================================================
2101 2002-04-18 Release 1.17 Kern Sibbald
2102 - Ensure that platforms Makefiles are called for clean  
2103   and distclean.
2104 - Hide a lot of Makefile messages with @
2105 - Applied Phil's configure.in patch. Thanks.
2106 - Doc updates, many to clarify points brought up by Phil.
2107 - Applied Phil's make_mysql_tables.in patch. Thanks.
2108 - Made authenticate.c in dird test bnet_send status.
2109 - Make label a bit more friendly with extra info message.
2110 - Add level 200 to debug info in run command.
2111 - Remove old code from findlib/testfind.c so that it compiles.
2112 - Add two minute max wait to cram-md5 authentication. Hopefully,
2113   this will catch non-responding WinNT daemons.
2114 - Allow time and size modifiers to be upper or lower case.
2115 - Turn off old CYGWIN patch for pthread_cond_timedwait() bug that
2116   now causes File daemon hangs on WinNT.
2117 - Fix mount messages for restore. Previous updates to save
2118   broke the restore code.
2119 - By default write fixed block sizes rather than variable block
2120   sizes.  My Sony DAT simply does not work (reread failures) with
2121   variable block sizes.
2122 - Data split across tapes was not being correctly restored
2123   (at least on DAT tapes). 
2124 - Implement MaximumBlockSize and MinumBlockSize statements in
2125   Storage daemon so user can specify variable block sizes if
2126   desired.
2127 - Return error if block checksum error on read (previously 
2128   ignored).
2129 - Fixed some error messages in bls, and in some cases exit(1)
2130   rather than ABORT. There remain ABORTs to be examined.
2131 - Made a local copy of tcpd.h and corrected the function 
2132   prototype problem for C++.
2133
2134 ===========================================================================
2135 2002-04-14 First public release 1.16 Kern Sibbald
2136  - Many intervening changes/updates.
2137
2138 2001-09-29 Release 1.0 Kern Sibbald
2139  - Fixes to problems found at John's installation.
2140  - See techlogs/kes25Sep01 for details
2141
2142 2001-09-25 Release 1.0 Kern Sibbald
2143  - Helped John install at his site.
2144    He is backing up one Linux machine and
2145    one Win2000 machine.
2146
2147 2001-mm-dd Many releases
2148  - Released internally.
2149   
2150 2000-04-09 Release 0.4 Kern Sibbald
2151  - Added a lot of Director configuration code. In      
2152    part (a small part), the Director now uses the
2153    bacula.conf file to know what to do. There still
2154    remains a lot to do.
2155  - The file search code is now integrated into the
2156    MySQL database routines, and Bacula is now hooked
2157    into the MySQL database (if so configured). Thus
2158    all the database records are being created, though
2159    there still remains some work in getting all the
2160    details into the records (such as the Storage 
2161    coordinates).
2162  - I've defined how Volume pools work (see manual).
2163  - I've defined error message handling though no code
2164    is yet written.
2165  - The following resources and records are implemented
2166    in the Director configuration file (bacula.conf):
2167     
2168    Director
2169      Name (passed to Storage daemon)
2170    Client
2171      Name, Address, Port
2172      Password (not yet used)
2173    Storage    
2174      Name, Address, Port, Password, MediaType
2175    Job
2176      Name    
2177      Type (not yet used)
2178      Backup (only one permitted) 
2179        Client, FileSet
2180      Storage
2181      Schedule, Messages, Pool (not used)
2182    FileSet
2183      Name  
2184      Include (options ignored)
2185      Exclude (no options)
2186    Schedule (not used)
2187      Name
2188    Messages (not used)
2189      Name       
2190      Debug, syslog, mail, append (not used)
2191    Catalog
2192      Name
2193      Address, Port, Password (not used)
2194    Pool (not used)
2195      Name
2196      PoolType, MediaType (not used)
2197
2198  - Added Storage configuration routines.
2199    Director
2200      Name, password (verified against those sent by Director)
2201    Storage
2202      Name, Address, Port (address, port must correspond to Director's values)
2203      Password, MediaType
2204    Device
2205      Name, MediaType (must correspond to those sent by Director)
2206      Archive Device (defines device name)
2207
2208
2209 2000-03-10 Release 0.3 Kern Sibbald
2210  - Implemented new base64 encoding for attributes.
2211    This eliminates some of the error messages in the
2212    sprintfs on the Solaris due to different stat() sizes.
2213  - Implemented  the first cut of the file search routines for
2214    the File daemon.  The exclusion lists work including wild
2215    cards.   There is a lot of work to be done, but the basic
2216    structure is now in place (wild cards do not yet work for
2217    the include).
2218  - Completed writing the memory pool code.  Now I must
2219    implement it in the daemons.
2220  - Modified the bacula start/stop script so that it has a
2221    better chance of working on SGI and Solaris.
2222  - The catalog code has not been converted to the new file
2223    search code.
2224
2225 2000-03-06 Release 0.2 Kern Sibbald
2226  - Integrated John's fixes.
2227  - Made Makefiles self configuring when Makefile.in is changed.
2228  - Added a runit script in the top level that runs bacula
2229  - Added a "bacula" script in the top level directory that
2230    starts and stops the File daemon and the Storage daemon.
2231
2232 2000-03-03 Release 0.1 Kern Sibbald
2233  - Basic Director, File, and Storage daemons.
2234    Standalone Catalog services using MySQL
2235
2236 2000-01-22 Kern Sibbald
2237    * Setup basic file structure with ./configure