Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

This is why the forums don’t syndicate to Mastodon

General Discussion
3 3 0
  • This is why the forums don’t syndicate to Mastodon

    Twice, in the past, I have thought it would be nice if everyone’s stuff made it out onto social media. Both times, I have enabled syndicating forum topics. Both times it went badly.

    We ended up syndicating spam that is easy to remove here, but hangs about in FediSpace forever.

    A bit like this:

    Forum spam that got syndicated out

    I’m sure there must be a way to revoke that stuff, but I’m not sure what that way is. So, until we can undo spam that gets syndicated, forum stuff will remain local only. If someone can help me figure out how to unspam social media, I think it would be nicer to take a poll to see if our active members even want our forums appearing on social media.

  • This is why the forums don’t syndicate to Mastodon

    Twice, in the past, I have thought it would be nice if everyone’s stuff made it out onto social media. Both times, I have enabled syndicating forum topics. Both times it went badly.

    We ended up syndicating spam that is easy to remove here, but hangs about in FediSpace forever.

    A bit like this:

    Forum spam that got syndicated out

    I’m sure there must be a way to revoke that stuff, but I’m not sure what that way is. So, until we can undo spam that gets syndicated, forum stuff will remain local only. If someone can help me figure out how to unspam social media, I think it would be nicer to take a poll to see if our active members even want our forums appearing on social media.

    I'd say that forums are definitely welcome and needed on the Fediverse, and can coexist well with microblog platforms like Mastodon.

    ActivityPub.Space is proof of that!

    We straddle both the microblogs and threaded discussions.

    Spam is taken care of just like everywhere else: Delete activities.

  • I'd say that forums are definitely welcome and needed on the Fediverse, and can coexist well with microblog platforms like Mastodon.

    ActivityPub.Space is proof of that!

    We straddle both the microblogs and threaded discussions.

    Spam is taken care of just like everywhere else: Delete activities.

    Agreed that forums are definitely needed, and the energy NodeBB has brought to the Fediverse has been very welcome indeed! The coexistence is often smooth but sometimes quite clunky (although of course that's true for ActivityPub platforms in general).

    Specifically for the deletes, I had also run into problems where they weren't getting propagated everywhere. Not sure if there's a similar thing happening here; If I recall correctly, the issue I was experiencing related to unsigned fetches.

    @julian


Gli ultimi otto messaggi ricevuti dalla Federazione
  • From its conception, #Enigmatick has leaned heavily on the /inbox and /outbox endpoints for client operations. There are some /api endpoints, but I avoid that were I can shoehorn operations into the #ActivityPub specification and #ActivityStreams vocabulary.

    While typical operational activities are fairly well accounted for, administration is a weak point. For example: I haven't identified a clear way to use the currently described mechanisms for an administrative user to pull up and manage instances or actors on a server.

    I've relied on CLI tools (e.g., ./enigmatick --help) to manage some of that. And in some cases, I know how to manipulate data in my database, so I haven't worried too much about building tooling. But I'd like to ship something that other folks can use to share in my efforts, so I've been thinking about how to model those activities in an ActivityPub-esque way to use in the Svelte UI.

    ActivityPub Messages

    To that end, I'm now using Block and Delete activities sent from the client to the server outbox to manage the blocking of instances and purging of data.

    { "@context": [ "https://www.w3.org/ns/activitystreams", { "ek": "https://enigmatick.social/ns#", "Instance": "ek:Instance" } ], "id": "https://enigmatick.social/activities/550e8400-e29b-41d4-a716-446655440000", "type": "Block", "actor": "https://enigmatick.social/user/system", "object": { "type": "Instance", "id": "https://spammy-instance.example" } }

    In practice, my client does not generate the id, but that attribute is generated by the server and the Activity is stored alongside other typically federated activities. These local Block activities are not federated out to other servers; they are intended solely for local server management.

    The Block activity is sent as a message signed at the client by a user with administrative privileges on the server. Enigmatick's user authentication is unique (i.e., I use a separate set of encryption keys for client-signing executed by a wasm module in the browser). That can be a topic for a future article.

    That the actor as the system Application user is important. That is used by the server to establish the scope of this action as system-wide, not just for a single user. The system actor is discoverable in the nodeinfo metadata.

    I'm using a typed object rather than just an id reference. This is so that I can use this same flow for blocking and purging Actor objects (i.e., the type would be Person, Service, or Application).

    The purge action is similar, using the Delete activity.

    { "@context": [ "https://www.w3.org/ns/activitystreams", { "ek": "https://enigmatick.social/ns#", "Instance": "ek:Instance" } ], "id": "https://enigmatick.social/activities/550e8400-e29b-41d4-a716-446655440000", "type": "Delete", "actor": "https://enigmatick.social/user/system", "object": { "type": "Instance", "id": "https://spammy-instance.example" } }

    The term, "delete" is a bit of a misnomer in this case as it applies to the instance specifically. The instance will remain, but the objects, activities, and actors associated with that instance will be fully deleted (i.e., not set to Tombstone).

    Collection Endpoints

    To facilitate the UI operations, I've created two new collection endpoints on my server: /instances and /actors. These endpoints provide typical ActivityPub Collection objects.

    { "@context": [ "https://www.w3.org/ns/activitystreams", { "Instance": "ek:Instance", "activitiesCount": "ek:activitiesCount", "actorsCount": "ek:actorsCount", "blocked": "ek:blocked", "ek": "https://enigmatick.social/ns#", "lastMessageAt": "ek:lastMessageAt", "objectsCount": "ek:objectsCount" } ], "type": "OrderedCollection", "id": "https://enigmatick.social/instances", "totalItems": 7702, "orderedItems": [ { "type": "Instance", "id": "https://example-instance.name", "blocked": false, "created": "2025-12-16T16:56:33Z", "lastMessageAt": "2025-12-16T16:56:33Z", "actorsCount": 0, "objectsCount": 1, "activitiesCount": 0 } ], "first": "https://enigmatick.social/instances?max=9223372036854775807", "last": "https://enigmatick.social/instances?min=0", "next": "https://enigmatick.social/instances?max=1765657395402834" }

    I've added some extensions in the @context to account for a few non-standard attributes.

    That collection is used by the UI.

    The Enigmatick instances UI showing the most recently discovered instances from the enigmatick.social server

    Collection Discovery

    nodeinfo is a common protocol used for discovering information about ActivityPub-speaking servers. I've extended my use of that to facilitate client-discovery of these new endpoints using the metadata object contained in the nodeinfo JSON.

    "metadata": { "actor": "https://enigmatick.social/user/system", "adminActors": "https://enigmatick.social/actors", "adminInstances": "https://enigmatick.social/instances", "domain": "enigmatick.social", "url": "https://enigmatick.social" } Final Thoughts

    As I'm reading through this, I see some opportunities for refinement. I should probably be using OrderedCollectionPage instead of OrderedCollection for my collection endpoints. I'm sure there are other tweaks to be made.

    read more

  • Agreed that forums are definitely needed, and the energy NodeBB has brought to the Fediverse has been very welcome indeed! The coexistence is often smooth but sometimes quite clunky (although of course that's true for ActivityPub platforms in general).

    Specifically for the deletes, I had also run into problems where they weren't getting propagated everywhere. Not sure if there's a similar thing happening here; If I recall correctly, the issue I was experiencing related to unsigned fetches.

    @julian

    read more

  • @klu9 @eyeinthesky

    Having multiple servers connect to each other is Federation.

    Having multiple independent servers (regardless of whether they connect to each other or not) is Decentralization.

    ...

    TS is an independent server — thus, it with others form Decentralized social-media.

    TS does not connect to other servers — thus, not Federated.

    read more

  • @reiver @eyeinthesky

    I'm afraid I'm not knowledgeable enough to understand the difference

    read more

  • @klu9 @eyeinthesky

    TS removed the Federation — not the Decentralized.

    read more

  • @reiver @eyeinthesky

    Isn't the key technical difference between & regular that TS removed the decentralization?

    read more

  • @eyeinthesky

    For better or worse, he is also probably the most successful example of a politician embracing and using decentralized social-media.

    read more

  • I'd say that forums are definitely welcome and needed on the Fediverse, and can coexist well with microblog platforms like Mastodon.

    ActivityPub.Space is proof of that!

    We straddle both the microblogs and threaded discussions.

    Spam is taken care of just like everywhere else: Delete activities.

    read more
Post suggeriti
  • 0 Votes
    1 Posts
    0 Views
    We're very excited to announce that we're sponsoring Protocols for Publishers - @team - in London.As well as helping support the event, @saskia will be joined by Siddhartha from The Bristol Cable to talk about building a social app for a local community, with their local news publisher.Find out more here: https://protocolsforpublishers.com/london-2026/#ProtocolsForPublishers #ActivityPub #SocialWeb #Fediverse #SocialMedia #Mastodon #Event #London
  • 0 Votes
    1 Posts
    10 Views
    There are two big features in release v3.1.3 of Ktistec: auto-approve followers and a new image viewer.Auto-approve followers is conceptually simple ("the server automatically sends an Accept activity when it receives a Follow activity") but it required extensive changes to some of the oldest code in the codebase: the inboxes and outboxes controllers. I refactored inbox and outbox side-effect processing into independent services, which made it possible to support side-effects like auto-approve follow (and also auto-follow back), without having to go through the controllers.A more significant change for me personally was replacing the lightGallery image gallery (an external dependency) with my own implementation. It's not as slick, and not as full of features—I wrote it in two days—but it is fully free software, and that's important to me.AddedAdd admin page for managing OAuth access tokens.Add support for auto-approve followers. (fixes #26)Add support for auto-follow back.FixedPrevent triggering actor refresh when user is anonymous.ChangedReplace "lightgallery" dependency with custom image viewer.Set OAuth access token expiry to 30 days (previously expired after 24 hours).Refactor inbox and outbox processing into dedicated processor services.The OAuth changes set the groundwork for better support of the Mastodon API and the Fediverse clients that depend on it. Stay tuned!#ktistec #fediverse #activitypub #crystallang
  • 0 Votes
    2 Posts
    17 Views
    The Discourse ActivityPub plugin is developed by a sole developer but I believe it is ready for use. I also believe he is still working on the plugin so that's positive news. Federation with Discourse forums is tricky, it's been difficult getting NodeBB to work reliably with Discourse. Are you able to load Discourse categories in Lemmy?
  • 0 Votes
    1 Posts
    5 Views
    Version audio de l'article éponyme publié le 30 novembre 2021, sur le Framablog. Lecture et réalisation audio : Sualtam, auteur du site lectureaudio.fr Texte : Framasoft (CC-By-Sa)