- Edited
Wlork If, for example, I have 100 members, 500 topics.... Number of posts can be much more than 35000 ? Or it will already be considered as "too active"?
If you have more than 35 000 posts, then it will already be "too active", yes. Only one of the conditions is required for it to be considered "too active".
For completeness, here's how FreeFlarum currently determines forum activity (taken from FreeFlarum's closed source code), if that helps:
def check_forum_activity(forum: Forum) -> str:
"""
Checks the activity of a forum.
### Returns:
- `str`:
- `"unused"` - forum has less than 2 posts or discussions or users and was created 60 days ago.
- `"inactive"` - forum is inactive (admin was last seen before 60 days).
- `"active"` - forum is active and healthy (all other cases).
- `"very_active"` - forum is starting to be more active (more than 1 000 offline users, 5 000 discussions or 10 000 posts) and owner needs to be warned.
- `"too_active"` - forum is too active and should be archived (more than 20 000 offline users, 20 000 discussions or 35 000 posts).
"""
... # variables for row counts and `admin_last_seen_at`
if forum.created_at < (datetime.now() - timedelta(days=60)):
if user_count < 2 or discussion_count < 2 or post_count < 2:
return 'unused'
if admin_last_seen_at is not None and admin_last_seen_at < (datetime.now() - timedelta(days=60)):
return 'inactive'
if user_count > 1000 or discussion_count > 5000 or post_count > 10000:
return 'very_active'
if user_count > 20000 or discussion_count > 20000 or post_count > 35000:
return 'too_active'
return 'active'