1
0
mirror of https://github.com/eworm-de/routeros-scripts.git synced 2024-05-11 05:55:19 +00:00

email-backup: no example address, complain if missing

This commit is contained in:
Christian Hesse
2021-02-18 12:45:16 +01:00
parent 776f072415
commit 3f12730ed4
2 changed files with 6 additions and 2 deletions

View File

@@ -27,6 +27,10 @@ $WaitFullyConnected;
$LogPrintExit error ("Configured to send neither backup nor config export.") true;
}
:if ([ :len $EmailBackupTo ] = 0) do={
$LogPrintExit error ("Configuration is missing recipient for e-mail backup.") true;
}
# filename based on identity
:local FileName [ $CharacterReplace ($Identity . "." . $Domain) "." "_" ];
:local BackupFile "none";

View File

@@ -43,8 +43,8 @@
:global BackupSendExport true;
:global BackupPassword "v3ry-s3cr3t";
# These addresses are used to send backup and config export files to.
:global EmailBackupTo "mail@example.com";
:global EmailBackupCc "another@example.com";
:global EmailBackupTo "";
:global EmailBackupCc "";
# These credentials are used to upload backup and config export files.
# SFTP authentication is tricky, you may have to limit authentication
# methods for your SSH server.