Cron Reminders

Configuring the Cron Reminders Module

The Cron Reminders module allows users to set and manage reminders based on cron schedules.

Configuration Option

Enable Cron Permissions

  • Usage:
    • ,config user:<username> permission cron

Commands and Usage

Add a Reminder

Adds a reminder based on a cron schedule.

  • Usage:
    • ,cron add <schedule> <reminder>
  • Example:
    • ,cron add "0 9 * * *" "Time for the daily stand-up meeting"

Remove a Reminder

Removes a reminder by its index.

  • Usage:
    • ,cron remove <index>
  • Example:
    • ,cron remove 0

Examples

  • To add a reminder for a daily meeting at 9 AM:
    • ,cron add "0 9 * * *" "Time for the daily stand-up meeting"
  • To remove the first reminder:
    • ,cron remove 0

Note on Cron Schedules

The cron schedule format is "minute hour day_of_month month day_of_week".

  • * represents any value.
  • Example: "0 9 * * *" means at 9:00 AM every day.