Manage Atom feeds in a persistent git repository
at main 1.1 kB view raw
1[bot] 2# Default RSS feed polling interval in seconds (minimum 60) 3sync_interval = 300 4 5# Maximum number of entries to post per sync cycle (1-50) 6max_entries_per_sync = 10 7 8# Default stream and topic for posting (can be overridden via chat commands) 9# Leave empty to require configuration via chat 10default_stream = 11default_topic = 12 13# Rate limiting: seconds to wait between batches of posts 14rate_limit_delay = 5 15 16# Number of posts per batch before applying rate limit 17posts_per_batch = 5 18 19[catchup] 20# Number of entries to post on first run (catchup mode) 21catchup_entries = 5 22 23[notifications] 24# Whether to send notifications when bot configuration changes 25config_change_notifications = true 26 27# Whether to send notifications when users claim usernames 28username_claim_notifications = true 29 30# Instructions: 31# 1. Copy this file to botrc (without .template extension) to customize bot behavior 32# 2. The bot will use these defaults if no botrc file is found 33# 3. All settings can be overridden via chat commands (e.g., @mention config interval 600) 34# 4. Settings changed via chat are persisted in Zulip storage and take precedence