Backuppc 配置三 centos 6.3
## The port of the ftp server.If undefined, 21 is used.## This setting is used only if $Conf{XferMethod} = 'ftp'.#$Conf{FtpPort} = 21;## Connection timeout for FTP.When undefined, the default is 120 seconds.## This setting is used only if $Conf{XferMethod} = 'ftp'.#$Conf{FtpTimeout} = 120;## Behaviour when BackupPC encounters symlinks on the FTP share.## Symlinks cannot be restored via FTP, so the desired behaviour will# be different depending on the setup of the share. The default for# this behavor is 1.Directory shares with more complicated directory# structures should consider other protocols.#$Conf{FtpFollowSymlinks} = 0;############################################################################ Archive Configuration# (can be overwritten in the per-PC log file)############################################################################# Archive Destination## The Destination of the archive# e.g. /tmp for file archive or /dev/nst0 for device archive#$Conf{ArchiveDest} = '/tmp';## Archive Compression type## The valid values are:## - 'none':No Compression## - 'gzip':Medium Compression. Recommended.## - 'bzip2': High Compression but takes longer.#$Conf{ArchiveComp} = 'gzip';## Archive Parity Files## The amount of Parity data to generate, as a percentage# of the archive size.# Uses the commandline par2 (par2cmdline) available from# http://parchive.sourceforge.net## Only useful for file dumps.## Set to 0 to disable this feature.#$Conf{ArchivePar} = 0;## Archive Size Split## Only for file archives. Splits the output into# the specified size * 1,000,000.# e.g. to split into 650,000,000 bytes, specify 650 below.## If the value is 0, or if $Conf{ArchiveDest} is an existing file or# device (e.g. a streaming tape drive), this feature is disabled.#$Conf{ArchiveSplit} = 0;## Archive Command## This is the command that is called to actually run the archive process# for each host.The following variables are substituted at run-time:## $Installdir The installation directory of BackupPC# $tarCreatePath The path to BackupPC_tarCreate# $splitpath The path to the split program# $parpath The path to the par2 program# $host The host to archive# $backupnumberThe backup number of the host to archive# $compression The path to the compression program# $compext The extension assigned to the compression type# $splitsize The number of bytes to split archives into# $archiveloc The location to put the archive# $parfile The amount of parity data to create (percentage)## Note: all Cmds are executed directly without a shell, so the prog name# needs to be a full path and you can't include shell syntax like# redirection and pipes; put that in a script if you need it.#$Conf{ArchiveClientCmd} = '$Installdir/bin/BackupPC_archiveHost' . ' $tarCreatePath $splitpath $parpath $host $backupnumber' . ' $compression $compext $splitsize $archiveloc $parfile *';## Full path for ssh. Security caution: normal users should not# allowed to write to this file or directory.#$Conf{SshPath} = '/usr/bin/ssh';## Full path for nmblookup. Security caution: normal users should not# allowed to write to this file or directory.## nmblookup is from the Samba distribution. nmblookup is used to get the# netbios name, necessary for DHCP hosts.#$Conf{NmbLookupPath} = '/usr/bin/nmblookup';## NmbLookup command.Given an IP address, does an nmblookup on that# IP address.The following variables are substituted at run-time:## $nmbLookupPath path to nmblookup ($Conf{NmbLookupPath})# $host IP address## This command is only used for DHCP hosts: given an IP address, this# command should try to find its NetBios name.## Note: all Cmds are executed directly without a shell, so the prog name# needs to be a full path and you can't include shell syntax like# redirection and pipes; put that in a script if you need it.#$Conf{NmbLookupCmd} = '$nmbLookupPath -A $host';## NmbLookup command.Given a netbios name, finds that host by doing# a NetBios lookup.Several variables are substituted at run-time:## $nmbLookupPath path to nmblookup ($Conf{NmbLookupPath})# $host NetBios name## In some cases you might need to change the broadcast address, for# example if nmblookup uses 192.168.255.255 by default and you find# that doesn't work, try 192.168.1.255 (or your equivalent class C# address) using the -B option:## $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -B 192.168.1.255 $host';## If you use a WINS server and your machines don't respond to# multicast NetBios requests you can use this (replace 1.2.3.4# with the IP address of your WINS server):## $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -R -U 1.2.3.4 $host';## This is preferred over multicast since it minimizes network traffic.## Experiment manually for your site to see what form of nmblookup command# works.## Note: all Cmds are executed directly without a shell, so the prog name# needs to be a full path and you can't include shell syntax like# redirection and pipes; put that in a script if you need it.#$Conf{NmbLookupFindHostCmd} = '$nmbLookupPath $host';## For fixed IP address hosts, BackupPC_dump can also verify the netbios# name to ensure it matches the host name.An error is generated if# they do not match.Typically this flag is off.But if you are going# to transition a bunch of machines from fixed host addresses to DHCP,# setting this flag is a great way to verify that the machines have# their netbios name set correctly before turning on DCHP.#$Conf{FixedIPNetBiosNameCheck} = 0;## Full path to the ping command.Security caution: normal users# should not be allowed to write to this file or directory.## If you want to disable ping checking, set this to some program# that exits with 0 status, eg:## $Conf{PingPath} = '/bin/echo';#$Conf{PingPath} = '/bin/ping';## Ping command.The following variables are substituted at run-time:## $pingPath path to ping ($Conf{PingPath})# $host host name## Wade Brown reports that on solaris 2.6 and 2.7 ping -s returns the wrong# exit status (0 even on failure).Replace with "ping $host 1", which# gets the correct exit status but we don't get the round-trip time.## Note: all Cmds are executed directly without a shell, so the prog name# needs to be a full path and you can't include shell syntax like# redirection and pipes; put that in a script if you need it.#$Conf{PingCmd} = '$pingPath -c 1 -w 3 $host';## Maximum round-trip ping time in milliseconds.This threshold is set# to avoid backing up PCs that are remotely connected through WAN or# dialup connections.The output from ping -s (assuming it is supported# on your system) is used to check the round-trip packet time.On your# local LAN round-trip times should be much less than 20msec.On most# WAN or dialup connections the round-trip time will be typically more# than 20msec.Tune if necessary.#$Conf{PingMaxMsec} = 20;## Compression level to use on files.0 means no compression.Compression# levels can be from 1 (least cpu time, slightly worse compression) to# 9 (most cpu time, slightly better compression).The recommended value# is 3.Changing to 5, for example, will take maybe 20% more cpu time# and will get another 2-3% additional compression. See the zlib# documentation for more information about compression levels.## Changing compression on or off after backups have already been done# will require both compressed and uncompressed pool files to be stored.# This will increase the pool storage requirements, at least until all# the old backups expire and are deleted.## It is ok to change the compression value (from one non-zero value to# another non-zero value) after dumps are already done.Since BackupPC# matches pool files by comparing the uncompressed versions, it will still# correctly match new incoming files against existing pool files.The# new compression level will take effect only for new files that are# newly compressed and added to the pool.## If compression was off and you are enabling compression for the first# time you can use the BackupPC_compressPool utility to compress the# pool.This avoids having the pool grow to accommodate both compressed# and uncompressed backups.See the documentation for more information.## Note: compression needs the Compress::Zlib perl library.If the# Compress::Zlib library can't be found then $Conf{CompressLevel} is# forced to 0 (compression off).#$Conf{CompressLevel} = 3;## Timeout in seconds when listening for the transport program's# (smbclient, tar etc) stdout. If no output is received during this# time, then it is assumed that something has wedged during a backup,# and the backup is terminated.## Note that stdout buffering combined with huge files being backed up# could cause longish delays in the output from smbclient that# BackupPC_dump sees, so in rare cases you might want to increase# this value.## Despite the name, this parameter sets the timeout for all transport# methods (tar, smb etc).#$Conf{ClientTimeout} = 72000;## Maximum number of log files we keep around in each PC's directory# (ie: pc/$host).These files are aged monthly.A setting of 12# means there will be at most the files LOG, LOG.0, LOG.1, ... LOG.11# in the pc/$host directory (ie: about a years worth).(Except this# month's LOG, these files will have a .z extension if compression# is on).## If you decrease this number after BackupPC has been running for a# while you will have to manually remove the older log files.#$Conf{MaxOldPerPCLogFiles} = 12;## Optional commands to run before and after dumps and restores,# and also before and after each share of a dump.## Stdout from these commands will be written to the Xfer (or Restore)# log file.One example of using these commands would be to# shut down and restart a database server, dump a database# to files for backup, or doing a snapshot of a share prior# to a backup.Example:## $Conf{DumpPreUserCmd} = '$sshPath -q -x -l root $host /usr/bin/dumpMysql';## The following variable substitutions are made at run time for# $Conf{DumpPreUserCmd}, $Conf{DumpPostUserCmd}, $Conf{DumpPreShareCmd}# and $Conf{DumpPostShareCmd}:## $type type of dump (incr or full)# $xferOK 1 if the dump succeeded, 0 if it didn't# $client client name being backed up# $host host name (could be different from client name if# $Conf{ClientNameAlias} is set)# $hostIP IP address of host# $user user name from the hosts file# $moreUsers list of additional users from the hosts file# $share the first share name (or current share for# $Conf{DumpPreShareCmd} and $Conf{DumpPostShareCmd})# $shares list of all the share names# $XferMethod value of $Conf{XferMethod} (eg: tar, rsync, smb)# $sshPath value of $Conf{SshPath},# $cmdType set to DumpPreUserCmd or DumpPostUserCmd## The following variable substitutions are made at run time for# $Conf{RestorePreUserCmd} and $Conf{RestorePostUserCmd}:## $client client name being backed up# $xferOK 1 if the restore succeeded, 0 if it didn't# $host host name (could be different from client name if# $Conf{ClientNameAlias} is set)# $hostIP IP address of host# $user user name from the hosts file# $moreUsers list of additional users from the hosts file# $share the first share name# $XferMethod value of $Conf{XferMethod} (eg: tar, rsync, smb)# $sshPath value of $Conf{SshPath},# $type set to "restore"# $bkupSrcHosthost name of the restore source# $bkupSrcShare share name of the restore source# $bkupSrcNum backup number of the restore source# $pathHdrSrc common starting path of restore source# $pathHdrDestcommon starting path of destination# $fileList list of files being restored# $cmdType set to RestorePreUserCmd or RestorePostUserCmd## The following variable substitutions are made at run time for# $Conf{ArchivePreUserCmd} and $Conf{ArchivePostUserCmd}:## $client client name being backed up# $xferOK 1 if the archive succeeded, 0 if it didn't# $host Name of the archive host# $user user name from the hosts file# $share the first share name# $XferMethod value of $Conf{XferMethod} (eg: tar, rsync, smb)# $HostList list of hosts being archived# $BackupList list of backup numbers for the hosts being archived# $archiveloc location where the archive is sent to# $parfile amount of parity data being generated (percentage)# $compressioncompression program being used (eg: cat, gzip, bzip2)# $compext extension used for compression type (eg: raw, gz, bz2)# $splitsize size of the files that the archive creates# $sshPath value of $Conf{SshPath},# $type set to "archive"# $cmdType set to ArchivePreUserCmd or ArchivePostUserCmd## Note: all Cmds are executed directly without a shell, so the prog name# needs to be a full path and you can't include shell syntax like# redirection and pipes; put that in a script if you need it.#$Conf{DumpPreUserCmd} = undef;$Conf{DumpPostUserCmd} = undef;$Conf{DumpPreShareCmd} = undef;$Conf{DumpPostShareCmd} = undef;$Conf{RestorePreUserCmd}= undef;$Conf{RestorePostUserCmd} = undef;$Conf{ArchivePreUserCmd}= undef;$Conf{ArchivePostUserCmd} = undef;## Whether the exit status of each PreUserCmd and# PostUserCmd is checked.## If set and the Dump/Restore/Archive Pre/Post UserCmd# returns a non-zero exit status then the dump/restore/archive# is aborted.To maintain backward compatibility (where# the exit status in early versions was always ignored),# this flag defaults to 0.## If this flag is set and the Dump/Restore/Archive PreUserCmd# fails then the matching Dump/Restore/Archive PostUserCmd is# not executed.If DumpPreShareCmd returns a non-exit status,# then DumpPostShareCmd is not executed, but the DumpPostUserCmd# is still run (since DumpPreUserCmd must have previously# succeeded).## An example of a DumpPreUserCmd that might fail is a script# that snapshots or dumps a database which fails because# of some database error.#$Conf{UserCmdCheckStatus} = 1;## Override the client's host name.This allows multiple clients# to all refer to the same physical host.This should only be# set in the per-PC config file and is only used by BackupPC at# the last moment prior to generating the command used to backup# that machine (ie: the value of $Conf{ClientNameAlias} is invisible# everywhere else in BackupPC).The setting can be a host name or# IP address, eg:## $Conf{ClientNameAlias} = 'realHostName';# $Conf{ClientNameAlias} = '192.1.1.15';## will cause the relevant smb/tar/rsync backup/restore commands to be# directed to realHostName, not the client name.## Note: this setting doesn't work for hosts with DHCP set to 1.#$Conf{ClientNameAlias} = undef;############################################################################ Email reminders, status and messages# (can be overridden in the per-PC config.pl)############################################################################# Full path to the sendmail command.Security caution: normal users# should not allowed to write to this file or directory.#$Conf{SendmailPath} = '/usr/sbin/sendmail';## Minimum period between consecutive emails to a single user.# This tries to keep annoying email to users to a reasonable# level.Email checks are done nightly, so this number is effectively# rounded up (ie: 2.5 means a user will never receive email more# than once every 3 days).#$Conf{EMailNotifyMinDays} = 2.5;## Name to use as the "from" name for email.Depending upon your mail# handler this is either a plain name (eg: "admin") or a fully-qualified# name (eg: "admin@mydomain.com").#$Conf{EMailFromUserName} = 'backuppc';## Destination address to an administrative user who will receive a# nightly email with warnings and errors.If there are no warnings# or errors then no email will be sent.Depending upon your mail# handler this is either a plain name (eg: "admin") or a fully-qualified# name (eg: "admin@mydomain.com").#$Conf{EMailAdminUserName} = 'support-ortega@support.net.de';## Destination domain name for email sent to users.By default# this is empty, meaning email is sent to plain, unqualified# addresses.Otherwise, set it to the destintation domain, eg:## $Cong{EMailUserDestDomain} = '@mydomain.com';## With this setting user email will be set to 'user@mydomain.com'.#$Conf{EMailUserDestDomain} = '';## This subject and message is sent to a user if their PC has never been# backed up.## These values are language-dependent.The default versions can be# found in the language file (eg: lib/BackupPC/Lang/en.pm).If you# need to change the message, copy it here and edit it, eg:## $Conf{EMailNoBackupEverMesg} = <<'EOF';# To: $user$domain# cc:# Subject: $subj# # Dear $userName,# # This is a site-specific email message.# EOF#$Conf{EMailNoBackupEverSubj} = undef;$Conf{EMailNoBackupEverMesg} = undef;## How old the most recent backup has to be before notifying user.# When there have been no backups in this number of days the user# is sent an email.#$Conf{EMailNotifyOldBackupDays} = 7.0;## This subject and message is sent to a user if their PC has not recently# been backed up (ie: more than $Conf{EMailNotifyOldBackupDays} days ago).## These values are language-dependent.The default versions can be# found in the language file (eg: lib/BackupPC/Lang/en.pm).If you# need to change the message, copy it here and edit it, eg:## $Conf{EMailNoBackupRecentMesg} = <<'EOF';# To: $user$domain# cc:# Subject: $subj# # Dear $userName,# # This is a site-specific email message.# EOF#$Conf{EMailNoBackupRecentSubj} = undef;$Conf{EMailNoBackupRecentMesg} = undef;## How old the most recent backup of Outlook files has to be before# notifying user.#$Conf{EMailNotifyOldOutlookDays} = 5.0;## This subject and message is sent to a user if their Outlook files have# not recently been backed up (ie: more than $Conf{EMailNotifyOldOutlookDays}# days ago).## These values are language-dependent.The default versions can be# found in the language file (eg: lib/BackupPC/Lang/en.pm).If you# need to change the message, copy it here and edit it, eg:## $Conf{EMailOutlookBackupMesg} = <<'EOF';# To: $user$domain# cc:# Subject: $subj# # Dear $userName,# # This is a site-specific email message.# EOF#$Conf{EMailOutlookBackupSubj} = undef;$Conf{EMailOutlookBackupMesg} = undef;## Additional email headers.This sets to charset to# utf8.#$Conf{EMailHeaders} = <<EOF;MIME-Version: 1.0Content-Type: text/plain; charset="utf-8"EOF############################################################################ CGI user interface configuration settings# (can be overridden in the per-PC config.pl)############################################################################# Normal users can only access information specific to their host.# They can start/stop/browse/restore backups.## Administrative users have full access to all hosts, plus overall# status and log information.## The administrative users are the union of the unix/linux group# $Conf{CgiAdminUserGroup} and the manual list of users, separated# by spaces, in $Conf{CgiAdminUsers}. If you don't want a group or# manual list of users set the corresponding configuration setting# to undef or an empty string.## If you want every user to have admin privileges (careful!), set# $Conf{CgiAdminUsers} = '*'.## Examples:# $Conf{CgiAdminUserGroup} = 'admin';# $Conf{CgiAdminUsers} = 'craig celia';# --> administrative users are the union of group admin, plus# craig and celia.## $Conf{CgiAdminUserGroup} = '';# $Conf{CgiAdminUsers} = 'craig celia';# --> administrative users are only craig and celia'.#$Conf{CgiAdminUserGroup} = '';#$Conf{CgiAdminUsers} = 'adm sbrechmann mfechner';$Conf{CgiAdminUsers} = '*';## URL of the BackupPC_Admin CGI script.Used for email messages.#$Conf{CgiURL} = "http://cn-iss-backup-01.pvg01.columbus2050.de/BackupPC";# # Language to use.See lib/BackupPC/Lang for the list of supported# languages, which include English (en), French (fr), Spanish (es),# German (de), Italian (it), Dutch (nl), Polish (pl), Portuguese# Brazillian (pt_br) and Chinese (zh_CH).## Currently the Language setting applies to the CGI interface and email# messages sent to users.Log files and other text are still in English.#$Conf{Language} = 'en';## User names that are rendered by the CGI interface can be turned# into links into their home page or other information about the# user.To set this up you need to create two sprintf() strings,# that each contain a single '%s' that will be replaced by the user# name.The default is a mailto: link.## $Conf{CgiUserHomePageCheck} should be an absolute file path that# is used to check (via "-f") that the user has a valid home page.# Set this to undef or an empty string to turn off this check.## $Conf{CgiUserUrlCreate} should be a full URL that points to the# user's home page.Set this to undef or an empty string to turn# off generation of URLs for user names.## Example:# $Conf{CgiUserHomePageCheck} = '/var/www/html/users/%s.html';# $Conf{CgiUserUrlCreate} = 'http://myhost/users/%s.html';# --> if /var/www/html/users/craig.html exists, then 'craig' will# be rendered as a link to http://myhost/users/craig.html.#$Conf{CgiUserHomePageCheck} = '';$Conf{CgiUserUrlCreate} = 'mailto:%s';## Date display format for CGI interface.A value of 1 uses US-style# dates (MM/DD), a value of 2 uses full YYYY-MM-DD format, and zero# for international dates (DD/MM).#$Conf{CgiDateFormatMMDD} = 2;## If set, the complete list of hosts appears in the left navigation# bar pull-down for administrators.Otherwise, just the hosts for which# the user is listed in the host file (as either the user or in moreUsers)# are displayed.#$Conf{CgiNavBarAdminAllHosts} = 1;## Enable/disable the search box in the navigation bar.#$Conf{CgiSearchBoxEnable} = 1;## Additional navigation bar links.These appear for both regular users# and administrators.This is a list of hashes giving the link (URL)# and the text (name) for the link.Specifying lname instead of name# uses the language specific string (ie: $Lang->{lname}) instead of# just literally displaying name.#$Conf{CgiNavBarLinks} = [ { link=> "?action=view&type=docs", lname => "Documentation", # actually displays $Lang->{Documentation} }, { link=> "http://backuppc.wiki.sourceforge.net", name=> "Wiki", # displays literal "Wiki" }, { link=> "http://backuppc.sourceforge.net", name=> "SourceForge", # displays literal "SourceForge" },];## Hilight colors based on status that are used in the PC summary page.#$Conf{CgiStatusHilightColor} = { Reason_backup_failed => '#ffcccc', Reason_backup_done => '#ccffcc', Reason_no_ping => '#ffff99', Reason_backup_canceled_by_user => '#ff9900', Status_backup_in_progress => '#66cc99', Disabled_OnlyManualBackups => '#d1d1d1', Disabled_AllBackupsDisabled => '#d1d1d1', };## Additional CGI header text.#$Conf{CgiHeaders} = '<meta http-equiv="pragma" content="no-cache">';## Directory where p_w_picpaths are stored.This directory should be below# Apache's DocumentRoot.This value isn't used by BackupPC but is# used by configure.pl when you upgrade BackupPC.## Example:# $Conf{CgiImageDir} = '/var/www/htdocs/BackupPC';#$Conf{CgiImageDir} = '/usr/share/BackupPC/html/';## Additional mappings of file name extenions to Content-Type for# individual file restore.See $Ext2ContentType in BackupPC_Admin# for the default setting.You can add additional settings here,# or override any default settings.Example:## $Conf{CgiExt2ContentType} = {# 'pl'=> 'text/plain',# };#$Conf{CgiExt2ContentType} = { };## URL (without the leading http://host) for BackupPC's p_w_picpath directory.# The CGI script uses this value to serve up p_w_picpath files.## Example:# $Conf{CgiImageDirURL} = '/BackupPC';#$Conf{CgiImageDirURL} = '/BackupPC/p_w_picpaths';## CSS stylesheet "skin" for the CGI interface.It is stored# in the $Conf{CgiImageDir} directory and accessed via the# $Conf{CgiImageDirURL} URL.## For BackupPC v3.x several color, layout and font changes were made.# The previous v2.x version is available as BackupPC_stnd_orig.css, so# if you prefer the old skin, change this to BackupPC_stnd_orig.css.#$Conf{CgiCSSFile} = 'BackupPC_stnd.css';## Whether the user is allowed to edit their per-PC config.#$Conf{CgiUserConfigEditEnable} = 1;## Which per-host config variables a non-admin user is allowed# to edit.Admin users can edit all per-host config variables,# even if disabled in this list.## SECURITY WARNING: Do not let users edit any of the Cmd# config variables!That's because a user could set a# Cmd to a shell script of their choice and it will be# run as the BackupPC user.That script could do all# sorts of bad things.#$Conf{CgiUserConfigEdit} = { FullPeriod => 1, IncrPeriod => 1, FullKeepCnt => 1, FullKeepCntMin => 1, FullAgeMax => 1, IncrKeepCnt => 1, IncrKeepCntMin => 1, IncrAgeMax => 1, IncrLevels => 1, IncrFill => 1, PartialAgeMax => 1, RestoreInfoKeepCnt => 1, ArchiveInfoKeepCnt => 1, BackupFilesOnly => 1, BackupFilesExclude => 1, BackupsDisable => 1, BlackoutBadPingLimit => 1, BlackoutGoodCnt => 1, BlackoutPeriods => 1, BackupZeroFilesIsFatal => 1, ClientCharset => 1, ClientCharsetLegacy => 1, XferMethod => 1, XferLogLevel => 1, SmbShareName => 1, SmbShareUserName => 1, SmbSharePasswd => 1, SmbClientFullCmd => 0, SmbClientIncrCmd => 0, SmbClientRestoreCmd => 0, TarShareName => 1, TarFullArgs => 1, TarIncrArgs => 1, TarClientCmd => 0, TarClientRestoreCmd => 0, TarClientPath => 0, RsyncShareName => 1, RsyncdClientPort => 1, RsyncdPasswd => 1, RsyncdUserName => 1, RsyncdAuthRequired => 1, RsyncCsumCacheVerifyProb=> 1, RsyncArgs => 1, RsyncArgsExtra => 1, RsyncRestoreArgs => 1, RsyncClientCmd => 0, RsyncClientRestoreCmd => 0, RsyncClientPath => 0, FtpShareName => 1, FtpUserName => 1, FtpPasswd => 1, FtpBlockSize => 1, FtpPort => 1, FtpTimeout => 1, FtpFollowSymlinks => 1, FtpRestoreEnabled => 1, ArchiveDest => 1, ArchiveComp => 1, ArchivePar => 1, ArchiveSplit => 1, ArchiveClientCmd => 0, FixedIPNetBiosNameCheck => 1, NmbLookupCmd => 0, NmbLookupFindHostCmd => 0, PingMaxMsec => 1, PingCmd => 0, ClientTimeout => 1, MaxOldPerPCLogFiles => 1, CompressLevel => 1, ClientNameAlias => 0, DumpPreUserCmd => 0, DumpPostUserCmd => 0, RestorePreUserCmd => 0, RestorePostUserCmd => 0, ArchivePreUserCmd => 0, ArchivePostUserCmd => 0, DumpPostShareCmd => 0, DumpPreShareCmd => 0, UserCmdCheckStatus => 0, EMailNotifyMinDays => 1, EMailFromUserName => 1, EMailAdminUserName => 1, EMailUserDestDomain => 1, EMailNoBackupEverSubj => 1, EMailNoBackupEverMesg => 1, EMailNotifyOldBackupDays=> 1, EMailNoBackupRecentSubj => 1, EMailNoBackupRecentMesg => 1, EMailNotifyOldOutlookDays => 1, EMailOutlookBackupSubj => 1, EMailOutlookBackupMesg => 1, EMailHeaders => 1,};
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。