summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/activitypub.c b/activitypub.c
index 03c2ddf..91195cd 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1991,13 +1991,15 @@ void process_user_queue_item(snac *snac, xs_dict *q_item)
/* if it's public, send to the collected inboxes */
if (is_msg_public(msg)) {
- xs *shibx = inbox_list();
- xs_str *inbox;
-
- p = shibx;
- while (xs_list_iter(&p, &inbox)) {
- if (xs_set_add(&inboxes, inbox) == 1)
- enqueue_output(snac, msg, inbox, 0, 0);
+ if (xs_type(xs_dict_get(srv_config, "disable_inbox_collection")) != XSTYPE_TRUE) {
+ xs *shibx = inbox_list();
+ xs_str *inbox;
+
+ p = shibx;
+ while (xs_list_iter(&p, &inbox)) {
+ if (xs_set_add(&inboxes, inbox) == 1)
+ enqueue_output(snac, msg, inbox, 0, 0);
+ }
}
}