PHPackages                             fof/prevent-necrobumping - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. fof/prevent-necrobumping

ActiveFlarum-extension[Utility &amp; Helpers](/categories/utility)

fof/prevent-necrobumping
========================

Warn before necrobumping old discussions

1.2.1(1y ago)631.5k↓44.7%4[3 PRs](https://github.com/FriendsOfFlarum/prevent-necrobumping/pulls)1MITPHPCI passing

Since Jan 3Pushed 3mo ago3 watchersCompare

[ Source](https://github.com/FriendsOfFlarum/prevent-necrobumping)[ Packagist](https://packagist.org/packages/fof/prevent-necrobumping)[ Docs](https://friendsofflarum.org)[ Fund](https://opencollective.com/fof/donate)[ RSS](/packages/fof-prevent-necrobumping/feed)WikiDiscussions 2.x Synced 1mo ago

READMEChangelog (8)Dependencies (5)Versions (22)Used By (1)

Prevent Necrobumping by FriendsOfFlarum
=======================================

[](#prevent-necrobumping-by-friendsofflarum)

[![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667) [![Latest Stable Version](https://camo.githubusercontent.com/7130829f8c5066a1063f9b49aa094557746ac3e759e97e60def7fee0375f8b90/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666f662f70726576656e742d6e6563726f62756d70696e672e737667)](https://packagist.org/packages/fof/prevent-necrobumping) [![OpenCollective](https://camo.githubusercontent.com/1903c197bb0307e60d6328653532b8a6b9890b898fbc92e314ab39d699491e74/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6f70656e636f6c6c6563746976652d666f662d626c75652e737667)](https://opencollective.com/fof/donate) [![Donate](https://camo.githubusercontent.com/6c7b26396e320eb8dd60d767a4500684b60bb7d37f7cacbaf6b2eae6f2d30010/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d6461746974697365762d696d706f7274616e742e737667)](https://datitisev.me/donate)

A [Flarum](http://flarum.org) extension. Warn before necrobumping old discussions.

> **Necrobump (verb)**:
>
> To revive a long dormant forum thread by adding a new post, thus bringing it to the top of the forum list. Often a tactic of trolls attempting to control a forum.
>
>

[![screenshot](https://camo.githubusercontent.com/22ae568a0268a5de526021a477ad07c45255300a0ef5ce86d43b2da3ad208f44/68747470733a2f2f692e696d6775722e636f6d2f386746376e58682e706e67)](https://camo.githubusercontent.com/22ae568a0268a5de526021a477ad07c45255300a0ef5ce86d43b2da3ad208f44/68747470733a2f2f692e696d6775722e636f6d2f386746376e58682e706e67)[![screenshot admin](https://camo.githubusercontent.com/5cfc6fc438997a0bb58d3b16918601fa01c9c42d21b3fb40560d282e9be1768c/68747470733a2f2f692e696d6775722e636f6d2f495568504a79322e706e67)](https://camo.githubusercontent.com/5cfc6fc438997a0bb58d3b16918601fa01c9c42d21b3fb40560d282e9be1768c/68747470733a2f2f692e696d6775722e636f6d2f495568504a79322e706e67)

### Installation

[](#installation)

```
composer require fof/prevent-necrobumping:"*"
```

### Updating

[](#updating)

```
composer update fof/prevent-necrobumping
```

Configuration
-------------

[](#configuration)

### Basic Settings

[](#basic-settings)

Configure the extension in the admin panel under Extensions → Prevent Necrobumping:

- **Days Until Discussion Considered Inactive**: Set the number of days after which a discussion is considered inactive (default: 30)
- **Show "Start New Discussion" Prompt**: Display a suggestion to start a new discussion when users attempt to reply to inactive discussions

### Tag-Specific Thresholds

[](#tag-specific-thresholds)

If you have the `flarum/tags` extension installed, you can configure different inactivity thresholds for specific tags. When a discussion has multiple tags with different thresholds, the shortest period applies.

### Customizing Translations

[](#customizing-translations)

You can customize the alert messages and prompts shown to users when they attempt to reply to inactive discussions. The extension provides the following translation keys:

#### Forum Translations

[](#forum-translations)

```
fof-prevent-necrobumping:
  forum:
    composer:
      inactive_discussion_alert:
        title: The last reply to this discussion was {time}.
        description: Consider whether your reply adds new value or if the topic has already been resolved.
        cta: Consider starting a fresh discussion if you have a new question or perspective.
        cta_button: => core.ref.start_a_discussion
        confirmation: I understand this discussion is inactive, but my reply is relevant.
      error: This discussion is too old to reply to.
```

#### Admin Translations

[](#admin-translations)

```
fof-prevent-necrobumping:
  admin:
    settings:
      general_heading: General Settings
      days_label: Days Until Discussion Considered Inactive
      days_help: Mark discussions as inactive after this many days since the last post. Set to 0 to disable by default.
      show_discussion_cta_label: Show "Start New Discussion" Prompt
      show_discussion_cta_help: Display a suggestion to start a new discussion when users attempt to reply to inactive discussions.
      tags_title: Tag-Specific Settings
      tags_help: Override the global inactivity threshold for specific tags. Leave empty to use the default. When multiple tags have different values, the shortest period applies.
      tags_placeholder: Default
```

#### Managing Translations

[](#managing-translations)

You can customize these translations in two ways:

1. **Using FoF Linguist** (Recommended)

    Install the [FoF Linguist](https://github.com/FriendsOfFlarum/linguist) extension to manage translations directly from your admin panel:

    ```
    composer require fof/linguist
    ```

    Then navigate to Admin → Extensions → Linguist to edit the translation keys listed above.
2. **Using Language Packs**

    If you're using a language pack, you can submit translation updates to the language pack repository. For example:

    - [Flarum Language Packs](https://github.com/flarum-lang)
    - Create a pull request with your translations for the keys above

### Links

[](#links)

[![OpenCollective](https://camo.githubusercontent.com/8ea53c451470d1a72789d650c77e2b22eee915f7fbf2cbeeeeaa25f47301efe2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d667269656e64736f66666c6172756d2d3434414545353f7374796c653d666f722d7468652d6261646765266c6f676f3d6f70656e2d636f6c6c656374697665)](https://opencollective.com/fof/donate) [![GitHub](https://camo.githubusercontent.com/19562cc0996a556a7abda08327f57924e288bbbc3c5312b096c62175a2841ae4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d6461746974697365762d6561346161613f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562)](https://datitisev.me/donate/github)

- [Packagist](https://packagist.org/packages/fof/prevent-necrobumping)
- [GitHub](https://github.com/FriendsOfFlarum/prevent-necrobumping)

An extension by [FriendsOfFlarum](https://github.com/FriendsOfFlarum), commissioned by [webdeveloper.com](https://webdeveloper.com).

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance68

Regular maintenance activity

Popularity35

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~129 days

Recently: every ~70 days

Total

21

Last Release

92d ago

Major Versions

0.5.0 → 1.0.02021-05-23

1.2.1 → 2.0.0-beta.12025-11-27

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16573496?v=4)[IanM](/maintainers/imorland)[@imorland](https://github.com/imorland)

![](https://avatars.githubusercontent.com/u/1630413?v=4)[Gregor Hammerschmidt](/maintainers/GreXXL)[@GreXXL](https://github.com/GreXXL)

![](https://www.gravatar.com/avatar/0538135c1debcef5602dce7ece027909cc832b7a6284ab9189a19aa8de98d60d?d=identicon)[clarkwinkelmann](/maintainers/clarkwinkelmann)

![](https://www.gravatar.com/avatar/1298cdc0b2402a1aa34fb75a254947d655e090d62bd0531311331d369cac934e?d=identicon)[datitisev](/maintainers/datitisev)

---

Top Contributors

[![dsevillamartin](https://avatars.githubusercontent.com/u/6401250?v=4)](https://github.com/dsevillamartin "dsevillamartin (26 commits)")[![imorland](https://avatars.githubusercontent.com/u/16573496?v=4)](https://github.com/imorland "imorland (14 commits)")[![flarum-bot](https://avatars.githubusercontent.com/u/39334649?v=4)](https://github.com/flarum-bot "flarum-bot (11 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![DavideIadeluca](https://avatars.githubusercontent.com/u/146922689?v=4)](https://github.com/DavideIadeluca "DavideIadeluca (4 commits)")[![luceos](https://avatars.githubusercontent.com/u/504687?v=4)](https://github.com/luceos "luceos (1 commits)")[![glowingblue-dev](https://avatars.githubusercontent.com/u/36635329?v=4)](https://github.com/glowingblue-dev "glowingblue-dev (1 commits)")[![karaok491](https://avatars.githubusercontent.com/u/72854852?v=4)](https://github.com/karaok491 "karaok491 (1 commits)")

---

Tags

flarumfriendsofflarumhacktoberfestflarum

### Embed Badge

![Health badge](/badges/fof-prevent-necrobumping/health.svg)

```
[![Health](https://phpackages.com/badges/fof-prevent-necrobumping/health.svg)](https://phpackages.com/packages/fof-prevent-necrobumping)
```

###  Alternatives

[fof/byobu

Well integrated, advanced private discussions.

61105.8k9](/packages/fof-byobu)[fof/user-bio

Add a user bio to user profiles

2196.5k9](/packages/fof-user-bio)[fof/links

Manage Flarum primary navbar menu links

39118.3k2](/packages/fof-links)[fof/drafts

Allow users to create post and discussion drafts

1771.1k5](/packages/fof-drafts)[fof/nightmode

Add a Night Mode option for your users to use on your Flarum forum

3774.5k2](/packages/fof-nightmode)[fof/gamification

Upvotes and downvotes for your Flarum community

4157.1k6](/packages/fof-gamification)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
