From 93d1649ba6f2c9acf9efb854208d7ea117af6026 Mon Sep 17 00:00:00 2001 From: default Date: Wed, 17 May 2023 11:24:47 +0200 Subject: [PATCH] New config option 'drop_dm_from_unknown'. --- activitypub.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/activitypub.c b/activitypub.c index 39d1605..57c3259 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1045,6 +1045,16 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) return 1; } + /* if it's a DM from someone we don't follow, reject the message */ + if (xs_type(xs_dict_get(snac->config, "drop_dm_from_unknown")) == XSTYPE_TRUE) { + if (strcmp(utype, "Note") == 0 && !is_msg_public(snac, msg) && + !following_check(snac, actor)) { + snac_log(snac, xs_fmt("DM rejected from unknown actor %s", actor)); + + return 1; + } + } + /* bring the actor */ a_status = actor_request(snac, actor, &actor_o);