Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. # +6]' :6;
  2. # '; .6' *! .65
  3. # 2 5 , '6
  4. # 6 5' .6; ]
  5. # 6 6 6
  6. # 6 ]: 2:
  7. # 6 6 5; '6661]6:
  8. # 6 +2 6 6' 6
  9. # ** .' '5 6 6 ]
  10. # '5 + +: .. .] 6
  11. # .6 6 2 ] *!,
  12. # 565< <656 <56565656565 666565656565 6565
  13. # <<<: <565 <656<<A16Q565; :65655 15656 5655
  14. # 656< <565 <656 J. J5655 6566 +65J 55656565655
  15. # 656< <565 <656565656565 5655 65655. 65655
  16. # 656< <565 <656555656] 5656 6 5655 6565
  17. # 565< <656*56565 .;6565 +65655 5656P*56562 5655
  18. # 656< <565..]656 5656 '5656565656P]!:56566565655
  19. # 656< <565; <656 ...2565. <6565655 P565655655
  20. # '65656. 6 ;52 .52 :5 .* ;<
  21. # 656565 '555' :16. *: 2
  22. # +] .*55555]]25]*]'*25' *5; <2
  23. # .+6]]!...**:.. :* '2
  24. # :55 2* . J55 5'
  25. # ;2] .... 5*+56*
  26. # 25'5'
  27. # *55656]:. ;5+]**555+]*];
  28. #
  29. #
  30. # Copyright 2003 Tyrel L. Haveman
  31. #
  32. # This file is part of jIRCd.
  33. #
  34. # jIRCd is free software; you can redistribute it and/or modify it under
  35. # the terms of the GNU General Public License as published by the Free
  36. # Software Foundation; either version 2 of the License, or (at your option)
  37. # any later version.
  38. #
  39. # jIRCd is distributed in the hope that it will be useful, but WITHOUT ANY
  40. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  41. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  42. # details.
  43. #
  44. # You should have received a copy of the GNU General Public License along
  45. # with jIRCd; if not, write to the Free Software Foundation, Inc.,
  46. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  47. #
  48. #############################################################################
  49.  
  50. jircd.description=jIRCd Test Server
  51. # this is just an identifier, not your true IP/host name
  52. jircd.serverName=irc.SebasNet.Java.org
  53. # server numeric/token, if not specified then one will be randomly generated
  54. #jircd.token=
  55.  
  56. # details for ADMIN command
  57. jircd.admin.name=Nemo
  58. jircd.admin.location.1=
  59. jircd.admin.location.2=
  60. jircd.admin.email=
  61.  
  62. # IP addresses and ports to bind to
  63. # jircd.bind.<address>[#<port>]=jircd.irc.Listener[,<factory>]
  64.  
  65. # standard server socket on port 6667
  66. jircd.bind.192.168.1.108#6668=jircd.irc.Listener
  67. # SSL port
  68. #jircd.bind.localhost#994=jircd.irc.Listener,javax.net.ssl.SSLServerSocketFactory
  69. # custom server socket factory
  70.  
  71. #jircd.bind.localhost#6668=jircd.irc.Listener,org.net.MyServerSocketFactory
  72.  
  73. # outgoing connection passwords
  74. # jircd.connect.<address>#<port>=<password>
  75. # incoming connection passwords
  76. # jircd.accept.<address>#<port>=<password>
  77.  
  78. jircd.networkName=irc.SebasNet.Java.org
  79.  
  80. # IRC operators
  81. # jircd.oper.<username>@<hostmask>=<password>
  82. # jircd.oper.Nemo@*=stonestar
  83. jircd.oper.Seb@*=sebbasstt
  84.  
  85. # Interval at which server pings clients (seconds)
  86. jircd.ping.interval=5
  87. # timeout (seconds)
  88. jircd.ping.timeout=120
  89.  
  90. # file used for MOTD command
  91. jircd.motd=motd.txt
  92. # file used for INFO command
  93. jircd.info=INFO.txt
  94.  
  95. chanserv.jdbc.driver=com.mysql.jdbc.Driver
  96. chanserv.jdbc.url=jdbc:mysql://localhost/jircd
  97. chanserv.sql.registerChannel=insert into channels (name) values(?)
  98. chanserv.sql.unregisterChannel=delete from channels where name=?
  99. chanserv.sql.queryChannels=select name, topic, topicAuthor, topicTime, entry from channels
  100. chanserv.sql.setTopic=update channels set topic=?, topicAuthor=?, topicTime=? where name=?
  101. chanserv.sql.setEntryMessage=update channels set entry=? where name=?
  102.  
  103. #chanserv.jdbc.url.shutdown=
  104. #chanserv.sql.shutdown=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement