Advertisement
Guest User

spectrum transport

a guest
Mar 25th, 2014
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. 2 # 1 if Spectrum should run in server mode.
  2. 3 enabled = 1
  3. 4 server_mode = 0
  4. 5
  5. 6 # JID of Spectrum instance.
  6. 7 jid = icq.loki13.cu.cc
  7. 8
  8. 9 # Password used to connect the XMPP server in gateway mode.
  9. 10 # In server mode, this option is ignored.
  10. 11 password = spectrumpass
  11. 12
  12. 13 # XMPP server to which Spectrum connects in gateway mode.
  13. 14 # In server mode, this option is ignored.
  14. 15 server = 127.0.0.1
  15. 16
  16. 17 # XMPP server port.
  17. 18 port = 5555
  18. 19
  19. 20 # Interface on which Spectrum listens for backends.
  20. 21 backend_host = localhost
  21. 22
  22. 23 # Port on which Spectrum listens for backends.
  23. 24 # By default Spectrum chooses random backend port and there's
  24. 25 # no need to change it normally
  25. 26 #backend_port=10001
  26. 27
  27. 28 # Full path to PKCS#12 cetficiate used for TLS in server mode.
  28. 29 #cert=
  29. 30
  30. 31 # Certificate password if any.
  31. 32 #cert_password=
  32. 33
  33. 34 # Number of users per one legacy network backend.
  34. 35 users_per_backend=10
  35. 36
  36. 37 # Full path to backend binary.
  37. 38 backend=/usr/local/bin/spectrum2_libpurple_backend
  38. 39 #backend=/usr/bin/spectrum2_libcommuni_backend
  39. 40 # For skype:
  40. 41 #backend=/usr/bin/xvfb-run -n BACKEND_ID -s "-screen 0 10x10x8" -f /tmp/x-skype-gw /usr/bin/spectrum2_skype_backend
  41. 42
  42. 43 # Libpurple protocol-id for spectrum_libpurple_backend
  43. 44 #protocol=prpl-jabber
  44. 45 #protocol=prpl-msn
  45. 46 protocol=prpl-icq
  46. 47
  47. 48 [identity]
  48. 49 # Name of Spectrum instance in service discovery
  49. 50 name=ICQ Transport
  50. 51
  51. 52 # Type of transport ("msn", "icq", "xmpp").
  52. 53 # Check http://xmpp.org/registrar/disco-categories.html#gateway
  53. 54 type=icq
  54. 55
  55. 56 [logging]
  56. 57 # log4cxx/log4j logging configuration file in ini format used for main spectrum2 instance.
  57. 58 config = /etc/spectrum2/logging.cfg
  58. 59
  59. 60 # log4cxx/log4j logging configuration file in ini format used for backends.
  60. 61 backend_config = /etc/spectrum2/backend-logging.cfg
  61. 62
  62. 63 [database]
  63. 64 # Database backend type
  64. 65 # "sqlite3", "mysql", "pqxx", or "none" without database backend
  65. 66 type = mysql
  66. # Prefix used for tables
  67. 86 prefix = icq_
  68. 87
  69. 88 [registration]
  70. 89 # Enable public registrations
  71. 90 enable_public_registration=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement