{% extends "base.html" %} {% load static %} {% block title %} {{actor.preferredUsername|default:actor.id }} - Inbox {% endblock %} {% block metadescription %} ActivityPub inbox for {{ actor.preferredUsername|default:actor.id }} {% endblock %} {% block css %} {% endblock %} {% block content %}
ActivityPub Inbox
Inbox for @{{ actor.profile.preferredUsername|default:actor.profile.slug|default:"unknown" }}
{{ actor.follows.count|default:"0" }} Following
{{ actor.followed_by.count|default:"0" }} Followers

Actor Information

{{ actor.profile.name|default:actor.profile.preferredUsername|default:"Unknown Actor" }}
@{{ actor.profile.preferredUsername|default:actor.profile.slug|default:"unknown" }}
{{ actor.type|default:"Person" }} {% if actor.profile.summary %}

{{ actor.profile.summary|linebreaks }}

{% endif %}

Inbox Endpoint

This is the ActivityPub inbox endpoint for receiving activities. Other fediverse actors can send activities to this endpoint.

Supported Methods: POST (for receiving activities), GET (for viewing this page)

Supported Activities

This inbox accepts the following ActivityPub activity types:

Follow
Follow requests
Accept
Accept follow requests
Create
New content creation
Delete
Content deletion
Like
Likes and favorites
Undo
Undo previous actions
{% if not actor.remote %}

Related Endpoints

{% endif %}

Privacy & Security

This inbox uses HTTP Signature verification to authenticate incoming activities. Only valid, signed activities from verified fediverse actors are processed. {% if actor.manuallyApprovesFollowers %} This actor requires manual approval for follow requests. {% else %} This actor automatically accepts follow requests. {% endif %}

{% endblock %} {% block js %} {% endblock %}