summaryrefslogtreecommitdiff
path: root/activitypub.c (unfollow)
Commit message (Expand)AuthorFilesLines
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
2022-11-17Also log the inbox in send_to_actor().Gravatar default1-1/+1
2022-11-17Use endpoints/sharedInbox instead of inbox, if there is one.Gravatar default1-12/+23
2022-11-13Set "u-url mention" class for mentions.Gravatar default1-1/+1
2022-11-13Some formatting refactoring.Gravatar default1-2/+2
2022-11-07Fixed memory leak.Gravatar default1-1/+1
2022-11-02Use the newly resolved actor in msg_follow() instead of rewriting the old one.Gravatar default1-2/+1
2022-11-02Fixed bug when following by @user@host.Gravatar default1-2/+11
2022-11-02People page started.Gravatar default1-2/+8
2022-11-01Don't store objects other than 'Note' in timeline_request().Gravatar default1-10/+14
2022-10-25Some code moving to avoid false positive leaks.Gravatar default1-2/+2
2022-10-25Fixed leak.Gravatar default1-1/+2
2022-10-21Send notification emails through the queue.Gravatar default1-20/+33
2022-10-21Fixed typo.Gravatar default1-1/+1
2022-10-21Don't notify about admirations of things by others.Gravatar default1-14/+20
2022-10-21Rewritten notify() to write the message in bulk.Gravatar default1-23/+43
2022-10-21New function notify().Gravatar default1-4/+80
2022-10-20Better 'Delete' message logging.Gravatar default1-2/+4
2022-10-16Added support for HEAD methods.Gravatar default1-1/+1
2022-10-10Media can be attached to notes.Gravatar default1-1/+29
2022-10-02Use the time functions of xs_time.h.Gravatar default1-2/+3
2022-10-01Fixed crash.Gravatar default1-2/+3
2022-10-01Also accept 'Delete' on input.Gravatar default1-2/+5
2022-10-01Implemented 'Delete'.Gravatar default1-3/+26
2022-10-01timeline_request() also triggers an actor_request().Gravatar default1-2/+9
2022-10-01New web action 'Unfollow'.Gravatar default1-0/+11
2022-09-30Add a date to a Follow message if it doesn't include one.Gravatar default1-3/+10
2022-09-29New function check_signature() (incomplete).Gravatar default1-1/+4
2022-09-29html_entry() is built in its own string and then added.Gravatar default1-3/+7
2022-09-28Treat 410 Gone from actors specially.Gravatar default1-2/+12
2022-09-28The input queue also has retries.Gravatar default1-6/+15
2022-09-28If an actor cannot be retrieved, move the message back to the queue.Gravatar default1-1/+6
2022-09-28Process 'Update' + 'Person'.Gravatar default1-1/+7
2022-09-28Process 'Undo' + 'Follow'.Gravatar default1-2/+8
2022-09-28'Announce' messages also try to bring the announced actor.Gravatar default1-2/+9
2022-09-28Check for muted actors in Announce messages.Gravatar default1-2/+18
2022-09-28Delete the _snac field in outbox.Gravatar default1-2/+4
2022-09-28The outbox returns now some entries.Gravatar default1-1/+15
2022-09-27Timeline pages are also served.Gravatar default1-7/+15
2022-09-27Call process_tags() from msg_note().Gravatar default1-4/+13
2022-09-27New function process_tags() (untested).Gravatar default1-0/+52
2022-09-27'Accept' messages are processed.Gravatar default1-2/+10
2022-09-27New function msg_follow().Gravatar default1-0/+28
2022-09-27More work in msg_note().Gravatar default1-62/+89