Add "initial_help" option (by default True) to enable or disable initial help message from TelegramServ
patch 664aa2ec859e448f7dfdfc722f364f066f559708
Author: E. Bosch <presidev@AT@gmail.com>
Date: Thu Jul 9 22:15:58 CEST 2026
* Add "initial_help" option (by default True) to enable or disable initial help message from TelegramServ
This closes issue #4 on github
hunk ./irc.py 442
- await self.send_help(user)
+ if self.conf['initial_help']:
+ await self.send_help(user)
hunk ./irgramd 92
+ tornado.options.define('initial_help', default=True, help='Enable/disable initial help message from service user [TelegramServ]')