diff options
author | Charles Krinke | 2009-05-02 16:42:35 +0000 |
---|---|---|
committer | Charles Krinke | 2009-05-02 16:42:35 +0000 |
commit | 011448f69a0e64883fe6f56f200bf6f8e52ee5b5 (patch) | |
tree | 958f4af56d1e8b58eea189ec44b0fcff9cb594f6 | |
parent | Thank you kindly, Thomax, for a patch that solves: (diff) | |
download | opensim-SC_OLD-011448f69a0e64883fe6f56f200bf6f8e52ee5b5.zip opensim-SC_OLD-011448f69a0e64883fe6f56f200bf6f8e52ee5b5.tar.gz opensim-SC_OLD-011448f69a0e64883fe6f56f200bf6f8e52ee5b5.tar.bz2 opensim-SC_OLD-011448f69a0e64883fe6f56f200bf6f8e52ee5b5.tar.xz |
Thank you kindly, Fly-Man, for a patch that:
* Added the hostname so the email gets the
right hostname when going outbound
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs index 2f9dd0c..b28df8d 100644 --- a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | |||
@@ -302,7 +302,7 @@ namespace OpenSim.Region.CoreModules.Scripting.EmailModules | |||
302 | emailMessage.Send(smtpServer); | 302 | emailMessage.Send(smtpServer); |
303 | 303 | ||
304 | //Log | 304 | //Log |
305 | m_log.Info("[EMAIL] EMail sent to: " + address + " from object: " + objectID.ToString()); | 305 | m_log.Info("[EMAIL] EMail sent to: " + address + " from object: " + objectID.ToString() + "@" + m_HostName); |
306 | } | 306 | } |
307 | catch (Exception e) | 307 | catch (Exception e) |
308 | { | 308 | { |