summaryrefslogtreecommitdiff
path: root/activitypub.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-01-13Added OpenBSD's unveil() and pledge() support.Gravatar Andrew Alderwick1-10/+32
2023-01-13Some mention formatting tweaks.Gravatar default1-1/+2
2023-01-12Added (partial) support for #HashTags in posts.Gravatar default1-5/+16
2023-01-11Deleted unused argument in timeline_request().Gravatar default1-6/+6
2023-01-11Deleted unused argument in timeline_admire().Gravatar default1-2/+2
2023-01-11Deleted unused arguments in timeline_add().Gravatar default1-3/+3
2023-01-11More keyId/signature tweaks.Gravatar default1-6/+1
2023-01-10Log tweaks.Gravatar default1-1/+1
2023-01-10Use the already loaded actor in check_signature().Gravatar default1-1/+1
2022-12-24Fixed log level for 'serving actor'.Gravatar default1-1/+1
2022-12-23Added a working space to timeline_request().Gravatar default1-9/+13
2022-12-23Don't rewrite the id unless it's different.Gravatar default1-4/+7
2022-12-23Corrected a debug level.Gravatar default1-1/+2
2022-12-23Fixed crash on some webfinger errors.Gravatar default1-2/+2
2022-12-23timeline_request() fixes the canonical id for the object.Gravatar default1-11/+18
2022-12-23Don't generate inReplyTo as an empty string.Gravatar default1-1/+1
2022-12-16Log the actor request.Gravatar default1-0/+2
2022-12-16In msg_note(), delete all cc recipients also in the to.Gravatar default1-0/+9
2022-12-16Replaced all calls to post() with enqueue_message().Gravatar default1-1/+1
2022-12-16New function enqueue_message().Gravatar default1-0/+11
2022-12-15Lower debug level to repeated follows.Gravatar default1-1/+1
2022-12-15Log repeated Follow messages.Gravatar default1-12/+16
2022-12-15Added support for Update + Note on input.Gravatar default1-0/+8
2022-12-14Some code reordering to placate scan-build's wrath.Gravatar default1-6/+14
2022-12-11Log the response date in send_to_inbox() errors.Gravatar default1-0/+5
2022-12-10In process_queue(), do not retry for 404 or 410 status.Gravatar default1-0/+4
2022-12-08Added level of debug for 'Delete' messages.Gravatar default1-1/+1
2022-12-06Pagination of the public and private pageGravatar Alex Schroeder1-1/+1
Use the query parameters skip and show to control what you can see, e.g. /alex/admin?skip=0&show=4 Don't use or save the timeline cache if either is set. The following functions were changed from accepting a single max parameter to accepting both skip and show: timeline_simple_list, timeline_list, index_list_desc.
2022-12-04Use "new" instead of "New" for log messagesGravatar Alex Schroeder1-2/+2
The messages for new "Like" and new "Delete" started with an uppercase n instead of a lowercase n like all the other log messages.
2022-12-03New function timeline_simple_list().Gravatar default1-1/+1
2022-12-02More old code cleaning.Gravatar default1-3/+3
2022-12-02Renamed timeline_here() to object_here().Gravatar default1-1/+1
2022-12-02Fixed one post queries.Gravatar default1-4/+1
2022-12-02Fixed RSS and outbox to use the new data storage.Gravatar default1-6/+9
2022-12-02Big data storage change.Gravatar default1-3/+3
2022-12-01Added the profile="" argument to Person content-type.Gravatar default1-1/+1
2022-11-30this is actually a pipe not a file, it should be closed as a pipeGravatar Anonymous1-3/+3
2022-11-28Deleted dump of debugging code.Gravatar default1-8/+0
2022-11-28Use xs_set in recipient_list() and inbox_list().Gravatar default1-13/+14
2022-11-28Upgraded followers to the new db.Gravatar default1-5/+3
2022-11-27Dump bad signature headers to /tmp/ (temporary).Gravatar default1-0/+8
2022-11-27I was using fclose() instead of pclose(). What a moron.Gravatar default1-1/+1
2022-11-26New function object_add_ow().Gravatar default1-2/+0
2022-11-25Also call object_del() on a renewed actor in actor_request().Gravatar default1-0/+1
2022-11-25On Update + Person, call object_del() before actor_add().Gravatar default1-0/+2
2022-11-22In msg_note(), also add the in_reply_to author as a tag.Mention.Gravatar default1-6/+21
2022-11-18Logging tweaks.Gravatar default1-3/+3
2022-11-18Always log process_queue sending.Gravatar default1-2/+2
2022-11-17Queue messages to inboxes instead of actors.Gravatar default1-8/+33
2022-11-17Move send to actor logging to process_queue().Gravatar default1-4/+4