stezkoy/noui-tele-audit

Flarum v2 extension that sends Telegram notifications for moderation and audit events

Maintainers

Package info

github.com/Stezkoy/noui-tele-audit

Issues

Type:flarum-extension

pkg:composer/stezkoy/noui-tele-audit

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

1.0.0 2026-06-30 11:56 UTC

This package is auto-updated.

Last update: 2026-07-01 14:56:42 UTC


README

Русская версия

Flarum v2 extension that sends Telegram notifications for moderation and audit events.

Features

  • New user registration — notifies when a new user registers on the forum
  • Email confirmation — notifies when a user confirms their email
  • Discussion flagged — notifies when a discussion is flagged
  • Multilingual — English, Russian, German, French, Turkish, Italian, Chinese, Polish

Installation

composer require stezkoy/noui-tele-audit
php flarum cache:clear

Configuration

Add the following to your config.php:

    'stezkoy-noui-tele-audit' => array(
        'bot_token' => '1234567890:AAF1Cc2Dd3Ee4Ff5Gg6Hh7Ii8Jj9Kk0Ll',
        'chat_id' => '-1001234567890',
        'topic_id' => '123', // optional — send to a specific topic within a group
        'notify_on_register' => true,
        'notify_on_email_confirmed' => true,
        'notify_on_flag' => true,
    ),
  • token — Telegram bot token from @BotFather
  • chat_id — Chat ID to send messages to
  • topic_id — (optional) Topic ID to send messages to a specific topic in a group
  • notify_on_register — enable/disable registration notifications (default: true)
  • notify_on_email_confirmed — enable/disable email confirmation notifications (default: true)
  • notify_on_flag — enable/disable discussion flag notifications (default: true)

License

GPL-3.0