diff options
Diffstat (limited to 'bin/config.preview.donotuseyet/region/user')
7 files changed, 234 insertions, 0 deletions
diff --git a/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example new file mode 100644 index 0000000..4e39256 --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example | |||
@@ -0,0 +1,20 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Chat] | ||
10 | ; Controls whether the chat module is enabled. Default is true. | ||
11 | enabled = true; | ||
12 | |||
13 | ; Distance in meters that whispers should travel. Default is 10m | ||
14 | whisper_distance = 10 | ||
15 | |||
16 | ; Distance in meters that ordinary chat should travel. Default is 30m | ||
17 | say_distance = 30 | ||
18 | |||
19 | ; Distance in meters that shouts should travel. Default is 100m | ||
20 | shout_distance = 100 | ||
diff --git a/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example new file mode 100644 index 0000000..a94a89e --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example | |||
@@ -0,0 +1,61 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | ; Uncomment the following for IRC bridge | ||
10 | ; experimental, so if it breaks... keep both parts... yada yada | ||
11 | ; also, not good error detection when it fails | ||
12 | ;[IRC] | ||
13 | ;enabled = true ; you need to set this otherwise it won't connect | ||
14 | ;server = name.of.irc.server.on.the.net | ||
15 | ;; user password - only use this if the server requires one | ||
16 | ;password = mypass | ||
17 | ;nick = OpenSimBotNameProbablyMakeThisShorter | ||
18 | ;channel = #the_irc_channel_you_want_to_connect_to | ||
19 | ;port = 6667 | ||
20 | ;; channel to listen for configuration commands | ||
21 | ;commands_enabled = false | ||
22 | ;command_channel = 2777 | ||
23 | ;report_clients = true | ||
24 | ;; relay private chat connections | ||
25 | ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels | ||
26 | ;; relay_private_channel_out -- channel to send messages out to the IRC bridge | ||
27 | ;; relay_private_channel_in -- channel to receive message from the IRC bridge | ||
28 | ;; relay_chat = false: IRC bridge will not relay normal chat | ||
29 | ;; access_password -- simple security device | ||
30 | ;; | ||
31 | ;; so, to just relay chat from an IRC channel to in-world region and vice versa: | ||
32 | ;; | ||
33 | ;; relay_private_channels = false | ||
34 | ;; relay_chat = true | ||
35 | ;; | ||
36 | ;; to relay chat only to/from private in-world channels: | ||
37 | ;; | ||
38 | ;; relay_chat = false | ||
39 | ;; relay_private_channels = true | ||
40 | ;; relay_private_channel_in = 2226 | ||
41 | ;; relay_private_channel_out = 2225 | ||
42 | ;; | ||
43 | ;; in this example, all chat coming in from IRC will be send out via | ||
44 | ;; in-world channel 2226, and all chat from in-world channel 2225 will | ||
45 | ;; be relayed to the IRC channel. | ||
46 | ;; | ||
47 | ;relay_private_channels = false | ||
48 | ;relay_private_channel_in = 2226 | ||
49 | ;relay_private_channel_out = 2225 | ||
50 | ;relay_chat = true | ||
51 | ;access_password = foobar | ||
52 | |||
53 | ;fallback_region = name of "default" region | ||
54 | ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message | ||
55 | ; must start with "PRIVMSG {0} : " or irc server will get upset | ||
56 | ;for <bot>:<user in region> :<message> | ||
57 | ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}" | ||
58 | ;for <bot>:<message> - <user of region> : | ||
59 | msgformat = "PRIVMSG {0} : {3} - {1} of {2}" | ||
60 | ;for <bot>:<message> - from <user> : | ||
61 | ;msgformat = "PRIVMSG {0} : {3} - from {1}" | ||
diff --git a/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example new file mode 100644 index 0000000..f7f708b --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example | |||
@@ -0,0 +1,12 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Messaging] | ||
10 | ; Control which region module is used for instant messaging. | ||
11 | ; Default is InstantMessageModule (this is the name of the core IM module as well as the setting) | ||
12 | InstantMessageModule = InstantMessageModule | ||
diff --git a/bin/config.preview.donotuseyet/region/user/concierge.ini.example b/bin/config.preview.donotuseyet/region/user/concierge.ini.example new file mode 100644 index 0000000..0f6f051 --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/concierge.ini.example | |||
@@ -0,0 +1,37 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Concierge] | ||
10 | ; Enable concierge module | ||
11 | ; Default is false | ||
12 | enabled = false | ||
13 | |||
14 | ; name of the concierge | ||
15 | whoami = "jeeves" | ||
16 | |||
17 | ; password for updating the welcome message templates via XmlRpc | ||
18 | password = SECRET | ||
19 | |||
20 | ; regex specifying for which regions concierge service is desired; if | ||
21 | ; empty, then for all | ||
22 | regions = "^MeetingSpace-" | ||
23 | |||
24 | ; for each region that matches the regions regexp you can provide | ||
25 | ; (optionally) a welcome template using format substitution: | ||
26 | ; {0} is replaced with the name of the avatar entering the region | ||
27 | ; {1} is replaced with the name of the region | ||
28 | ; {2} is replaced with the name of the concierge (whoami variable above) | ||
29 | |||
30 | welcomes = /path/to/welcome/template/directory | ||
31 | |||
32 | ; Concierge can send attendee lists to an event broker whenever an | ||
33 | ; avatar enters or leaves a concierged region. the URL is subject | ||
34 | ; to format substitution: | ||
35 | ; {0} is replaced with the region's name | ||
36 | ; {1} is replaced with the region's UUID | ||
37 | broker = "http://broker.place.com/{1}" | ||
diff --git a/bin/config.preview.donotuseyet/region/user/economy.ini.example b/bin/config.preview.donotuseyet/region/user/economy.ini.example new file mode 100644 index 0000000..33343bf --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/economy.ini.example | |||
@@ -0,0 +1,64 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Economy] | ||
10 | ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only - | ||
11 | ; In grid mode, use this currency XMLRPC server. Leave blank for normal functionality | ||
12 | CurrencyServer = "" | ||
13 | ; "http://192.168.1.127/currency.php" | ||
14 | |||
15 | ; In grid mode, this is the land XMLRPC server. Leave blank for normal functionality | ||
16 | LandServer = "" | ||
17 | ;"http://192.168.1.127/landtool.php" | ||
18 | |||
19 | ; 45000 is the highest value that the sim could possibly report because of protocol constraints | ||
20 | ObjectCapacity = 45000 | ||
21 | |||
22 | ; Money Unit fee to upload textures, animations etc | ||
23 | PriceUpload = 0 | ||
24 | |||
25 | ; Money Unit fee to create groups | ||
26 | PriceGroupCreate = 0 | ||
27 | |||
28 | ; This is the account Money goes to for fees. Remember, economy requires that money circulates somewhere... even if it's an upload fee | ||
29 | EconomyBaseAccount = 00000000-0000-0000-0000-000000000000 | ||
30 | |||
31 | ; This is the type of user that will pay fees. | ||
32 | ; Set this to 2 for users, estate managers and Estate Owners | ||
33 | ; Set this to 1 for Users and Estate Managers | ||
34 | ; Set this to 0 for Users only. | ||
35 | ; -1 disables | ||
36 | UserLevelPaysFees = -1 | ||
37 | |||
38 | ; Amount to give to user as a stipend | ||
39 | UserStipend = 1000 | ||
40 | |||
41 | ; When a user gets low on money units and logs off, then logs back on, issue a new stipend if they have less money units then this | ||
42 | ; amount. Be aware that the account money isn't stored anywhere so users will get a stipend if you restart the simulator | ||
43 | IssueStipendWhenClientIsBelowAmount = 10 | ||
44 | |||
45 | ; If this is true, the simulator will remember account balances until the simulator is shutdown or restarted. | ||
46 | KeepMoneyAcrossLogins = true | ||
47 | |||
48 | ; We don't really know what the rest of these values do. These get sent to the client | ||
49 | ; These taken from Agni at a Public Telehub. Change at your own risk. | ||
50 | ObjectCount = 0 | ||
51 | PriceEnergyUnit = 100 | ||
52 | PriceObjectClaim = 10 | ||
53 | PricePublicObjectDecay = 4 | ||
54 | PricePublicObjectDelete = 4 | ||
55 | PriceParcelClaim = 1 | ||
56 | PriceParcelClaimFactor = 1 | ||
57 | |||
58 | PriceRentLight = 5 | ||
59 | TeleportMinPrice = 2 | ||
60 | TeleportPriceExponent = 2 | ||
61 | EnergyEfficiency = 1 | ||
62 | PriceObjectRent = 1 | ||
63 | PriceObjectScaleFactor = 10 | ||
64 | PriceParcelRent = 1 | ||
diff --git a/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example b/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example new file mode 100644 index 0000000..fc0b0e8 --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example | |||
@@ -0,0 +1,23 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [AsteriskVoice] | ||
10 | ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs | ||
11 | enabled = false | ||
12 | ; SIP account server domain | ||
13 | sip_domain = testserver.com | ||
14 | ; SIP conf server domain | ||
15 | conf_domain = testserver.com | ||
16 | ; URL of the asterisk opensim frontend | ||
17 | asterisk_frontend = http://testserver.com:49153/ | ||
18 | ; password for the asterisk frontend XmlRpc calls | ||
19 | asterisk_password = bah-humbug | ||
20 | ; timeout for XmlRpc calls to asterisk front end (in ms) | ||
21 | asterisk_timeout = 3000 | ||
22 | ; salt for asterisk nonces | ||
23 | asterisk_salt = paluempalum | ||
diff --git a/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example b/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example new file mode 100644 index 0000000..6485f20 --- /dev/null +++ b/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example | |||
@@ -0,0 +1,17 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | ||
2 | ; please copy/rename this file from .ini.example file to .ini. For example | ||
3 | ; | ||
4 | ; chat.ini.example => chat.ini | ||
5 | ; | ||
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | ||
7 | ; | ||
8 | |||
9 | [Voice] | ||
10 | ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs | ||
11 | enabled = false | ||
12 | ; This is not supported by the SLViewer right now and | ||
13 | ; hardcoded within the SL Viewer. Maybe it will be | ||
14 | ; changed in future. :-) | ||
15 | account_management_server = https://www.bhr.vivox.com/api2 | ||
16 | ; Global SIP Server for conference calls | ||
17 | sip_domain = testserver.com | ||