aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2010-07-17 16:35:14 +0200
committerMelanie Thielker2010-07-17 16:35:14 +0200
commitd52fb4d2e944db4a31ddafaefcdda3690f1c6bb7 (patch)
tree9833f9016d6db94b8b6ca7cae53d2f2230df99fa
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
downloadopensim-SC_OLD-d52fb4d2e944db4a31ddafaefcdda3690f1c6bb7.zip
opensim-SC_OLD-d52fb4d2e944db4a31ddafaefcdda3690f1c6bb7.tar.gz
opensim-SC_OLD-d52fb4d2e944db4a31ddafaefcdda3690f1c6bb7.tar.bz2
opensim-SC_OLD-d52fb4d2e944db4a31ddafaefcdda3690f1c6bb7.tar.xz
Shorten LLEmail delay to 15s. With the external spam protection, we can
afford to do that
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index b196642..a947b3d 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -3314,7 +3314,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
3314 } 3314 }
3315 3315
3316 emailModule.SendEmail(m_host.UUID, address, subject, message); 3316 emailModule.SendEmail(m_host.UUID, address, subject, message);
3317 ScriptSleep(20000); 3317 ScriptSleep(15000);
3318 } 3318 }
3319 3319
3320 public void llGetNextEmail(string address, string subject) 3320 public void llGetNextEmail(string address, string subject)