summaryrefslogtreecommitdiff
path: root/activitypub.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Deleted the type argument from object_get_my_md5() and object_get().Gravatar default2023-02-051-5/+5
| | | | It was never used.
* Elevated debug level to bad user / invalid user messages.Gravatar default2023-02-031-1/+1
|
* Email notifications have been moved to the global queue.Gravatar default2023-02-021-21/+25
|
* New function queue() (the global queue).Gravatar default2023-02-021-2/+29
|
* Renamed process_queue_item() to process_user_queue_item().Gravatar default2023-02-021-2/+2
|
* process_queue() has been renamed to process_user_queue().Gravatar default2023-02-021-2/+2
|
* queue() renamed to user_queue().Gravatar default2023-02-021-1/+1
|
* dequeue() does not need a snac argument.Gravatar default2023-02-021-1/+1
|
* New function process_queue_item().Gravatar default2023-01-311-88/+96
|
* Deleted dead code.Gravatar default2023-01-311-13/+0
|
* Unified queue message field names.Gravatar default2023-01-311-2/+5
|
* Image attachments in posts can now have descriptions ('alt text').Gravatar default2023-01-281-14/+11
|
* More tweaks to the default avatar.Gravatar default2023-01-271-1/+6
|
* Some tweaks to the default avatar.Gravatar default2023-01-271-0/+8
|
* New function default_avatar_base64().Gravatar default2023-01-271-0/+16
|
* Use a shorter timeout for first output connections.Gravatar default2023-01-241-6/+6
|
* Always make ids unique.Gravatar default2023-01-221-2/+2
|
* In msg_note(), store the original content in the sourceContent field.Gravatar default2023-01-201-0/+2
|
* Updated year in copyright notices.Gravatar default2023-01-171-1/+1
|
* Process HTML Unicode entities specially in process_tags().Gravatar default2023-01-171-1/+8
|
* 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
|