Docs/Lanes Link/Providers/Fastmail Calendar

Fastmail Calendar

Connect Fastmail Calendar to your agents with Lanes Link. Read and write events over CalDAV.

Read and create events in Fastmail calendars over CalDAV.

Connect it

console
$ lanes link connect fastmail_calendar --profile personal --workspace local

This takes an app password rather than a browser sign-in. One password covers fastmail_contacts and fastmail_mail as well, because they share a credential.

Because it needs no browser, an agent with a shell can do the whole setup:

console
$ printf %s "$TOKEN" | lanes link secrets set fastmail/main --profile personal
$ lanes link connect fastmail_calendar --id main --non-interactive --json --profile personal

Credentials go in on stdin, never as a flag: an argument lands in your shell history, in ps output, and in any transcript.

What your agent can do

CalDAV gives a fixed set of capabilities, the same on every server that speaks it:

  • fastmail_calendar.list_calendars
  • fastmail_calendar.list_events
  • fastmail_calendar.get_event
  • fastmail_calendar.create_event
  • fastmail_calendar.update_event
  • fastmail_calendar.delete_event

What is recorded

Every call is recorded, allowed or refused. The rule is to keep the shape and withhold the words: an audit log that reproduced the content would be a second copy of the thing it was meant to make accountable.

Identifiers such as calendar, start, end, limit, and uid are kept. Everything that carries your words is withheld.

What an entry holds and how to read one is on the audit log.

Narrowing what it may do

Connecting grants the read bundle. Tightening it happens on your machine and takes effect at once:

console
$ lanes link policy deny 'fastmail_calendar.*' --connection fastmail_calendar.main --profile personal --workspace local

A deny always beats an allow, whatever the order in the file. See Scopes and permissions for widening, and for what can and cannot be set per connection.

Untested

The manifest is right in every way the code can check: it validates, its tools generate inside the budget, its scopes are described, and its endpoint answered a probe. Nobody has yet connected it to a real account, which is the part only a real account proves.

If you connect it, say so and this note comes off.


Next: every provider, or Connections for what a connection is and the methods behind one.