mirror of
https://github.com/pothi/mikrotik-scripts.git
synced 2025-06-20 21:35:43 +02:00
12 lines
329 B
Text
12 lines
329 B
Text
# Email the generic-log when it reaches the threshold!
|
|
|
|
:global adminEmail
|
|
:local emailStatus
|
|
:local logFile "genericLog.1.txt"
|
|
:local fileContent "temp"
|
|
|
|
:do {
|
|
if ( [/file get "flash/$logFile" ] != "no such item" ) do={ :log info "Log file found!" }
|
|
} on-error={ :log warning "Log file isn't big enough!" }
|
|
|
|
:put $fileContent
|