# This command is included by do-remote-backup.bsh to set parameters. BACKUPNAME="name_to_save_as_in_bup" # Backup set (array of root folders we backup BACKUPSET=( "directories" "tobackup" "in" "the" "root" "directory" ) BACKUPROOT="/cygdrive/c" # Backup destination settings REMOTEUSER="backup" REMOTEHOST="backup-server" REMOTEROOT="backup" REMOTETARSTORAGE="." # File-transfer retry settings MAX_RETRIES=10 # Email Settings MAILTO=("your@email.com") SMTPSERVER="smtp.gmail.com" SMTPPORT="587" SMTPFROM="host@provider.com" SMTPUSER="host account" SMTPPASSWORD="host account password" # minimum time between sending notification emails of backups completed (in seconds) # 43200 = 12 hours MAILFREQUENCY=43200 # skip doing tar archive creation for failed snapshots (not recommended!) SKIPRECOVERY=1