From fd956519e262c5a545a3471af335a04023434866 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 27 Apr 2026 17:17:38 +0200 Subject: [PATCH] backup-email: drop the GMT offset from filename... ... as it is of little help only. Also it is ambiguous due to signdness being dropped when cleaning the name. --- backup-email.rsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup-email.rsc b/backup-email.rsc index 47523f74..70b18c06 100644 --- a/backup-email.rsc +++ b/backup-email.rsc @@ -75,8 +75,8 @@ # filename based on identity :local DirName ("tmpfs/" . $ScriptName); :local Clock [ /system/clock/get ]; - :local FileName [ $CleanName ($Identity . "." . $Domain . [ $IfThenElse ($BackupFileNameDate = true) \ - ("-" . $Clock->"date" . "-" . $Clock->"time" . "-" . $Clock->"gmt-offset") "" ] ) ]; + :local FileName [ $CleanName ($Identity . "." . $Domain . [ $IfThenElse \ + ($BackupFileNameDate = true) ("-" . $Clock->"date" . "-" . $Clock->"time") "" ] ) ]; :local FilePath ($DirName . "/" . $FileName); :local BackupFile "none"; :local ExportFile "none";