Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nosmall/19073bea6baa2f293d5bf03ac47e4f6d to your computer and use it in GitHub Desktop.
Save nosmall/19073bea6baa2f293d5bf03ac47e4f6d to your computer and use it in GitHub Desktop.
BATCH script for Rclone with email notification

BATCH script for Rclone with email notification

Tools

  • mailsend-go - mailsend-go is a multi-platform command line tool to send mail via SMTP protocol
  • Rclone - Rclone is a command line program to sync files and directories

rclone-sync-v1.bat

* Sends an email with the log file only if the file is not empty.

@ECHO OFF
set hr=%time:~0,2%
if "%hr:~0,1%" equ " " set hr=0%hr:~1,1%
SET DATETIMEF=%date:~-4,4%_%date:~-7,2%_%date:~-10,2%__%hr%_%time:~3,2%_%time:~6,2%
REM %UserProfile%\.config\rclone\rclone.conf
SET RCLONE_CFG_PATH="%UserProfile%\.config\rclone\rclone.conf"
SET RCLONE_EXE_PATH="%~dp0rclone.exe"
SET RCLONE_LOG_FILE="%DATETIMEF%.log"
REM --stats-one-line (DEBUG INFO NOTICE ERROR)
SET RCLONE_OPT_PRM=--log-file=%RCLONE_LOG_FILE% --log-level NOTICE --progress
REM --include *.{vbk} --exclude *.{vib,vbm,bco}
SET RCLONE_OPT_SEC=
REM --bwlimit "06:00,900 18:00,1100 20:00,off"
SET RCLONE_OPT_BWL=
SET RCLONE_OPTIONS=--config=%RCLONE_CFG_PATH% %RCLONE_OPT_PRM% %RCLONE_OPT_SEC% %RCLONE_OPT_BWL%

SETLOCAL
	REM run rclone job
	%RCLONE_EXE_PATH% sync E:\BACKUPS gd:/Veeam %RCLONE_OPTIONS%

	REM if exist log file send it
	for %%A in (%RCLONE_LOG_FILE%) do if not %%~zA==0 (
		mailsend-go -sub "Rclone LOG (ve0-JP-HYPER-V)" body -file "%RCLONE_LOG_FILE%" -to "[email protected]" -smtp smtp.seznam.cz -port 465 auth -user smtp.relay@email.cz -pass "YourTopSecretPassword" -bcc "[email protected]" -from "[email protected]"
		del %RCLONE_LOG_FILE% /f /q
	) else ( del %RCLONE_LOG_FILE% /f /q )
ENDLOCAL

rclone-sync-v2.bat

* Sends an email with the log file only if the file is not empty, in any case it sends a confirmation that the job is complete.

@ECHO OFF
set hr=%time:~0,2%
if "%hr:~0,1%" equ " " set hr=0%hr:~1,1%
SET DATETIMEF=%date:~-4,4%_%date:~-7,2%_%date:~-10,2%__%hr%_%time:~3,2%_%time:~6,2%
REM %UserProfile%\.config\rclone\rclone.conf
SET RCLONE_CFG_PATH="%UserProfile%\.config\rclone\rclone.conf"
SET RCLONE_EXE_PATH="%~dp0rclone.exe"
SET RCLONE_LOG_FILE="%DATETIMEF%.log"
REM --stats-one-line (DEBUG INFO NOTICE ERROR)
SET RCLONE_OPT_PRM=--log-file=%RCLONE_LOG_FILE% --log-level NOTICE --progress
REM --include *.{vbk} --exclude *.{vib,vbm,bco}
SET RCLONE_OPT_SEC=
REM --bwlimit "06:00,900 18:00,1100 20:00,off"
SET RCLONE_OPT_BWL=
SET RCLONE_OPTIONS=--config=%RCLONE_CFG_PATH% %RCLONE_OPT_PRM% %RCLONE_OPT_SEC% %RCLONE_OPT_BWL%

SETLOCAL
	REM run rclone job
	%RCLONE_EXE_PATH% sync E:\BACKUPS gd:/Veeam %RCLONE_OPTIONS%

	REM if exist log file send it
	for %%A in (%RCLONE_LOG_FILE%) do if not %%~zA==0 (
		mailsend-go -sub "Rclone LOG (ERROR)" body -file "%RCLONE_LOG_FILE%" -to "[email protected]" -smtp smtp.seznam.cz -port 465 auth -user smtp.relay@email.cz -pass "YourTopSecretPassword" -bcc "[email protected]" -from "[email protected]"
		del %RCLONE_LOG_FILE% /f /q
	) else (
		mailsend-go -sub "Rclone LOG (SUCCESS)" body -msg "The script was successful." -to "[email protected]" -smtp smtp.seznam.cz -port 465 auth -user smtp.relay@email.cz -pass "YourTopSecretPassword" -bcc "[email protected]" -from "[email protected]"
		del %RCLONE_LOG_FILE% /f /q
	)
ENDLOCAL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment