discourse-solved-reminders-.../config/settings.yml
Arpit Jalan ce4a86fdf6
Some checks are pending
Discourse Plugin / ci (push) Waiting to run
FEATURE: Allow shorter remind_mark_solution_after_days windows (#46)
* FEATURE: Allow shorter `remind_mark_solution_after_days` windows

Previously, solved reminder PMs could not reliably be scheduled sooner
than 14 days because the job only ran every 14 days and did not track
per-topic reminder state.

This change runs the reminder job daily, allows lower reminder
thresholds, and stores reminder state per topic while seeding existing
active sites to avoid duplicate reminder bursts.

* implement suggestions per feedback
2026-05-25 10:11:38 +05:30

24 lines
465 B
YAML

plugins:
solved_reminders_plugin_enabled:
default: false
client: true
remind_mark_solution_after_days:
default: 14
min: 1
max: 365
remind_mark_solution_repeat_after_days:
default: 14
min: 1
max: 365
remind_mark_solution_last_post_age:
default: 180
min: 30
max: 36500
send_solved_pm_first_n_time:
default: 3
min: 0
max: 100
send_solved_pm_after_every_n_time:
default: 3
min: 1
max: 100