[Nmailserver-commits] SF.net SVN: nmailserver: [263] NMail/trunk
Brought to you by:
dframpton-oss,
tmyroadctfig
|
From: <tmy...@us...> - 2007-07-30 14:30:49
|
Revision: 263
http://nmailserver.svn.sourceforge.net/nmailserver/?rev=263&view=rev
Author: tmyroadctfig
Date: 2007-07-30 07:30:52 -0700 (Mon, 30 Jul 2007)
Log Message:
-----------
Some minor changes.
Modified Paths:
--------------
NMail/trunk/NMail.Server/NMailServer.cs
NMail/trunk/NMail.Server.Console/NMail.config
NMail/trunk/NMail.SurveyService/Properties/AssemblyInfo.cs
NMail/trunk/NMail.UnitTests/NMail.UnitTests.csproj
Property Changed:
----------------
NMail/trunk/NMail.MetricsService/
Property changes on: NMail/trunk/NMail.MetricsService
___________________________________________________________________
Name: svn:ignore
+ bin
obj
Modified: NMail/trunk/NMail.Server/NMailServer.cs
===================================================================
--- NMail/trunk/NMail.Server/NMailServer.cs 2007-07-30 14:27:23 UTC (rev 262)
+++ NMail/trunk/NMail.Server/NMailServer.cs 2007-07-30 14:30:52 UTC (rev 263)
@@ -346,6 +346,6 @@
/// <summary>
/// The base registry key for the NMail server.
/// </summary>
- public const string NMailRegistryKey = @"Software\NMail\NMail Server 1.0";
+ public const string NMailRegistryKey = @"Software\NMail\NMail Server 1.1";
}
}
Modified: NMail/trunk/NMail.Server.Console/NMail.config
===================================================================
--- NMail/trunk/NMail.Server.Console/NMail.config 2007-07-30 14:27:23 UTC (rev 262)
+++ NMail/trunk/NMail.Server.Console/NMail.config 2007-07-30 14:30:52 UTC (rev 263)
@@ -14,28 +14,29 @@
<section name="NMail.LocalStoreData.MySql" type="NMail.LocalStoreData.MySql.Configuration.MySqlLocalStoreDataConfiguration, NMail.LocalStoreData.MySql" />
<section name="NMail.LocalStoreData.NHibernate" type="NMail.LocalStoreData.NHibernate.Configuration, NMail.LocalStoreData.NHibernate" />
<section name="NMail.SpoolData.NHibernate" type="NMail.SpoolData.NHibernate.Configuration, NMail.SpoolData.NHibernate" />
+ <section name="NMail.MetricsService" type="NMail.MetricsService.Configuration.MetricsServiceConfiguration, NMail.MetricsService" />
</configSections>
<NMail>
<Services>
<Service Type="NMail.SmtpService.SmtpService, NMail.SmtpService" />
<Service Type="NMail.ImapService.ImapService, NMail.ImapService" />
+ <Service Type="NMail.SurveyService.SurveyService, NMail.SurveyService" />
+ <!--<Service Type="NMail.MetricsService.MetricsService, NMail.MetricsService" />-->
</Services>
<NamedServices>
- <!-- <NamedService Name="AuthProvider" Type="NMail.LocalStoreData.MySql.MySqlAuthProvider, NMail.LocalStoreData.MySql" /> -->
<NamedService Name="AuthProvider" Type="NMail.LocalStoreData.NHibernate.NHibernateAuthProvider, NMail.LocalStoreData.NHibernate" />
<NamedService Name="DnsClient" Type="NMail.DnsClient.DnsClient, NMail.DnsClient" />
<NamedService Name="MessageRouter" Type="NMail.MessageRouter.MessageRouter, NMail.MessageRouter" />
<NamedService Name="LocalStore" Type="NMail.LocalStore.LocalStore, NMail.LocalStore" />
<NamedService Name="SpoolData" Type="NMail.SpoolData.NHibernate.NHibernateSpoolData, NMail.SpoolData.NHibernate" />
- <!--<NamedService Name="LocalStoreData" Type="NMail.LocalStoreData.MySql.MySqlLocalStoreData, NMail.LocalStoreData.MySql" />-->
<NamedService Name="LocalStoreData" Type="NMail.LocalStoreData.NHibernate.NHibernateLocalStoreData, NMail.LocalStoreData.NHibernate" />
<NamedService Name="SmtpClient" Type="NMail.SmtpClient.SmtpClient, NMail.SmtpClient" />
- <NamedService Name="SpoolService" Type="NMail.SpoolService.SpoolService, NMail.SpoolService" />
- <NamedService Name="SpoolFilterService" Type="NMail.SpoolFilter.SpoolFilter, NMail.SpoolFilter" />
+ <!-- <NamedService Name="SpoolService" Type="NMail.SpoolService.SpoolService, NMail.SpoolService" />
+ <NamedService Name="SpoolFilterService" Type="NMail.SpoolFilter.SpoolFilter, NMail.SpoolFilter" /> -->
</NamedServices>
</NMail>
@@ -50,10 +51,10 @@
<NMail.MessageRouter
VisibleHost="localhost"
- WarningTemplate="Warning.txt"
- BounceTemplate="Bounce.txt" />
+ WarningTemplateFile="Warning.txt"
+ BounceTemplateFile="Bounce.txt" />
- <NMail.SmtpClient VisibleHost="localhost" />
+ <NMail.SmtpClient VisibleHost="localhost" RelayHost="mail.bigpond.net" />
<NMail.SmtpService VisibleHost="localhost">
<Listen>
@@ -102,4 +103,6 @@
<NMail.LocalStoreData.NHibernate NHibernateCfgFile="hibernate-localstore-configuration.xml"/>
<NMail.SpoolData.NHibernate NHibernateCfgFile="hibernate-spool-configuration.xml"/>
+
+ <NMail.MetricsService GatherWaitPeriod="00:00:10" />
</configuration>
Modified: NMail/trunk/NMail.SurveyService/Properties/AssemblyInfo.cs
===================================================================
--- NMail/trunk/NMail.SurveyService/Properties/AssemblyInfo.cs 2007-07-30 14:27:23 UTC (rev 262)
+++ NMail/trunk/NMail.SurveyService/Properties/AssemblyInfo.cs 2007-07-30 14:30:52 UTC (rev 263)
@@ -1,35 +1,34 @@
-using System.Reflection;
+/*
+ * Copyright 2004-2007 Luke Quinane
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+using System.Reflection;
using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("NMail.SurveyService")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("NMail.SurveyService")]
-[assembly: AssemblyCopyright("Copyright © 2007")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
+// General details
+[assembly: AssemblyTitle("NMail Survey Service.")]
+[assembly: AssemblyVersion("1.1.*")]
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
+[assembly: AssemblyDescription("Provides a suvery service implementation for NMail.")]
+[assembly: AssemblyCompany("http://NMailServer.SourceForge.net")]
+[assembly: AssemblyProduct("NMail")]
+[assembly: AssemblyCopyright("Copyright © 2004-2007 Luke Quinane")]
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("242626f0-e0a3-49e6-9575-e5fb23a73ce8")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers
-// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+#if DEBUG
+[assembly: AssemblyConfiguration("Debug")]
+#else
+[assembly: AssemblyConfiguration("Release")]
+#endif
Modified: NMail/trunk/NMail.UnitTests/NMail.UnitTests.csproj
===================================================================
--- NMail/trunk/NMail.UnitTests/NMail.UnitTests.csproj 2007-07-30 14:27:23 UTC (rev 262)
+++ NMail/trunk/NMail.UnitTests/NMail.UnitTests.csproj 2007-07-30 14:30:52 UTC (rev 263)
@@ -49,6 +49,7 @@
<Compile Include="DataTypes\EmailAddressTests.cs" />
<Compile Include="DataTypes\FolderTests.cs" />
<Compile Include="DataTypes\HostTests.cs" />
+ <Compile Include="DataTypes\MemoryTests.cs" />
<Compile Include="DataTypes\MessageHeaderTests.cs" />
<Compile Include="DataTypes\MessageTests.cs" />
<Compile Include="DNSCacheTests.cs" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|