mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
missing changes
This commit is contained in:
@@ -40,7 +40,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
|
||||
public interface IEmailModule
|
||||
{
|
||||
void SendEmail(UUID objectID, string address, string subject, string body);
|
||||
void SendEmail(UUID objectID, UUID ownerID, string address, string subject, string body);
|
||||
Email GetNextEmail(UUID objectID, string sender, string subject);
|
||||
void AddPartMailBox(UUID objectID);
|
||||
void RemovePartMailBox(UUID objectID);
|
||||
|
||||
@@ -3991,7 +3991,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
address = account.Email;
|
||||
}
|
||||
|
||||
m_emailModule.SendEmail(m_host.UUID, address, subject, message);
|
||||
m_emailModule.SendEmail(m_host.UUID, m_host.ParentGroup.OwnerID, address, subject, message);
|
||||
// no dataserver event
|
||||
};
|
||||
|
||||
@@ -4079,7 +4079,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
return;
|
||||
}
|
||||
|
||||
m_emailModule.SendEmail(m_host.UUID, address, subject, message);
|
||||
m_emailModule.SendEmail(m_host.UUID, m_host.ParentGroup.OwnerID, address, subject, message);
|
||||
};
|
||||
|
||||
m_AsyncCommands.DataserverPlugin.RegisterRequest(m_host.LocalId,
|
||||
|
||||
Reference in New Issue
Block a user