################################## Configuration Settings #####################
# bacula-dir.conf_v13
#
# Define myself
Director {		
  Name = bacula-dir
  DIRport = 9101        # Where we listen for UA connections
  QueryFile = "/etc/bacula/query.sql"
  WorkingDirectory = "/var/bacula/working"
  PidDirectory = "/var/run"
  Maximum Concurrent Jobs = 1
  Password = "jUzVm15wU5IQXyQNTb7GPaVsAU8Y3eaAUkOpJp8XCvax"         # Console password
  Messages = Daemon
}

# Restricted console used by tray-monitor to get the status of the director
Console {
  Name = bacula-mon
  Password = "TfTIGhoNhUxOoQOKeYh47Kvl7jY0VDTWy443I8tujdnm"
  CommandACL = status, .status
}

# Definiton of file storage device
Storage {
  Name = SDLT
  Address = bacula                # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "UNDzgw8y/odqYEQnK4A66HBwmFBlwpVV/KHPlquRNUhO"
  Device = SDLT
  Autochanger = yes
  Media Type = SDLT
}

# Generic catalog service
Catalog {
  Name = MyCatalog
  dbname = bacula; user = bacula; password = ""
}

# Reasonable message delivery - send most everything to email address and to the console
Messages {
  Name = Standard
# NOTE! If you send to two email or more email addresses, you will need
#  to replace the %r in the from field (-f part) with a single valid
#  email address in both the mailcommand and the operatorcommand.
  mailcommand = "/sbin/bsmtp -h exchange01 -f \"Bacula@tanner.com\" -s \"Bacula: %t %e of %n %l\" %r"
  operatorcommand = "/sbin/bsmtp -h exchange01 -f \"Bacula@tanner.com\" -s \"Bacula: Intervention needed for %j\" %r"
  mail = backup@tanner.com = all, !skipped            
  operator = root@localhost = mount
  console = all, !skipped, !saved
# WARNING! the following will create a file that you must cycle from
#  time to time as it will grow indefinitely. However, it will
#  also keep all your messages if they scroll off the console.
  append = "/var/bacula/working/log" = all, !skipped
}

# Message delivery for daemon messages (no job).
Messages {
  Name = Daemon
  mailcommand = "/sbin/bsmtp -h exchange01 -f \"Bacula@tanner.com\" -s \"Bacula daemon message\" %r"
  mail = backup@tanner.com = all, !skipped            
  console = all, !skipped, !saved
  append = "/var/bacula/working/log" = all, !skipped
}

################################## Job Definitions ############################

JobDefs {
  Name = "BackupJob"
  Type = Backup
  Schedule = "Backups"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 11
  # Max Start Delay = 61h
  # Max Start Delay = the delay between the scheduled time and the actual start time for the Job.
  # Max Run Time = 24h
  # Maximum Run Time = allowed time that a job may run, counted from when the job 
  #  starts, (not necessarily the same as when the job was scheduled).
}

################################## Pools ######################################
    
Pool {
  Name = Scratch
  Pool Type = Backup
}
Pool {
  Name = Daily
  Pool Type = Backup
  Recycle = yes                       	# Bacula can automatically recycle Volumes
  AutoPrune = yes                     	# Prune expired volumes
  Volume Retention = 14 days		# Two weeks for daily tapes
  Volume Use Duration = 14 hours	# Prevents writing to a daily tape for more than 14 hours
}
Pool {
  Name = Weekly
  Pool Type = Backup
  Recycle = yes                       	# Bacula can automatically recycle Volumes
  AutoPrune = yes                     	# Prune expired volumes
  Volume Retention = 8 weeks		# Eight weeks for weekly tapes
  Volume Use Duration = 4 days		# Prevents writing to a weekly tape for more than 4 days
}
Pool {
  Name = Monthly
  Pool Type = Backup
  Recycle = yes                       	# Bacula can automatically recycle Volumes
  AutoPrune = yes                     	# Prune expired volumes
  Volume Retention = 8 months		# Eight months for monthly tapes
  Volume Use Duration = 4 days		# Prevents writing to a monthly tape for more than 4 days
}
Pool {
  Name = UserMachines			# Use this pool to backup user machines
  Pool Type = Backup
}

