MSC4501: Rooms as Social Media Pages#4501
Draft
q-TheDog wants to merge 7 commits into
Draft
Conversation
turt2live
reviewed
Jul 6, 2026
Member
There was a problem hiding this comment.
Implementation requirements:
- Chat client (backwards compatibility), or MSC mechanisms to prevent/discourage chat clients from encountering the data
- Social media client (first party compatibility, multiple)
turt2live
requested changes
Jul 6, 2026
turt2live
left a comment
Member
There was a problem hiding this comment.
Early review for early process requirements.
Member
There was a problem hiding this comment.
This MSC requires sign off before it can enter a proposed FCP merge.
Spiritual successor to the abandoned MSC3639, defining room types for social media profiles (m.social.profile) and groups (m.social.group), a profile-discoverability field built on MSC4133, a post event type reusing m.room.message's schema, a single mechanism for reposts/boosts/ quote-posts, liking via standard m.reaction, room-membership-as-following, and a phased migration plan for treating m.room.message as an interchangeable stand-in for m.social.post during rollout.
Note that a repost's embedded body isn't tied to the referenced event's actual content at all, so a malicious repost could fabricate something the original author never said, not just resurface an edited/retracted statement.
A boost's outer body was empty/absent, which renders as a blank, confusing message bubble in any client without support for this proposal. Require a matrix.to/matrix: permalink to the reposted event instead, so non-compliant clients see an ordinary clickable link, and specify how a compliant client detects and re-renders that case.
a167973 to
69db24c
Compare
A repost previously only carried a copy of the original's body. Carry the whole content object instead (formatted_body, format, media fields like url/file/info, etc.), so a repost of a rich-formatted or media post renders the same as the original rather than degrading to a plain-text stand-in.
m.social.profile_user_id is a new room state event (fixed empty state_key, guaranteeing a room can only claim one owner at a time) that lets a profile room assert which Matrix user it belongs to, independent of its m.room.create creator (which can be a bridge or appservice bot rather than the real owner). Since it isn't one of the state events a default power_levels overrides, it inherits state_default (50, Moderator) rather than Admin-level protection; documented that gap and recommended an explicit override so moderators can't reassign a profile out from under its owner. Also carry the original post's sender and, optionally, displayname in m.social.repost_of, alongside its content, so a repost can credit the original author without a fetch to the original room.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rendered
A spiritual successor to MSC3639 (abandoned): conventions for building a social-media-style app (personal profiles, group pages, following, and a feed) on top of rooms and events.