* Fixed handling of $Conf{HardLinkMax} in BackupPC/Lib.pm. Reported
[BackupPC.git] / ChangeLog
index b19a8b3..7c67376 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 # Version __VERSION__, __RELEASEDATE__
 #------------------------------------------------------------------------
 
+* Fixed handling of $Conf{HardLinkMax} in BackupPC/Lib.pm.  Reported
+  by Ross Skaliotis.
+
+* Updated BackupPC/Xfer/Smb.pm to handle new messages from
+  smbclient 3.0.0rc2.
+
+* Fixed $Conf{BackupZeroFilesIsFatal} so that it only applies to full
+  dumps, not incrementals.
+
+* Replaced typo $Conf{PingClientPath} with $Conf{PingPath} in configure.pl.
+
+* Removed -T (taint mode) on binaries installed in configure.pl.
+
+#------------------------------------------------------------------------
+# Version 2.0.1beta0, July 26th, 2003
+#------------------------------------------------------------------------
+
+* In BackupPC_Admin, default REMOTE_USER to $Conf{BackupPCUser}
+  if it is not defined.  This allows the CGI interface to work
+  when AdminUsers = '*'.  Reported by Quentin Arce.
+
+* For SMB, code that detected files with a read-locked region (eg:
+  outlook .pst files), removed them and then tried to link with an
+  earlier version was broken.  This code missed a step of mangling
+  the file names.  This is now fixed.  Reported by Pierre Bourgin.
+
+* A backup of a share that has zero files is now considered
+  fatal. This is used to catch miscellaneous Xfer errors that
+  result in no files being backed up.  A new config parameter
+  $Conf{BackupZeroFilesIsFatal} (defaults to 1) and can be set to
+  zero to turn off this check. Suggested by Guillaume Filion.
+
+* SMB: now detect NT_STATUS_ACCESS_DENIED on entire share or BackupFilesOnly
+  (also ERRDOS - ERRnoaccess (Access denied.) for older versions of
+  smbclient.)  Suggested by Guillaume Filion.
+
+* SMB: now detects "tree connect failed: NT_STATUS_BAD_NETWORK_NAME" and
+  the dump is considered failed.
+
+* Rsync: Previously BackupFilesOnly = '/' did --include '/' --exclude '/*',
+  which just included the '/' directory and nothing below.  Now it
+  does just --include '/', which should include everything.
+  Reported by denon.
+
+* Add hostError to DumpPostUserCmd variable substitutions for both dump
+  and restore.
+
+* Verbose output in Lib.pm goes to STDERR, not STDOUT.  This now
+  makes BackupPC_dump -v work better.
+
+* Don't allow browsing with ".." in directory in case a user tries
+  to trick BackupPC_Admin into displaying directories outside where
+  they are allowed.
+
+* Required File::RsyncP version is now 0.44, since File::RsyncP 0.44
+  fixes large file (>2GB) bugs.  Large file bugs reported by Steve
+  Waltner.
+
+#------------------------------------------------------------------------
+# Version 2.0.0, 14 Jun 2003
+#------------------------------------------------------------------------
+
 * Minor tweaks to disable utf8 on utf8-capable machines (eg: RH8+).
   Added "no utf8" to all programs, and added binmode() to relevant
   file handles.