################################## Schedules ##################################

# Defines when to run the backups 
#  Full monthly backup on the first Friday of the month
#  Full weekly backup on remaining Fridays
#  Differential daily backup on Monday, Tuesday, Wednesday, and Thursday
#  Run = <Job-overrides> <Date-time-specification>
#  <Job-overrides> examples: Level=, Pool=, Storage=, Meessages=

Schedule {
  Name = "Backups"
  Run = Level=Full Pool=Monthly 1st fri at 19:00 
  Run = Level=Full Pool=Weekly 2nd-5th fri at 19:00
  Run = Level=Differential Pool=Daily mon-thu at 19:00
}
Schedule {
  Name = "FullBackup"
  Run = Level=Full Pool=Monthly 1st fri at 21:00 
  Run = Level=Full Pool=Weekly 2nd-5th fri at 21:00
  Run = Level=Full Pool=Daily mon-thu at 21:00 
}

################################## Clients ####################################

# Use lower case letters for client names

Client {
  Name = bacula-fd
  Address = bacula
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = exchange01-fd
  Address = exchange01
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = homes-fd
  Address = homes
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = labssrv-fd
  Address = labssrv
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = mis7-fd
  Address = mis7
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = mis9-fd
  Address = mis9
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = ntcorp-fd
  Address = ntcorp
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = palisade-fd
  Address = palisade
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = raidsrv01-fd
  Address = raidsrv01
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = raidsrv02-fd
  Address = raidsrv02
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = tannerdc01-fd
  Address = tannerdc01
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}
Client {
  Name = testweb-fd
  Address = testweb
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
  AutoPrune = yes                     # Prune expired Jobs/Files
}

################################## Linux Jobs #################################

FileSet {
  Name = "Generic Linux FileSet"
  Include {
    Options {
      signature = MD5
    }
    File = /
    File = /boot
    File = /home
    File = /usr
    File = /var
  }
  Exclude {
    File = /dev
    File = /*/lost+found    
    File = /proc
    File = /tmp
  }
}

Job {
  Name = "Bacula"
  Client = bacula-fd 	# v1.38.9
  Type = Backup
  Schedule = "FullBackup"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 14
  # Max Start Delay = 61h
  # Max Start Delay = the delay between the scheduled time and the actual start time for the Job.
  # Max Run Time = 12h
  # Maximum Run Time = allowed time that a job may run, counted from when the job 
  #  starts, (not necessarily the same as when the job was scheduled).  
  FileSet = "Bacula FileSet"
  # Enabled = no
}
FileSet {
  Name = "Bacula FileSet"
  Include {
    Options {
      signature = MD5
    }
    File = /
    File = /boot
    File = /home
    File = /usr
    File = /var
  }
  Exclude {
    File = /dev
    File = /*/lost+found    
    File = /proc
    File = /tmp
    File = /var/lib/mysql
  }
}

Job {
  Name = "BackupCatalog"	# Backup the catalog database (after backups)	
  Client = bacula-fd 		# v1.38.9
  FileSet="BackupCatalog FileSet"
  Schedule = "FullBackup"
  # This creates an ASCII copy of the catalog
  RunBeforeJob = "/etc/bacula/make_catalog_backup bacula bacula"
  # This deletes the copy of the catalog
  RunAfterJob  = "/etc/bacula/delete_catalog_backup"
  Write Bootstrap = "/var/bacula/working/BackupCatalog.bsr"
  Priority = 15		# run after backups
  # Max Start Delay = 61h
  # Max Start Delay = the delay between the scheduled time and the actual start time for the Job.
  # Max Run Time = 12h
  # Maximum Run Time = allowed time that a job may run, counted from when the job 
  #  starts, (not necessarily the same as when the job was scheduled).
  Pool = "Daily"
  Type = Backup
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
}
FileSet {
  Name = "BackupCatalog FileSet"
  Include {
    Options {
      signature = MD5
    }
    File = /var/bacula/working/bacula.sql
  }
}

Job {
  Name = "Raidsrv01"
  Client = raidsrv01-fd 		# v1.38.5
  JobDefs = "BackupJob"
  FileSet = "Generic Linux FileSet"
}

Job {
  Name = "Testweb"
  Client = testweb-fd 			# v1.38.9
  JobDefs = "BackupJob"
  FileSet = "Generic Linux FileSet"
}

################################## Windows Jobs ###############################

Job {
  Name = "Exchange01"		# Running as tannercorp\backup	v1.38.6
  Client = exchange01-fd 
  JobDefs = "BackupJob"
  FileSet = "Exchange01 FileSet"
}
FileSet {
  Name = "Exchange01 FileSet"
  # Enable VSS = yes
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
    File = d:/
    File = e:/
  }
  Exclude {
    File = "c:/Documents and Settings/All Users/Application Data/Microsoft/Network/Downloader"
    File = "c:/WINDOWS/system32/config"
    File = "c:/WINDOWS/Temp"
    File = "d:/Exchsrvr/mdbdata"
    File = "e:/Exchsrvr/mdbdata"
  }
}

Job {
  Name = "ExchangeDB"		# Running as tannercorp\backup	v1.38.6
  Client = raidsrv02-fd 
  Type = Backup
  Schedule = "FullBackup"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 10
  Client Run After Job = l:/exchange01/nightly/post-exchange.pl
  # Max Start Delay = 61h
  # Max Start Delay = the delay between the scheduled time and the actual start time for the Job.
  # Max Run Time = 12h
  # Maximum Run Time = allowed time that a job may run, counted from when the job 
  #  starts, (not necessarily the same as when the job was scheduled).  
  FileSet = "ExchangeDB FileSet"
}
FileSet {
  Name = "ExchangeDB FileSet"
  Include {
    Options {
      signature = MD5
    }
    File = "l:/Exchange01"
  }
}

Job {
  Name = "Labssrv"		# Running as tannercorp\backup		v1.38.4
  Client = labssrv-fd 
  JobDefs = "BackupJob"
  FileSet = "Labssrv FileSet"
  # Enabled = no
}
FileSet {
  Name = "Labssrv FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/WINNT/Profiles/*/NTUSER.DAT"
      WildFile = "c:/WINNT/Profiles/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
    File = f:/
    File = g:/
    File = h:/
  }
  Exclude {
    File = "c:/TEMP"
    File = "c:/WINNT/system32/config"
    File = "g:/don't use Marketing"
    File = "g:/Moved projects"
    File = "h:/don't use Marketing"
    File = "h:/don't use Proposal"
    File = "h:/Moved to raidsrv02"
  }
}

Job {
  Name = "MIS7"			# Running as Local System account	v1.38.6
  Client = mis7-fd 
  JobDefs = "BackupJob"
  FileSet = "MIS7 FileSet"
}
FileSet {
  Name = "MIS7 FileSet"
  # Enable VSS = yes
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
    File = d:/
    File = e:/
  }
  Exclude {
    File = "c:/WINDOWS/system32/config"
    File = "c:/WINDOWS/Temp"
    File = "d:/MSSQL"
    File = "e:/mssql/logs"
  }
}

Job {
  Name = "MIS9"			# Running as Local System account	v1.38.6
  Client = mis9-fd 
  JobDefs = "BackupJob"
  FileSet = "MIS9 FileSet"
}
FileSet {
  Name = "MIS9 FileSet"
  # Enable VSS = yes
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
    File = d:/
    File = e:/
    File = f:/
  }
  Exclude {
    File = "c:/Program Files/Common Files/McAfee/MSDE/MSSQL$EPOSERVER/Data"
    File = "c:/WINDOWS/system32/config"
    File = "c:/WINDOWS/system32/LServer"
    File = "c:/WINDOWS/Temp"
  }
}

Job {
  Name = "Ntcorp"		# Running as tannercorp\backup		v1.38.6
  Client = ntcorp-fd 
  JobDefs = "BackupJob"
  FileSet = "Ntcorp FileSet"
  # Enabled = no
}
FileSet {
  Name = "Ntcorp FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
    File = d:/
    File = e:/
  }
  Exclude {
    File = "c:/WINNT/NTDS/edb.log"
    File = "c:/WINNT/NTDS/ntds.dit"
    File = "c:/WINNT/NTDS/temp.edb"
    File = "c:/WINNT/ntfrs/jet/log/edb.log"
    File = "c:/WINNT/ntfrs/jet/ntfrs.jdb"
    File = "c:/WINNT/ntfrs/jet/temp/tmp.edb"
    File = "c:/WINNT/system32/config"
    File = "c:/WINNT/system32/wins/j50.log"
    File = "c:/WINNT/system32/wins/wins.mdb"
    File = "c:/WINNT/system32/wins/winstmp.mdb"
    File = "d:/DO NOT USE Contracts"
    File = "d:/DO NOT USE EDA_Products"
    File = "d:/DO NOT USE Facilities"
    File = "d:/EDA/DO NOT USE Documents"
    File = "d:/EDA/DO NOT USE EDA_Docs"
    File = "d:/EDA/DO NOT USE Examples"
    File = "d:/EDA/DO NOT USE IP"
    File = "d:/EDA/DO NOT USE Marketing"
    File = "d:/EDA/DO NOT USE ProductManagement"
    File = "d:/EDA/DO NOT USE Tools"
    File = "e:/DO NOT USE Acctg"
    File = "e:/DO NOT USE Design Kits"
    File = "e:/DO NOT USE EDA Production"
    File = "e:/DO NOT USE Finance"
    File = "e:/DO NOT USE IS"
    File = "e:/DO NOT USE Pictures"
    File = "e:/DO NOT USE SysAdmin"
  }
}

Job {
  Name = "Raidsrv02Part1"		# Running as tannercorp\backup	v1.38.6
  Client = raidsrv02-fd 		# Drives C, D, F, and G 
  Type = Backup
  Schedule = "Backups"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 13
  FileSet = "Raidsrv02Part1 FileSet"
  # Enabled = no
}
FileSet {
  Name = "Raidsrv02Part1 FileSet"
  Include {
    Options {
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      Exclude = yes
      signature = MD5
      compression=GZIP
    }
    File = c:/
    File = d:/
    File = f:/
    File = g:/
  }
  Exclude {
    File = "c:/WINNT/system32/config"
    File = "d:/not used - admin"
    File = "d:/Ready to delete"
    File = "f:/useless"
  }
}

Job {
  Name = "Raidsrv02Part2"		# Running as tannercorp\backup	v1.38.6
  Client = raidsrv02-fd 		# Drive E
  Type = Backup
  Schedule = "Backups"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 13
  FileSet = "Raidsrv02Part2 FileSet"
  # Enabled = no
}
FileSet {
  Name = "Raidsrv02Part2 FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      Exclude = yes
      signature = MD5
      compression=GZIP
    }
    File = e:/
  }
  Exclude {
    File = "e:/Ready to delete"  
  }
}

Job {
  Name = "Raidsrv02Part3"		# Running as tannercorp\backup	v1.38.6
  Client = raidsrv02-fd 		# Drives J, K, and L 
  Type = Backup
  Schedule = "Backups"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 13
  FileSet = "Raidsrv02Part3 FileSet"
  # Enabled = no
}
FileSet {
  Name = "Raidsrv02Part3 FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      Exclude = yes
      signature = MD5
      compression=GZIP
    }
    File = j:/
    File = k:/
    File = l:/
  }
  Exclude {
    File = "l:/Exchange01"
  }
}

