Willkommen im User-Forum von mailbox.org
 

Sharing calendar subscriptions with other users?

Gerd Naschenweng hat dies geteilt, 3 Monaten her
unbeantwortet

I have a family team account with 3 family members. Instead of all 3 family members subscribing separately to subscription calendars (waste collection calendar, Formula1 races, national holidays) is there a way that I create a "global subscription calendar" which subscribes to those calendar feeds and my users can then just subscribe to this "global subscription calendar".

This would then allow me to centrally add new subscriptions or change existing ones. Is this possible or are there any workarounds to achieve this. I would like to avoid that my users re-subscribe to multiple calendars (especially our municipality calendar subscription changes every few months, because they are changing the way the feed works).

Antworten (1)

Foto
1

That only works for calendars and not subscribed calendars:

ff158f6c4edb2692d8ce5d2f52f804b9

I do not see how it is possible to share for example https://www.feiertage-oesterreich.at/kalender-download/ics/feiertage-oesterreich.ics with other users. It would be ideal to have a "Team Calendar" which has multiple sources. The only way I can think this could work is if I create another Mailbox user, just for those shared calendars and then every family member also adds that user's account.

Foto
1

Wenn man z.B. die Feiertage nicht direkt als Kalender einbindet, sondern die ICS-Datei in einen vorhandenen oder dafür angelegten Kalender importiert, kann man anschließend diesen Kalender einschl. der importierten Feiertage für andere freigeben. Ich habe es eben mit der Datei "feiertage-oesterreich.ics" getestet.

Der Import wird hier beschrieben: https://kb.mailbox.org/de/privat/adressbuch-und-kalender/kalender-ferien-feiertage-muellabfuhr-einbinden

Foto
1

Danke Dir, aber der Import ist dann eimalig als Upload - d.h. sollte sich z.b. im Müllabfuhr-Kalendar des Anbieters was ändern muss man das manuell wieder hochladen?

Foto
1

Das ist richtig. Ich mache es aber jetzt schon einige Jahre so mit Feiertagen, Schulferien und Müllabfuhr, und musste in dieser Zeit einmal den Müllkalender (während Corona) zwischendurch aktualisieren. Auch machst Du das ja dann nur in Deinem freigegebenen Kalender, die anderen Familienmitglieder bekommen die Änderung bzw. die jährliche Aktualisierung automatisch. Für mich persönlich ein akzeptabler Kompromiss.

Foto
1

Ich habe auch support kontaktiert, aber glaube nicht das es irgendeine out-of-the-box lösung gibt. ich werde dann einfach ein docker image bauen das über caldav-cli dann die kalendar synct - quasi sowas:

#!/bin/sh
CALENDAR_DIR="/path/to/calendar/files"
mkdir -p $CALENDAR_DIR

# Download the calendars
curl -o $CALENDAR_DIR/refuse_removal.ics "webcal://app.muellapp.com/ical/74418?area_filter=145382%2C145383%2C151900&reminder&day=1&time=18:00"
curl -o $CALENDAR_DIR/austrian_holidays.ics "https://www.feiertage-oesterreich.at/kalender-download/ics/feiertage-oesterreich.ics"
curl -o $CALENDAR_DIR/formula1.ics "webcal://files-f1.motorsportcalendars.com/de/f1-calendar_p1_p2_p3_qualifying_sprint_gp.ics"

# Use a CalDAV client to push these to mailbox.org
# Example using caldav-cli (you need to install and configure it)
caldav-cli --calendar "mailbox.org-calendar-url" --user "your-username" --password "your-password" put $CALENDAR_DIR/refuse_removal.ics
caldav-cli --calendar "mailbox.org-calendar-url" --user "your-username" --password "your-password" put $CALENDAR_DIR/austrian_holidays.ics
caldav-cli --calendar "mailbox.org-calendar-url" --user "your-username" --password "your-password" put $CALENDAR_DIR/formula1.ics

Foto
Hinterlassen Sie einen Kommentar
 
Dateianlage anfügen
You can't vote. Please authorize!