Skip to content

CalendarScheduling

Configures calendar scheduling, iTIP messaging, and HTTP RSVP settings.

This object can be configured from the WebUI under Settings › Calendar & Contacts › Scheduling

Type: Boolean · default: true

Enables the scheduling features for calendar events, allowing users to send and receive invitations

Type: Boolean · default: true

Enables the HTTP RSVP feature for calendar invitations, allowing users to respond via a web interface.

Type: Duration · default: "90d"

Sets the expiration duration for HTTP RSVP links, after which they will no longer be valid.

Type: Uri?

Specifies a custom URL for the HTTP RSVP endpoint, where users can respond to calendar invitations.

Type: Boolean · default: false

Automatically adds incoming invitations to the user’s calendar.

Type: Size · default: "512kb" · min: 100

Sets the maximum iCalendar object size for incoming iTIP messages.

Type: UnsignedInt · default: 100 · min: 1

Sets the maximum number of recipients for outbound iTIP messages.

Type: Html? · enterprise

Specifies the HTML template used for rendering iMIP invitations.

Type: Html? · enterprise

Specifies the HTML template used for rendering HTTP RSVP confirmations.

The CalendarScheduling singleton is available via the urn:stalwart:jmap capability.

This is a standard Foo/get method as defined in RFC 8620, Section 5.1.

For singletons, the ids argument should be the literal singleton (or null to return the single instance).

This method requires the sysCalendarSchedulingGet permission.

Terminal window
curl -X POST https://mail.example.com/api \
-H 'Authorization: Bearer $TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"methodCalls": [
[
"x:CalendarScheduling/get",
{
"ids": [
"singleton"
]
},
"c1"
]
],
"using": [
"urn:ietf:params:jmap:core",
"urn:stalwart:jmap"
]
}'

This is a standard Foo/set method as defined in RFC 8620, Section 5.3.

For singletons, only the update argument with id singleton is accepted; create and destroy arguments are rejected.

This method requires the sysCalendarSchedulingUpdate permission.

Terminal window
curl -X POST https://mail.example.com/api \
-H 'Authorization: Bearer $TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"methodCalls": [
[
"x:CalendarScheduling/set",
{
"update": {
"singleton": {
"enable": true
}
}
},
"c1"
]
],
"using": [
"urn:ietf:params:jmap:core",
"urn:stalwart:jmap"
]
}'

stalwart-cli wraps the same JMAP calls. See the CLI reference for installation, authentication, and general usage.

Terminal window
stalwart-cli get CalendarScheduling
Terminal window
stalwart-cli update CalendarScheduling --field enable=true