-
Notifications
You must be signed in to change notification settings - Fork 92
Description
https://www.w3.org/TR/activitypub/#outbox
The outbox is discovered through the outbox property of an actor's profile. The outbox MUST be an OrderedCollection.
The outbox stream contains activities the user has published, subject to the ability of the requestor to retrieve the activity (that is, the contents of the outbox are filtered by the permissions of the person reading it). If a user submits a request without Authorization the server should respond with all of the Public posts. This could potentially be all relevant objects published by the user, though the number of available items is left to the discretion of those implementing and deploying the server.
The outbox accepts HTTP POST requests, with behaviour described in Client to Server Interactions.
Conclusion
Some changes:
- "requestor" -> "requester"
- Insert a comma after "Authorization"
- "all of the Public posts" -> "all of the Public activities"
- "all relevant objects" -> "all relevant activities"
Taken together, we can propose the following errata:
Section 5.1 "Outbox", second paragraph should read: ''The outbox stream contains activities the user has published, subject to the ability of the requester to retrieve the activity (that is, the contents of the outbox are filtered by the permissions of the person reading it). If a user submits a request without Authorization, the server should respond with all of the Public activities. This could potentially be all relevant activities published by the user, though the number of available items is left to the discretion of those implementing and deploying the server.''