The name is inbuxa, lowercase, like the wordmark; INBUXA reads as an acronym. The admin and webmail already changed. Here that's everything the server shows people: the brand macro behind the protocol greetings, the HTTP and SCIM realms, the startup banner and the calendar and contact PRODID; the first-party OAuth client descriptions; the legacy-protocol refusals; the default calendar and address book names and the SMTP greeting default, in the code and the schema served to the admin (checksum regenerated); startup and shutdown events; the User-Agent; the sign-in and RSVP pages; the service units; the OpenAPI realm; the crate descriptions and the README, where it's set in bold. Identifiers that are uppercase for their own reasons stay: INBUXA_* settings, SUBSPACE_INBUXA. So do code comments and the AGPL 5(a) notice lines. Tests follow: the IMAP ID name, the default collection names, the PRODID in the iTIP fixtures and the CalDAV free-busy expectations, and the e2e legacy-protocol refusals. The webdav, imap and jmap suites pass, so do the unit tests of every crate touched, and 73 of 75 SMTP tests; of the other two, antispam fails on main too, and queue_retry is a timing flake that passes on its own.
513 lines
14 KiB
Plaintext
513 lines
14 KiB
Plaintext
# Scheduling invalid actions
|
|
|
|
# Event has no scheduling information
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NoSchedulingInfo
|
|
|
|
> reset
|
|
|
|
# X is not the organizer
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NotOrganizerNorAttendee
|
|
|
|
> reset
|
|
|
|
# No attendees
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NothingToSend
|
|
|
|
> reset
|
|
|
|
|
|
# Organizer with client scheduling agent
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER;SCHEDULE-AGENT=CLIENT:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
OtherSchedulingAgent
|
|
|
|
> reset
|
|
|
|
# Single participant with client scheduling agent
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;SCHEDULE-AGENT=CLIENT;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NothingToSend
|
|
|
|
> reset
|
|
|
|
# Only send updates to clients with server scheduling agent
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
ATTENDEE;SCHEDULE-AGENT=CLIENT;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
from: [email protected]
|
|
to: [email protected]
|
|
summary: invite
|
|
summary.attendee: Participants([ItipParticipant { email: "[email protected]", name: None, is_organizer: true }, ItipParticipant { email: "[email protected]", name: Some("B"), is_organizer: false }, ItipParticipant { email: "[email protected]", name: Some("B"), is_organizer: false }])
|
|
summary.dtstart: Time(ItipTime { start: 867787200, tz_id: 32768 })
|
|
summary.summary: Text("Conference")
|
|
BEGIN:VCALENDAR
|
|
METHOD:REQUEST
|
|
PRODID:-//inbuxa//inbuxa Server//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
STATUS:CONFIRMED
|
|
SUMMARY:Conference
|
|
DTEND:19970701T2100000Z
|
|
DTSTART:19970701T200000Z
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B;PARTSTAT=NEEDS-ACTION:mailto:b@ex
|
|
ample.com
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B;PARTSTAT=NEEDS-ACTION:mailto:d@ex
|
|
ample.com
|
|
ORGANIZER:mailto:[email protected]
|
|
UID:[email protected]
|
|
DTSTAMP:0
|
|
SEQUENCE:0
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
# Writing the same event again should not send a new request
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
ATTENDEE;SCHEDULE-AGENT=CLIENT;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NothingToSend
|
|
|
|
# Adding a comment and a custom property should not send a new request
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
ATTENDEE;SCHEDULE-AGENT=CLIENT;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
COMMENT:This is a comment
|
|
X-EXAMPLE:This is an example
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
NothingToSend
|
|
|
|
> reset
|
|
|
|
# Multiple object types should be rejected
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
BEGIN:VTODO
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VTODO
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
MultipleObjectTypes
|
|
|
|
> reset
|
|
|
|
# Multiple organizers should be rejected
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=D:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
MultipleOrganizer
|
|
|
|
> reset
|
|
|
|
# Different UIDs should be rejected
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
MultipleUid
|
|
|
|
> reset
|
|
|
|
# Multiple object instances should be rejected
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
RECURRENCE-ID:19970701T200000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN=B:mailto:[email protected]
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T2100000Z
|
|
RECURRENCE-ID:19970701T200000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
MultipleObjectInstances
|
|
|
|
|
|
> reset
|
|
|
|
# Attendee whose mailto URI percent-encodes a display name is invited at the enclosed addr-spec
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="John Doe";EMAIL="John Doe <[email protected]>":mailto:john%20doe%20%[email protected]%3E
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T210000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
from: [email protected]
|
|
to: [email protected]
|
|
summary: invite
|
|
summary.attendee: Participants([ItipParticipant { email: "[email protected]", name: None, is_organizer: true }, ItipParticipant { email: "[email protected]", name: Some("John Doe"), is_organizer: false }])
|
|
summary.dtstart: Time(ItipTime { start: 867787200, tz_id: 32768 })
|
|
summary.summary: Text("Conference")
|
|
BEGIN:VCALENDAR
|
|
METHOD:REQUEST
|
|
PRODID:-//inbuxa//inbuxa Server//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
STATUS:CONFIRMED
|
|
SUMMARY:Conference
|
|
DTEND:19970701T210000Z
|
|
DTSTART:19970701T200000Z
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="John Doe";EMAIL="John Doe <john.do
|
|
[email protected]>";PARTSTAT=NEEDS-ACTION:mailto:john%20doe%20%3Cjohn.doe@exam
|
|
ple.net%3E
|
|
ORGANIZER:mailto:[email protected]
|
|
UID:[email protected]
|
|
DTSTAMP:0
|
|
SEQUENCE:0
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> reset
|
|
|
|
# Attendee whose mailto URI percent-encodes the addr-spec is decoded
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Jane Doe":mailto:jane%[email protected]?subject=Conference
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T210000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> expect
|
|
from: [email protected]
|
|
to: [email protected]
|
|
summary: invite
|
|
summary.attendee: Participants([ItipParticipant { email: "[email protected]", name: None, is_organizer: true }, ItipParticipant { email: "[email protected]", name: Some("Jane Doe"), is_organizer: false }])
|
|
summary.dtstart: Time(ItipTime { start: 867787200, tz_id: 32768 })
|
|
summary.summary: Text("Conference")
|
|
BEGIN:VCALENDAR
|
|
METHOD:REQUEST
|
|
PRODID:-//inbuxa//inbuxa Server//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
STATUS:CONFIRMED
|
|
SUMMARY:Conference
|
|
DTEND:19970701T210000Z
|
|
DTSTART:19970701T200000Z
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Jane Doe";PARTSTAT=NEEDS-ACTION:ma
|
|
ilto:jane%[email protected]?subject=Conference
|
|
ORGANIZER:mailto:[email protected]
|
|
UID:[email protected]
|
|
DTSTAMP:0
|
|
SEQUENCE:0
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> reset
|
|
|
|
# Attendee whose address cannot be parsed is flagged with SCHEDULE-STATUS 3.7
|
|
> put [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
ORGANIZER:mailto:[email protected]
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Jane Doe":mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Mike Douglass":mailto:not-a-calendar-user
|
|
DTSTAMP:19970611T190000Z
|
|
DTSTART:19970701T200000Z
|
|
DTEND:19970701T210000Z
|
|
SUMMARY:Conference
|
|
UID:[email protected]
|
|
SEQUENCE:0
|
|
STATUS:CONFIRMED
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|
|
> get [email protected] [email protected]
|
|
BEGIN:VCALENDAR
|
|
PRODID:-//Example/ExampleCalendarClient//EN
|
|
VERSION:2.0
|
|
BEGIN:VEVENT
|
|
STATUS:CONFIRMED
|
|
SUMMARY:Conference
|
|
DTEND:19970701T210000Z
|
|
DTSTART:19970701T200000Z
|
|
ATTENDEE;ROLE=CHAIR;PARTSTAT=ACCEPTED;CN=A:mailto:[email protected]
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Jane Doe":mailto:jane.doe@example.
|
|
net
|
|
ATTENDEE;RSVP=TRUE;CUTYPE=INDIVIDUAL;CN="Mike Douglass";SCHEDULE-STATUS=3.7
|
|
:mailto:not-a-calendar-user
|
|
ORGANIZER:mailto:[email protected]
|
|
UID:[email protected]
|
|
DTSTAMP:0
|
|
SEQUENCE:0
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|