-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchat-tutorial-zone-settings.xml
45 lines (40 loc) · 1.31 KB
/
chat-tutorial-zone-settings.xml
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
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<settings
xsi:schemaLocation="http://www.tvd12.com/schema/ezyfox/settings
ezy-zone-settings-1.0.0.xsd"
xmlns="http://www.tvd12.com/schema/ezyfox/settings"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<max-users>10000</max-users>
<streaming>
<enable>true</enable>
</streaming>
<user-management>
<allow-guest-login>true</allow-guest-login>
<guest-name-prefix>Guest#</guest-name-prefix>
<user-max-idle-time>15</user-max-idle-time>
<max-session-per-user>15</max-session-per-user>
<user-name-pattern>^[a-zA-Z0-9_.#]{3,36}$</user-name-pattern>
</user-management>
<applications>
<application>
<name>chat-tutorial</name>
<folder>chat-tutorial-app</folder>
<entry-loader>com.youngmonkeys.app.AppEntryLoader</entry-loader>
<config-file>config/config.properties</config-file>
</application>
</applications>
<plugins>
<plugin>
<name>chat-tutorial</name>
<folder>chat-tutorial-plugin</folder>
<priority>-1</priority>
<entry-loader>com.youngmonkeys.plugin.PluginEntryLoader</entry-loader>
<config-file>config/config.properties</config-file>
<listen-events>
<event>USER_LOGIN</event>
<event>USER_ADDED</event>
<event>USER_REMOVED</event>
</listen-events>
</plugin>
</plugins>
</settings>