Receiving Web­mentions

While the Komments plugin cannot directly receive (or send) Webmentions, it's built to work together with the IndieConnector plugin.

The IndieConnector can receive Webmentions, processes them and then fires a Kirby Hook. The Komments plugin listens to this hook and saves each Webmention as a comment with a matching type.

You can then list those Webmention by using the snippets or by building your own solution.

By default, Webmention are published automatically. You can change this via an option in your config.php:

'mauricerenck.komments.webmentions.publish' => false

You can also disable receiving Webmentions completely:

'mauricerenck.komments.webmentions.enabled' => false

In case you turned off automatically publishing Webmentions, you'll need to enable listing Webmentions in the moderation view by setting:

'mauricerenck.komments.panel.webmentions' => true

Next steps