Can you tell I'm REALLY avoiding another task right now?
[citadel.git] / citadel / server / modules / calendar / serv_calendar.h
1 // iCalendar implementation for Citadel
2 //
3 // Copyright (c) 1987-2024 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or disclosure
6 // is subject to the terms of the GNU General Public License version 3.
7
8 // "server_generated_invitations" tells the Citadel server that the
9 // client wants invitations to be generated and sent out by the
10 // server.  Set to 1 to enable this functionality.
11
12 // "avoid_sending_invitations" is a server-internal variable.  It is
13 // set internally during certain transactions and cleared
14 // automatically.
15
16 struct cit_ical {
17         int server_generated_invitations;
18         int avoid_sending_invitations;
19 };
20
21 #define CIT_ICAL CC->CIT_ICAL
22 #define MAX_RECUR 1000