summaryrefslogtreecommitdiff
path: root/activitypub.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed shared inbox distribution logic for Delete messages.Gravatar default2023-12-171-2/+4
|
* Added more code to discard Delete messages earlier.Gravatar default2023-12-161-0/+16
|
* More tweaks to is_msg_for_me().Gravatar default2023-12-151-3/+3
|
* Avoid propagating Undo messages innecesarily.Gravatar default2023-12-151-0/+5
|
* Added a special check for Undo + Follow.Gravatar default2023-12-151-0/+3
|
* More debug tweaks.Gravatar default2023-12-141-2/+2
|
* More log tweaks.Gravatar default2023-12-141-3/+3
|
* Call process_input_message() from the shared-inbox input.Gravatar default2023-12-111-26/+47
| | | | | | This way, some garbage like unrequested Deletes from Mastodon and other transient errors (like unaccessible authors) can be short-circuited before propagating the message to the users.
* Added a special drop for Delete messages from unknown actors.Gravatar default2023-12-111-7/+15
|
* Fixed error message.Gravatar default2023-12-111-1/+1
|
* Do not retry Delete messages on actor error.Gravatar default2023-12-111-0/+6
|
* More logging tweaks.Gravatar default2023-12-111-4/+4
|
* Revert "Reverted actor_request() without user."Gravatar default2023-12-111-8/+8
| | | | This reverts commit 8d0a69cd759813b1304605d1676fbca063f0ccdc.
* Reverted actor_request() without user.Gravatar default2023-12-111-8/+8
| | | | Some sites require even Person requests to be signed.
* Some logging tweaks.Gravatar default2023-12-111-0/+6
|
* Log actor_request() errors.Gravatar default2023-12-111-0/+2
|
* More functions do not require the user argument.Gravatar default2023-12-101-4/+4
|
* actor_request() does not need a user argument.Gravatar default2023-12-101-7/+7
|
* activitypub_request() may have a NULL user.Gravatar default2023-12-101-10/+11
| | | | | In the NULL user case, only non-signed requests will be done, but it's probably enough for actor requests in most cases.
* Minor reordering code to process_input_message().Gravatar default2023-12-101-24/+26
|
* process_input_message() returns -1 on errors.Gravatar default2023-12-101-9/+8
|
* Call is_msg_for_me() from global queue input messages.Gravatar default2023-12-101-6/+9
|
* Usage of shared inboxes is now configurable from the server.json file.Gravatar default2023-12-081-3/+2
|
* Also check inside Update messages in is_msg_for_me().Gravatar default2023-12-061-3/+3
|
* Started work to support shared inboxes.Gravatar default2023-12-061-0/+47
|
* Fixed crash in activitypub_request() when there is no payload.Gravatar default2023-11-291-2/+8
|
* Local tag links now point to the search by tag URL.Gravatar default2023-11-081-1/+1
|
* Drop updates for unknown posts.Gravatar default2023-10-161-3/+7
|
* Drop replies to hidden posts.Gravatar default2023-10-161-9/+14
|
* On output, consider HTTP status 405 (not allowed) as a fatal error.Gravatar default2023-10-061-1/+1
|
* Give more retry time to timedout connections.Gravatar default2023-09-291-5/+12
|
* If a metadata starts with https:, convert it to a link.Gravatar default2023-09-221-2/+12
|
* If an account has metadata, return them as attachment PropertyValues in ↵Gravatar default2023-09-181-0/+20
| | | | msg_actor().
* Use xs_match() in some places for more clarity.Gravatar default2023-09-171-8/+5
|
* Also accept Update activities for Page and Article.Gravatar default2023-09-151-2/+4
|
* Discard output messages to blocked instances.Gravatar default2023-09-021-0/+5
|
* Consider error status 400 as fatal in output messages.Gravatar default2023-09-011-1/+1
|
* Some fixes to 'Undo' messages.Gravatar default2023-08-311-4/+12
| | | | | msg_undo() now generates valid messages for objects that are only referenced by its id.
* Added some support for 'Article' object types.Gravatar default2023-08-231-1/+3
|
* Also propagate the 'conversation' field, if there is one.Gravatar default2023-08-221-0/+4
|
* Be more strict when serving note objects.Gravatar default2023-08-181-0/+4
|
* Fixed some warning.Gravatar default2023-08-141-4/+4
|
* If a user 'header' field is defined, use it.Gravatar default2023-08-141-0/+10
|
* Ignore 'Add' activities ASAP.Gravatar default2023-08-131-5/+10
|
* Don't archive Accept + Create activities as errors.Gravatar default2023-08-131-0/+5
| | | | They may be (or not, not remember from the doc), but I don't care.
* Use some new xs_stock values.Gravatar default2023-08-131-4/+2
|
* Rewritten actor_get() to not depend on a user.Gravatar default2023-08-121-1/+1
|
* Rewritten is_msg_public() to not depend on a user.Gravatar default2023-08-121-7/+24
|
* Archive JSON errors in activitypub_post_handler.Gravatar default2023-08-111-0/+2
|
* More strict retries.Gravatar default2023-08-091-1/+1
|