snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 93d1649ba6f2c9acf9efb854208d7ea117af6026
parent 6a2979c13195a5898dd184a70094285486000d52
Author: default <nobody@localhost>
Date:   Wed, 17 May 2023 11:24:47 +0200

New config option 'drop_dm_from_unknown'.

Diffstat:
Mactivitypub.c | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git 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);