From 1e899704c1c19a8c42ff313677a13f35b46605da Mon Sep 17 00:00:00 2001 From: dahlia Date: Thu, 7 Jan 2010 11:28:38 -0800 Subject: Adds config option "ForwardOfflineGroupMessages" to allow disabling of group messages forwarded while offline. Addresses Mantis #4457 --- bin/OpenSim.ini.example | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 1cf96b0..0667047 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -473,6 +473,7 @@ ; OfflineMessageURL = http://yourserver/Offline.php ; MuteListModule = MuteListModule ; MuteListURL = http://yourserver/Mute.php + ; ForwardOfflineGroupMessages = true [ODEPhysicsSettings] -- cgit v1.1 From b297913e2b4831a7dbc57c867f7ad6a46bd65f44 Mon Sep 17 00:00:00 2001 From: dahlia Date: Fri, 8 Jan 2010 22:58:01 -0800 Subject: Add some notes to OpenSim.ini.example suggesting to use MySQL with Mono installations --- bin/OpenSim.ini.example | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 0667047..15623de 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -126,11 +126,16 @@ ;storage_plugin = "OpenSim.Data.Null.dll" ; --- To use sqlite as region storage: + ; NOTE: SQLite and OpenSim are not functioning properly with Mono 2.4.3 or greater. + ; If you are using Mono you probably should be using MySQL storage_plugin = "OpenSim.Data.SQLite.dll" storage_connection_string="URI=file:OpenSim.db,version=3"; - ; --- To use MySQL storage, supply your own connectionstring (this is only an example): + ; --- To use MySQL storage, supply your own connection string (this is only an example): ; note that the supplied account needs create privilegies if you want it to auto-create needed tables. + ; + ; -->>> There are multiple connection strings defined in several places in this file. Check it carefully! + ; ; storage_plugin="OpenSim.Data.MySQL.dll" ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;"; ; If you want to use a different database/server for estate data, then -- cgit v1.1 From b0a7bcb2c814554dff4fc6dcdcd45ccf700601e9 Mon Sep 17 00:00:00 2001 From: Melanie Date: Sun, 10 Jan 2010 03:17:40 +0000 Subject: Add "StartDisabled" to [Startup] to make all regions start up with logins disabled until enabled from the console. Add the AccessModule (WIP) --- bin/OpenSim.ini.example | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 15623de..af6345a 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -268,6 +268,9 @@ ; Enable JSON simulator data by setting a URI name (case sensitive) ; Stats_URI = "jsonSimStats" + ; Make OpenSim start all regions woth logins disabled. They will need + ; to be enabled from the console if this is set + ; StartDisabled = false [SMTP] enabled=false -- cgit v1.1 From e966e51b89bdc0fc36482621f8954e5faffc8fbf Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 11 Jan 2010 03:29:24 +0000 Subject: Add a console_port setting to let the rest console use a different port from the region server --- bin/OpenSim.ini.example | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index af6345a..d09dc67 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -326,6 +326,7 @@ ConsoleUser = "Test" ConsolePass = "secret" http_listener_port = 9000 + console_port = 0 default_location_x = 1000 default_location_y = 1000 -- cgit v1.1 From fcaef85029b98b13d884869b6da7e561e365fcf8 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Mon, 11 Jan 2010 17:13:03 +0000 Subject: Add explanation about AllowModFunctions to OpenSim.ini.example This switch allows scripts to pass messages to modules via the modSendCommand() function Modules can then send messages back to scripts via the link_message LSL event through invoking DispatchReply() on OpenSim.Region.Framework.Interfaces.IScriptModuleComms --- bin/OpenSim.ini.example | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index d09dc67..6a117c9 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -987,6 +987,11 @@ ; Compile debug info (line numbers) into the script assemblies CompileWithDebugInformation = true + ; Allow the user of mod* functions. This allows a script to pass messages + ; to a region module via the modSendCommand() function + ; Default is false + AllowMODFunctions = false + ; Allow the use of os* functions (some are dangerous) AllowOSFunctions = false -- cgit v1.1 From 4f2d2c4efa4dff0fff997844c6023741a3d2d641 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 12 Jan 2010 20:52:44 +0000 Subject: minor: add a line of documentation to the new ForwardOfflineGroupMessages [Messaging] switch --- bin/OpenSim.ini.example | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 6a117c9..5f6d874 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -482,6 +482,8 @@ ; OfflineMessageURL = http://yourserver/Offline.php ; MuteListModule = MuteListModule ; MuteListURL = http://yourserver/Mute.php + + ; Control whether group messages are forwarded to offline users. Default is true. ; ForwardOfflineGroupMessages = true -- cgit v1.1 From 046a195c2ed34b282e15d1b6ed298f9a469484f7 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 15 Jan 2010 18:16:21 +0000 Subject: Add "create user" instructions to README.txt Add documentation to [Standalone] accounts_authenticate setting --- bin/OpenSim.ini.example | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'bin/OpenSim.ini.example') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 5f6d874..179c536 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -290,7 +290,18 @@ [StandAlone] + ; If this is set to true then OpenSim only allows in users who already have accounts. + ; An account can be created using the "create user" console command. + ; + ; If this is set to false then an account is automatically created for a user who logs in + ; without one. PLEASE NOTE THAT IN THIS MODE NO PASSWORD CHECKS ARE PERFORMED. + ; Therefore, any user can log into any account. If accounts_authenticate is later switched to + ; true then the passwords will need to be reset (using the "reset user password" console command) since + ; automatically created accounts have their password set to the string "test". + ; + ; This setting applies to standalone mode only, not grid or other modes. Default is true. accounts_authenticate = true + welcome_message = "Welcome to OpenSimulator" ; Inventory database provider -- cgit v1.1