* Fix for config.pl writing code to handle multi-line expressions.
[BackupPC.git] / conf / config.pl
1 #============================================================= -*-perl-*-
2 #
3 # Configuration file for BackupPC.
4 #
5 # DESCRIPTION
6 #
7 #   This is the main configuration file for BackupPC.
8 #
9 #   This file must be valid perl source, so make sure the punctuation,
10 #   quotes, and other syntax are valid.
11 #
12 #   This file is read by BackupPC at startup, when a HUP (-1) signal
13 #   is sent to BackupPC and also at each wakeup time whenever the
14 #   modification time of this file changes.
15 #
16 #   The configuration parameters are divided into four general groups.
17 #   The first group (general server configuration) provides general
18 #   configuration for BackupPC.  The next two groups describe what
19 #   to backup, when to do it, and how long to keep it.  The fourth
20 #   group are settings for the CGI http interface.
21 #
22 #   Configuration settings can also be specified on a per-PC basis.
23 #   Simply put the relevant settings in a config.pl file in the
24 #   PC's backup directory (ie: in __TOPDIR__/pc/hostName).
25 #   All configuration settings in the second, third and fourth
26 #   groups can be overridden by the per-PC config.pl file.
27 #
28 # AUTHOR
29 #   Craig Barratt  <cbarratt@users.sourceforge.net>
30 #
31 # COPYRIGHT
32 #   Copyright (C) 2001-2003  Craig Barratt
33 #
34 #   See http://backuppc.sourceforge.net.
35 #
36 #========================================================================
37
38 ###########################################################################
39 # General server configuration
40 ###########################################################################
41 #
42 # Host name on which the BackupPC server is running.
43 #
44 $Conf{ServerHost} = '';
45
46 #
47 # TCP port number on which the BackupPC server listens for and accepts
48 # connections.  Normally this should be disabled (set to -1).  The TCP
49 # port is only needed if apache runs on a different machine from BackupPC.
50 # In that case, set this to any spare port number over 1024 (eg: 2359).
51 # If you enable the TCP port, make sure you set $Conf{ServerMesgSecret}
52 # too!
53 #
54 $Conf{ServerPort} = -1;
55
56 #
57 # Shared secret to make the TCP port secure.  Set this to a hard to guess
58 # string if you enable the TCP port (ie: $Conf{ServerPort} > 0).
59 #
60 # To avoid possible attacks via the TCP socket interface, every client
61 # message is protected by an MD5 digest. The MD5 digest includes four
62 # items:
63 #   - a seed that is sent to the client when the connection opens
64 #   - a sequence number that increments for each message
65 #   - a shared secret that is stored in $Conf{ServerMesgSecret}
66 #   - the message itself.
67 #
68 # The message is sent in plain text preceded by the MD5 digest.  A
69 # snooper can see the plain-text seed sent by BackupPC and plain-text
70 # message from the client, but cannot construct a valid MD5 digest since
71 # the secret $Conf{ServerMesgSecret} is unknown.  A replay attack is
72 # not possible since the seed changes on a per-connection and
73 # per-message basis.
74 #
75 $Conf{ServerMesgSecret} = '';
76
77 #
78 # PATH setting for BackupPC.  An explicit value is necessary
79 # for taint mode.  Value shouldn't matter too much since
80 # all execs use explicit paths.  However, taint mode in perl
81 # will complain if this directory is world writable.
82 #
83 $Conf{MyPath} = '/bin';
84
85 #
86 # Permission mask for directories and files created by BackupPC.
87 # Default value prevents any access from group other, and prevents
88 # group write.
89 #
90 $Conf{UmaskMode} = 027;
91
92 #
93 # Times at which we wake up, check all the PCs, and schedule necessary
94 # backups.  Times are measured in hours since midnight.  Can be
95 # fractional if necessary (eg: 4.25 means 4:15am).
96 #
97 # If the hosts you are backing up are always connected to the network
98 # you might have only one or two wakeups each night.  This will keep
99 # the backup activity after hours.  On the other hand, if you are backing
100 # up laptops that are only intermittently connected to the network you
101 # will want to have frequent wakeups (eg: hourly) to maximize the chance
102 # that each laptop is backed up.
103 #
104 # Examples:
105 #     $Conf{WakeupSchedule} = [22.5];         # once per day at 10:30 pm.
106 #     $Conf{WakeupSchedule} = [1..23];        # every hour except midnight
107 #     $Conf{WakeupSchedule} = [2,4,6,8,10,12,14,16,18,20,22];  # every 2 hours
108 #
109 # The default value is every hour except midnight.
110 #
111 # The first entry of $Conf{WakeupSchedule} is when BackupPC_nightly
112 # is run.  No other backups can run while BackupPC_nightly is
113 # running.  You might want to re-arrange the entries in
114 # $Conf{WakeupSchedule} (they don't have to be ascending) so that
115 # the first entry is when you want BackupPC_nightly to run
116 # (eg: when you don't expect a lot of regular backups to run).
117 #
118 $Conf{WakeupSchedule} = [1..23];
119
120 #
121 # Maximum number of simultaneous backups to run.  If there
122 # are no user backup requests then this is the maximum number
123 # of simultaneous backups.
124 #
125 $Conf{MaxBackups} = 4;
126
127 #
128 # Additional number of simultaneous backups that users can run.
129 # As many as $Conf{MaxBackups} + $Conf{MaxUserBackups} requests can
130 # run at the same time.
131 #
132 $Conf{MaxUserBackups} = 4;
133
134 #
135 # Maximum number of pending link commands. New backups will only be
136 # started if there are no more than $Conf{MaxPendingCmds} plus
137 # $Conf{MaxBackups} number of pending link commands, plus running jobs.
138 # This limit is to make sure BackupPC doesn't fall too far behind in
139 # running BackupPC_link commands.
140 #
141 $Conf{MaxPendingCmds} = 10;
142
143 #
144 # How many BackupPC_nightly processes to run in parallel.
145 #
146 # Each night, at the first wakeup listed in $Conf{WakeupSchedule},
147 # BackupPC_nightly is run.  Its job is to remove unneeded files
148 # in the pool, ie: files that only have one link.  To avoid race
149 # conditions, BackupPC_nightly runs only when there are no backups
150 # running, and no backups will start while it runs.
151 #
152 # So to reduce the elapsed time, you might want to increase this
153 # setting to run several BackupPC_nightly processes in parallel
154 # (eg: 4, or even 8).
155 #
156 $Conf{MaxBackupPCNightlyJobs} = 2;
157
158 #
159 # How many days (runs) it takes BackupPC_nightly to traverse the
160 # entire pool.  Normally this is 1, which means every night it runs,
161 # it does traverse the entire pool removing unused pool files.
162 #
163 # Other valid values are 2, 4, 8, 16.  This causes BackupPC_nightly to
164 # traverse 1/2, 1/4, 1/8 or 1/16th of the pool each night, meaning it
165 # takes 2, 4, 8 or 16 days to completely traverse the pool.  The
166 # advantage is that each night the running time of BackupPC_nightly
167 # is reduced roughly in proportion, since the total job is split
168 # over multiple days.  The disadvantage is that unused pool files
169 # take longer to get deleted, which will slightly increase disk
170 # usage.
171 #
172 # Note that even when $Conf{BackupPCNightlyPeriod} > 1, BackupPC_nightly
173 # still runs every night.  It just does less work each time it runs.
174 #
175 # Examples:
176 #
177 #    $Conf{BackupPCNightlyPeriod} = 1;   # entire pool is checked every night
178 #
179 #    $Conf{BackupPCNightlyPeriod} = 2;   # two days to complete pool check
180 #                                        # (different half each night)
181 #
182 #    $Conf{BackupPCNightlyPeriod} = 4;   # four days to complete pool check
183 #                                        # (different quarter each night)
184 #
185 $Conf{BackupPCNightlyPeriod} = 1;
186
187 #
188 # Maximum number of log files we keep around in log directory.
189 # These files are aged nightly.  A setting of 14 means the log
190 # directory will contain about 2 weeks of old log files, in
191 # particular at most the files LOG, LOG.0, LOG.1, ... LOG.13
192 # (except today's LOG, these files will have a .z extension if
193 # compression is on).
194 #
195 # If you decrease this number after BackupPC has been running for a
196 # while you will have to manually remove the older log files.
197 #
198 $Conf{MaxOldLogFiles} = 14;
199
200 #
201 # Full path to the df command.  Security caution: normal users
202 # should not allowed to write to this file or directory.
203 #
204 $Conf{DfPath} = '/bin/df';
205
206 #
207 # Command to run df.  The following variables are substituted at run-time:
208 #
209 #   $dfPath      path to df ($Conf{DfPath})
210 #   $topDir      top-level BackupPC data directory
211 #
212 $Conf{DfCmd} = '$dfPath $topDir';
213
214 #
215 # Full path to various commands for archiving
216 #
217
218 $Conf{SplitPath} = '/usr/bin/split';
219 $Conf{ParPath}   = '/usr/bin/par2';
220 $Conf{CatPath}   = '/bin/cat';
221 $Conf{GzipPath}  = '/bin/gzip';
222 $Conf{Bzip2Path} = '/usr/bin/bzip2';
223
224 #
225 # Maximum threshold for disk utilization on the __TOPDIR__ filesystem.
226 # If the output from $Conf{DfPath} reports a percentage larger than
227 # this number then no new regularly scheduled backups will be run.
228 # However, user requested backups (which are usually incremental and
229 # tend to be small) are still performed, independent of disk usage.
230 # Also, currently running backups will not be terminated when the disk
231 # usage exceeds this number.
232 #
233 $Conf{DfMaxUsagePct} = 95;
234
235 #
236 # How long BackupPC_trashClean sleeps in seconds between each check
237 # of the trash directory.  Once every 5 minutes should be reasonable.
238 #
239 $Conf{TrashCleanSleepSec} = 300;
240
241 #
242 # List of DHCP address ranges we search looking for PCs to backup.
243 # This is an array of hashes for each class C address range.
244 # This is only needed if hosts in the conf/hosts file have the
245 # dhcp flag set.
246 #
247 # Examples:
248 #    # to specify 192.10.10.20 to 192.10.10.250 as the DHCP address pool
249 #    $Conf{DHCPAddressRanges} = [
250 #        {
251 #            ipAddrBase => '192.10.10',
252 #            first => 20,
253 #            last  => 250,
254 #        },
255 #    ];
256 #    # to specify two pools (192.10.10.20-250 and 192.10.11.10-50)
257 #    $Conf{DHCPAddressRanges} = [
258 #        {
259 #            ipAddrBase => '192.10.10',
260 #            first => 20,
261 #            last  => 250,
262 #        },
263 #        {
264 #            ipAddrBase => '192.10.11',
265 #            first => 10,
266 #            last  => 50,
267 #        },
268 #    ];
269 #
270 $Conf{DHCPAddressRanges} = [];
271
272 #
273 # The BackupPC user.
274 #
275 $Conf{BackupPCUser} = '';
276
277 #
278 # Important installation directories:
279 #
280 #   TopDir     - where all the backup data is stored
281 #   ConfDir    - where the main config and hosts files resides
282 #   LogDir     - where log files and other transient information
283 #   InstallDir - where the bin, lib and doc installation dirs reside.
284 #                Note: you cannot change this value since all the
285 #                perl scripts include this path.  You must reinstall
286 #                with configure.pl to change InstallDir.
287 #   CgiDir     - Apache CGI directory for BackupPC_Admin
288 #
289 $Conf{TopDir}      = '';
290 $Conf{ConfDir}     = '';
291 $Conf{LogDir}      = '';
292 $Conf{InstallDir}  = '';
293 $Conf{CgiDir}      = '';
294
295 #
296 # Whether BackupPC and the CGI script BackupPC_Admin verify that they
297 # are really running as user $Conf{BackupPCUser}.  If this flag is set
298 # and the effective user id (euid) differs from $Conf{BackupPCUser}
299 # then both scripts exit with an error.  This catches cases where
300 # BackupPC might be accidently started as root or the wrong user,
301 # or if the CGI script is not installed correctly.
302 #
303 $Conf{BackupPCUserVerify} = 1;
304
305 #
306 # Maximum number of hardlinks supported by the $TopDir file system
307 # that BackupPC uses.  Most linux or unix file systems should support
308 # at least 32000 hardlinks per file, or 64000 in other cases.  If a pool
309 # file already has this number of hardlinks, a new pool file is created
310 # so that new hardlinks can be accommodated.  This limit will only
311 # be hit if an identical file appears at least this number of times
312 # across all the backups.
313 #
314 $Conf{HardLinkMax} = 31999;
315
316 #
317 # Advanced option for asking BackupPC to load additional perl modules.
318 # Can be a list (array ref) of module names to load at startup.
319 #
320 $Conf{PerlModuleLoad}     = undef;
321
322 #
323 # Path to init.d script and command to use that script to start the
324 # server from the CGI interface.  The following variables are substituted
325 # at run-time:
326 #
327 #   $sshPath           path to ssh ($Conf{SshPath})
328 #   $serverHost        same as $Conf{ServerHost}
329 #   $serverInitdPath   path to init.d script ($Conf{ServerInitdPath})
330 #
331 # Example:
332 #
333 # $Conf{ServerInitdPath}     = '/etc/init.d/backuppc';
334 # $Conf{ServerInitdStartCmd} = '$sshPath -q -x -l root $serverHost'
335 #                            . ' $serverInitdPath start'
336 #                            . ' < /dev/null >& /dev/null';
337 #
338 $Conf{ServerInitdPath} = '';
339 $Conf{ServerInitdStartCmd} = '';
340
341
342 ###########################################################################
343 # What to backup and when to do it
344 # (can be overridden in the per-PC config.pl)
345 ###########################################################################
346 #
347 # Minimum period in days between full backups. A full dump will only be
348 # done if at least this much time has elapsed since the last full dump,
349 # and at least $Conf{IncrPeriod} days has elapsed since the last
350 # successful dump.
351 #
352 # Typically this is set slightly less than an integer number of days. The
353 # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
354 # will make the actual backup interval a bit longer.
355 #
356 $Conf{FullPeriod} = 6.97;
357
358 #
359 # Minimum period in days between incremental backups (a user requested
360 # incremental backup will be done anytime on demand).
361 #
362 # Typically this is set slightly less than an integer number of days. The
363 # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
364 # will make the actual backup interval a bit longer.
365 #
366 $Conf{IncrPeriod} = 0.97;
367
368 #
369 # Number of full backups to keep.  Must be >= 1.
370 #
371 # In the steady state, each time a full backup completes successfully
372 # the oldest one is removed.  If this number is decreased, the
373 # extra old backups will be removed.
374 #
375 # If filling of incremental dumps is off the oldest backup always
376 # has to be a full (ie: filled) dump.  This might mean one or two
377 # extra full dumps are kept until the oldest incremental backups expire.
378 #
379 # Exponential backup expiry is also supported.  This allows you to specify:
380 #
381 #   - num fulls to keep at intervals of 1 * $Conf{FullPeriod}, followed by
382 #   - num fulls to keep at intervals of 2 * $Conf{FullPeriod},
383 #   - num fulls to keep at intervals of 4 * $Conf{FullPeriod},
384 #   - num fulls to keep at intervals of 8 * $Conf{FullPeriod},
385 #   - num fulls to keep at intervals of 16 * $Conf{FullPeriod},
386 #
387 # and so on.  This works by deleting every other full as each expiry
388 # boundary is crossed.
389 #
390 # Exponential expiry is specified using an array for $Conf{FullKeepCnt}:
391 #
392 #   $Conf{FullKeepCnt} = [4, 2, 3];
393 #
394 # Entry #n specifies how many fulls to keep at an interval of
395 # 2^n * $Conf{FullPeriod} (ie: 1, 2, 4, 8, 16, 32, ...).
396 #
397 # The example above specifies keeping 4 of the most recent full backups
398 # (1 week interval) two full backups at 2 week intervals, and 3 full
399 # backups at 4 week intervals, eg:
400 #
401 #    full 0 19 weeks old   \
402 #    full 1 15 weeks old    >---  3 backups at 4 * $Conf{FullPeriod}
403 #    full 2 11 weeks old   / 
404 #    full 3  7 weeks old   \____  2 backups at 2 * $Conf{FullPeriod}
405 #    full 4  5 weeks old   /
406 #    full 5  3 weeks old   \
407 #    full 6  2 weeks old    \___  4 backups at 1 * $Conf{FullPeriod}
408 #    full 7  1 week old     /
409 #    full 8  current       /
410 #
411 # On a given week the spacing might be less than shown as each backup
412 # ages through each expiry period.  For example, one week later, a
413 # new full is completed and the oldest is deleted, giving:
414 #
415 #    full 0 16 weeks old   \
416 #    full 1 12 weeks old    >---  3 backups at 4 * $Conf{FullPeriod}
417 #    full 2  8 weeks old   / 
418 #    full 3  6 weeks old   \____  2 backups at 2 * $Conf{FullPeriod}
419 #    full 4  4 weeks old   /
420 #    full 5  3 weeks old   \
421 #    full 6  2 weeks old    \___  4 backups at 1 * $Conf{FullPeriod}
422 #    full 7  1 week old     /
423 #    full 8  current       /
424 #
425 # You can specify 0 as a count (except in the first entry), and the
426 # array can be as long as you wish.  For example:
427 #
428 #   $Conf{FullKeepCnt} = [4, 0, 4, 0, 0, 2];
429 #
430 # This will keep 10 full dumps, 4 most recent at 1 * $Conf{FullPeriod},
431 # followed by 4 at an interval of 4 * $Conf{FullPeriod} (approx 1 month
432 # apart), and then 2 at an interval of 32 * $Conf{FullPeriod} (approx
433 # 7-8 months apart).
434 #
435 # Example: these two settings are equivalent and both keep just
436 # the four most recent full dumps:
437 #
438 #    $Conf{FullKeepCnt} = 4;
439 #    $Conf{FullKeepCnt} = [4];
440 #
441 $Conf{FullKeepCnt} = 1;
442
443 #
444 # Very old full backups are removed after $Conf{FullAgeMax} days.  However,
445 # we keep at least $Conf{FullKeepCntMin} full backups no matter how old
446 # they are.
447 #
448 # Note that $Conf{FullAgeMax} will be increased to $Conf{FullKeepCnt}
449 # times $Conf{FullPeriod} if $Conf{FullKeepCnt} specifies enough
450 # full backups to exceed $Conf{FullAgeMax}.
451 #
452 $Conf{FullKeepCntMin} = 1;
453 $Conf{FullAgeMax}     = 90;
454
455 #
456 # Number of incremental backups to keep.  Must be >= 1.
457 #
458 # In the steady state, each time an incr backup completes successfully
459 # the oldest one is removed.  If this number is decreased, the
460 # extra old backups will be removed.
461 #
462 $Conf{IncrKeepCnt} = 6;
463
464 #
465 # Very old incremental backups are removed after $Conf{IncrAgeMax} days.
466 # However, we keep at least $Conf{IncrKeepCntMin} incremental backups no
467 # matter how old they are.
468 #
469 $Conf{IncrKeepCntMin} = 1;
470 $Conf{IncrAgeMax}     = 30;
471
472 #
473 # Level of each incremental.  "Level" follows the terminology
474 # of dump(1).  A full backup has level 0.  A new incremental
475 # of level N will backup all files that have changed since
476 # the most recent backup of a lower level.
477 #
478 # The entries of $Conf{IncrLevels} apply in order to each
479 # incremental after each full backup.  It wraps around until
480 # the next full backup.  For example, these two settings
481 # have the same effect:
482 #
483 #       $Conf{IncrLevels} = [1, 2, 3];
484 #       $Conf{IncrLevels} = [1, 2, 3, 1, 2, 3];
485 #
486 # This means the 1st and 4th incrementals (level 1) go all
487 # the way back to the full.  The 2nd and 3rd (and 5th and
488 # 6th) backups just go back to the immediate preceeding
489 # incremental.
490 #
491 # Specifying a sequence of multi-level incrementals will
492 # usually mean more than $Conf{IncrKeepCnt} incrementals will
493 # need to be kept, since lower level incrementals are needed
494 # to merge a complete view of a backup.  For example, with
495 #
496 #       $Conf{FullPeriod}  = 7;
497 #       $Conf{IncrPeriod}  = 1;
498 #       $Conf{IncrKeepCnt} = 6;
499 #       $Conf{IncrLevels}  = [1, 2, 3, 4, 5, 6];
500 #
501 # there will be up to 11 incrementals in this case: 
502 #
503 #       backup #0  (full, level 0, oldest)
504 #       backup #1  (incr, level 1)
505 #       backup #2  (incr, level 2)
506 #       backup #3  (incr, level 3)
507 #       backup #4  (incr, level 4)
508 #       backup #5  (incr, level 5)
509 #       backup #6  (incr, level 6)
510 #       backup #7  (full, level 0)
511 #       backup #8  (incr, level 1)
512 #       backup #9  (incr, level 2)
513 #       backup #10 (incr, level 3)
514 #       backup #11 (incr, level 4)
515 #       backup #12 (incr, level 5, newest)
516 #
517 # Backup #1 (the oldest level 1 incremental) can't be deleted
518 # since backups 2..6 depend on it.  Those 6 incrementals can't
519 # all be deleted since that would only leave 5 (#8..12).
520 # When the next incremental happens (level 6), the complete
521 # set of 6 older incrementals (#1..6) will be deleted, since
522 # that maintains the required number ($Conf{IncrKeepCnt})
523 # of incrementals.  This situation is reduced if you set
524 # shorter chains of multi-level incrementals, eg:
525 #
526 #       $Conf{IncrLevels}  = [1, 2, 3];
527 #
528 # would only have up to 2 extra incremenals before all 3
529 # are deleted.
530 #
531 # BackupPC as usual merges the full and the sequence
532 # of incrementals together so each incremental can be
533 # browsed and restored as though it is a complete backup.
534 # If you specify a long chain of incrementals then more
535 # backups need to be merged when browsing, restoring,
536 # or getting the starting point for rsync backups.
537 # In the example above (levels 1..6), browing backup
538 # #6 requires 7 different backups (#0..6) to be merged.
539 #
540 # Because of this merging and the additional incrementals
541 # that need to be kept, it is recommended that some
542 # level 1 incrementals be included in $Conf{IncrLevels}.
543 #
544 # Prior to version 3.0 incrementals were always level 1,
545 # meaning each incremental backed up all the files that
546 # changed since the last full.
547 #
548 $Conf{IncrLevels} = [1];
549
550 #
551 # Disable all full and incremental backups.  These settings are
552 # useful for a client that is no longer being backed up
553 # (eg: a retired machine), but you wish to keep the last
554 # backups available for browsing or restoring to other machines.
555 #
556 # There are three values for $Conf{BackupsDisable}:
557 #
558 #   0    Backups are enabled.
559 #
560 #   1    Don't do any regular backups on this client.  Manually
561 #        requested backups (via the CGI interface) will still occur.
562 #
563 #   2    Don't do any backups on this client.  Manually requested
564 #        backups (via the CGI interface) will be ignored.
565 #
566 # In versions prior to 3.0 Backups were disabled by setting
567 # $Conf{FullPeriod} to -1 or -2.
568 #
569 $Conf{BackupsDisable} = 0;
570
571 #
572 # A failed full backup is saved as a partial backup.  The rsync
573 # XferMethod can take advantage of the partial full when the next
574 # backup is run. This parameter sets the age of the partial full
575 # in days: if the partial backup is older than this number of
576 # days, then rsync will ignore (not use) the partial full when
577 # the next backup is run.  If you set this to a negative value
578 # then no partials will be saved.  If you set this to 0, partials
579 # will be saved, but will not be used by the next backup.
580 #
581 # The default setting of 3 days means that a partial older than
582 # 3 days is ignored when the next full backup is done.
583 #
584 $Conf{PartialAgeMax} = 3;
585
586 #
587 # Whether incremental backups are filled.  "Filling" means that the
588 # most recent full (or filled) dump is merged into the new incremental
589 # dump using hardlinks.  This makes an incremental dump look like a
590 # full dump.  Prior to v1.03 all incremental backups were filled.
591 # In v1.4.0 and later the default is off.
592 #
593 # BackupPC, and the cgi interface in particular, do the right thing on
594 # un-filled incremental backups.  It will correctly display the merged
595 # incremental backup with the most recent filled backup, giving the
596 # un-filled incremental backups a filled appearance.  That means it
597 # invisible to the user whether incremental dumps are filled or not.
598 #
599 # Filling backups takes a little extra disk space, and it does cost
600 # some extra disk activity for filling, and later removal.  Filling
601 # is no longer useful, since file mangling and compression doesn't
602 # make a filled backup very useful. It's likely the filling option
603 # will be removed from future versions: filling will be delegated to
604 # the display and extraction of backup data.
605 #
606 # If filling is off, BackupPC makes sure that the oldest backup is
607 # a full, otherwise the following incremental backups will be
608 # incomplete.  This might mean an extra full backup has to be
609 # kept until the following incremental backups expire.
610 #
611 # The default is off.  You can turn this on or off at any
612 # time without affecting existing backups.
613 #
614 $Conf{IncrFill} = 0;
615
616 #
617 # Number of restore logs to keep.  BackupPC remembers information about
618 # each restore request.  This number per client will be kept around before
619 # the oldest ones are pruned.
620 #
621 # Note: files/dirs delivered via Zip or Tar downloads don't count as
622 # restores.  Only the first restore option (where the files and dirs
623 # are written to the host) count as restores that are logged.
624 #
625 $Conf{RestoreInfoKeepCnt} = 10;
626
627 #
628 # Number of archive logs to keep.  BackupPC remembers information
629 # about each archive request.  This number per archive client will
630 # be kept around before the oldest ones are pruned.
631 #
632 $Conf{ArchiveInfoKeepCnt} = 10;
633
634 #
635 # List of directories or files to backup.  If this is defined, only these
636 # directories or files will be backed up.
637 #
638 # For Smb, only one of $Conf{BackupFilesExclude} and $Conf{BackupFilesOnly}
639 # can be specified per share. If both are set for a particular share, then
640 # $Conf{BackupFilesOnly} takes precedence and $Conf{BackupFilesExclude}
641 # is ignored.
642 #
643 # This can be set to a string, an array of strings, or, in the case
644 # of multiple shares, a hash of strings or arrays.  A hash is used
645 # to give a list of directories or files to backup for each share
646 # (the share name is the key).  If this is set to just a string or
647 # array, and $Conf{SmbShareName} contains multiple share names, then
648 # the setting is assumed to apply all shares.
649 #
650 # If a hash is used, a special key "*" means it applies to all
651 # shares.
652 #
653 # Examples:
654 #    $Conf{BackupFilesOnly} = '/myFiles';
655 #    $Conf{BackupFilesOnly} = ['/myFiles'];     # same as first example
656 #    $Conf{BackupFilesOnly} = ['/myFiles', '/important'];
657 #    $Conf{BackupFilesOnly} = {
658 #       'c' => ['/myFiles', '/important'],      # these are for 'c' share
659 #       'd' => ['/moreFiles', '/archive'],      # these are for 'd' share
660 #    };
661 #    $Conf{BackupFilesOnly} = {
662 #       'c' => ['/myFiles', '/important'],      # these are for 'c' share
663 #       '*' => ['/myFiles', '/important'],      # these are other shares
664 #    };
665 #
666 $Conf{BackupFilesOnly} = undef;
667
668 #
669 # List of directories or files to exclude from the backup.  For Smb,
670 # only one of $Conf{BackupFilesExclude} and $Conf{BackupFilesOnly}
671 # can be specified per share.  If both are set for a particular share,
672 # then $Conf{BackupFilesOnly} takes precedence and
673 # $Conf{BackupFilesExclude} is ignored.
674 #
675 # This can be set to a string, an array of strings, or, in the case
676 # of multiple shares, a hash of strings or arrays.  A hash is used
677 # to give a list of directories or files to exclude for each share
678 # (the share name is the key).  If this is set to just a string or
679 # array, and $Conf{SmbShareName} contains multiple share names, then
680 # the setting is assumed to apply to all shares.
681 #
682 # The exact behavior is determined by the underlying transport program,
683 # smbclient or tar.  For smbclient the exlclude file list is passed into
684 # the X option.  Simple shell wild-cards using "*" or "?" are allowed.
685 #
686 # For tar, if the exclude file contains a "/" it is assumed to be anchored
687 # at the start of the string.  Since all the tar paths start with "./",
688 # BackupPC prepends a "." if the exclude file starts with a "/".  Note
689 # that GNU tar version >= 1.13.7 is required for the exclude option to
690 # work correctly.  For linux or unix machines you should add
691 # "/proc" to $Conf{BackupFilesExclude} unless you have specified
692 # --one-file-system in $Conf{TarClientCmd} or --one-file-system in
693 # $Conf{RsyncArgs}.  Also, for tar, do not use a trailing "/" in
694 # the directory name: a trailing "/" causes the name to not match
695 # and the directory will not be excluded.
696 #
697 # Users report that for smbclient you should specify a directory
698 # followed by "/*", eg: "/proc/*", instead of just "/proc".
699 #
700 # If a hash is used, a special key "*" means it applies to all
701 # shares.
702 #
703 # Examples:
704 #    $Conf{BackupFilesExclude} = '/temp';
705 #    $Conf{BackupFilesExclude} = ['/temp'];     # same as first example
706 #    $Conf{BackupFilesExclude} = ['/temp', '/winnt/tmp'];
707 #    $Conf{BackupFilesExclude} = {
708 #       'c' => ['/temp', '/winnt/tmp'],         # these are for 'c' share
709 #       'd' => ['/junk', '/dont_back_this_up'], # these are for 'd' share
710 #    };
711 #    $Conf{BackupFilesExclude} = {
712 #       'c' => ['/temp', '/winnt/tmp'],         # these are for 'c' share
713 #       '*' => ['/junk', '/dont_back_this_up'], # these are for other shares
714 #    };
715 #
716 $Conf{BackupFilesExclude} = undef;
717
718 #
719 # PCs that are always or often on the network can be backed up after
720 # hours, to reduce PC, network and server load during working hours. For
721 # each PC a count of consecutive good pings is maintained. Once a PC has
722 # at least $Conf{BlackoutGoodCnt} consecutive good pings it is subject
723 # to "blackout" and not backed up during hours and days specified by
724 # $Conf{BlackoutPeriods}.
725 #
726 # To allow for periodic rebooting of a PC or other brief periods when a
727 # PC is not on the network, a number of consecutive bad pings is allowed
728 # before the good ping count is reset. This parameter is
729 # $Conf{BlackoutBadPingLimit}.
730 #
731 # Note that bad and good pings don't occur with the same interval. If a
732 # machine is always on the network, it will only be pinged roughly once
733 # every $Conf{IncrPeriod} (eg: once per day). So a setting for
734 # $Conf{BlackoutGoodCnt} of 7 means it will take around 7 days for a
735 # machine to be subject to blackout. On the other hand, if a ping is
736 # failed, it will be retried roughly every time BackupPC wakes up, eg,
737 # every one or two hours. So a setting for $Conf{BlackoutBadPingLimit} of
738 # 3 means that the PC will lose its blackout status after 3-6 hours of
739 # unavailability.
740 #
741 # To disable the blackout feature set $Conf{BlackoutGoodCnt} to a negative
742 # value.  A value of 0 will make all machines subject to blackout.  But
743 # if you don't want to do any backups during the day it would be easier
744 # to just set $Conf{WakeupSchedule} to a restricted schedule.
745 #
746 $Conf{BlackoutBadPingLimit} = 3;
747 $Conf{BlackoutGoodCnt}      = 7;
748
749 #
750 # One or more blackout periods can be specified.  If a client is
751 # subject to blackout then no regular (non-manual) backups will
752 # be started during any of these periods.  hourBegin and hourEnd
753 # specify hours fro midnight and weekDays is a list of days of
754 # the week where 0 is Sunday, 1 is Monday etc.
755 #
756 # For example:
757 #
758 #    $Conf{BlackoutPeriods} = [
759 #       {
760 #           hourBegin =>  7.0,
761 #           hourEnd   => 19.5,
762 #           weekDays  => [1, 2, 3, 4, 5],
763 #       },
764 #    ];
765 #
766 # specifies one blackout period from 7:00am to 7:30pm local time
767 # on Mon-Fri.
768 #
769 # The blackout period can also span midnight by setting
770 # hourBegin > hourEnd, eg:
771 #
772 #    $Conf{BlackoutPeriods} = [
773 #       {
774 #           hourBegin =>  7.0,
775 #           hourEnd   => 19.5,
776 #           weekDays  => [1, 2, 3, 4, 5],
777 #       },
778 #       {
779 #           hourBegin => 23,
780 #           hourEnd   =>  5,
781 #           weekDays  => [5, 6],
782 #       },
783 #    ];
784 #
785 # This specifies one blackout period from 7:00am to 7:30pm local time
786 # on Mon-Fri, and a second period from 11pm to 5am on Friday and
787 # Saturday night.
788 #
789 $Conf{BlackoutPeriods} = [
790     {
791         hourBegin =>  7.0,
792         hourEnd   => 19.5,
793         weekDays  => [1, 2, 3, 4, 5],
794     },
795 ];
796
797 #
798 # A backup of a share that has zero files is considered fatal. This is
799 # used to catch miscellaneous Xfer errors that result in no files being
800 # backed up.  If you have shares that might be empty (and therefore an
801 # empty backup is valid) you should set this flag to 0.
802 #
803 $Conf{BackupZeroFilesIsFatal} = 1;
804
805 ###########################################################################
806 # How to backup a client
807 # (can be overridden in the per-PC config.pl)
808 ###########################################################################
809 #
810 # What transport method to use to backup each host.  If you have
811 # a mixed set of WinXX and linux/unix hosts you will need to override
812 # this in the per-PC config.pl.
813 #
814 # The valid values are:
815 #
816 #   - 'smb':     backup and restore via smbclient and the SMB protocol.
817 #                Easiest choice for WinXX.
818 #
819 #   - 'rsync':   backup and restore via rsync (via rsh or ssh).
820 #                Best choice for linux/unix.  Good choice also for WinXX.
821 #
822 #   - 'rsyncd':  backup and restore via rsync daemon on the client.
823 #                Best choice for linux/unix if you have rsyncd running on
824 #                the client.  Good choice also for WinXX.
825 #
826 #   - 'tar':    backup and restore via tar, tar over ssh, rsh or nfs.
827 #               Good choice for linux/unix.
828 #
829 #   - 'archive': host is a special archive host.  Backups are not done.
830 #                An archive host is used to archive other host's backups
831 #                to permanent media, such as tape, CDR or DVD.
832 #               
833 #
834 $Conf{XferMethod} = 'smb';
835
836 #
837 # Level of verbosity in Xfer log files.  0 means be quiet, 1 will give
838 # will give one line per file, 2 will also show skipped files on
839 # incrementals, higher values give more output.
840 #
841 $Conf{XferLogLevel} = 1;
842
843 #
844 # Filename charset encoding on the client.  BackupPC uses utf8
845 # on the server for filename encoding.  If this is empty, then
846 # utf8 is assumed and client filenames will not be modified.
847 # If set to a different encoding then filenames will converted
848 # to/from utf8 automatically during backup and restore.
849 #
850 # If the file names displayed in the browser (eg: accents or special
851 # characters) don't look right then it is likely you haven't set
852 # $Conf{ClientCharset} correctly.
853 #
854 # If you are using smbclient on a WinXX machine, smbclient will convert
855 # to the "unix charset" setting in smb.conf.  The default is utf8,
856 # in which case leave $Conf{ClientCharset} empty since smbclient does
857 # the right conversion.
858 #
859 # If you are using rsync on a WinXX machine then it does no conversion.
860 # A typical WinXX encoding for latin1/western europe is 'cp1252',
861 # so in this case set $Conf{ClientCharset} to 'cp1252'.
862 #
863 # On a linux or unix client, run "locale charmap" to see the client's
864 # charset.  Set $Conf{ClientCharset} to this value.  A typical value
865 # for english/US is 'ISO-8859-1'.
866 #
867 # Do "perldoc Encode::Supported" to see the list of possible charset
868 # values.  The FAQ at http://www.cl.cam.ac.uk/~mgk25/unicode.html
869 # is excellent, and http://czyborra.com/charsets/iso8859.html
870 # provides more information on the iso-8859 charsets.
871 #
872 $Conf{ClientCharset} = '';
873
874 #
875 # Name of the host share that is backed up when using SMB.  This can be a
876 # string or an array of strings if there are multiple shares per host.
877 # Examples:
878 #
879 #   $Conf{SmbShareName} = 'c';          # backup 'c' share
880 #   $Conf{SmbShareName} = ['c', 'd'];   # backup 'c' and 'd' shares
881 #
882 # This setting only matters if $Conf{XferMethod} = 'smb'.
883 #
884 $Conf{SmbShareName} = 'C$';
885
886 #
887 # Smbclient share user name.  This is passed to smbclient's -U argument.
888 #
889 # This setting only matters if $Conf{XferMethod} = 'smb'.
890 #
891 $Conf{SmbShareUserName} = '';
892
893 #
894 # Smbclient share password.  This is passed to smbclient via its PASSWD
895 # environment variable.  There are several ways you can tell BackupPC
896 # the smb share password.  In each case you should be very careful about
897 # security.  If you put the password here, make sure that this file is
898 # not readable by regular users!  See the "Setting up config.pl" section
899 # in the documentation for more information.
900 #
901 # This setting only matters if $Conf{XferMethod} = 'smb'.
902 #
903 $Conf{SmbSharePasswd} = '';
904
905 #
906 # Full path for smbclient. Security caution: normal users should not
907 # allowed to write to this file or directory.
908 #
909 # smbclient is from the Samba distribution. smbclient is used to
910 # actually extract the incremental or full dump of the share filesystem
911 # from the PC.
912 #
913 # This setting only matters if $Conf{XferMethod} = 'smb'.
914 #
915 $Conf{SmbClientPath} = '/usr/bin/smbclient';
916
917 #
918 # Command to run smbclient for a full dump.
919 # This setting only matters if $Conf{XferMethod} = 'smb'.
920 #
921 # The following variables are substituted at run-time:
922 #
923 #    $smbClientPath   same as $Conf{SmbClientPath}
924 #    $host            host to backup/restore
925 #    $hostIP          host IP address
926 #    $shareName       share name
927 #    $userName        user name
928 #    $fileList        list of files to backup (based on exclude/include)
929 #    $I_option        optional -I option to smbclient
930 #    $X_option        exclude option (if $fileList is an exclude list)
931 #    $timeStampFile   start time for incremental dump
932 #
933 $Conf{SmbClientFullCmd} = '$smbClientPath \\\\$host\\$shareName'
934             . ' $I_option -U $userName -E -N -d 1'
935             . ' -c tarmode\\ full -Tc$X_option - $fileList';
936
937 #
938 # Command to run smbclient for an incremental dump.
939 # This setting only matters if $Conf{XferMethod} = 'smb'.
940 #
941 # Same variable substitutions are applied as $Conf{SmbClientFullCmd}.
942 #
943 $Conf{SmbClientIncrCmd} = '$smbClientPath \\\\$host\\$shareName'
944             . ' $I_option -U $userName -E -N -d 1'
945             . ' -c tarmode\\ full -TcN$X_option $timeStampFile - $fileList';
946
947 #
948 # Command to run smbclient for a restore.
949 # This setting only matters if $Conf{XferMethod} = 'smb'.
950 #
951 # Same variable substitutions are applied as $Conf{SmbClientFullCmd}.
952 #
953 # If your smb share is read-only then direct restores will fail.
954 # You should set $Conf{SmbClientRestoreCmd} to undef and the
955 # corresponding CGI restore option will be removed.
956 #
957 $Conf{SmbClientRestoreCmd} = '$smbClientPath \\\\$host\\$shareName'
958             . ' $I_option -U $userName -E -N -d 1'
959             . ' -c tarmode\\ full -Tx -';
960
961 #
962 # Which host directories to backup when using tar transport.  This can be a
963 # string or an array of strings if there are multiple directories to
964 # backup per host.  Examples:
965 #
966 #   $Conf{TarShareName} = '/';                  # backup everything
967 #   $Conf{TarShareName} = '/home';              # only backup /home
968 #   $Conf{TarShareName} = ['/home', '/src'];    # backup /home and /src
969 #
970 # The fact this parameter is called 'TarShareName' is for historical
971 # consistency with the Smb transport options.  You can use any valid
972 # directory on the client: there is no need for it to correspond to
973 # any Smb share or device mount point.
974 #
975 # Note also that you can also use $Conf{BackupFilesOnly} to specify
976 # a specific list of directories to backup.  It's more efficient to
977 # use this option instead of $Conf{TarShareName} since a new tar is
978 # run for each entry in $Conf{TarShareName}.
979 #
980 # On the other hand, if you add --one-file-system to $Conf{TarClientCmd}
981 # you can backup each file system separately, which makes restoring one
982 # bad file system easier.  In this case you would list all of the mount
983 # points here, since you can't get the same result with
984 # $Conf{BackupFilesOnly}:
985 #
986 #     $Conf{TarShareName} = ['/', '/var', '/data', '/boot'];
987 #
988 # This setting only matters if $Conf{XferMethod} = 'tar'.
989 #
990 $Conf{TarShareName} = '/';
991
992 #
993 # Full command to run tar on the client.  GNU tar is required.  You will
994 # need to fill in the correct paths for ssh2 on the local host (server)
995 # and GNU tar on the client.  Security caution: normal users should not
996 # allowed to write to these executable files or directories.
997 #
998 # See the documentation for more information about setting up ssh2 keys.
999 #
1000 # If you plan to use NFS then tar just runs locally and ssh2 is not needed.
1001 # For example, assuming the client filesystem is mounted below /mnt/hostName,
1002 # you could use something like:
1003 #
1004 #    $Conf{TarClientCmd} = '$tarPath -c -v -f - -C /mnt/$host/$shareName'
1005 #                        . ' --totals';
1006 #
1007 # In the case of NFS or rsh you need to make sure BackupPC's privileges
1008 # are sufficient to read all the files you want to backup.  Also, you
1009 # will probably want to add "/proc" to $Conf{BackupFilesExclude}.
1010 #
1011 # The following variables are substituted at run-time:
1012 #
1013 #   $host        host name
1014 #   $hostIP      host's IP address
1015 #   $incrDate    newer-than date for incremental backups
1016 #   $shareName   share name to backup (ie: top-level directory path)
1017 #   $fileList    specific files to backup or exclude
1018 #   $tarPath     same as $Conf{TarClientPath}
1019 #   $sshPath     same as $Conf{SshPath}
1020 #
1021 # If a variable is followed by a "+" it is shell escaped.  This is
1022 # necessary for the command part of ssh or rsh, since it ends up
1023 # getting passed through the shell.
1024 #
1025 # This setting only matters if $Conf{XferMethod} = 'tar'.
1026 #
1027 $Conf{TarClientCmd} = '$sshPath -q -x -n -l root $host'
1028                     . ' env LC_ALL=C $tarPath -c -v -f - -C $shareName+'
1029                     . ' --totals';
1030
1031 #
1032 # Extra tar arguments for full backups.  Several variables are substituted at
1033 # run-time.  See $Conf{TarClientCmd} for the list of variable substitutions.
1034 #
1035 # If you are running tar locally (ie: without rsh or ssh) then remove the
1036 # "+" so that the argument is no longer shell escaped.
1037 #
1038 # This setting only matters if $Conf{XferMethod} = 'tar'.
1039 #
1040 $Conf{TarFullArgs} = '$fileList+';
1041
1042 #
1043 # Extra tar arguments for incr backups.  Several variables are substituted at
1044 # run-time.  See $Conf{TarClientCmd} for the list of variable substitutions.
1045 #
1046 # Note that GNU tar has several methods for specifying incremental backups,
1047 # including:
1048 #
1049 #   --newer-mtime $incrDate+
1050 #          This causes a file to be included if the modification time is
1051 #          later than $incrDate (meaning its contents might have changed).
1052 #          But changes in the ownership or modes will not qualify the
1053 #          file to be included in an incremental.
1054 #
1055 #   --newer=$incrDate+
1056 #          This causes the file to be included if any attribute of the
1057 #          file is later than $incrDate, meaning either attributes or
1058 #          the modification time.  This is the default method.  Do
1059 #          not use --atime-preserve in $Conf{TarClientCmd} above,
1060 #          otherwise resetting the atime (access time) counts as an
1061 #          attribute change, meaning the file will always be included
1062 #          in each new incremental dump.
1063 #
1064 # If you are running tar locally (ie: without rsh or ssh) then remove the
1065 # "+" so that the argument is no longer shell escaped.
1066 #
1067 # This setting only matters if $Conf{XferMethod} = 'tar'.
1068 #
1069 $Conf{TarIncrArgs} = '--newer=$incrDate+ $fileList+';
1070
1071 #
1072 # Full command to run tar for restore on the client.  GNU tar is required.
1073 # This can be the same as $Conf{TarClientCmd}, with tar's -c replaced by -x
1074 # and ssh's -n removed.
1075 #
1076 # See $Conf{TarClientCmd} for full details.
1077 #
1078 # This setting only matters if $Conf{XferMethod} = "tar".
1079 #
1080 # If you want to disable direct restores using tar, you should set
1081 # $Conf{TarClientRestoreCmd} to undef and the corresponding CGI
1082 # restore option will be removed.
1083 #
1084 $Conf{TarClientRestoreCmd} = '$sshPath -q -x -l root $host'
1085                    . ' env LC_ALL=C $tarPath -x -p --numeric-owner --same-owner'
1086                    . ' -v -f - -C $shareName+';
1087
1088 #
1089 # Full path for tar on the client. Security caution: normal users should not
1090 # allowed to write to this file or directory.
1091 #
1092 # This setting only matters if $Conf{XferMethod} = 'tar'.
1093 #
1094 $Conf{TarClientPath} = '/bin/tar';
1095
1096 #
1097 # Path to rsync executable on the client
1098 #
1099 $Conf{RsyncClientPath} = '/bin/rsync';
1100
1101 #
1102 # Full command to run rsync on the client machine.  The following variables
1103 # are substituted at run-time:
1104 #
1105 #        $host           host name being backed up
1106 #        $hostIP         host's IP address
1107 #        $shareName      share name to backup (ie: top-level directory path)
1108 #        $rsyncPath      same as $Conf{RsyncClientPath}
1109 #        $sshPath        same as $Conf{SshPath}
1110 #        $argList        argument list, built from $Conf{RsyncArgs},
1111 #                        $shareName, $Conf{BackupFilesExclude} and
1112 #                        $Conf{BackupFilesOnly}
1113 #
1114 # This setting only matters if $Conf{XferMethod} = 'rsync'.
1115 #
1116 $Conf{RsyncClientCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';
1117
1118 #
1119 # Full command to run rsync for restore on the client.  The following
1120 # variables are substituted at run-time:
1121 #
1122 #        $host           host name being backed up
1123 #        $hostIP         host's IP address
1124 #        $shareName      share name to backup (ie: top-level directory path)
1125 #        $rsyncPath      same as $Conf{RsyncClientPath}
1126 #        $sshPath        same as $Conf{SshPath}
1127 #        $argList        argument list, built from $Conf{RsyncArgs},
1128 #                        $shareName, $Conf{BackupFilesExclude} and
1129 #                        $Conf{BackupFilesOnly}
1130 #
1131 # This setting only matters if $Conf{XferMethod} = 'rsync'.
1132 #
1133 $Conf{RsyncClientRestoreCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';
1134
1135 #
1136 # Share name to backup.  For $Conf{XferMethod} = "rsync" this should
1137 # be a file system path, eg '/' or '/home'.
1138 #
1139 # For $Conf{XferMethod} = "rsyncd" this should be the name of the module
1140 # to backup (ie: the name from /etc/rsynd.conf).
1141 #
1142 # This can also be a list of multiple file system paths or modules.
1143 # For example, by adding --one-file-system to $Conf{RsyncArgs} you
1144 # can backup each file system separately, which makes restoring one
1145 # bad file system easier.  In this case you would list all of the mount
1146 # points:
1147 #
1148 #     $Conf{RsyncShareName} = ['/', '/var', '/data', '/boot'];
1149 #
1150 $Conf{RsyncShareName} = '/';
1151
1152 #
1153 # Rsync daemon port on the client, for $Conf{XferMethod} = "rsyncd".
1154 #
1155 $Conf{RsyncdClientPort} = 873;
1156
1157 #
1158 # Rsync daemon user name on client, for $Conf{XferMethod} = "rsyncd".
1159 # The user name and password are stored on the client in whatever file
1160 # the "secrets file" parameter in rsyncd.conf points to
1161 # (eg: /etc/rsyncd.secrets).
1162 #
1163 $Conf{RsyncdUserName} = '';
1164
1165 #
1166 # Rsync daemon user name on client, for $Conf{XferMethod} = "rsyncd".
1167 # The user name and password are stored on the client in whatever file
1168 # the "secrets file" parameter in rsyncd.conf points to
1169 # (eg: /etc/rsyncd.secrets).
1170 #
1171 $Conf{RsyncdPasswd} = '';
1172
1173 #
1174 # Whether authentication is mandatory when connecting to the client's
1175 # rsyncd.  By default this is on, ensuring that BackupPC will refuse to
1176 # connect to an rsyncd on the client that is not password protected.
1177 # Turn off at your own risk.
1178 #
1179 $Conf{RsyncdAuthRequired} = 1;
1180
1181 #
1182 # When rsync checksum caching is enabled (by adding the
1183 # --checksum-seed=32761 option to $Conf{RsyncArgs}), the cached
1184 # checksums can be occasionally verified to make sure the file
1185 # contents matches the cached checksums.  This is to avoid the
1186 # risk that disk problems might cause the pool file contents to
1187 # get corrupted, but the cached checksums would make BackupPC
1188 # think that the file still matches the client.
1189 #
1190 # This setting is the probability (0 means never and 1 means always)
1191 # that a file will be rechecked.  Setting it to 0 means the checksums
1192 # will not be rechecked (unless there is a phase 0 failure).  Setting
1193 # it to 1 (ie: 100%) means all files will be checked, but that is
1194 # not a desirable setting since you are better off simply turning
1195 # caching off (ie: remove the --checksum-seed option).
1196 #   
1197 # The default of 0.01 means 1% (on average) of the files during a full
1198 # backup will have their cached checksum re-checked.
1199 #   
1200 # This setting has no effect unless checksum caching is turned on.
1201 #   
1202 $Conf{RsyncCsumCacheVerifyProb} = 0.01;
1203
1204 #
1205 # Arguments to rsync for backup.  Do not edit the first set unless you
1206 # have a thorough understanding of how File::RsyncP works.
1207 #
1208 # Examples of additional arguments that should work are --exclude/--include,
1209 # eg:
1210 #
1211 #     $Conf{RsyncArgs} = [
1212 #           # original arguments here
1213 #           '-v',
1214 #           '--exclude', '/proc',
1215 #           '--exclude', '*.tmp',
1216 #     ];
1217 #
1218 $Conf{RsyncArgs} = [
1219             #
1220             # Do not edit these!
1221             #
1222             '--numeric-ids',
1223             '--perms',
1224             '--owner',
1225             '--group',
1226             '-D',
1227             '--links',
1228             '--hard-links',
1229             '--times',
1230             '--block-size=2048',
1231             '--recursive',
1232
1233             #
1234             # Rsync >= 2.6.3 supports the --checksum-seed option
1235             # which allows rsync checksum caching on the server.
1236             # Uncomment this to enable rsync checksum caching if
1237             # you have a recent client rsync version and you want
1238             # to enable checksum caching.
1239             #
1240             #'--checksum-seed=32761',
1241
1242             #
1243             # Add additional arguments here
1244             #
1245 ];
1246
1247 #
1248 # Arguments to rsync for restore.  Do not edit the first set unless you
1249 # have a thorough understanding of how File::RsyncP works.
1250 #
1251 # If you want to disable direct restores using rsync (eg: is the module
1252 # is read-only), you should set $Conf{RsyncRestoreArgs} to undef and
1253 # the corresponding CGI restore option will be removed.
1254 #
1255 $Conf{RsyncRestoreArgs} = [
1256             #
1257             # Do not edit these!
1258             #
1259             '--numeric-ids',
1260             '--perms',
1261             '--owner',
1262             '--group',
1263             '-D',
1264             '--links',
1265             '--hard-links',
1266             '--times',
1267             '--block-size=2048',
1268             '--relative',
1269             '--ignore-times',
1270             '--recursive',
1271
1272             #
1273             # Rsync >= 2.6.3 supports the --checksum-seed option
1274             # which allows rsync checksum caching on the server.
1275             # Uncomment this to enable rsync checksum caching if
1276             # you have a recent client rsync version and you want
1277             # to enable checksum caching.
1278             #
1279             #'--checksum-seed=32761',
1280
1281             #
1282             # Add additional arguments here
1283             #
1284 ];
1285
1286 #
1287 # Share name to backup.  For $Conf{XferMethod} = "backuppcd" this should
1288 # be a file system path, eg '/' or '/home'.
1289 #
1290 # This can also be a list of multiple file system paths or modules.
1291 # (Can it??)
1292 #
1293 #     $Conf{BackupPCdShareName} = ['/', '/var', '/data', '/boot'];
1294 #
1295 $Conf{BackupPCdShareName} = '/';
1296
1297 #
1298 # Path to backuppcd executable on the server
1299 #
1300 $Conf{BackupPCdPath} = '/usr/bin/backuppcd';
1301
1302 #
1303 # Full command to run backuppcd on the server to backup a given
1304 # client machine.  The following variables are substituted at
1305 # run-time (TODO: update this list)
1306 #
1307 #        $host           host name being backed up
1308 #        $hostIP         host's IP address
1309 #        $shareName      share name to backup (ie: top-level directory path)
1310 #        $backuppcdPath  same as $Conf{BackupPCdPath}
1311 #        $sshPath        same as $Conf{SshPath}
1312 #
1313 # This setting only matters if $Conf{XferMethod} = 'backuppcd'.
1314 #
1315 # Arguments to backupcpd are:
1316 #
1317 #   - the host name to backup
1318 #   - the share name to backup
1319 #   - the directory where the pool is
1320 #   - the directory where the last run was (NOT DONE YET)
1321 #   - a boolean value indicating whether or not the pool is
1322 #      compressed or not
1323 #   - the directory where the new run should occur (currently it assumes ".")
1324 #
1325 $Conf{BackupPCdCmd} = '$bpcdPath $host $shareName $poolDir XXXX $poolCompress $topDir/pc/$client/new';
1326
1327 #
1328 # Full command to run backuppcd on the server for restore to a
1329 # client machine.  The following variables are substituted at
1330 # run-time (TODO: update this list)
1331 #
1332 #        $host           host name being backed up
1333 #        $hostIP         host's IP address
1334 #        $shareName      share name to backup (ie: top-level directory path)
1335 #        $backuppcdPath  same as $Conf{BackupPCdPath}
1336 #        $sshPath        same as $Conf{SshPath}
1337 #
1338 # This setting only matters if $Conf{XferMethod} = 'backuppcd'.
1339 #
1340 $Conf{BackupPCdRestoreCmd} = '$bpcdPath TODO';
1341
1342
1343 #
1344 # Archive Destination
1345 #
1346 # The Destination of the archive
1347 # e.g. /tmp for file archive or /dev/nst0 for device archive
1348 #
1349 $Conf{ArchiveDest} = '/tmp';
1350
1351 #
1352 # Archive Compression type
1353 #
1354 # The valid values are:
1355 #
1356 #   - 'none':  No Compression
1357 #
1358 #   - 'gzip':  Medium Compression. Recommended.
1359 #
1360 #   - 'bzip2': High Compression but takes longer.
1361 #
1362 $Conf{ArchiveComp} = 'gzip';
1363
1364 #
1365 # Archive Parity Files
1366 #
1367 # The amount of Parity data to generate, as a percentage
1368 # of the archive size.
1369 # Uses the commandline par2 (par2cmdline) available from
1370 # http://parchive.sourceforge.net
1371 #
1372 # Only useful for file dumps.
1373 #
1374 # Set to 0 to disable this feature.
1375 #
1376 $Conf{ArchivePar} = 0;
1377
1378 #
1379 # Archive Size Split
1380 #
1381 # Only for file archives. Splits the output into 
1382 # the specified size * 1,000,000.
1383 # e.g. to split into 650,000,000 bytes, specify 650 below.
1384
1385 # If the value is 0, or if $Conf{ArchiveDest} is an existing file or
1386 # device (e.g. a streaming tape drive), this feature is disabled.
1387 #
1388 $Conf{ArchiveSplit} = 0;
1389
1390 #
1391 # Archive Command
1392 #
1393 # This is the command that is called to actually run the archive process
1394 # for each host.  The following variables are substituted at run-time:
1395 #
1396 #   $Installdir    The installation directory of BackupPC
1397 #   $tarCreatePath The path to BackupPC_tarCreate
1398 #   $splitpath     The path to the split program
1399 #   $parpath       The path to the par2 program
1400 #   $host          The host to archive
1401 #   $backupnumber  The backup number of the host to archive
1402 #   $compression   The path to the compression program
1403 #   $compext       The extension assigned to the compression type
1404 #   $splitsize     The number of bytes to split archives into
1405 #   $archiveloc    The location to put the archive
1406 #   $parfile       The amount of parity data to create (percentage)
1407 #
1408 $Conf{ArchiveClientCmd} = '$Installdir/bin/BackupPC_archiveHost'
1409         . ' $tarCreatePath $splitpath $parpath $host $backupnumber'
1410         . ' $compression $compext $splitsize $archiveloc $parfile *';
1411
1412 #
1413 # Full path for ssh. Security caution: normal users should not
1414 # allowed to write to this file or directory.
1415 #
1416 $Conf{SshPath} = '/usr/bin/ssh';
1417
1418 #
1419 # Full path for nmblookup. Security caution: normal users should not
1420 # allowed to write to this file or directory.
1421 #
1422 # nmblookup is from the Samba distribution. nmblookup is used to get the
1423 # netbios name, necessary for DHCP hosts.
1424 #
1425 $Conf{NmbLookupPath} = '/usr/bin/nmblookup';
1426
1427 #
1428 # NmbLookup command.  Given an IP address, does an nmblookup on that
1429 # IP address.  The following variables are substituted at run-time:
1430 #
1431 #   $nmbLookupPath      path to nmblookup ($Conf{NmbLookupPath})
1432 #   $host               IP address
1433 #
1434 # This command is only used for DHCP hosts: given an IP address, this
1435 # command should try to find its NetBios name.
1436 #
1437 $Conf{NmbLookupCmd} = '$nmbLookupPath -A $host';
1438
1439 #
1440 # NmbLookup command.  Given a netbios name, finds that host by doing
1441 # a NetBios lookup.  Several variables are substituted at run-time:
1442 #
1443 #   $nmbLookupPath      path to nmblookup ($Conf{NmbLookupPath})
1444 #   $host               NetBios name
1445 #
1446 # In some cases you might need to change the broadcast address, for
1447 # example if nmblookup uses 192.168.255.255 by default and you find
1448 # that doesn't work, try 192.168.1.255 (or your equivalent class C
1449 # address) using the -B option:
1450 #
1451 #    $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -B 192.168.1.255 $host';
1452 #
1453 # If you use a WINS server and your machines don't respond to
1454 # multicast NetBios requests you can use this (replace 1.2.3.4
1455 # with the IP address of your WINS server):
1456 #
1457 #    $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -R -U 1.2.3.4 $host';
1458 #
1459 # This is preferred over multicast since it minimizes network traffic.
1460 #
1461 # Experiment manually for your site to see what form of nmblookup command
1462 # works.
1463 #
1464 $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath $host';
1465
1466 #
1467 # For fixed IP address hosts, BackupPC_dump can also verify the netbios
1468 # name to ensure it matches the host name.  An error is generated if
1469 # they do not match.  Typically this flag is off.  But if you are going
1470 # to transition a bunch of machines from fixed host addresses to DHCP,
1471 # setting this flag is a great way to verify that the machines have
1472 # their netbios name set correctly before turning on DCHP.
1473 #
1474 $Conf{FixedIPNetBiosNameCheck} = 0;
1475
1476 #
1477 # Full path to the ping command.  Security caution: normal users
1478 # should not be allowed to write to this file or directory.
1479 #
1480 # If you want to disable ping checking, set this to some program
1481 # that exits with 0 status, eg:
1482 #
1483 #     $Conf{PingPath} = '/bin/echo';
1484 #
1485 $Conf{PingPath} = '/bin/ping';
1486
1487 #
1488 # Ping command.  The following variables are substituted at run-time:
1489 #
1490 #   $pingPath      path to ping ($Conf{PingPath})
1491 #   $host          host name
1492 #
1493 # Wade Brown reports that on solaris 2.6 and 2.7 ping -s returns the wrong
1494 # exit status (0 even on failure).  Replace with "ping $host 1", which
1495 # gets the correct exit status but we don't get the round-trip time.
1496 #
1497 $Conf{PingCmd} = '$pingPath -c 1 $host';
1498
1499 #
1500 # Maximum round-trip ping time in milliseconds.  This threshold is set
1501 # to avoid backing up PCs that are remotely connected through WAN or
1502 # dialup connections.  The output from ping -s (assuming it is supported
1503 # on your system) is used to check the round-trip packet time.  On your
1504 # local LAN round-trip times should be much less than 20msec.  On most
1505 # WAN or dialup connections the round-trip time will be typically more
1506 # than 20msec.  Tune if necessary.
1507 #
1508 $Conf{PingMaxMsec} = 20;
1509
1510 #
1511 # Compression level to use on files.  0 means no compression.  Compression
1512 # levels can be from 1 (least cpu time, slightly worse compression) to
1513 # 9 (most cpu time, slightly better compression).  The recommended value
1514 # is 3.  Changing to 5, for example, will take maybe 20% more cpu time
1515 # and will get another 2-3% additional compression. See the zlib
1516 # documentation for more information about compression levels.
1517 #
1518 # Changing compression on or off after backups have already been done
1519 # will require both compressed and uncompressed pool files to be stored.
1520 # This will increase the pool storage requirements, at least until all
1521 # the old backups expire and are deleted.
1522 #
1523 # It is ok to change the compression value (from one non-zero value to
1524 # another non-zero value) after dumps are already done.  Since BackupPC
1525 # matches pool files by comparing the uncompressed versions, it will still
1526 # correctly match new incoming files against existing pool files.  The
1527 # new compression level will take effect only for new files that are
1528 # newly compressed and added to the pool.
1529 #
1530 # If compression was off and you are enabling compression for the first
1531 # time you can use the BackupPC_compressPool utility to compress the
1532 # pool.  This avoids having the pool grow to accommodate both compressed
1533 # and uncompressed backups.  See the documentation for more information.
1534 #
1535 # Note: compression needs the Compress::Zlib perl library.  If the
1536 # Compress::Zlib library can't be found then $Conf{CompressLevel} is
1537 # forced to 0 (compression off).
1538 #
1539 $Conf{CompressLevel} = 0;
1540
1541 #
1542 # Timeout in seconds when listening for the transport program's
1543 # (smbclient, tar etc) stdout. If no output is received during this
1544 # time, then it is assumed that something has wedged during a backup,
1545 # and the backup is terminated.
1546 #
1547 # Note that stdout buffering combined with huge files being backed up
1548 # could cause longish delays in the output from smbclient that
1549 # BackupPC_dump sees, so in rare cases you might want to increase
1550 # this value.
1551 #
1552 # Despite the name, this parameter sets the timeout for all transport
1553 # methods (tar, smb etc).
1554 #
1555 $Conf{ClientTimeout} = 72000;
1556
1557 #
1558 # Maximum number of log files we keep around in each PC's directory
1559 # (ie: pc/$host).  These files are aged monthly.  A setting of 12
1560 # means there will be at most the files LOG, LOG.0, LOG.1, ... LOG.11
1561 # in the pc/$host directory (ie: about a years worth).  (Except this
1562 # month's LOG, these files will have a .z extension if compression
1563 # is on).
1564 #
1565 # If you decrease this number after BackupPC has been running for a
1566 # while you will have to manually remove the older log files.
1567 #
1568 $Conf{MaxOldPerPCLogFiles} = 12;
1569
1570 #
1571 # Optional commands to run before and after dumps and restores,
1572 # and also before and after each share of a dump.
1573 #
1574 # Stdout from these commands will be written to the Xfer (or Restore)
1575 # log file.  One example of using these commands would be to
1576 # shut down and restart a database server, dump a database
1577 # to files for backup, or doing a snapshot of a share prior
1578 # to a backup.  Example:
1579 #
1580 #    $Conf{DumpPreUserCmd} = '$sshPath -q -x -l root $host /usr/bin/dumpMysql';
1581 #
1582 # The following variable substitutions are made at run time for
1583 # $Conf{DumpPreUserCmd}, $Conf{DumpPostUserCmd}, $Conf{DumpPreShareCmd}
1584 # and $Conf{DumpPostShareCmd}:
1585 #
1586 #        $type         type of dump (incr or full)
1587 #        $xferOK       1 if the dump succeeded, 0 if it didn't
1588 #        $client       client name being backed up
1589 #        $host         host name (could be different from client name if
1590 #                                 $Conf{ClientNameAlias} is set)
1591 #        $hostIP       IP address of host
1592 #        $user         user name from the hosts file
1593 #        $moreUsers    list of additional users from the hosts file
1594 #        $share        the first share name (or current share for
1595 #                        $Conf{DumpPreShareCmd} and $Conf{DumpPostShareCmd})
1596 #        $shares       list of all the share names
1597 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1598 #        $sshPath      value of $Conf{SshPath},
1599 #        $cmdType      set to DumpPreUserCmd or DumpPostUserCmd
1600 #
1601 # The following variable substitutions are made at run time for
1602 # $Conf{RestorePreUserCmd} and $Conf{RestorePostUserCmd}:
1603 #
1604 #        $client       client name being backed up
1605 #        $xferOK       1 if the restore succeeded, 0 if it didn't
1606 #        $host         host name (could be different from client name if
1607 #                                 $Conf{ClientNameAlias} is set)
1608 #        $hostIP       IP address of host
1609 #        $user         user name from the hosts file
1610 #        $moreUsers    list of additional users from the hosts file
1611 #        $share        the first share name
1612 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1613 #        $sshPath      value of $Conf{SshPath},
1614 #        $type         set to "restore"
1615 #        $bkupSrcHost  host name of the restore source
1616 #        $bkupSrcShare share name of the restore source
1617 #        $bkupSrcNum   backup number of the restore source
1618 #        $pathHdrSrc   common starting path of restore source
1619 #        $pathHdrDest  common starting path of destination
1620 #        $fileList     list of files being restored
1621 #        $cmdType      set to RestorePreUserCmd or RestorePostUserCmd
1622 #
1623 # The following variable substitutions are made at run time for
1624 # $Conf{ArchivePreUserCmd} and $Conf{ArchivePostUserCmd}:
1625 #
1626 #        $client       client name being backed up
1627 #        $xferOK       1 if the archive succeeded, 0 if it didn't
1628 #        $host         Name of the archive host
1629 #        $user         user name from the hosts file
1630 #        $share        the first share name
1631 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1632 #        $HostList     list of hosts being archived
1633 #        $BackupList   list of backup numbers for the hosts being archived
1634 #        $archiveloc   location where the archive is sent to
1635 #        $parfile      amount of parity data being generated (percentage)
1636 #        $compression  compression program being used (eg: cat, gzip, bzip2)
1637 #        $compext      extension used for compression type (eg: raw, gz, bz2)
1638 #        $splitsize    size of the files that the archive creates
1639 #        $sshPath      value of $Conf{SshPath},
1640 #        $type         set to "archive"
1641 #        $cmdType      set to ArchivePreUserCmd or ArchivePostUserCmd
1642 #
1643 $Conf{DumpPreUserCmd}     = undef;
1644 $Conf{DumpPostUserCmd}    = undef;
1645 $Conf{DumpPreShareCmd}    = undef;
1646 $Conf{DumpPostShareCmd}   = undef;
1647 $Conf{RestorePreUserCmd}  = undef;
1648 $Conf{RestorePostUserCmd} = undef;
1649 $Conf{ArchivePreUserCmd}  = undef;
1650 $Conf{ArchivePostUserCmd} = undef;
1651
1652 #
1653 # Whether the exit status of each PreUserCmd and
1654 # PostUserCmd is checked.
1655 #
1656 # If set and the Dump/Restore/Archive Pre/Post UserCmd
1657 # returns a non-zero exit status then the dump/restore/archive
1658 # is aborted.  To maintain backward compatibility (where
1659 # the exit status in early versions was always ignored),
1660 # this flag defaults to 0.
1661 #
1662 # If this flag is set and the Dump/Restore/Archive PreUserCmd
1663 # fails then the matching Dump/Restore/Archive PostUserCmd is
1664 # not executed.  If DumpPreShareCmd returns a non-exit status,
1665 # then DumpPostShareCmd is not executed, but the DumpPostUserCmd
1666 # is still run (since DumpPreUserCmd must have previously
1667 # succeeded).
1668 #
1669 # An example of a DumpPreUserCmd that might fail is a script
1670 # that snapshots or dumps a database which fails because
1671 # of some database error.
1672 #
1673 $Conf{UserCmdCheckStatus} = 0;
1674
1675 #
1676 # Override the client's host name.  This allows multiple clients
1677 # to all refer to the same physical host.  This should only be
1678 # set in the per-PC config file and is only used by BackupPC at
1679 # the last moment prior to generating the command used to backup
1680 # that machine (ie: the value of $Conf{ClientNameAlias} is invisible
1681 # everywhere else in BackupPC).  The setting can be a host name or
1682 # IP address, eg:
1683 #
1684 #         $Conf{ClientNameAlias} = 'realHostName';
1685 #         $Conf{ClientNameAlias} = '192.1.1.15';
1686 #
1687 # will cause the relevant smb/tar/rsync backup/restore commands to be
1688 # directed to realHostName, not the client name.
1689 #
1690 # Note: this setting doesn't work for hosts with DHCP set to 1.
1691 #
1692 $Conf{ClientNameAlias} = undef;
1693
1694 ###########################################################################
1695 # Email reminders, status and messages
1696 # (can be overridden in the per-PC config.pl)
1697 ###########################################################################
1698 #
1699 # Full path to the sendmail command.  Security caution: normal users
1700 # should not allowed to write to this file or directory.
1701 #
1702 $Conf{SendmailPath} = '/usr/sbin/sendmail';
1703
1704 #
1705 # Minimum period between consecutive emails to a single user.
1706 # This tries to keep annoying email to users to a reasonable
1707 # level.  Email checks are done nightly, so this number is effectively
1708 # rounded up (ie: 2.5 means a user will never receive email more
1709 # than once every 3 days).
1710 #
1711 $Conf{EMailNotifyMinDays} = 2.5;
1712
1713 #
1714 # Name to use as the "from" name for email.  Depending upon your mail
1715 # handler this is either a plain name (eg: "admin") or a fully-qualified
1716 # name (eg: "admin@mydomain.com").
1717 #
1718 $Conf{EMailFromUserName} = '';
1719
1720 #
1721 # Destination address to an administrative user who will receive a
1722 # nightly email with warnings and errors.  If there are no warnings
1723 # or errors then no email will be sent.  Depending upon your mail
1724 # handler this is either a plain name (eg: "admin") or a fully-qualified
1725 # name (eg: "admin@mydomain.com").
1726 #
1727 $Conf{EMailAdminUserName} = '';
1728
1729 #
1730 # Destination domain name for email sent to users.  By default
1731 # this is empty, meaning email is sent to plain, unqualified
1732 # addresses.  Otherwise, set it to the destintation domain, eg:
1733 #
1734 #    $Cong{EMailUserDestDomain} = '@mydomain.com';
1735 #
1736 # With this setting user email will be set to 'user@mydomain.com'.
1737 #
1738 $Conf{EMailUserDestDomain} = '';
1739
1740 #
1741 # This subject and message is sent to a user if their PC has never been
1742 # backed up.
1743 #
1744 # These values are language-dependent.  The default versions can be
1745 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1746 # need to change the message, copy it here and edit it, eg:
1747 #
1748 #   $Conf{EMailNoBackupEverMesg} = <<'EOF';
1749 #   To: $user$domain
1750 #   cc:
1751 #   Subject: $subj
1752 #   
1753 #   Dear $userName,
1754 #   
1755 #   This is a site-specific email message.
1756 #   EOF
1757 #
1758 $Conf{EMailNoBackupEverSubj} = undef;
1759 $Conf{EMailNoBackupEverMesg} = undef;
1760
1761 #
1762 # How old the most recent backup has to be before notifying user.
1763 # When there have been no backups in this number of days the user
1764 # is sent an email.
1765 #
1766 $Conf{EMailNotifyOldBackupDays} = 7.0;
1767
1768 #
1769 # This subject and message is sent to a user if their PC has not recently
1770 # been backed up (ie: more than $Conf{EMailNotifyOldBackupDays} days ago).
1771 #
1772 # These values are language-dependent.  The default versions can be
1773 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1774 # need to change the message, copy it here and edit it, eg:
1775 #
1776 #   $Conf{EMailNoBackupRecentMesg} = <<'EOF';
1777 #   To: $user$domain
1778 #   cc:
1779 #   Subject: $subj
1780 #   
1781 #   Dear $userName,
1782 #   
1783 #   This is a site-specific email message.
1784 #   EOF
1785 #
1786 $Conf{EMailNoBackupRecentSubj} = undef;
1787 $Conf{EMailNoBackupRecentMesg} = undef;
1788
1789 #
1790 # How old the most recent backup of Outlook files has to be before
1791 # notifying user.
1792 #
1793 $Conf{EMailNotifyOldOutlookDays} = 5.0;
1794
1795 #
1796 # This subject and message is sent to a user if their Outlook files have
1797 # not recently been backed up (ie: more than $Conf{EMailNotifyOldOutlookDays}
1798 # days ago).
1799 #
1800 # These values are language-dependent.  The default versions can be
1801 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1802 # need to change the message, copy it here and edit it, eg:
1803 #
1804 #   $Conf{EMailOutlookBackupMesg} = <<'EOF';
1805 #   To: $user$domain
1806 #   cc:
1807 #   Subject: $subj
1808 #   
1809 #   Dear $userName,
1810 #   
1811 #   This is a site-specific email message.
1812 #   EOF
1813 #
1814 $Conf{EMailOutlookBackupSubj} = undef;
1815 $Conf{EMailOutlookBackupMesg} = undef;
1816
1817 #
1818 # Additional email headers.  If you change the charset
1819 # to utf8 then BackupPC_sendEmail will use utf8 for
1820 # the email body.
1821 #
1822 $Conf{EMailHeaders} = <<EOF;
1823 MIME-Version: 1.0
1824 Content-Type: text/plain; charset="iso-8859-1"
1825 EOF
1826
1827 ###########################################################################
1828 # CGI user interface configuration settings
1829 # (can be overridden in the per-PC config.pl)
1830 ###########################################################################
1831 #
1832 # Normal users can only access information specific to their host.
1833 # They can start/stop/browse/restore backups.
1834 #
1835 # Administrative users have full access to all hosts, plus overall
1836 # status and log information.
1837 #
1838 # The administrative users are the union of the unix/linux group
1839 # $Conf{CgiAdminUserGroup} and the manual list of users, separated
1840 # by spaces, in $Conf{CgiAdminUsers}. If you don't want a group or
1841 # manual list of users set the corresponding configuration setting
1842 # to undef or an empty string.
1843 #
1844 # If you want every user to have admin privileges (careful!), set
1845 # $Conf{CgiAdminUsers} = '*'.
1846 #
1847 # Examples:
1848 #    $Conf{CgiAdminUserGroup} = 'admin';
1849 #    $Conf{CgiAdminUsers}     = 'craig celia';
1850 #    --> administrative users are the union of group admin, plus
1851 #      craig and celia.
1852 #
1853 #    $Conf{CgiAdminUserGroup} = '';
1854 #    $Conf{CgiAdminUsers}     = 'craig celia';
1855 #    --> administrative users are only craig and celia'.
1856 #
1857 $Conf{CgiAdminUserGroup} = '';
1858 $Conf{CgiAdminUsers}     = '';
1859
1860 #
1861 # URL of the BackupPC_Admin CGI script.  Used for email messages.
1862 #
1863 $Conf{CgiURL} = undef;
1864
1865 #   
1866 # Language to use.  See lib/BackupPC/Lang for the list of supported
1867 # languages, which include English (en), French (fr), Spanish (es),
1868 # German (de), Italian (it), Dutch (nl) and Portuguese Brazillian
1869 # (pt_br).
1870 #
1871 # Currently the Language setting applies to the CGI interface and email
1872 # messages sent to users.  Log files and other text are still in English.
1873 #
1874 $Conf{Language} = 'en';
1875
1876 #
1877 # User names that are rendered by the CGI interface can be turned
1878 # into links into their home page or other information about the
1879 # user.  To set this up you need to create two sprintf() strings,
1880 # that each contain a single '%s' that will be replaced by the user
1881 # name.  The default is a mailto: link.
1882 #
1883 # $Conf{CgiUserHomePageCheck} should be an absolute file path that
1884 # is used to check (via "-f") that the user has a valid home page.
1885 # Set this to undef or an empty string to turn off this check.
1886 #
1887 # $Conf{CgiUserUrlCreate} should be a full URL that points to the
1888 # user's home page.  Set this to undef or an empty string to turn
1889 # off generation of URLs for user names.
1890 #
1891 # Example:
1892 #    $Conf{CgiUserHomePageCheck} = '/var/www/html/users/%s.html';
1893 #    $Conf{CgiUserUrlCreate}     = 'http://myhost/users/%s.html';
1894 #    --> if /var/www/html/users/craig.html exists, then 'craig' will
1895 #      be rendered as a link to http://myhost/users/craig.html.
1896 #
1897 $Conf{CgiUserHomePageCheck} = '';
1898 $Conf{CgiUserUrlCreate}     = 'mailto:%s';
1899
1900 #
1901 # Date display format for CGI interface.  True for US-style dates (MM/DD)
1902 # and zero for international dates (DD/MM).
1903 #
1904 $Conf{CgiDateFormatMMDD} = 1;
1905
1906 #
1907 # If set, the complete list of hosts appears in the left navigation
1908 # bar pull-down for administrators.  Otherwise, just the hosts for which
1909 # the user is listed in the host file (as either the user or in moreUsers)
1910 # are displayed.
1911 #
1912 $Conf{CgiNavBarAdminAllHosts} = 1;
1913
1914 #
1915 # Enable/disable the search box in the navigation bar.
1916 #
1917 $Conf{CgiSearchBoxEnable} = 1;
1918
1919 #
1920 # Additional navigation bar links.  These appear for both regular users
1921 # and administrators.  This is a list of hashes giving the link (URL)
1922 # and the text (name) for the link.  Specifying lname instead of name
1923 # uses the language specific string (ie: $Lang->{lname}) instead of
1924 # just literally displaying name.
1925 #
1926 $Conf{CgiNavBarLinks} = [
1927     {
1928         link  => "?action=view&type=docs",
1929         lname => "Documentation",    # actually displays $Lang->{Documentation}
1930     },
1931     {
1932         link  => "http://backuppc.sourceforge.net/faq",
1933         name  => "FAQ",              # displays literal "FAQ"
1934     },
1935     {
1936         link  => "http://backuppc.sourceforge.net",
1937         name  => "SourceForge",      # displays literal "SourceForge"
1938     },
1939 ];
1940
1941 #
1942 # Hilight colors based on status that are used in the PC summary page.
1943 #
1944 $Conf{CgiStatusHilightColor} = {
1945     Reason_backup_failed           => '#ffcccc',
1946     Reason_backup_done             => '#ccffcc',
1947     Reason_no_ping                 => '#ffff99',
1948     Reason_backup_canceled_by_user => '#ff9900',
1949     Status_backup_in_progress      => '#66cc99',
1950     Disabled_OnlyManualBackups     => '#d1d1d1',   
1951     Disabled_AllBackupsDisabled    => '#d1d1d1',          
1952 };
1953
1954 #
1955 # Additional CGI header text.
1956 #
1957 $Conf{CgiHeaders} = '<meta http-equiv="pragma" content="no-cache">';
1958
1959 #
1960 # Directory where images are stored.  This directory should be below
1961 # Apache's DocumentRoot.  This value isn't used by BackupPC but is
1962 # used by configure.pl when you upgrade BackupPC.
1963 #
1964 # Example:
1965 #     $Conf{CgiImageDir} = '/usr/local/apache/htdocs/BackupPC';
1966 #
1967 $Conf{CgiImageDir} = '';
1968
1969 #
1970 # Additional mappings of file name extenions to Content-Type for
1971 # individual file restore.  See $Ext2ContentType in BackupPC_Admin
1972 # for the default setting.  You can add additional settings here,
1973 # or override any default settings.  Example:
1974 #
1975 #     $Conf{CgiExt2ContentType} = {
1976 #                 'pl'  => 'text/plain',
1977 #          };
1978 #
1979 $Conf{CgiExt2ContentType} = { };
1980
1981 #
1982 # URL (without the leading http://host) for BackupPC's image directory.
1983 # The CGI script uses this value to serve up image files.
1984 #
1985 # Example:
1986 #     $Conf{CgiImageDirURL} = '/BackupPC';
1987 #
1988 $Conf{CgiImageDirURL} = '';
1989
1990 #
1991 # CSS stylesheet "skin" for the CGI interface.  It is stored
1992 # in the $Conf{CgiImageDir} directory and accessed via the
1993 # $Conf{CgiImageDirURL} URL.
1994 #
1995 # For BackupPC v3.x several color, layout and font changes were made.
1996 # The previous v2.x version is available as BackupPC_stnd_orig.css, so
1997 # if you prefer the old skin, change this to BackupPC_stnd_orig.css.
1998 #
1999 $Conf{CgiCSSFile} = 'BackupPC_stnd.css';
2000
2001 #
2002 # Whether the user is allowed to edit their per-PC config.
2003 #
2004 $Conf{CgiUserConfigEditEnable} = 1;
2005
2006 #
2007 # Which per-host config variables a non-admin user is allowed
2008 # to edit.  Admin users can edit all per-host config variables,
2009 # even if disabled in this list.
2010 #
2011 # SECURITY WARNING: Do not let users edit any of the Cmd
2012 # config variables!  That's because a user could set a
2013 # Cmd to a shell script of their choice and it will be
2014 # run as the BackupPC user.  That script could do all
2015 # sorts of bad things.
2016 #
2017 $Conf{CgiUserConfigEdit} = {
2018         FullPeriod                => 1,
2019         IncrPeriod                => 1,
2020         FullKeepCnt               => 1,
2021         FullKeepCntMin            => 1,
2022         FullAgeMax                => 1,
2023         IncrKeepCnt               => 1,
2024         IncrKeepCntMin            => 1,
2025         IncrAgeMax                => 1,
2026         IncrLevels                => 1,
2027         IncrFill                  => 1,
2028         PartialAgeMax             => 1,
2029         RestoreInfoKeepCnt        => 1,
2030         ArchiveInfoKeepCnt        => 1,
2031         BackupFilesOnly           => 1,
2032         BackupFilesExclude        => 1,
2033         BackupsDisable            => 1,
2034         BlackoutBadPingLimit      => 1,
2035         BlackoutGoodCnt           => 1,
2036         BlackoutPeriods           => 1,
2037         BackupZeroFilesIsFatal    => 1,
2038         ClientCharset             => 1,
2039         XferMethod                => 1,
2040         XferLogLevel              => 1,
2041         SmbShareName              => 1,
2042         SmbShareUserName          => 1,
2043         SmbSharePasswd            => 1,
2044         SmbClientFullCmd          => 0,
2045         SmbClientIncrCmd          => 0,
2046         SmbClientRestoreCmd       => 0,
2047         TarShareName              => 1,
2048         TarFullArgs               => 1,
2049         TarIncrArgs               => 1,
2050         TarClientCmd              => 0,
2051         TarClientRestoreCmd       => 0,
2052         RsyncShareName            => 1,
2053         RsyncdClientPort          => 1,
2054         RsyncdPasswd              => 1,
2055         RsyncdAuthRequired        => 1,
2056         RsyncCsumCacheVerifyProb  => 1,
2057         RsyncArgs                 => 1,
2058         RsyncRestoreArgs          => 1,
2059         RsyncClientCmd            => 0,
2060         RsyncClientRestoreCmd     => 0,
2061         ArchiveDest               => 1,
2062         ArchiveComp               => 1,
2063         ArchivePar                => 1,
2064         ArchiveSplit              => 1,
2065         ArchiveClientCmd          => 0,
2066         FixedIPNetBiosNameCheck   => 1,
2067         NmbLookupCmd              => 0,
2068         NmbLookupFindHostCmd      => 0,
2069         PingMaxMsec               => 1,
2070         PingCmd                   => 0,
2071         ClientTimeout             => 1,
2072         MaxOldPerPCLogFiles       => 1,
2073         CompressLevel             => 1,
2074         ClientNameAlias           => 1,
2075         DumpPreUserCmd            => 0,
2076         DumpPostUserCmd           => 0,
2077         RestorePreUserCmd         => 0,
2078         RestorePostUserCmd        => 0,
2079         ArchivePreUserCmd         => 0,
2080         ArchivePostUserCmd        => 0,
2081         DumpPostShareCmd          => 0,
2082         DumpPreShareCmd           => 0,
2083         UserCmdCheckStatus        => 0,
2084         EMailNotifyMinDays        => 1,
2085         EMailFromUserName         => 1,
2086         EMailAdminUserName        => 1,
2087         EMailUserDestDomain       => 1,
2088         EMailNoBackupEverSubj     => 1,
2089         EMailNoBackupEverMesg     => 1,
2090         EMailNotifyOldBackupDays  => 1,
2091         EMailNoBackupRecentSubj   => 1,
2092         EMailNoBackupRecentMesg   => 1,
2093         EMailNotifyOldOutlookDays => 1,
2094         EMailOutlookBackupSubj    => 1,
2095         EMailOutlookBackupMesg    => 1,
2096         EMailHeaders              => 1,
2097 };