Job {
  Name = "Raidsrv02Part4"		# Running as tannercorp\backup	v1.38.6
  Client = raidsrv02-fd 		# Drives H and I 
  Type = Backup
  Schedule = "Backups"
  Pool = "Daily"
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 13
  FileSet = "Raidsrv02Part4 FileSet"
  # Enabled = no
}
FileSet {
  Name = "Raidsrv02Part4 FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      Exclude = yes
      signature = MD5
      compression=GZIP
    }
    File = h:/
    File = i:/
  }
}

Job {
  Name = "Tannerdc01"		# Running as Local System account	v1.38.6
  Client = tannerdc01-fd
  JobDefs = "BackupJob"
  FileSet = "Tannerdc01 FileSet"
}
FileSet {
  Name = "Tannerdc01 FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
  }
  Exclude {
    File = "c:/AutoUpdate"
    File = "c:/Program Files/McAfee/ePO/MSSQL7/Data"
    File = "c:/WINNT/NTDS"
    File = "c:/WINNT/ntfrs/jet/log/edb.log"
    File = "c:/WINNT/ntfrs/jet/ntfrs.jdb"
    File = "c:/WINNT/ntfrs/jet/temp"
    File = "c:/WINNT/system32/CertLog"
    File = "c:/WINNT/system32/config"
    File = "c:/WINNT/system32/dhcp/dhcp.mdb"
    File = "c:/WINNT/system32/dhcp/j50.log"
    File = "c:/WINNT/system32/dhcp/tmp.edb"
    File = "c:/WINNT/system32/LServer/edb.log"
    File = "c:/WINNT/system32/LServer/TLSLic.edb"
    File = "c:/WINNT/system32/LServer/tmp.edb"
    File = "c:/WINNT/system32/RemoteStorage/FsaDb"
  }
}

################################## Misc Jobs ###############################

#Job {
#  Name = "Raidsrv02Test"	# Running as tannercorp\backup	v1.38.4
#  Client = raidsrv02-fd 
#  JobDefs = "BackupJob"
#  FileSet = "Raidsrv02Test FileSet"
#  # Enabled = no
#}
#FileSet {
#  Name = "Raidsrv02Test FileSet"
#  Include {
#    Options {
#      signature = MD5
#    }   
#    File = e:/Sysadmin/dhatcher_files
#  }
#}

Client {
  Name = jmengxp-fd
  Address = jmengxp
  FDPort = 9102
  Catalog = MyCatalog
  Password = "7OPYzOADJUilcC0cEEhREpRnCRn0ieHDbvd+q5GEwOnY"          # password for FileDaemon
}
Job {
  Name = "Jmengxp"		
  Client = jmengxp-fd 
  FileSet = "Jmengxp FileSet"
  Type = Backup
  Storage = SDLT
  SpoolData = yes
  Messages = Standard
  Priority = 10
  Pool = "UserMachines"
}
FileSet {
  Name = "Jmengxp FileSet"
  Include {
    Options {
      WildFile = "[a-z]:/pagefile.sys"
      WildDir = "[a-z]:/RECYCLER"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat"
      WildFile = "c:/Documents and Settings/*/Local Settings/Application Data/Microsoft/Windows/UsrClass.dat.LOG"
      WildFile = "c:/Documents and Settings/*/NTUSER.DAT"
      WildFile = "c:/Documents and Settings/*/ntuser.dat.LOG"
      Exclude = yes
      signature = MD5
    }
    File = c:/
  }
  Exclude {
    File = "c:/Documents and Settings/All Users/Application Data/Microsoft/Network/Downloader"
    File = "c:/WINDOWS/system32/config"
    File = "c:/WINDOWS/Temp" 
  }
}






