Advertisement
Boelle

Untitled

Jan 15th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2. return array(
  3. 'server' => 'irc.freenode.org',
  4. 'port' => 6667,
  5. 'name' => 'Marlin-Bot2',
  6. 'password' => '',
  7. 'nick' => 'Marlin-Bot2',
  8. 'nickserv' => 'NickServ', // What is the nickname registration service on this server?
  9. 'channels' => array(
  10. '#marlin-firmware',
  11. ),
  12. 'timezone' => 'Europe/Copenhagen',
  13. 'max_reconnects' => 1,
  14. 'prefix' => '!',
  15. 'log' => array(
  16. 'file' => 'log2', // No file extension!
  17. 'dir' => '/var/www/marlin-firmware-log/',
  18.  
  19. // Set this if you want only output from specific channel(s) to show up.
  20. // This will not log any other output, so this is not useful for debugging.
  21. // This is particularly useful if you use public logs.
  22. // Can contain multiple channels.
  23. 'filter' => array(''),
  24. ),
  25. 'commands' => array(
  26.  
  27. ),
  28. 'listeners' => array(
  29.  
  30. ),
  31. 'hosts' => array(
  32. 'Add trusted hosts in here. Example: example@example.com if no ident server ~example@example.com',
  33. ),
  34. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement