summaryrefslogtreecommitdiff
path: root/activitypub.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Be more strict in not retrying on permanent errors.Gravatar default2023-08-091-2/+2
|
* Renamed json dump functions to new xs spec.Gravatar default2023-08-081-2/+2
|
* Fixed votersCount.Gravatar default2023-08-081-2/+7
|
* Limited users can announce our own posts.Gravatar default2023-08-071-4/+4
|
* Some fixes to limiting actors.Gravatar default2023-08-071-21/+22
|
* Added command-line interface for limit/unlimit users.Gravatar default2023-08-061-1/+1
|
* Drop announces from limited users.Gravatar default2023-08-061-0/+3
|
* Fixed a log message level.Gravatar default2023-08-021-1/+1
|
* Fixed outbox to be an OrderedCollection of Create+Note, not Note.Gravatar default2023-07-291-3/+4
|
* msg_create() is of type @wrapper.Gravatar default2023-07-291-1/+11
| | | | This means that it also generate the same id for the same Note.
* Updated comment in headers.Gravatar default2023-07-281-1/+1
|
* Deleted a comment that is no longer true.Gravatar default2023-07-241-5/+0
|
* Improved Accept + implicit Follow code.Gravatar default2023-07-241-1/+12
|
* Added support for Accept objects that only provide an object id.Gravatar default2023-07-241-2/+4
| | | | This allows following Guppe groups.
* Increased recursion level for timeline_request().Gravatar default2023-07-181-3/+2
|
* Avoid incomplete messages in timeline_request().Gravatar default2023-07-151-0/+3
|
* Use the right object id when storing Announce + Create + Note objects.Gravatar default2023-07-141-3/+5
|
* Increased log level for Announce error requests.Gravatar default2023-07-131-1/+1
|
* Added support for the 'Page' ActivityPub object.Gravatar default2023-07-131-7/+21
| | | | So that you can follow and interact with lemmy channels.
* Added a maximum level of recursion to timeline_request().Gravatar default2023-07-131-7/+8
|
* Always log send status in post_message().Gravatar default2023-07-131-4/+5
|
* New function post_message(), to send a message bypassing the output queue.Gravatar default2023-07-131-2/+17
| | | | | | | This is used when accepting Follow requests; this way, follows are confirmed as fast as possible. If the message cannot be immediately sent, it's queued as always.
* Minor prototype tweak.Gravatar default2023-07-131-2/+3
|
* activitypub.c: Remove unused variable.Gravatar Yonle2023-07-121-1/+0
|
* Fixed weird prototype of process_tags().Gravatar default2023-07-041-5/+6
|
* The actor bio now accepts tags.Gravatar default2023-07-041-1/+4
|
* More unfollow notification tweaks.Gravatar default2023-07-041-1/+4
|
* Also show unfollows in the notification area.Gravatar default2023-07-041-1/+1
|
* Call is_instance_blocked() from activitypub_post_handler().Gravatar default2023-06-291-2/+11
|
* Increased log level for 'not for us' messages.Gravatar default2023-06-261-1/+1
|
* Defend from kbin.social messages not having a content-type header.Gravatar default2023-06-191-0/+3
|
* Increased debug level for NOT collecting inboxes.Gravatar default2023-06-161-1/+1
|
* Added a comment about Announces of non-Notes.Gravatar default2023-06-111-0/+5
|
* No more archiving of borked Likes.Gravatar default2023-06-111-6/+0
|
* Also reject Like messages in is_msg_for_me().Gravatar default2023-06-111-1/+5
|
* Log malformed Likes from wafrn.net (who else?).Gravatar default2023-06-111-0/+6
|
* Fixed comment.Gravatar default2023-06-111-1/+1
|
* Disable `timeline_request_replies()` temporarily.Gravatar default2023-06-111-0/+9
|
* Use a different variable name to store the id of 'embedded' children.Gravatar default2023-06-111-3/+3
|
* New function enqueue_request_replies().Gravatar default2023-06-071-4/+9
| | | | | | This way, the (potentially expensive and slow) call to timeline_request_replies() is detached from actions like replying a message from the web ui.
* Changed timeline_request_replies() to receive an id and not an object.Gravatar default2023-06-071-5/+9
|
* New function timeline_request_replies().Gravatar default2023-06-071-7/+67
| | | | | | | | | | This function downloads and stores all replies to a message, recursively. Increases traffic. Mastodon instances request the user actor again and again without caching (when the 'replies' Collection is downloaded). Maybe I'm not doing something correctly?
* Also accept Update + Service messages.Gravatar default2023-06-041-1/+1
|
* If a user config field 'bot' is set to true, identies as such.Gravatar default2023-06-041-0/+4
|
* Updated some data types.Gravatar default2023-06-041-21/+21
|
* More notify tweaks (I'm getting sick of this).Gravatar default2023-06-021-6/+21
|
* Fixed bug in notify() (the poll id was not set).Gravatar default2023-06-021-1/+1
|
* Fixed bug in vote discarding in notify().Gravatar default2023-06-021-1/+3
|
* Disallow empty or repeated options in msg_question().Gravatar default2023-06-011-10/+21
|
* Fixed typo in notify().Gravatar default2023-06-011-1/+1
|