Good afternoon,
I’ve rsync’ed the /opt/indico/custom/templates/core/events/reminders/emails/event_reminder.txt from the old server (v2.1.4) to the new one (v3.3.6), I’ve restarted the indico-uwsgi service, but the reminder email is the default one and not my template.
The reminder email I’m getting is:
"[Indico] [Event reminder] Test IT (7/23/25, 4:00 PM Europe/Madrid)
to me
Please note that the event “Test IT” will start on Jul 23, 2025, 4:00 PM (Europe/Madrid).
It will take place at Zoom Rooms (Zoom/Online-Room - Seminar room).
Address:"
While the reminder from the old server, with the same template is like:
"[Indico] REMINDER - Theory Seminar: Wednesday, July 2, 2025 at 11:45
to
Theory Seminar:
“Seminar title”
by
“Person doing the Seminar”
Wednesday, July 2, 2025 at 11:45"
Asking ChatGPT I’ve modified permissions so now it’s “-rw-r–r-- 1 indico www-data”. Also, it told me that for Indico v3.3.6 the file should be named event_reminder_default.txt and also that it should be located at /opt/indico/custom/templates/events/reminders/emails, instead of /opt/indico/custom/templates/core/events/reminders/emails. This came from using the following commands with the indico user:
“indico shell
from flask import render_template
render_template(‘events/reminders/emails/event_reminder.txt’, event=…, note=‘REMINDER’)”
And getting errors related to the …/core… directory. Do you need the content from the template?
Thanks,
J