-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.txt
35 lines (26 loc) · 859 Bytes
/
config.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Neutron configuration
{
# Jabber account where Neutron will login
'SERVER': 'jabber.orgg',
'PORT': 5222,
'USERNAME': 'neutron',
'PASSWORD': 'password',
'RESOURCE': 'neutron' + str(random.randrange(1000, 9999)),
# Proxy support
#'HTTP_PROXY': 'http://192.168.2.1:3128',
'HTTP_PROXY': '',
# Chatroom nick
'DEFAULT_NICK': 'neutron',
# Jabber accounts that will administrate Neutron
'ADMINS': ['[email protected]', '[email protected]'],
'ADMIN_PASSWORD': str(random.randrange(999999999)),
# Neutron will try to reconnect on disconnections
'AUTO_RESTART': 0,
# Where to store HTML files from chatrooms logs
# To disable logging, set to empty string: '',
'PUBLIC_LOG_DIR': '/var/www/neutron',
# Where to store logs of private chats
# To disable logging, set to empty string: '',
'PRIVATE_LOG_DIR': 'privatechatlogs',
'INITSCRIPT_FILE': 'neutron.rc',
}