Email or username:

Password:

Forgot your password?
Top-level
mikołajczyk, podobno
@fedilore Protocol-wise, most software implement quotes the same way replies work. The exception would be platforms implementing [FEP-e232](https://codeberg.org/silverpill/feps/src/branch/main/e232/fep-e232.md), but I think some of the listed ones do both. I’m not sure if vanilla Pleroma does the same, I think it does, but on my personal fork I can’t quote a person without notifying them. I also have a MRF (not enabled by default on Pleroma) that forces remote posts to mention/notify the local user being quoted.
4 comments
Dee Fedilore 🦦

This is a reply to your post, that doesn't have you tagged.

Dee Fedilore 🦦

@mkljczk Okay. So the one with your tag generations a mention, where the one without doesn't.

Trying to read forcementionpolicy (I'm not great at coding), it looks like it basically parses incoming posts that you'd otherwise be able to see? So unlike a real mention, it wouldn't expand privacy under Followers Only or Mentioned People Only to include you.

What does the JSON look like for a quote that doesn't include a visible mention?

mikołajczyk, podobno

@fedilore it's


{



  "@context": [

    "https://www.w3.org/ns/activitystreams",

    "https://pl.fediverse.pl/schemas/litepub-0.1.jsonld",

    { "@language": "und" }

  ],

  "actor": "https://pl.fediverse.pl/users/mkljczk",

  "attachment": [],

  "attributedTo": "https://pl.fediverse.pl/users/mkljczk",

  "cc": ["https://www.w3.org/ns/activitystreams#Public"],

  "content": "quoat<span class=\"quote-inline\"><br/><br/><bdi>RT:</bdi> <a href=\"https://mastodon.social/users/fedilore/statuses/113760448381519789\">https://mastodon.social/users/fedilore/statuses/113760448381519789</a></span>",

  "context": "https://pl.fediverse.pl/contexts/01d72102-a737-40b0-b2d4-c28bd6794a9b",

  "conversation": "https://pl.fediverse.pl/contexts/01d72102-a737-40b0-b2d4-c28bd6794a9b",

  "id": "https://pl.fediverse.pl/objects/a1ebb682-9100-414a-943b-fa45926d8442",

  "published": "2025-01-02T19:38:58.721137Z",

  "quoteUri": "https://mastodon.social/users/fedilore/statuses/113760448381519789",

  "quoteUrl": "https://mastodon.social/users/fedilore/statuses/113760448381519789",

  "sensitive": false,

  "source": { "content": "quoat", "mediaType": "text/plain" },

  "summary": "",

  "tag": [

    {

      "href": "https://mastodon.social/users/fedilore",

      "name": "@fedilore@mastodon.social",

      "type": "Mention"

    },

    {

      "href": "https://mastodon.social/users/fedilore",

      "name": "@fedilore@mastodon.social",

      "type": "Mention"

    }

  ],

  "to": [

    "https://pl.fediverse.pl/users/mkljczk/followers",

    "https://mastodon.social/users/fedilore"

  ],

  "type": "Note"

}

@fedilore it's

 { "@context": [ "https://www.w3.org/ns/activitystreams", "https://pl.fediverse.pl/schemas/litepub-0.1.jsonld", { "@language": "und" } ], "actor": "https://pl.fediverse.pl/users/mkljczk", "attachment": [], "attributedTo": "https://pl.fediverse.pl/users/mkljczk", "cc": ["https://www.w3.org/ns/activitystreams#Public"], "content": "quoat<span class=\"quote-inline\"><br/><br/><bdi>RT:</bdi> <a href=\"https://mastodon.social/users/fedilore/statuses/113760448381519789\">https://mastodon.social/users/fedilo...
Go Up