Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. [leo@mousy ~]$ sudo cat /etc/bitlbee/bitlbee.conf
  2. ## BitlBee default configuration file
  3. ##
  4. ## Comments are marked like this. The rest of the file is INI-style. The
  5. ## comments should tell you enough about what all settings mean.
  6. ##
  7.  
  8. [settings]
  9.  
  10. ## RunMode:
  11. ##
  12. ## Inetd -- Run from inetd (default)
  13. ## Daemon -- Run as a stand-alone daemon, serving all users from one process.
  14. ## This saves memory if there are more users, the downside is that when one
  15. ## user hits a crash-bug, all other users will also lose their connection.
  16. ## ForkDaemon -- Run as a stand-alone daemon, but keep all clients in separate
  17. ## child processes. This should be pretty safe and reliable to use instead
  18. ## of inetd mode.
  19. ##
  20. RunMode = ForkDaemon
  21.  
  22. ## User:
  23. ##
  24. ## If BitlBee is started by root as a daemon, it can drop root privileges,
  25. ## and change to the specified user.
  26. ##
  27. ## DEBIAN NOTE: Without this, BitlBee will run as root!
  28. ##
  29. User = bitlbee
  30.  
  31. ## DaemonPort/DaemonInterface:
  32. ##
  33. ## For daemon mode, you can specify on what interface and port the daemon
  34. ## should be listening for connections.
  35. ##
  36. ## DEBIAN NOTE: The init script passes the -p flag to use the port number
  37. ## set using debconf, this overrides the DaemonPort setting here.
  38. ##
  39. DaemonInterface = 127.0.0.1
  40. DaemonPort = 6667
  41.  
  42. ## ClientInterface:
  43. ##
  44. ## If for any reason, you want BitlBee to use a specific address/interface
  45. ## for outgoing traffic (IM connections, HTTP(S), etc.), set it here.
  46. ##
  47. # ClientInterface = 0.0.0.0
  48.  
  49. ## AuthMode
  50. ##
  51. ## Open -- Accept connections from anyone, use NickServ for user authentication.
  52. ## (default)
  53. ## Closed -- Require authorization (using the PASS command during login) before
  54. ## allowing the user to connect at all.
  55. ## Registered -- Only allow registered users to use this server; this disables
  56. ## the register- and the account command until the user identifies itself.
  57. ##
  58. # AuthMode = Open
  59.  
  60. ## AuthPassword
  61. ##
  62. ## Password the user should enter when logging into a closed BitlBee server.
  63. ## You can also have a BitlBee-style MD5 hash here. Format: "md5:", followed
  64. ## by a hash as generated by "bitlbee -x hash <password>".
  65. ##
  66. # AuthPassword = ItllBeBitlBee ## Heh.. Our slogan. ;-)
  67. ## or
  68. # AuthPassword = md5:gzkK0Ox/1xh+1XTsQjXxBJ571Vgl
  69.  
  70. ## OperPassword
  71. ##
  72. ## Password that unlocks access to special operator commands.
  73. ##
  74. # OperPassword = ChangeMe!
  75. ## or
  76. # OperPassword = md5:I0mnZbn1t4R731zzRdDN2/pK7lRX
  77.  
  78. ## HostName
  79. ##
  80. ## Normally, BitlBee gets a hostname using getsockname(). If you have a nicer
  81. ## alias for your BitlBee daemon, you can set it here and BitlBee will identify
  82. ## itself with that name instead.
  83. ##
  84. # HostName = localhost
  85.  
  86. ## MotdFile
  87. ##
  88. ## Specify an alternative MOTD (Message Of The Day) file. Default value depends
  89. ## on the --etcdir argument to configure.
  90. ##
  91. # MotdFile = /etc/bitlbee/motd.txt
  92.  
  93. ## ConfigDir
  94. ##
  95. ## Specify an alternative directory to store all the per-user configuration
  96. ## files. (.nicks/.accounts)
  97. ##
  98. # ConfigDir = /var/lib/bitlbee
  99.  
  100. ## Ping settings
  101. ##
  102. ## BitlBee can send PING requests to the client to check whether it's still
  103. ## alive. This is not very useful on local servers, but it does make sense
  104. ## when most clients connect to the server over a real network interface.
  105. ## (Public servers) Pinging the client will make sure lost clients are
  106. ## detected and cleaned up sooner.
  107. ##
  108. ## PING requests are sent every PingInterval seconds. If no PONG reply has
  109. ## been received for PingTimeOut seconds, BitlBee aborts the connection.
  110. ##
  111. ## To disable the pinging, set at least one of these to 0.
  112. ##
  113. # PingInterval = 180
  114. # PingTimeOut = 300
  115.  
  116. ## Using proxy servers for outgoing connections
  117. ##
  118. ## If you're running BitlBee on a host which is behind a restrictive firewall
  119. ## and a proxy server, you can tell BitlBee to use that proxy server here.
  120. ## The setting has to be a URL, formatted like one of these examples:
  121. ##
  122. ## (Obviously, the username and password are optional)
  123. ##
  124. # Proxy = http://john:doe@proxy.localnet.com:8080
  125. # Proxy = socks4://socksproxy.localnet.com
  126. # Proxy = socks5://socksproxy.localnet.com
  127.  
  128. ## Protocols offered by bitlbee
  129. ##
  130. ## As recompiling may be quite unpractical for some people, this option
  131. ## allows to remove the support of protocol, even if compiled in. If
  132. ## nothing is given, there are no restrictions.
  133. ##
  134. # Protocols = jabber yahoo
  135.  
  136. ## Trusted CAs
  137. ##
  138. ## Path to a file containing a list of trusted certificate authorities used in
  139. ## the verification of server certificates.
  140. ##
  141. ## Uncomment this and make sure the file actually exists and contains all
  142. ## certificate authorities you're willing to accept (default value should
  143. ## work on at least Debian/Ubuntu systems with the "ca-certificates" package
  144. ## installed). As long as the line is commented out, SSL certificate
  145. ## verification is completely disabled.
  146. ##
  147. ## The location of this file may be different on other distros/OSes. For
  148. ## example, try /etc/ssl/ca-bundle.pem on OpenSUSE.
  149. ##
  150. # CAfile = /etc/ssl/certs/ca-certificates.crt
  151.  
  152. [defaults]
  153.  
  154. ## Here you can override the defaults for some per-user settings. Users are
  155. ## still able to override your defaults, so this is not a way to restrict
  156. ## your users...
  157.  
  158. ## To enable private mode by default, for example:
  159.  
  160. ## private = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement