summaryrefslogtreecommitdiff
path: root/activitypub.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New config option 'drop_dm_from_unknown'.Gravatar default2023-05-171-0/+10
|
* When updating the user info, also spam the following list.Gravatar default2023-05-171-1/+11
|
* Got rid of xs_encdec.h.Gravatar default2023-05-171-1/+0
|
* Use a different approach towards incomplete mentions.Gravatar default2023-05-121-42/+46
| | | | | This time, incomplete mentions are completed using a) the host of the first mention, if there are any, or b) the current host.
* Resolve (partially) the issue with mentions without server.Gravatar default2023-05-121-18/+51
| | | | | | | | | Mastodon (mainly from the API) usually include mentions without server, which is just stupid. This patch tries to resolve these broken mentions in process_tags() by looking for a user name starting with it in the already pre-populated tag list. As of now, this only works if the message is an inReplyTo and the broken mention is the one of the original (attributedTo) poster.
* Minor refactor to msg_note(): the tag list is created here, not in ↵Gravatar default2023-05-121-8/+5
| | | | process_tags().
* Minor function prototype tweak.Gravatar default2023-05-121-4/+5
|
* Merge pull request 'master' (#1) from grunfink/snac2:master into masterGravatar poesty2023-05-071-9/+47
|\ | | | | | | Reviewed-on: https://codeberg.org/poesty/snac2/pulls/1
| * Implemented 'Ping' and 'Pong' activities.Gravatar default2023-05-051-3/+38
| | | | | | | | According to https://humungus.tedunangst.com/r/honk/v/tip/f/docs/ping.txt
| * Fixed more warnings.Gravatar default2023-05-041-1/+2
| |
| * Added -Wextra to C flags.Gravatar default2023-05-041-0/+2
| |
| * Added some const here and there.Gravatar default2023-05-041-3/+3
| |
| * Deleted real unused parameters.Gravatar default2023-05-041-2/+2
| |
* | Fixed webfinger and curl issuesGravatar poesty2023-05-071-1/+1
|/
* Strip the query string in msg_follow().Gravatar default2023-04-231-1/+3
|
* Added mastoapi follow.Gravatar default2023-04-231-2/+2
|
* Added mastoapi code for account search.Gravatar default2023-04-231-2/+2
|
* Posts can now be sent (still no images).Gravatar default2023-04-151-1/+1
|
* New function timeline_touch().Gravatar default2023-04-141-1/+4
|
* Don't show the full tree in notifications.Gravatar default2023-04-141-0/+3
|
* New function notify_add().Gravatar default2023-04-131-0/+3
|
* Started working on a notification list.Gravatar default2023-04-131-15/+12
|
* New function mastodon_status().Gravatar default2023-04-111-3/+3
|
* Fixed overzealous rejection of Announces.Gravatar default2023-04-051-1/+10
|
* Some log tweaks.Gravatar default2023-04-021-1/+1
|
* In is_msg_public(), also look at 'Announce' messages.Gravatar default2023-03-311-2/+13
|
* Inbox collection can be disabled from the config file.Gravatar default2023-03-081-2/+7
|
* Enable back inbox recollection.Gravatar default2023-03-071-2/+0
|
* Disabled inbox recollection temporarily (for global re push).Gravatar default2023-03-071-0/+2
|
* Reject messages not for me.Gravatar default2023-03-071-4/+3
|
* is_msg_for_me() also accepts msgs where a followed is cc'ed.Gravatar default2023-03-071-3/+7
|
* Some improvements to is_msg_for_me().Gravatar default2023-03-061-19/+39
|
* Fixed is_msg_for_me().Gravatar default2023-03-061-3/+3
|
* New function is_msg_for_me().Gravatar default2023-03-061-1/+34
|
* msg_update() sends copies the 'to' and 'cc' fields in notes.Gravatar default2023-03-061-2/+9
|
* Don't send public admirations of non-public messages.Gravatar default2023-03-061-1/+3
|
* Reject MUTEd actor messages ASAP with a 403 status.Gravatar default2023-03-041-0/+11
|
* Send to collected inboxes AFTER sending to explicit recipients.Gravatar default2023-03-031-13/+13
|
* Log the user-agent when serving the actor.Gravatar default2023-03-021-1/+3
|
* Added user-agent in non-signed http connections.Gravatar default2023-03-021-1/+2
|
* Connection jobs are treated as urgent.Gravatar default2023-03-021-1/+1
|
* Show a bigger piece of a connection error.Gravatar default2023-03-021-3/+3
|
* Output to the shared inboxes only the public messages.Gravatar default2023-03-021-7/+10
|
* Enqueue messages to the collected inboxes first.Gravatar default2023-03-021-1/+10
|
* Simplified is_msg_public().Gravatar default2023-03-021-35/+2
|
* Renamed inboxes/ to inbox/.Gravatar default2023-03-021-1/+2
|
* New inbox collection functions.Gravatar default2023-03-021-16/+2
|
* Minor refactoring to actor_request().Gravatar default2023-03-011-10/+29
| | | | Including commented out experimental code for collecting sharedInboxes.
* New function srv_archive_error().Gravatar default2023-03-011-2/+7
|
* In activitypub_request(), retry failed signed requests as non-signed.Gravatar default2023-02-241-3/+13
|