mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 22:45:05 +00:00
New config option 'drop_dm_from_unknown'.
This commit is contained in:
parent
6a2979c131
commit
93d1649ba6
1 changed files with 10 additions and 0 deletions
|
@ -1045,6 +1045,16 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||||
return 1;
|
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 */
|
/* bring the actor */
|
||||||
a_status = actor_request(snac, actor, &actor_o);
|
a_status = actor_request(snac, actor, &actor_o);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue