• Rss
  • LinkedIn
  • Twitter
  • Youtube
  • Xing
  • English English English en
  • Deutsch Deutsch German de
Sales: +49 5251 304-800 | Support: +49 5251 304-636
NoSpamProxy
  • HOME
  • PRODUCT
    • NoSpamProxy Cloud
    • NoSpamProxy Protection
    • NoSpamProxy Encryption
    • NoSpamProxy Large Files
    • NoSpamProxy Disclaimer
    • Testimonials
  • SUPPORT
    • Knowledge Base
    • Forum
    • Training courses
    • Support Request
    • Software-Download
    • Resources
  • PARTNERS
    • Finding Resellers
    • Becoming Reseller
    • Partner Portal
  • COMPANY
    • Team
    • Career
    • Contact
  • EVENTS
    • Events
    • Webcast Training
  • BLOG
  • FREE TRIAL VERSION
    • Price request
    • Free trial version
  • English
    • Deutsch
  • Search
  • Menu Menu
info icon

What does “Message delivered via relay” mean?

Known errors all

In Message Tracking, messages will appear where the subject begins with “Message delivered via relay”. The reason for this is that the sending SMTP server requests a “Delivery Notification” in the SMTP envelope. However, these notifications are not supported by the receiving SMTP server. These notifications are requested via the NOTIFY parameter of the RCPT TO command, e.g.

RCPT TO:<alice@example.com> NOTIFY=Delay,Failure

Depending on the request this must be altered accordingly on the sending side or the receiving side. This behaviour cannot be changed by NoSpamProxy.

27.03.2019/by Stefan Feist

How to set up a Reserved IP Address in Microsoft Azure

How-tos all, tbc

If you want to run NoSpamProxy, or parts of it, in a virtual machine in a Microsoft Azure environment, you need an IP address that will be retained even after the machine restarts. To achieve this, you must set up a Reserved IP Address. If you fail to do this, there is a very good chance that a different IP address will be assigned after the machine restarts.

To set up a Reserved IP address, please use the information in the following Microsoft article:
http://azure.microsoft.com/blog/2014/05/14/reserved-ip-addresses/

07.12.2018/by Stefan Feist
info icon

How to configure on-access virus scanners

How-tos all, closed

To solve (recurring) problems with the interaction of installed on-access virus scanners with the integrated CYREN Premium Antivirus, please configure your virus scanner so that the directories

  • C:\ProgramData\Net at Work Mail Gateway\CYREN
  • C:\ProgramData\Net at Work Mail Gateway\Temporary Files\MailQueues
  • C:\ProgramData\Net at Work Mail Gateway\Temporary Files\MailsOnHold
  • C:\Program Files\Net at Work Mail Gateway\Cyren Integration Service (New)

be excluded from scanning on all systems with the Gateway role or Web Portal installed. Please note that the path is a hidden directory.

On servers with Web Portal installed, the following folder (default path for storing files for the WebPortal) must also be excluded:

  • C:\Program Files\Net at Work Mail Gateway\enQsig Web Portal\.

Otherwise, with some virus scanners, access to the Web Portal may be severely delayed and communication problems may occur.

In addition, an exception should be set on the ctasd.exe process if the on-access virus scanner allows this. (New)

Note

For all Cyren services to function properly, there must be unrestricted access to *.ctmail.com. A virus scan must not be performed on these connections, as this is where the definitions for the Cyren Premium AntiVirus are downloaded.

Important

If you do not find the path described above, it is most likely an older NoSpamProxy installation that has already been updated several times. In this case, please first check the file C:\ProgramData\Net at Work Mail Gateway\Configuration\Gateway Role.config and look for the entry <storageLocation path= there.

This path is currently used by the Gateway Role.

If you have activated the “File-based virus scan” in the rules, make sure that your scanner is configured to completely delete or quarantine infected files and archives. If the scanner is configured to “Clean”, NoSpamProxy often cannot detect that these have been modified by the installed scanner. Thus, the “File-based virus scan” fails despite successful detection by NoSpamProxy. This occurs especially with archives.

04.12.2018/by Stefan Feist
info icon

How to create an encryption dump of decrypted data

Troubleshooting all, closed

This article describes how to configure NoSpamProxy to store the decrypted data in a file before processing it in an email. This can be very helpful when analysing formatting problems related to encryption and decryption.

To create the encryption dump, proceed as follows:

The corresponding setting is made in the file “Gateway Role.config” in the directory “C:\ProgramData\Net at Work Mail Gateway\Configuration\”.

You must first search for the following line in the file:

</configSections>

Below this line, add the following line:

<netatwork.nospamproxy.cryptography>
<debugging dumpDecryptedContentToDisk="true"/>
</netatwork.nospamproxy.cryptography>

If the section “netatwork.nospamproxy.cryptography” already exists, simply add the following line:

<debugging dumpDecryptedContentToDisk="true"/>
Important

Before you save the configuration file, you must stop the Gateway Role service. Only then can you save the configuration file correctly.

The decrypted contents are now stored in the Temp folder of the Local Service. Usually this is the folder C:\Windows\ServiceProfiles\LocalService\AppData\Local\Temp. If the files are not created there, please check the folder C:\Windows\Temp.

04.12.2018/by Stefan Feist
info icon

Office 365 IP addresses

Settings all, closed

Office 365-relevant IP addresses

All IP addresses relevant for Office 365 integration in NoSpamProxy can be found at https://support.office.com/de-de/article/URLs-und-IP-Adressbereiche-von-Office-365-8548a211-3fe7-47cb-abb1-355ea5aa88a2

Learn how to set up Office 365 in NoSpamProxy in our blog post NoSpamProxy integration in Office 365.

04.12.2018/by Stefan Feist
info icon

How to create a memory dump for NoSpamProxy

Troubleshooting all, closed

This article describes how to create a memory dump on a Windows 2008 Server R2 or later for use by the NoSpamProxy support team.

On the affected server, open the Task Manager and navigate to the Details tab and sort by Names.

Right-click on the corresponding process and select “Create dump file”.

Send the corresponding dump to the NoSpamProxy support team at support@nospamproxy.de.

04.12.2018/by Stefan Feist
info icon

How to check database integrity

How-tos all, tbc

This article explains how to check database integrity and repair it if necessary.

Microsoft SQL Server Management Studio is required to do this.

    1. Open Microsoft SQL Server Management Studio.
    2. Expand the Databases menu item.
    3. Click on the database “NoSpamProxyDB” and then on New Query in the upper left area. A white window now appears on the right side. To check a suspicious database for errors, you can use the following command in SQL Management Studio:
      DBCC CHECKDB ('NoSpamProxyDB')

    The next command would then correct these errors. You must set the Restrict Access mode from MULTI_USER to SINGLE_USER under Options in the database's Properties before running the command.
    DBCC CHECKDB ('NoSpamProxyDB', REPAIR_REBUILD)

    The success is checked again with the following command.
    DBCC CHECKDB ('NoSpamProxyDB')

    No red error messages should appear in the output now. If the database could not be successfully repaired and red error messages still appear, execute the more aggressive command
    DBCC CHECKDB ('NoSpamProxyDB', REPAIR_ALLOW_DATA_LOSS)

    You should also check the success with the above command afterwards. If the database cannot be repaired, you can also create a new database via the NoSpamProxy interface. The point can be found under the node “Troubleshooting”.

    If problems with the SQL Server occur often, a defect on the SQL Server is likely.

25.01.2018/by Stefan Feist

SEARCH

PRODUCT

  • All Topics
  • NoSpamProxy Cloud
  • NoSpamProxy Protection
  • NoSpamProxy Encryption
  • NospamProxy Large Files

Knowledge Base

Knowledge Base

Note: The information in this knowledge base is only relevant for NoSpamProxy up to version 13.2. All information for NoSpamProxy 14 and higher can be found in the online documentation.

CATEGORY

  • All Topics
  • News
  • Product
  • Tech & Support
  • Events
Followon TwitterSubscribeto RSS Feed

NoSpamProxy

  • NoSpamProxy Cloud
  • NoSpamProxy Encryption
  • NoSpamProxy Large Files
  • NoSpamProxy Disclaimer
  • Price request
  • Team
  • Career
  • General terms and conditions
  • Data Protection Information for Business Partners and Applicants
  • Cybersecurity (PSIRT)

Partners

  • Becoming a reseller
  • Partners
  • Order Certificates
  • Newsletter

Categories

  • All topics
  • News
  • Support
  • Updates
  • Order certificates

Latest News

  • beBPo Besonderes elektronisches Behördenpostfach PreviewbeBPo: Using the public authority mailbox with NoSpamProxy16.05.2022 - 10:00
  • Info IconRevoked SwissSign certificates09.05.2022 - 16:03
  • IT Security made in GermanyTrustworthy email software made in Germany – with the seal of trust05.04.2022 - 15:56
IMPRINT  • EULA • Privacy Policy • © 2022 Net at Work GmbH
  • Rss
  • LinkedIn
  • Twitter
  • Youtube
  • Xing
Scroll to top