Skip to content

Commit

Permalink
v1.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Pro committed Dec 22, 2016
1 parent fe60a3f commit 8a607e8
Show file tree
Hide file tree
Showing 61 changed files with 107 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CatchAllAgent/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.8")]
[assembly: AssemblyFileVersion("1.6.8")]
[assembly: AssemblyVersion("1.6.9")]
[assembly: AssemblyFileVersion("1.6.9")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
Binary file modified CatchAllAgent/bin/Exchange 2007 SP3/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2007 SP3/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP1/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP1/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP2/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP2/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP3/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010 SP3/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2010/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU1/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU1/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU2/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU2/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU3/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 CU3/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU10/ExchangeCatchAll.dll
Binary file not shown.
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU11/ExchangeCatchAll.dll
Binary file not shown.
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU12/ExchangeCatchAll.dll
Binary file not shown.
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU13/ExchangeCatchAll.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="domainSection" type="ConfigurationSettings.DomainSection, ExchangeCatchAll"/>
<sectionGroup name="customSection">
<section name="database" type="ConfigurationSettings.Database, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
<section name="general" type="ConfigurationSettings.General, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
</sectionGroup>
</configSections>
<!-- You can edit the settings below this line -->
<domainSection>
<!-- Domain name comparison and the regex are case insensitive! -->
<Domains>
<!-- Redirect all E-Mail sent to an address with domain example.com to [email protected] -->
<Domain name="example.com" regex="false" address="[email protected]"/>
<!-- Use a regex to redirect. Redirects all mails to *@*.cathcall.com to *@example.org
E.g. [email protected] -> [email protected]
or [email protected] -> [email protected]
-->
<Domain name="^.*@(.*)\.catchall.com$" regex="true" address="[email protected]"/>
</Domains>
</domainSection>
<customSection>
<!-- LogLevel: 0 = off, 1 = error, 2 = error+warn, 3 = all
AddOrigToHeader: Enable/Disable 'X-OrigTo' header
RejectIfBlocked: If recipient blocked in database, directly send error to sender. Otherwise the address will be handled by Exchange which then decides the action.
-->
<general LogLevel="3" AddOrigToHeader="true" RejectIfBlocked="false"/>
<!-- Database settings.
enabled: enable/disable database logging/block checking
type: currently only mysql supported
-->
<database enabled="true" type="mysql" connectionstrings="SERVER=localhost;PORT=3306;UID=catchall;PWD=catchall;DATABASE=catchall;;charset=utf8mb4"/>
</customSection>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="domainSection" type="ConfigurationSettings.DomainSection, ExchangeCatchAll"/>
<sectionGroup name="customSection">
<section name="database" type="ConfigurationSettings.Database, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
<section name="general" type="ConfigurationSettings.General, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
</sectionGroup>
</configSections>
<!-- You can edit the settings below this line -->
<domainSection>
<!-- Domain name comparison and the regex are case insensitive! -->
<Domains>
<!-- Redirect all E-Mail sent to an address with domain example.com to [email protected] -->
<Domain name="example.com" regex="false" address="[email protected]"/>
<!-- Use a regex to redirect. Redirects all mails to *@*.cathcall.com to *@example.org
E.g. [email protected] -> [email protected]
or [email protected] -> [email protected]
-->
<Domain name="^.*@(.*)\.catchall.com$" regex="true" address="[email protected]"/>
</Domains>
</domainSection>
<customSection>
<!-- LogLevel: 0 = off, 1 = error, 2 = error+warn, 3 = all
AddOrigToHeader: Enable/Disable 'X-OrigTo' header
RejectIfBlocked: If recipient blocked in database, directly send error to sender. Otherwise the address will be handled by Exchange which then decides the action.
-->
<general LogLevel="3" AddOrigToHeader="true" RejectIfBlocked="false"/>
<!-- Database settings.
enabled: enable/disable database logging/block checking
type: currently only mysql supported
-->
<database enabled="true" type="mysql" connectionstrings="SERVER=localhost;PORT=3306;UID=catchall;PWD=catchall;DATABASE=catchall;;charset=utf8mb4"/>
</customSection>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Binary file not shown.
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU4/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU4/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU5/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU5/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU6/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU6/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU7/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU7/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU8/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU8/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU9/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013 SP1 CU9/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2013/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU1/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU1/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU2/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU2/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU3/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 CU3/ExchangeCatchAll.pdb
Binary file not shown.
Binary file not shown.
35 changes: 35 additions & 0 deletions CatchAllAgent/bin/Exchange 2016 CU4/ExchangeCatchAll.dll.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="domainSection" type="ConfigurationSettings.DomainSection, ExchangeCatchAll"/>
<sectionGroup name="customSection">
<section name="database" type="ConfigurationSettings.Database, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
<section name="general" type="ConfigurationSettings.General, ExchangeCatchAll" allowLocation="true" allowDefinition="Everywhere"/>
</sectionGroup>
</configSections>
<!-- You can edit the settings below this line -->
<domainSection>
<!-- Domain name comparison and the regex are case insensitive! -->
<Domains>
<!-- Redirect all E-Mail sent to an address with domain example.com to [email protected] -->
<Domain name="example.com" regex="false" address="[email protected]"/>
<!-- Use a regex to redirect. Redirects all mails to *@*.cathcall.com to *@example.org
E.g. [email protected] -> [email protected]
or [email protected] -> [email protected]
-->
<Domain name="^.*@(.*)\.catchall.com$" regex="true" address="[email protected]"/>
</Domains>
</domainSection>
<customSection>
<!-- LogLevel: 0 = off, 1 = error, 2 = error+warn, 3 = all
AddOrigToHeader: Enable/Disable 'X-OrigTo' header
RejectIfBlocked: If recipient blocked in database, directly send error to sender. Otherwise the address will be handled by Exchange which then decides the action.
-->
<general LogLevel="3" AddOrigToHeader="true" RejectIfBlocked="false"/>
<!-- Database settings.
enabled: enable/disable database logging/block checking
type: currently only mysql supported
-->
<database enabled="true" type="mysql" connectionstrings="SERVER=localhost;PORT=3306;UID=catchall;PWD=catchall;DATABASE=catchall;;charset=utf8mb4"/>
</customSection>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Binary file not shown.
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 Preview/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 Preview/ExchangeCatchAll.pdb
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 RTM/ExchangeCatchAll.dll
Binary file not shown.
Binary file modified CatchAllAgent/bin/Exchange 2016 RTM/ExchangeCatchAll.pdb
Binary file not shown.

0 comments on commit 8a607e8

Please sign in to comment.