meetbot_cfg.py 548 B

1234567891011121314151617181920212223
  1. config = {
  2. # IRC server host
  3. "host": "127.0.0.1",
  4. # IRC server port
  5. "port": 6667,
  6. # IRC nickname
  7. "nick": "meetbot",
  8. "channels": [
  9. {
  10. "name": "#foo",
  11. "secret": None,
  12. },
  13. {
  14. "name": "#secret_channel",
  15. # TODO: This is useless right now, but it would be nice
  16. # to add a CAP in ircd to give all incoming PRIVMSG to be
  17. # able to check them.
  18. "secret": "HNEKcUmwsspdaL9b8sFn45b8Rf3bzv1LdYS1JVNvkPGL",
  19. },
  20. ],
  21. }