aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-04-21Better error handling when retrieving offline IMsOren Hurvitz1-2/+7
2014-03-26- Increased the threadpool timeout to 10 minutesOren Hurvitz1-3/+3
- Changed a few places that launch long-lasting threads to skip the timeout altogether
2014-03-24Fixed Debug command for Groups. (Use of wrong capitalization caused *two* ↵Oren Hurvitz1-1/+1
"debug" options to appear in "help") This is a (small) part of http://opensimulator.org/mantis/view.php?id=6949
2014-03-24Check settings for groups moduleOren Hurvitz1-1/+9
Resolves http://opensimulator.org/mantis/view.php?id=6937
2014-03-24Better error messagesOren Hurvitz3-4/+4
This resolves http://opensimulator.org/mantis/view.php?id=6936
2014-03-12When sending group notices through group messaging, allow the agent ID to ↵Justin Clark-Casey (justincc)1-3/+7
use for fetching group data to be different from im.fromAgentID This is because xmlrpcgroups currently always checks visibility for the requesting agent ID (unlike Groups v2, which can accept UUID.Zero) But group notice IMs have a from agent which is the group rather than the sending agent. Further addresses http://opensimulator.org/mantis/view.php?id=7037
2014-03-11Send group notices through the same messaging module mechanism used to send ↵Justin Clark-Casey (justincc)2-9/+24
group chat to avoid timeout issues when sending messages to large groups. Only implementing for XmlRpcGroups initially to test. May require MessageOnlineUsersOnly = true in [Groups] to be effective. In relation to http://opensimulator.org/mantis/view.php?id=7037
2014-02-20In core.groups GroupsServiceRemoveConnector, if GetGroupRecord() or ↵Justin Clark-Casey (justincc)1-4/+6
UpdateGroup() do not have a RESULT parameter in the result message, return null rather than fail with NullReferenceException This check was already done by other methods. Looks to resolve http://opensimulator.org/mantis/view.php?id=7012
2014-01-16Can delete the Offline Messages sent to/from a user.Oren Hurvitz4-0/+37
This is useful if the user is deleted.
2014-01-16In the offline message table, store the sender.Oren Hurvitz2-3/+3
This data is useful for preventing abuse (e.g., someone who sends too many messages), or for deleting message if their sender has been deleted.
2014-01-16Fixed offline IMOren Hurvitz1-8/+4
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)2-3/+3
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-10-04Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)2-2/+2
2013-09-05Restore group membership check for HG users in QueryAccess.Diva Canto1-3/+6
2013-08-13minor: Eliminate one of the duplicate 'have's in the HG message telling the ↵Justin Clark-Casey (justincc)1-1/+1
user if no GroupsServerURI has been given in user data by the home grid
2013-08-12Don't try and send group updates to NPCs via event queue, since NPCs have no ↵Justin Clark-Casey (justincc)1-3/+7
event queue. I think there is an argument for sending this information to NPCs anyway since in some cases it appears a lot easier to write server-side bots by hooking into such internal events. However, would need to stop event messages building up on NPC queues if they are never retrieved.
2013-08-05Group notices bug fix: use a new IM for each member of the group, otherwise ↵Diva Canto1-2/+2
the fields get messed up because the transfer is async
2013-07-28Groups: Better warning messages to the user.Diva Canto2-3/+11
2013-07-28Group chat: prevent a situation where dupe IMs could occur.Diva Canto1-9/+3
2013-07-28Group chat: guard against duplicate sendsDiva Canto1-4/+5
2013-07-28Changing the visibility test in groups service to be UUID.Zero.ToString() ↵Diva Canto4-5/+9
instead of "all" because some paths in the code assume there's a UUI in the RequestingAgent string.
2013-07-28Same issue.Diva Canto1-0/+1
2013-07-28Same issue as previous commit.Diva Canto2-14/+17
2013-07-28Fix an issue where HG members of groups weren't seeing the entire membership ↵Diva Canto1-2/+20
for group chat.
2013-07-28Removed commented lines and useless debug messageDiva Canto1-16/+0
2013-07-28Added BasicSearchModule.cs which handles OnDirFindQuery events. Removed that ↵Diva Canto1-21/+6
handler from both Groups modules in core, and replaced them with an operation on IGroupsModule.
2013-07-28This makes group search work (Groups V2).Diva Canto5-1/+87
2013-07-27More on group chat: only root agents should subscribe to OnInstantMessage, ↵Diva Canto1-1/+14
or else they'll see an echo of their own messages after teleporting.
2013-07-27More bug fixes on group chatDiva Canto1-15/+19
2013-07-27Several major improvements to group (V2) chat. Specifically: handle ↵Diva Canto6-191/+292
join/drop appropriately, invitechatboxes. The major departure from flotsam is to send only one message per destination region, as opposed to one message per group member. This reduces messaging considerably in large groups that have clusters of members in certain regions.
2013-07-26Trying to decrease the lag on group chat. (Groups V2 only)Diva Canto1-16/+24
2013-07-24Decreased the time of group cache to 1 min, because it was getting on my ↵Diva Canto1-1/+1
nerves that it takes so long to let go of old info.
2013-07-23Improvement of fetching name in groupsDiva Canto1-11/+10
2013-07-08minor: remove some mono compiler warnings in new groups codeJustin Clark-Casey (justincc)4-8/+1
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)3-3/+3
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2013-06-30Groups V2: charge for group creation only after the group has been ↵Diva Canto1-1/+4
successfully created
2013-06-18minor: remove mono compiler warning in OfflineIMServiceJustin Clark-Casey (justincc)1-1/+1
2013-06-09More on mantis #6666 -- Groups V2 remote connector.Diva Canto1-7/+4
2013-06-08Groups V2 -- fix mantis #6666Diva Canto1-0/+3
2013-06-07Mantis #6620 (removed debug message)Diva Canto1-1/+1
2013-05-25Update the money framework to allow sending the new style linden "serverside ↵Melanie1-1/+1
is now viewerside" messages regarding currency This will require all money modules to be refactored!
2013-05-13Groups: Improve error handling on remote connector.Diva Canto1-4/+9
2013-05-13Fixes mantis #6636 -- GroupsDiva Canto2-1/+7
2013-04-25Groups: make some methods protected.Diva Canto1-7/+7
2013-02-27Switched to using the other Util function with a default value.Diva Canto1-1/+2
2013-02-27Moved the HG default variables out of [Startup] and into their own section ↵Diva Canto1-1/+1
[Hypergrid] in *Common.ini.example. Backwards compatible for now.
2013-02-25Mantis #6552 -- stricter error (crash) if server URL is malformed.Diva Canto1-5/+2
2013-02-25Fixes mantis #6551 -- misspelled key name. Also fixed an issue with the ↵Diva Canto4-3/+16
roles cache.
2013-02-22Added new Util function for reading config vars that's more generic than the ↵Diva Canto1-1/+1
one I added yesterday -- this is for helping move config vars out of [Startup]
2013-02-21Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵Diva Canto1-4/+4
default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency.