summaryrefslogtreecommitdiff
path: root/activitypub.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added OpenBSD's unveil() and pledge() support.Gravatar Andrew Alderwick2023-01-131-10/+32
|
* Some mention formatting tweaks.Gravatar default2023-01-131-1/+2
|
* Added (partial) support for #HashTags in posts.Gravatar default2023-01-121-5/+16
|
* Deleted unused argument in timeline_request().Gravatar default2023-01-111-6/+6
|
* Deleted unused argument in timeline_admire().Gravatar default2023-01-111-2/+2
|
* Deleted unused arguments in timeline_add().Gravatar default2023-01-111-3/+3
|
* More keyId/signature tweaks.Gravatar default2023-01-111-6/+1
|
* Log tweaks.Gravatar default2023-01-101-1/+1
|
* Use the already loaded actor in check_signature().Gravatar default2023-01-101-1/+1
|
* Fixed log level for 'serving actor'.Gravatar default2022-12-241-1/+1
|
* Added a working space to timeline_request().Gravatar default2022-12-231-9/+13
|
* Don't rewrite the id unless it's different.Gravatar default2022-12-231-4/+7
|
* Corrected a debug level.Gravatar default2022-12-231-1/+2
|
* Fixed crash on some webfinger errors.Gravatar default2022-12-231-2/+2
|
* timeline_request() fixes the canonical id for the object.Gravatar default2022-12-231-11/+18
|
* Don't generate inReplyTo as an empty string.Gravatar default2022-12-231-1/+1
|
* Log the actor request.Gravatar default2022-12-161-0/+2
|
* In msg_note(), delete all cc recipients also in the to.Gravatar default2022-12-161-0/+9
|
* Replaced all calls to post() with enqueue_message().Gravatar default2022-12-161-1/+1
|
* New function enqueue_message().Gravatar default2022-12-161-0/+11
|
* Lower debug level to repeated follows.Gravatar default2022-12-151-1/+1
|
* Log repeated Follow messages.Gravatar default2022-12-151-12/+16
|
* Added support for Update + Note on input.Gravatar default2022-12-151-0/+8
|
* Some code reordering to placate scan-build's wrath.Gravatar default2022-12-141-6/+14
|
* Log the response date in send_to_inbox() errors.Gravatar default2022-12-111-0/+5
|
* In process_queue(), do not retry for 404 or 410 status.Gravatar default2022-12-101-0/+4
|
* Added level of debug for 'Delete' messages.Gravatar default2022-12-081-1/+1
|
* Pagination of the public and private pageGravatar Alex Schroeder2022-12-061-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.
* Use "new" instead of "New" for log messagesGravatar Alex Schroeder2022-12-041-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.
* New function timeline_simple_list().Gravatar default2022-12-031-1/+1
|
* More old code cleaning.Gravatar default2022-12-021-3/+3
|
* Renamed timeline_here() to object_here().Gravatar default2022-12-021-1/+1
|
* Fixed one post queries.Gravatar default2022-12-021-4/+1
|
* Fixed RSS and outbox to use the new data storage.Gravatar default2022-12-021-6/+9
|
* Big data storage change.Gravatar default2022-12-021-3/+3
|
* Added the profile="" argument to Person content-type.Gravatar default2022-12-011-1/+1
|
* Deleted dump of debugging code.Gravatar default2022-11-281-8/+0
|
* Use xs_set in recipient_list() and inbox_list().Gravatar default2022-11-281-13/+14
|
* Upgraded followers to the new db.Gravatar default2022-11-281-5/+3
|
* Dump bad signature headers to /tmp/ (temporary).Gravatar default2022-11-271-0/+8
|
* I was using fclose() instead of pclose(). What a moron.Gravatar default2022-11-271-1/+1
|
* New function object_add_ow().Gravatar default2022-11-261-2/+0
|
* Also call object_del() on a renewed actor in actor_request().Gravatar default2022-11-251-0/+1
|
* On Update + Person, call object_del() before actor_add().Gravatar default2022-11-251-0/+2
|
* In msg_note(), also add the in_reply_to author as a tag.Mention.Gravatar default2022-11-221-6/+21
|
* Logging tweaks.Gravatar default2022-11-181-3/+3
|
* Always log process_queue sending.Gravatar default2022-11-181-2/+2
|
* Queue messages to inboxes instead of actors.Gravatar default2022-11-171-8/+33
|
* Move send to actor logging to process_queue().Gravatar default2022-11-171-4/+4
|
* Also log the inbox in send_to_actor().Gravatar default2022-11-171-1/+1
|