Link geofence and notification to calendar - failure - Sends notification even outside the defined time

Antonio Junior9 days ago

Greetings gentlemen,
I would like some guidance on how I am creating a geofence and linking it to a notification. I created a fence name (x), I created a calendar to work daily between the dates/times e.g.: 11/08/2024 1:35 pm and 12/08/2028 1:40 pm, I linked the geofence and also the fence exit notification According to this calendar, before the time I don't receive notification, but after the time I receive it, when I shouldn't. Could you guide me if I'm laughing correctly? I appreciate anyone who can help.
I've already put the server in local UTC America/Recife, but I haven't been successful.
calendar data

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Traccar//NONSGML Traccar//EN
BEGIN:VEVENT
UID:00000000-0000-0000-0000-000000000000
DTSTART;TZID=America/Recife:20241108T133500
DTEND;TZID=America/Recife:20281208T134000
RRULE:FREQ=DAILY
SUMMARY:Event
END:VEVENT
END:VCALENDAR

server data

Universal time: Fri 2024-11-08 16:46:46 UTC
RTC time: n/a
Time zone: UTC (UTC, +0000)
System clock synchronized: yes
systemd-timesyncd.service active: yes
RTC in local TZ: no
Anton Tananaev9 days ago

You created a calendar event that lasts for 4 years, from what I can see.

Antonio Junior9 days ago

Yes Anton, the intention is not to need to create this daily for as long as possible, even when creating events for the same Month/Year that happen outside the range. Am I doing it wrong? If so, could you guide me the correct way?

Anton Tananaev9 days ago

You're definitely doing it wrong. It doesn't make sense to have a "daily" calendar with events that last more than 24 hours. You will end up with constant overlap. You should check ICS format documentation to understand how to do what you want to do.

Antonio Junior9 days ago

Thanks Anton, I'll be researching it.