January 2024 - Missing Pre and Post Backup Scripts

Hi, since January 2nd I have not received any confirmation emails from the 3 raspberry pi4 that I have. I have searched for information in the forums and I can only find a thread with no answer.

Missing Pre and Post Backup Scripts

I don’t know if it only happens on raspbian or also on other versions.
I have tried to look for the scripts in the system inside the urbackup folder of the server and the clients and they don’t appear.

If I go to the logs folder and edit the script below, the one I modified to translate the received emails is there, but it worked fine until January 2nd.

If you can notify me if it is an error and if there is a way to regenerate or copy the scripts so that the copy notices work again.

Thanks for your work

up… anybody can help me?¿?

SOLVED:
The solution to get it to send emails automatically and avoid the error
“Error: Failure when receiving data from the peer(ec=56), response reading failed site”.
was to enter the script (in the logs section)
delete it, click on save. Enter again and paste the original script

local subj = "UrBackup: "
local msg = "UrBackup just did "

if params.incremental>0
then
if params.resumed
then
msg = msg … "a resumed incremental "
subj = subj … "Resumed incremental "
else
msg = msg … "an incremental "
subj = subj … "Incremental "
end
else
if params.resumed
then
msg = msg … "a resumed full "
subj = subj … "Resumed full "
else
msg = msg … "a full "
subj = subj … "Full "
end
end

if params.image>0
then
msg = msg … "image "
subj = subj … "image "
else
msg = msg … "file "
subj = subj … "file "
end

subj = subj … “backup of "” … params.clientname … “"\r\n”
msg = msg … “backup of "” … params.clientname … “".\r\n”
msg = msg … “\r\nReport:\r\n”
msg = msg … “( " … params.infos
if params.infos~=1 then msg = msg … " infos, "
else msg = msg … " info, " end
msg = msg … params.warnings
if params.warnings~=1 then msg = msg … " warnings, "
else msg = msg … " warning, " end
msg = msg … params.errors
if params.errors~=1 then msg = msg … " errors)\r\n\r\n”
else msg = msg … " error)\r\n\r\n" end

for i, v in ipairs(params.data)
do
local ll = “(info)”
if v.ll==1 then ll=“(warning)”
elseif v.ll==2 then ll=“(error)” end
msg = msg … os.date(“%Y-%m-%d %H:%M:%S”, v.time) … ll … ": " … v.msg … “\r\n”
end

if params.success
then
subj = subj … " - success"
else
subj = subj … " - failed"
end

mail(params.report_mail, subj, msg)

return 0