[clamav-users] Errir parsing PNG files and 451_mail_server_temporarily_rejected_message
Pablo Murillo
info at pablomurillo.com.ar
Mon Oct 19 22:34:32 UTC 2020
Hi
I don't know if the PNG error is present from day 1 or not
A user ask me about a mail he was waiting and when I search in the logs
I found the 451 error, so I start searching the origin and I found it
with the PNG files
I just added the lines for debug
I'm not using milter, I'm using SimScan
The server is an MX server, configured with:
Qmail with Vpopmail
Spamdyke
Simscan
Clamav
The simscan runs from tcp.smtp from vpopmail
:allow,QMAILQUEUE="/var/qmail/bin/simscan"
I'm sending clamd.conf and 8 minutes off log (clamd.log) attached
1st error on line 1260 approximately at 18:45:05
3 errors in total
On 10/19/2020 6:00 PM, G.W. Haywood via clamav-users wrote:
> Hi there,
>
> On Mon, 19 Oct 2020, Pablo Murillo wrote:
>
>> I started seeing the error [
>> 451_mail_server_temporarily_rejected_message ] on maillog, and
>
> Can you tell us if the time these messages started to appear coincided
> with anything that you did to the system, such as upgrades, installing
> new software, etc.?
>
>> looking in the clamd.log I found a lot of lines like this [
>> /*/*/*/*.png: Can't parse data ERROR ]
>
> Unfortunately that message doesn't say much about where in the code
> the error occurs, the function which prints it is just a generic
> translation of an error code to a text string. If you enable debug
> logging in clamd and debug messages in libclamav it should tell us a
> bit more. All you need to do is add the lines
>
> LogVerbose yes
> Debug yes
>
> to your clamd.conf and restart clamd. (After the problem is solved,
> you'll probably want to remove these lines as they can produce a lot
> of output.)
>
>> I added on clamd.conf the next line
>>
>> ExcludePath ^\.png$
>>
>> But clamd is still sending the error
>
> That works for scanning files in the filesystem, but if you're using
> clamd via clamav-milter, which I guess is what you're doing as it's a
> mail server error, I don't think that it will work. It's not an ideal
> solution anyway.
>
>> Is there a way to avoid this ?
>
> It seems best to find out why PNG files are longer handled properly.
> The debug messages should tell us something.
>
>> My config
>> FreeBSD 11.3-RELEASE-p13
>> qmail (with a lot ot patches)
>> SpamDyke 5.0.1
>> ClamAV 0.103.0
>
> I wonder if something might be interfering with the mail before clamd
> sees it. When you get back with more information, could you confirm
> that you're using clamav-milter and let us see the clamd configuration
> file? The configuration file is probably called clamd.conf but you'll
> need to make sure it's the one that your clamd is using. It might
> help to let us see the clamav-milter configuration too, if that's what
> you use to feed the messages to clamd.
>
--
This email has been checked for viruses by AVG.
https://www.avg.com
-------------- next part --------------
Debug yes
# Uncomment this option to enable logging.
# LogFile must be writable for the user running daemon.
# A full path is required.
# Default: disabled
LogFile /var/log/clamav/clamd.log
# By default the log file is locked for writing - the lock protects against
# running clamd multiple times (if want to run another clamd, please
# copy the configuration file, change the LogFile variable, and run
# the daemon with --config-file option).
# This option disables log file locking.
# Default: no
#LogFileUnlock yes
# Maximum size of the log file.
# Value of 0 disables the limit.
# You may use 'M' or 'm' for megabytes (1M = 1m = 1048576 bytes)
# and 'K' or 'k' for kilobytes (1K = 1k = 1024 bytes). To specify the size
# in bytes just don't use modifiers. If LogFileMaxSize is enabled, log
# rotation (the LogRotate option) will always be enabled.
# Default: 1M
LogFileMaxSize 5M
# Log time with each message.
# Default: no
LogTime yes
# Also log clean files. Useful in debugging but drastically increases the
# log size.
# Default: no
# LogClean yes
# Use system logger (can work together with LogFile).
# Default: no
#LogSyslog yes
# Specify the type of syslog messages - please refer to 'man syslog'
# for facility names.
# Default: LOG_LOCAL6
#LogFacility LOG_MAIL
# Enable verbose logging.
# Default: no
LogVerbose yes
# Enable log rotation. Always enabled when LogFileMaxSize is enabled.
# Default: no
LogRotate yes
# Enable Prelude output.
# Default: no
#PreludeEnable yes
#
# Set the name of the analyzer used by prelude-admin.
# Default: ClamAV
#PreludeAnalyzerName ClamAV
# Log additional information about the infected file, such as its
# size and hash, together with the virus name.
#ExtendedDetectionInfo yes
# This option allows you to save a process identifier of the listening
# daemon (main thread).
# Default: disabled
PidFile /var/run/clamav/clamd.pid
# Optional path to the global temporary directory.
# Default: system specific (usually /tmp or /var/tmp).
#TemporaryDirectory /var/tmp
# Path to the database directory.
# Default: hardcoded (depends on installation options)
# DatabaseDirectory /var/db/clamav
DatabaseDirectory /web/spamdb/clamav
# Only load the official signatures published by the ClamAV project.
# Default: no
#OfficialDatabaseOnly no
# The daemon can work in local mode, network mode or both.
# Due to security reasons we recommend the local mode.
# Path to a local socket file the daemon will listen on.
# Default: disabled (must be specified by a user)
LocalSocket /var/run/clamav/clamd.sock
# Sets the group ownership on the unix socket.
# Default: disabled (the primary group of the user running clamd)
#LocalSocketGroup virusgroup
# Sets the permissions on the unix socket to the specified mode.
# Default: disabled (socket is world accessible)
#LocalSocketMode 660
# Remove stale socket after unclean shutdown.
# Default: yes
FixStaleSocket yes
# TCP port address.
# Default: no
#TCPSocket 3310
# TCP address.
# By default we bind to INADDR_ANY, probably not wise.
# Enable the following to provide some degree of protection
# from the outside world. This option can be specified multiple
# times if you want to listen on multiple IPs. IPv6 is now supported.
# Default: no
#TCPAddr 127.0.0.1
# Maximum length the queue of pending connections may grow to.
# Default: 200
#MaxConnectionQueueLength 30
# Clamd uses FTP-like protocol to receive data from remote clients.
# If you are using clamav-milter to balance load between remote clamd daemons
# on firewall servers you may need to tune the options below.
# Close the connection when the data size limit is exceeded.
# The value should match your MTA's limit for a maximum attachment size.
# Default: 25M
#StreamMaxLength 10M
# Limit port range.
# Default: 1024
#StreamMinPort 30000
# Default: 2048
#StreamMaxPort 32000
# Maximum number of threads running at the same time.
# Default: 10
#MaxThreads 20
# Waiting for data from a client socket will timeout after this time (seconds).
# Default: 120
#ReadTimeout 300
# This option specifies the time (in seconds) after which clamd should
# timeout if a client doesn't provide any initial command after connecting.
# Default: 5
#CommandReadTimeout 5
# This option specifies how long to wait (in milliseconds) if the send buffer
# is full.
# Keep this value low to prevent clamd hanging
#
# Default: 500
#SendBufTimeout 200
# Maximum number of queued items (including those being processed by
# MaxThreads threads)
# It is recommended to have this value at least twice MaxThreads if possible.
# WARNING: you shouldn't increase this too much to avoid running out of file
# descriptors,
# the following condition should hold:
# MaxThreads*MaxRecursion + (MaxQueue - MaxThreads) + 6< RLIMIT_NOFILE (usual
# max is 1024)
#
# Default: 100
#MaxQueue 200
# Waiting for a new job will timeout after this time (seconds).
# Default: 30
#IdleTimeout 60
# Don't scan files and directories matching regex
# This directive can be used multiple times
# Default: scan all
#ExcludePath ^/proc/
#ExcludePath ^/sys/
ExcludePath ^\.png$
# Maximum depth directories are scanned at.
# Default: 15
#MaxDirectoryRecursion 20
# Follow directory symlinks.
# Default: no
#FollowDirectorySymlinks yes
# Follow regular file symlinks.
# Default: no
#FollowFileSymlinks yes
# Scan files and directories on other filesystems.
# Default: yes
CrossFilesystems No
# Perform a database check.
# Default: 600 (10 min)
SelfCheck 3600
# Execute a command when virus is found. In the command string %v will
# be replaced with the virus name.
# Default: no
#VirusEvent /usr/local/bin/send_sms 123456789 "VIRUS ALERT: %v"
# Run as another user (clamd must be started by root for this option to work)
# Default: don't drop privileges
User clamav
# Stop daemon when libclamav reports out of memory condition.
#ExitOnOOM yes
# Don't fork into background.
# Default: no
#Foreground yes
# Enable debug messages in libclamav.
# Default: no
# Debug yes
# Do not remove temporary files (for debug purposes).
# Default: no
# LeaveTemporaryFiles yes
# Permit use of the ALLMATCHSCAN command. If set to no, clamd will reject
# any ALLMATCHSCAN command as invalid.
# Default: yes
#AllowAllMatchScan no
# Detect Possibly Unwanted Applications.
# Default: no
# DetectPUA yes
# Exclude a specific PUA category. This directive can be used multiple times.
# See https://github.com/vrtadmin/clamav-faq/blob/master/faq/faq-pua.md for
# the complete list of PUA categories.
# Default: Load all categories (if DetectPUA is activated)
#ExcludePUA NetTool
#ExcludePUA PWTool
# Only include a specific PUA category. This directive can be used multiple
# times.
# Default: Load all categories (if DetectPUA is activated)
#IncludePUA Spy
#IncludePUA Scanner
#IncludePUA RAT
# This option causes memory or nested map scans to dump the content to disk.
# If you turn on this option, more data is written to disk and is available
# when the LeaveTemporaryFiles option is enabled.
#ForceToDisk yes
# This option allows you to disable the caching feature of the engine. By
# default, the engine will store an MD5 in a cache of any files that are
# not flagged as virus or that hit limits checks. Disabling the cache will
# have a negative performance impact on large scans.
# Default: no
#DisableCache yes
# In some cases (eg. complex malware, exploits in graphic files, and others),
# ClamAV uses special algorithms to detect abnormal patterns and behaviors that
# may be malicious. This option enables alerting on such heuristically
# detected potential threats.
# Default: yes
HeuristicAlerts yes
# Allow heuristic alerts to take precedence.
# When enabled, if a heuristic scan (such as phishingScan) detects
# a possible virus/phish it will stop scan immediately. Recommended, saves CPU
# scan-time.
# When disabled, virus/phish detected by heuristic scans will be reported only at
# the end of a scan. If an archive contains both a heuristically detected
# virus/phish, and a real malware, the real malware will be reported
#
# Keep this disabled if you intend to handle "*.Heuristics.*" viruses
# differently from "real" malware.
# If a non-heuristically-detected virus (signature-based) is found first,
# the scan is interrupted immediately, regardless of this config option.
#
# Default: no
HeuristicScanPrecedence yes
##
## Heuristic Alerts
##
# With this option clamav will try to detect broken executables (both PE and
# ELF) and alert on them with the Broken.Executable heuristic signature.
# Default: no
#AlertBrokenExecutables yes
# Alert on encrypted archives _and_ documents with heuristic signature (encrypted .zip, .7zip, .rar, .pdf).
# Default: no
#AlertEncrypted yes
# Alert on encrypted archives with heuristic signature (encrypted .zip, .7zip, .rar).
# Default: no
#AlertEncryptedArchive yes
# Alert on encrypted archives with heuristic signature (encrypted .pdf).
# Default: no
#AlertEncryptedDoc yes
# With this option enabled OLE2 files containing VBA macros, which were not
# detected by signatures will be marked as "Heuristics.OLE2.ContainsMacros".
# Default: no
# AlertOLE2Macros yes
# Alert on SSL mismatches in URLs, even if the URL isn't in the database.
# This can lead to false positives.
# Default: no
#AlertPhishingSSLMismatch no
# Alert on cloaked URLs, even if URL isn't in database.
# This can lead to false positives.
# Default: no
#AlertPhishingCloak no
# Alert on raw DMG image files containing partition intersections
# Default: no
#AlertPartitionIntersection yes
##
## Executable files
##
# PE stands for Portable Executable - it's an executable file format used
# in all 32 and 64-bit versions of Windows operating systems. This option
# allows ClamAV to perform a deeper analysis of executable files and it's also
# required for decompression of popular executable packers such as UPX, FSG,
# and Petite. If you turn off this option, the original files will still be
# scanned, but without additional processing.
# Default: yes
#ScanPE yes
# Certain PE files contain an authenticode signature. By default, we check
# the signature chain in the PE file against a database of trusted and
# revoked certificates if the file being scanned is marked as a virus.
# If any certificate in the chain validates against any trusted root, but
# does not match any revoked certificate, the file is marked as whitelisted.
# If the file does match a revoked certificate, the file is marked as virus.
# The following setting completely turns off authenticode verification.
# Default: no
#DisableCertCheck yes
# Executable and Linking Format is a standard format for UN*X executables.
# This option allows you to control the scanning of ELF files.
# If you turn off this option, the original files will still be scanned, but
# without additional processing.
# Default: yes
#ScanELF yes
##
## Documents
##
# This option enables scanning of OLE2 files, such as Microsoft Office
# documents and .msi files.
# If you turn off this option, the original files will still be scanned, but
# without additional processing.
# Default: yes
ScanOLE2 yes
# This option enables scanning within PDF files.
# If you turn off this option, the original files will still be scanned, but
# without decoding and additional processing.
# Default: yes
#ScanPDF yes
ScanPDF no
# This option enables scanning within SWF files.
# If you turn off this option, the original files will still be scanned, but
# without decoding and additional processing.
# Default: yes
#ScanSWF yes
# This option enables scanning xml-based document files supported by libclamav.
# If you turn off this option, the original files will still be scanned, but
# without additional processing.
# Default: yes
ScanXMLDOCS yes
# This option enables scanning of HWP3 files.
# If you turn off this option, the original files will still be scanned, but
# without additional processing.
# Default: yes
#ScanHWP3 yes
##
## Mail files
##
# Enable internal e-mail scanner.
# If you turn off this option, the original files will still be scanned, but
# without parsing individual messages/attachments.
# Default: yes
ScanMail yes
# Scan RFC1341 messages split over many emails.
# You will need to periodically clean up $TemporaryDirectory/clamav-partial
# directory.
# WARNING: This option may open your system to a DoS attack.
# Never use it on loaded servers.
# Default: no
#ScanPartialMessages yes
# With this option enabled ClamAV will try to detect phishing attempts by using
# HTML.Phishing and Email.Phishing NDB signatures.
# Default: yes
PhishingSignatures yes
# With this option enabled ClamAV will try to detect phishing attempts by
# analyzing URLs found in emails using WDB and PDB signature databases.
# Default: yes
PhishingScanURLs yes
##
## Data Loss Prevention (DLP)
##
# Enable the DLP module
# Default: No
#StructuredDataDetection yes
# This option sets the lowest number of Credit Card numbers found in a file
# to generate a detect.
# Default: 3
#StructuredMinCreditCardCount 5
# This option sets the lowest number of Social Security Numbers found
# in a file to generate a detect.
# Default: 3
#StructuredMinSSNCount 5
# With this option enabled the DLP module will search for valid
# SSNs formatted as xxx-yy-zzzz
# Default: yes
#StructuredSSNFormatNormal yes
# With this option enabled the DLP module will search for valid
# SSNs formatted as xxxyyzzzz
# Default: no
#StructuredSSNFormatStripped yes
##
## HTML
##
# Perform HTML normalisation and decryption of MS Script Encoder code.
# Default: yes
# If you turn off this option, the original files will still be scanned, but
# without additional processing.
#ScanHTML yes
##
## Archives
##
# ClamAV can scan within archives and compressed files.
# If you turn off this option, the original files will still be scanned, but
# without unpacking and additional processing.
# Default: yes
ScanArchive yes
##
## Limits
##
# The options below protect your system against Denial of Service attacks
# using archive bombs.
# This option sets the maximum amount of data to be scanned for each input
# file.
# Archives and other containers are recursively extracted and scanned up to
# this value.
# Value of 0 disables the limit
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 100M
#MaxScanSize 150M
# Files larger than this limit won't be scanned. Affects the input file itself
# as well as files contained inside it (when the input file is an archive, a
# document or some other kind of container).
# Value of 0 disables the limit.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 25M
#MaxFileSize 30M
# Nested archives are scanned recursively, e.g. if a Zip archive contains a RAR
# file, all files within it will also be scanned. This options specifies how
# deeply the process should be continued.
# Note: setting this limit too high may result in severe damage to the system.
# Default: 16
#MaxRecursion 10
# Number of files to be scanned within an archive, a document, or any other
# container file.
# Value of 0 disables the limit.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 10000
#MaxFiles 15000
# Maximum size of a file to check for embedded PE. Files larger than this value
# will skip the additional analysis step.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 10M
#MaxEmbeddedPE 10M
# Maximum size of a HTML file to normalize. HTML files larger than this value
# will not be normalized or scanned.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 10M
#MaxHTMLNormalize 10M
# Maximum size of a normalized HTML file to scan. HTML files larger than this
# value after normalization will not be scanned.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 2M
#MaxHTMLNoTags 2M
# Maximum size of a script file to normalize. Script content larger than this
# value will not be normalized or scanned.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 5M
#MaxScriptNormalize 5M
# Maximum size of a ZIP file to reanalyze type recognition. ZIP files larger
# than this value will skip the step to potentially reanalyze as PE.
# Note: disabling this limit or setting it too high may result in severe damage
# to the system.
# Default: 1M
#MaxZipTypeRcg 1M
# This option sets the maximum number of partitions of a raw disk image to be
# scanned.
# Raw disk images with more partitions than this value will have up to
# the value number partitions scanned. Negative values are not allowed.
# Note: setting this limit too high may result in severe damage or impact
# performance.
# Default: 50
#MaxPartitions 128
# This option sets the maximum number of icons within a PE to be scanned.
# PE files with more icons than this value will have up to the value number
# icons scanned.
# Negative values are not allowed.
# WARNING: setting this limit too high may result in severe damage or impact
# performance.
# Default: 100
#MaxIconsPE 200
# This option sets the maximum recursive calls for HWP3 parsing during
# scanning. HWP3 files using more than this limit will be terminated and
# alert the user.
# Scans will be unable to scan any HWP3 attachments if the recursive limit
# is reached.
# Negative values are not allowed.
# WARNING: setting this limit too high may result in severe damage or impact
# performance.
# Default: 16
#MaxRecHWP3 16
# This option sets the maximum calls to the PCRE match function during
# an instance of regex matching.
# Instances using more than this limit will be terminated and alert the user
# but the scan will continue.
# For more information on match_limit, see the PCRE documentation.
# Negative values are not allowed.
# WARNING: setting this limit too high may severely impact performance.
# Default: 100000
#PCREMatchLimit 20000
# This option sets the maximum recursive calls to the PCRE match function
# during an instance of regex matching.
# Instances using more than this limit will be terminated and alert the user
# but the scan will continue.
# For more information on match_limit_recursion, see the PCRE documentation.
# Negative values are not allowed and values > PCREMatchLimit are superfluous.
# WARNING: setting this limit too high may severely impact performance.
# Default: 2000
#PCRERecMatchLimit 10000
# This option sets the maximum filesize for which PCRE subsigs will be
# executed. Files exceeding this limit will not have PCRE subsigs executed
# unless a subsig is encompassed to a smaller buffer.
# Negative values are not allowed.
# Setting this value to zero disables the limit.
# WARNING: setting this limit too high or disabling it may severely impact
# performance.
# Default: 25M
#PCREMaxFileSize 100M
# When AlertExceedsMax is set, files exceeding the MaxFileSize, MaxScanSize, or
# MaxRecursion limit will be flagged with the virus
# "Heuristics.Limits.Exceeded".
# Default: no
#AlertExceedsMax yes
##
## On-access Scan Settings
##
# Enable on-access scanning. Currently, this is supported via fanotify.
# Clamuko/Dazuko support has been deprecated.
# Default: no
#ScanOnAccess yes
# Set the mount point to be scanned. The mount point specified, or the mount
# point containing the specified directory will be watched. If any directories
# are specified, this option will preempt the DDD system. This will notify
# only. It can be used multiple times.
# (On-access scan only)
# Default: disabled
#OnAccessMountPath /
#OnAccessMountPath /home/user
# Don't scan files larger than OnAccessMaxFileSize
# Value of 0 disables the limit.
# Default: 5M
#OnAccessMaxFileSize 10M
# Set the include paths (all files inside them will be scanned). You can have
# multiple OnAccessIncludePath directives but each directory must be added
# in a separate line. (On-access scan only)
# Default: disabled
#OnAccessIncludePath /home
#OnAccessIncludePath /students
# Set the exclude paths. All subdirectories are also excluded.
# (On-access scan only)
# Default: disabled
#OnAccessExcludePath /home/bofh
# With this option you can whitelist the root UID (0). Processes run under
# root with be able to access all files without triggering scans or
# permission denied events.
# Note that if clamd cannot check the uid of the process that generated an
# on-access scan event (e.g., because OnAccessPrevention was not enabled, and
# the process already exited), clamd will perform a scan. Thus, setting
# OnAccessExcludeRootUID is not *guaranteed* to prevent every access by the
# root user from triggering a scan (unless OnAccessPrevention is enabled).
# Default: no
#OnAccessExcludeRootUID no
# With this option you can whitelist specific UIDs. Processes with these UIDs
# will be able to access all files without triggering scans or permission
# denied events.
# This option can be used multiple times (one per line).
# Using a value of 0 on any line will disable this option entirely.
# To whitelist the root UID (0) please enable the OnAccessExcludeRootUID
# option.
# Also note that if clamd cannot check the uid of the process that generated an
# on-access scan event (e.g., because OnAccessPrevention was not enabled, and
# the process already exited), clamd will perform a scan. Thus, setting
# OnAccessExcludeUID is not *guaranteed* to prevent every access by the
# specified uid from triggering a scan (unless OnAccessPrevention is enabled).
# Default: disabled
#OnAccessExcludeUID -1
# Toggles dynamic directory determination. Allows for recursively watching
# include paths.
# (On-access scan only)
# Default: no
#OnAccessDisableDDD yes
# Modifies fanotify blocking behaviour when handling permission events.
# If off, fanotify will only notify if the file scanned is a virus,
# and not perform any blocking.
# (On-access scan only)
# Default: no
#OnAccessPrevention yes
# Toggles extra scanning and notifications when a file or directory is
# created or moved.
# Requires the DDD system to kick-off extra scans.
# NOTE: This feature is disabled until a thread resource leak bug
# in the OnAccessExtraScanning code can be resolved.
# (On-access scan only)
# Default: no
#OnAccessExtraScanning yes
##
## Bytecode
##
# With this option enabled ClamAV will load bytecode from the database.
# It is highly recommended you keep this option on, otherwise you'll miss
# detections for many new viruses.
# Default: yes
#Bytecode yes
# Set bytecode security level.
# Possible values:
# None - No security at all, meant for debugging.
# DO NOT USE THIS ON PRODUCTION SYSTEMS.
# This value is only available if clamav was built
# with --enable-debug!
# TrustSigned - Trust bytecode loaded from signed .c[lv]d files, insert
# runtime safety checks for bytecode loaded from other sources.
# Paranoid - Don't trust any bytecode, insert runtime checks for all.
# Recommended: TrustSigned, because bytecode in .cvd files already has these
# checks.
# Note that by default only signed bytecode is loaded, currently you can only
# load unsigned bytecode in --enable-debug mode.
#
# Default: TrustSigned
#BytecodeSecurity TrustSigned
# Set bytecode timeout in milliseconds.
#
# Default: 5000
# BytecodeTimeout 1000
##
## Statistics gathering and submitting
##
-------------- next part --------------
Mon Oct 19 18:38:57 2020 -> +++ Started at Mon Oct 19 18:38:57 2020
Mon Oct 19 18:38:57 2020 -> Received 0 file descriptor(s) from systemd.
Mon Oct 19 18:38:57 2020 -> clamd daemon 0.103.0 (OS: freebsd11.3, ARCH: amd64, CPU: amd64)
Mon Oct 19 18:38:57 2020 -> Log file size limited to 5242880 bytes.
Mon Oct 19 18:38:57 2020 -> Reading databases from /web/spamdb/clamav
Mon Oct 19 18:38:57 2020 -> Not loading PUA signatures.
Mon Oct 19 18:38:57 2020 -> Bytecode: Security mode set to "TrustSigned".
Mon Oct 19 18:39:17 2020 -> Loaded 8926034 signatures.
Mon Oct 19 18:39:25 2020 -> LOCAL: Unix socket file /var/run/clamav/clamd.sock
Mon Oct 19 18:39:25 2020 -> LOCAL: Setting connection queue length to 200
Mon Oct 19 18:39:25 2020 -> Limits: Global time limit set to 120000 milliseconds.
Mon Oct 19 18:39:25 2020 -> Limits: Global size limit set to 104857600 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: File size limit set to 26214400 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: Recursion level limit set to 16.
Mon Oct 19 18:39:25 2020 -> Limits: Files limit set to 10000.
Mon Oct 19 18:39:25 2020 -> Limits: Core-dump limit is 9223372036854775807.
Mon Oct 19 18:39:25 2020 -> Limits: MaxEmbeddedPE limit set to 10485760 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: MaxHTMLNormalize limit set to 10485760 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: MaxHTMLNoTags limit set to 2097152 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: MaxScriptNormalize limit set to 5242880 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: MaxZipTypeRcg limit set to 1048576 bytes.
Mon Oct 19 18:39:25 2020 -> Limits: MaxPartitions limit set to 50.
Mon Oct 19 18:39:25 2020 -> Limits: MaxIconsPE limit set to 100.
Mon Oct 19 18:39:25 2020 -> Limits: MaxRecHWP3 limit set to 16.
Mon Oct 19 18:39:25 2020 -> Limits: PCREMatchLimit limit set to 100000.
Mon Oct 19 18:39:25 2020 -> Limits: PCRERecMatchLimit limit set to 2000.
Mon Oct 19 18:39:25 2020 -> Limits: PCREMaxFileSize limit set to 26214400.
Mon Oct 19 18:39:25 2020 -> Archive support enabled.
Mon Oct 19 18:39:25 2020 -> AlertExceedsMax heuristic detection disabled.
Mon Oct 19 18:39:25 2020 -> Heuristic alerts enabled.
Mon Oct 19 18:39:25 2020 -> Portable Executable support enabled.
Mon Oct 19 18:39:25 2020 -> ELF support enabled.
Mon Oct 19 18:39:25 2020 -> Mail files support enabled.
Mon Oct 19 18:39:25 2020 -> OLE2 support enabled.
Mon Oct 19 18:39:25 2020 -> PDF support disabled.
Mon Oct 19 18:39:25 2020 -> SWF support enabled.
Mon Oct 19 18:39:25 2020 -> HTML support enabled.
Mon Oct 19 18:39:25 2020 -> XMLDOCS support enabled.
Mon Oct 19 18:39:25 2020 -> HWP3 support enabled.
Mon Oct 19 18:39:25 2020 -> Heuristic: precedence enabled
Mon Oct 19 18:39:25 2020 -> Self checking every 3600 seconds.
Mon Oct 19 18:39:25 2020 -> Listening daemon: PID: 91604
Mon Oct 19 18:39:25 2020 -> MaxQueue set to: 100
Mon Oct 19 18:39:25 2020 -> Set stacksize to 2162688
Mon Oct 19 18:39:25 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:06 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:06 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:06 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:06 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:06 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:06 2020 -> got command CONTSCAN /var/qmail/simscan/1603143666.423377.95045 (52, 7), argument: /var/qmail/simscan/1603143666.423377.95045
Mon Oct 19 18:41:06 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:06 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:06 2020 -> Consumed entire command
Mon Oct 19 18:41:06 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:06 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:06 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:06 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:06 2020 -> Finished scanthread
Mon Oct 19 18:41:06 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:06 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:06 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:12 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:12 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:12 2020 -> got command CONTSCAN /var/qmail/simscan/1603143671.698595.95197 (52, 7), argument: /var/qmail/simscan/1603143671.698595.95197
Mon Oct 19 18:41:12 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:12 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:12 2020 -> Consumed entire command
Mon Oct 19 18:41:12 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:12 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> Finished scanthread
Mon Oct 19 18:41:12 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:12 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:12 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:12 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:12 2020 -> got command CONTSCAN /var/qmail/simscan/1603143669.985174.95136 (52, 7), argument: /var/qmail/simscan/1603143669.985174.95136
Mon Oct 19 18:41:12 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:12 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:12 2020 -> Consumed entire command
Mon Oct 19 18:41:12 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:12 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> Finished scanthread
Mon Oct 19 18:41:13 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:13 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:13 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:13 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:13 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:13 2020 -> got command CONTSCAN /var/qmail/simscan/1603143673.505757.95256 (52, 7), argument: /var/qmail/simscan/1603143673.505757.95256
Mon Oct 19 18:41:13 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:13 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:13 2020 -> Consumed entire command
Mon Oct 19 18:41:13 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:13 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> Finished scanthread
Mon Oct 19 18:41:13 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:13 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:23 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:23 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:23 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:23 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:23 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:23 2020 -> got command CONTSCAN /var/qmail/simscan/1603143683.582578.95524 (52, 7), argument: /var/qmail/simscan/1603143683.582578.95524
Mon Oct 19 18:41:23 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:23 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:23 2020 -> Consumed entire command
Mon Oct 19 18:41:23 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:23 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:23 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:23 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:23 2020 -> Finished scanthread
Mon Oct 19 18:41:23 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:23 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:23 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:25 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:25 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:25 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:25 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:25 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:25 2020 -> got command CONTSCAN /var/qmail/simscan/1603143685.478754.95571 (52, 7), argument: /var/qmail/simscan/1603143685.478754.95571
Mon Oct 19 18:41:25 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:25 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:25 2020 -> Consumed entire command
Mon Oct 19 18:41:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:25 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:25 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:25 2020 -> Finished scanthread
Mon Oct 19 18:41:25 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:26 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:26 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:26 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:26 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:26 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:26 2020 -> got command CONTSCAN /var/qmail/simscan/1603143685.998593.95598 (52, 7), argument: /var/qmail/simscan/1603143685.998593.95598
Mon Oct 19 18:41:26 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:26 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:26 2020 -> Consumed entire command
Mon Oct 19 18:41:26 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:26 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:26 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:26 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:27 2020 -> Finished scanthread
Mon Oct 19 18:41:27 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:29 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:29 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:29 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:29 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:29 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:29 2020 -> got command CONTSCAN /var/qmail/simscan/1603143689.122745.95719 (52, 7), argument: /var/qmail/simscan/1603143689.122745.95719
Mon Oct 19 18:41:29 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:29 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:29 2020 -> Consumed entire command
Mon Oct 19 18:41:29 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:29 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:29 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:29 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:29 2020 -> Finished scanthread
Mon Oct 19 18:41:29 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:29 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:29 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:38 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:38 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:38 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:38 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:38 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:38 2020 -> got command CONTSCAN /var/qmail/simscan/1603143698.356849.95969 (52, 7), argument: /var/qmail/simscan/1603143698.356849.95969
Mon Oct 19 18:41:38 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:38 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:38 2020 -> Consumed entire command
Mon Oct 19 18:41:38 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:38 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:38 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:38 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:38 2020 -> Finished scanthread
Mon Oct 19 18:41:38 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:38 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:38 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:42 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:42 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:42 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:42 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:42 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:42 2020 -> got command CONTSCAN /var/qmail/simscan/1603143702.77647.96060 (51, 7), argument: /var/qmail/simscan/1603143702.77647.96060
Mon Oct 19 18:41:42 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:42 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:42 2020 -> Consumed entire command
Mon Oct 19 18:41:42 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:42 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:42 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:42 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:42 2020 -> Finished scanthread
Mon Oct 19 18:41:42 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:42 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:42 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:47 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:47 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:47 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:47 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:47 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:47 2020 -> got command CONTSCAN /var/qmail/simscan/1603143707.276537.96174 (52, 7), argument: /var/qmail/simscan/1603143707.276537.96174
Mon Oct 19 18:41:47 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:47 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:47 2020 -> Consumed entire command
Mon Oct 19 18:41:47 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:47 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:47 2020 -> Finished scanthread
Mon Oct 19 18:41:47 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:49 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:41:49 2020 -> Got new connection, FD 9
Mon Oct 19 18:41:49 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:41:49 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:41:49 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:41:49 2020 -> got command CONTSCAN /var/qmail/simscan/1603143709.357072.96231 (52, 7), argument: /var/qmail/simscan/1603143709.357072.96231
Mon Oct 19 18:41:49 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:41:49 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:41:49 2020 -> Consumed entire command
Mon Oct 19 18:41:49 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:41:49 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:41:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:41:50 2020 -> Finished scanthread
Mon Oct 19 18:41:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:41:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:41:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:07 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:07 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:07 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:07 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:07 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:07 2020 -> got command CONTSCAN /var/qmail/simscan/1603143723.366319.96681 (52, 7), argument: /var/qmail/simscan/1603143723.366319.96681
Mon Oct 19 18:42:07 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:07 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:07 2020 -> Consumed entire command
Mon Oct 19 18:42:07 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:07 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:07 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:07 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:07 2020 -> Finished scanthread
Mon Oct 19 18:42:07 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:07 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:07 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:08 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:08 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:08 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:08 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:08 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:08 2020 -> got command CONTSCAN /var/qmail/simscan/1603143727.993981.96793 (52, 7), argument: /var/qmail/simscan/1603143727.993981.96793
Mon Oct 19 18:42:08 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:08 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:08 2020 -> Consumed entire command
Mon Oct 19 18:42:08 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:08 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:08 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:08 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:08 2020 -> Finished scanthread
Mon Oct 19 18:42:08 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:08 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:08 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:12 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:12 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:12 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:12 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:12 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:12 2020 -> got command CONTSCAN /var/qmail/simscan/1603143732.204679.96960 (52, 7), argument: /var/qmail/simscan/1603143732.204679.96960
Mon Oct 19 18:42:12 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:12 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:12 2020 -> Consumed entire command
Mon Oct 19 18:42:12 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:12 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:12 2020 -> Finished scanthread
Mon Oct 19 18:42:12 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:16 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:16 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:16 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:16 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:16 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:16 2020 -> got command CONTSCAN /var/qmail/simscan/1603143736.83735.97038 (51, 7), argument: /var/qmail/simscan/1603143736.83735.97038
Mon Oct 19 18:42:16 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:16 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:16 2020 -> Consumed entire command
Mon Oct 19 18:42:16 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:16 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:16 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:16 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:16 2020 -> Finished scanthread
Mon Oct 19 18:42:16 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:16 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:16 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:25 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:25 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:25 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:25 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:25 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:25 2020 -> got command CONTSCAN /var/qmail/simscan/1603143745.736438.97264 (52, 7), argument: /var/qmail/simscan/1603143745.736438.97264
Mon Oct 19 18:42:25 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:25 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:25 2020 -> Consumed entire command
Mon Oct 19 18:42:25 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:25 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:25 2020 -> Finished scanthread
Mon Oct 19 18:42:25 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:27 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:27 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:27 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:27 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:27 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:27 2020 -> got command CONTSCAN /var/qmail/simscan/1603143745.681423.97263 (52, 7), argument: /var/qmail/simscan/1603143745.681423.97263
Mon Oct 19 18:42:27 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:27 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:27 2020 -> Consumed entire command
Mon Oct 19 18:42:27 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:27 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:28 2020 -> Finished scanthread
Mon Oct 19 18:42:28 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:30 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:30 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:30 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:30 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:30 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:30 2020 -> got command CONTSCAN /var/qmail/simscan/1603143747.913938.97307 (52, 7), argument: /var/qmail/simscan/1603143747.913938.97307
Mon Oct 19 18:42:30 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:30 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:30 2020 -> Consumed entire command
Mon Oct 19 18:42:30 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:30 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:30 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:30 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:30 2020 -> Finished scanthread
Mon Oct 19 18:42:30 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:30 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:30 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:31 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:31 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:31 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:31 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:31 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:31 2020 -> got command CONTSCAN /var/qmail/simscan/1603143746.857413.97289 (52, 7), argument: /var/qmail/simscan/1603143746.857413.97289
Mon Oct 19 18:42:31 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:31 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:31 2020 -> Consumed entire command
Mon Oct 19 18:42:31 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:31 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:31 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:31 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:31 2020 -> Finished scanthread
Mon Oct 19 18:42:31 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:31 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:31 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:32 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:32 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:32 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:32 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:32 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:32 2020 -> got command CONTSCAN /var/qmail/simscan/1603143751.921249.97398 (52, 7), argument: /var/qmail/simscan/1603143751.921249.97398
Mon Oct 19 18:42:32 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:32 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:32 2020 -> Consumed entire command
Mon Oct 19 18:42:32 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:32 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:32 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:32 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:32 2020 -> Finished scanthread
Mon Oct 19 18:42:32 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:32 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:32 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:38 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:38 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:38 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:38 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:38 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:38 2020 -> got command CONTSCAN /var/qmail/simscan/1603143758.260030.97523 (52, 7), argument: /var/qmail/simscan/1603143758.260030.97523
Mon Oct 19 18:42:38 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:38 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:38 2020 -> Consumed entire command
Mon Oct 19 18:42:38 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:38 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:38 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:38 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:38 2020 -> Finished scanthread
Mon Oct 19 18:42:38 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:38 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:38 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:44 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:44 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:44 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:44 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:44 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:44 2020 -> got command CONTSCAN /var/qmail/simscan/1603143763.995941.97665 (52, 7), argument: /var/qmail/simscan/1603143763.995941.97665
Mon Oct 19 18:42:44 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:44 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:44 2020 -> Consumed entire command
Mon Oct 19 18:42:44 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:44 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:44 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:44 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:44 2020 -> Finished scanthread
Mon Oct 19 18:42:44 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:44 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:44 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:46 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:46 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:46 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:46 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:46 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:46 2020 -> got command CONTSCAN /var/qmail/simscan/1603143766.309744.97718 (52, 7), argument: /var/qmail/simscan/1603143766.309744.97718
Mon Oct 19 18:42:46 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:46 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:46 2020 -> Consumed entire command
Mon Oct 19 18:42:46 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:46 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:46 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:46 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:46 2020 -> Finished scanthread
Mon Oct 19 18:42:46 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:46 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:46 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:47 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:47 2020 -> got command CONTSCAN /var/qmail/simscan/1603143767.194541.97746 (52, 7), argument: /var/qmail/simscan/1603143767.194541.97746
Mon Oct 19 18:42:47 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:47 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:47 2020 -> Consumed entire command
Mon Oct 19 18:42:47 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> Finished scanthread
Mon Oct 19 18:42:47 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:47 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:47 2020 -> got command CONTSCAN /var/qmail/simscan/1603143758.537027.97536 (52, 7), argument: /var/qmail/simscan/1603143758.537027.97536
Mon Oct 19 18:42:47 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:47 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:47 2020 -> Consumed entire command
Mon Oct 19 18:42:47 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:47 2020 -> Got new connection, FD 12
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:47 2020 -> Received POLLIN|POLLHUP on fd 12
Mon Oct 19 18:42:47 2020 -> got command CONTSCAN /var/qmail/simscan/1603143767.732183.97773 (52, 7), argument: /var/qmail/simscan/1603143767.732183.97773
Mon Oct 19 18:42:47 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:47 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:47 2020 -> Consumed entire command
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:47 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:47 2020 -> Finished scanthread
Mon Oct 19 18:42:47 2020 -> Scanthread: connection shut down (FD 12)
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:47 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:50 2020 -> Finished scanthread
Mon Oct 19 18:42:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:55 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:42:55 2020 -> Got new connection, FD 9
Mon Oct 19 18:42:55 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:42:55 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:42:55 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:42:55 2020 -> got command CONTSCAN /var/qmail/simscan/1603143775.338787.97927 (52, 7), argument: /var/qmail/simscan/1603143775.338787.97927
Mon Oct 19 18:42:55 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:42:55 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:42:55 2020 -> Consumed entire command
Mon Oct 19 18:42:55 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:42:55 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:55 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:42:55 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:42:55 2020 -> Finished scanthread
Mon Oct 19 18:42:55 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:42:55 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:42:55 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:00 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:00 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:00 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:00 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:00 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:00 2020 -> got command CONTSCAN /var/qmail/simscan/1603143780.503499.98081 (52, 7), argument: /var/qmail/simscan/1603143780.503499.98081
Mon Oct 19 18:43:00 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:00 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:00 2020 -> Consumed entire command
Mon Oct 19 18:43:00 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:00 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:00 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:00 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:00 2020 -> Finished scanthread
Mon Oct 19 18:43:00 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:00 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:00 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:02 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:02 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:02 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:02 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:02 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:02 2020 -> got command CONTSCAN /var/qmail/simscan/1603143782.175509.98131 (52, 7), argument: /var/qmail/simscan/1603143782.175509.98131
Mon Oct 19 18:43:02 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:02 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:02 2020 -> Consumed entire command
Mon Oct 19 18:43:02 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:02 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:02 2020 -> Finished scanthread
Mon Oct 19 18:43:02 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:03 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:03 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:03 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:03 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:03 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:03 2020 -> got command CONTSCAN /var/qmail/simscan/1603143783.891294.98178 (52, 7), argument: /var/qmail/simscan/1603143783.891294.98178
Mon Oct 19 18:43:03 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:03 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:03 2020 -> Consumed entire command
Mon Oct 19 18:43:03 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:03 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:03 2020 -> Finished scanthread
Mon Oct 19 18:43:03 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:04 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:04 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:04 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:04 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:04 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:04 2020 -> got command CONTSCAN /var/qmail/simscan/1603143783.753958.98175 (52, 7), argument: /var/qmail/simscan/1603143783.753958.98175
Mon Oct 19 18:43:04 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:04 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:04 2020 -> Consumed entire command
Mon Oct 19 18:43:04 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:04 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:04 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:04 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:04 2020 -> Finished scanthread
Mon Oct 19 18:43:04 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:04 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:04 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:09 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:09 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:09 2020 -> got command CONTSCAN /var/qmail/simscan/1603143788.774280.98332 (52, 7), argument: /var/qmail/simscan/1603143788.774280.98332
Mon Oct 19 18:43:09 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:09 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:09 2020 -> Consumed entire command
Mon Oct 19 18:43:09 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:09 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:09 2020 -> Got new connection, FD 11
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:09 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:09 2020 -> Received POLLIN|POLLHUP on fd 11
Mon Oct 19 18:43:09 2020 -> got command CONTSCAN /var/qmail/simscan/1603143788.786704.98333 (52, 7), argument: /var/qmail/simscan/1603143788.786704.98333
Mon Oct 19 18:43:09 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:09 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:09 2020 -> Consumed entire command
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:09 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:09 2020 -> Finished scanthread
Mon Oct 19 18:43:09 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> Finished scanthread
Mon Oct 19 18:43:09 2020 -> Scanthread: connection shut down (FD 11)
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:09 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:12 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:12 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:12 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:12 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:12 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:12 2020 -> got command CONTSCAN /var/qmail/simscan/1603143791.653860.98418 (52, 7), argument: /var/qmail/simscan/1603143791.653860.98418
Mon Oct 19 18:43:12 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:12 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:12 2020 -> Consumed entire command
Mon Oct 19 18:43:12 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:12 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:12 2020 -> Finished scanthread
Mon Oct 19 18:43:12 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:12 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:12 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:15 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:15 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:15 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:15 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:15 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:15 2020 -> got command CONTSCAN /var/qmail/simscan/1603143795.21556.98523 (51, 7), argument: /var/qmail/simscan/1603143795.21556.98523
Mon Oct 19 18:43:15 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:15 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:15 2020 -> Consumed entire command
Mon Oct 19 18:43:15 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:15 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:15 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:15 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:15 2020 -> Finished scanthread
Mon Oct 19 18:43:15 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:15 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:15 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:19 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:19 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:19 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:19 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:19 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:19 2020 -> got command CONTSCAN /var/qmail/simscan/1603143799.100650.98660 (52, 7), argument: /var/qmail/simscan/1603143799.100650.98660
Mon Oct 19 18:43:19 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:19 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:19 2020 -> Consumed entire command
Mon Oct 19 18:43:19 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:19 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:19 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:19 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:19 2020 -> Finished scanthread
Mon Oct 19 18:43:19 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:19 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:19 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:26 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:26 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:26 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:26 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:26 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:26 2020 -> got command CONTSCAN /var/qmail/simscan/1603143806.117988.98859 (52, 7), argument: /var/qmail/simscan/1603143806.117988.98859
Mon Oct 19 18:43:26 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:26 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:26 2020 -> Consumed entire command
Mon Oct 19 18:43:26 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:26 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:26 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:26 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:26 2020 -> Finished scanthread
Mon Oct 19 18:43:26 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:26 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:26 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:27 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:27 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:27 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:27 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:27 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:27 2020 -> got command CONTSCAN /var/qmail/simscan/1603143801.236175.98732 (52, 7), argument: /var/qmail/simscan/1603143801.236175.98732
Mon Oct 19 18:43:27 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:27 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:27 2020 -> Consumed entire command
Mon Oct 19 18:43:27 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:27 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:27 2020 -> Finished scanthread
Mon Oct 19 18:43:27 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:28 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:28 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:28 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:28 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:28 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:28 2020 -> got command CONTSCAN /var/qmail/simscan/1603143796.928105.98582 (52, 7), argument: /var/qmail/simscan/1603143796.928105.98582
Mon Oct 19 18:43:28 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:28 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:28 2020 -> Consumed entire command
Mon Oct 19 18:43:28 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:28 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:28 2020 -> Finished scanthread
Mon Oct 19 18:43:28 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:33 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:33 2020 -> got command CONTSCAN /var/qmail/simscan/1603143812.161092.99011 (52, 7), argument: /var/qmail/simscan/1603143812.161092.99011
Mon Oct 19 18:43:33 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:33 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:33 2020 -> Consumed entire command
Mon Oct 19 18:43:33 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Finished scanthread
Mon Oct 19 18:43:33 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:33 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:33 2020 -> got command CONTSCAN /var/qmail/simscan/1603143812.584225.99019 (52, 7), argument: /var/qmail/simscan/1603143812.584225.99019
Mon Oct 19 18:43:33 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:33 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:33 2020 -> Consumed entire command
Mon Oct 19 18:43:33 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Finished scanthread
Mon Oct 19 18:43:33 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:33 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:33 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:33 2020 -> got command CONTSCAN /var/qmail/simscan/1603143813.397240.99040 (52, 7), argument: /var/qmail/simscan/1603143813.397240.99040
Mon Oct 19 18:43:33 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:33 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:33 2020 -> Consumed entire command
Mon Oct 19 18:43:33 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:33 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> Finished scanthread
Mon Oct 19 18:43:33 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:33 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:34 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:34 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:34 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:34 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:34 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:34 2020 -> got command CONTSCAN /var/qmail/simscan/1603143814.401081.99064 (52, 7), argument: /var/qmail/simscan/1603143814.401081.99064
Mon Oct 19 18:43:34 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:34 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:34 2020 -> Consumed entire command
Mon Oct 19 18:43:34 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:34 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:34 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:34 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:34 2020 -> Finished scanthread
Mon Oct 19 18:43:34 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:34 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:34 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:39 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:39 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:39 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:39 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:39 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:39 2020 -> got command CONTSCAN /var/qmail/simscan/1603143817.328224.99152 (52, 7), argument: /var/qmail/simscan/1603143817.328224.99152
Mon Oct 19 18:43:39 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:39 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:39 2020 -> Consumed entire command
Mon Oct 19 18:43:39 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:39 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:39 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:39 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:39 2020 -> Finished scanthread
Mon Oct 19 18:43:39 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:39 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:39 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:40 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:40 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:40 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:40 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:40 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:40 2020 -> got command CONTSCAN /var/qmail/simscan/1603143819.785260.99215 (52, 7), argument: /var/qmail/simscan/1603143819.785260.99215
Mon Oct 19 18:43:40 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:40 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:40 2020 -> Consumed entire command
Mon Oct 19 18:43:40 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:40 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:40 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:40 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:40 2020 -> Finished scanthread
Mon Oct 19 18:43:40 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:40 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:40 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:41 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:41 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:41 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:41 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:41 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:41 2020 -> got command CONTSCAN /var/qmail/simscan/1603143821.211557.99243 (52, 7), argument: /var/qmail/simscan/1603143821.211557.99243
Mon Oct 19 18:43:41 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:41 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:41 2020 -> Consumed entire command
Mon Oct 19 18:43:41 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:41 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:41 2020 -> Finished scanthread
Mon Oct 19 18:43:41 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:43 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:43 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:43 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:43 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:43 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:43 2020 -> got command CONTSCAN /var/qmail/simscan/1603143821.855217.99267 (52, 7), argument: /var/qmail/simscan/1603143821.855217.99267
Mon Oct 19 18:43:43 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:43 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:43 2020 -> Consumed entire command
Mon Oct 19 18:43:43 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:43 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:43 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:43 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:43 2020 -> Finished scanthread
Mon Oct 19 18:43:43 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:43 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:43 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:49 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:49 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:49 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:49 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:49 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:49 2020 -> got command CONTSCAN /var/qmail/simscan/1603143829.326407.99445 (52, 7), argument: /var/qmail/simscan/1603143829.326407.99445
Mon Oct 19 18:43:49 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:49 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:49 2020 -> Consumed entire command
Mon Oct 19 18:43:49 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:49 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:49 2020 -> Finished scanthread
Mon Oct 19 18:43:49 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:50 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:50 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:50 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:50 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:50 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:50 2020 -> got command CONTSCAN /var/qmail/simscan/1603143830.341225.99475 (52, 7), argument: /var/qmail/simscan/1603143830.341225.99475
Mon Oct 19 18:43:50 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:50 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:50 2020 -> Consumed entire command
Mon Oct 19 18:43:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:50 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:50 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:50 2020 -> Finished scanthread
Mon Oct 19 18:43:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:53 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:43:53 2020 -> Got new connection, FD 9
Mon Oct 19 18:43:53 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:43:53 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:43:53 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:43:53 2020 -> got command CONTSCAN /var/qmail/simscan/1603143824.575229.99342 (52, 7), argument: /var/qmail/simscan/1603143824.575229.99342
Mon Oct 19 18:43:53 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:43:53 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:43:53 2020 -> Consumed entire command
Mon Oct 19 18:43:53 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:43:53 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:43:53 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:53 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:43:54 2020 -> Finished scanthread
Mon Oct 19 18:43:54 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:43:54 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:43:54 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:00 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:00 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:00 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:00 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:00 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:00 2020 -> got command CONTSCAN /var/qmail/simscan/1603143840.224488.99731 (52, 7), argument: /var/qmail/simscan/1603143840.224488.99731
Mon Oct 19 18:44:00 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:00 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:00 2020 -> Consumed entire command
Mon Oct 19 18:44:00 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:00 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:00 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:00 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:00 2020 -> Finished scanthread
Mon Oct 19 18:44:00 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:00 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:00 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:03 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:03 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:03 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:03 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:03 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:03 2020 -> got command CONTSCAN /var/qmail/simscan/1603143842.725016.99844 (52, 7), argument: /var/qmail/simscan/1603143842.725016.99844
Mon Oct 19 18:44:03 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:03 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:03 2020 -> Consumed entire command
Mon Oct 19 18:44:03 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:03 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:03 2020 -> Finished scanthread
Mon Oct 19 18:44:03 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:04 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:04 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:04 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:04 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:04 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:04 2020 -> got command CONTSCAN /var/qmail/simscan/1603143840.149300.99730 (52, 7), argument: /var/qmail/simscan/1603143840.149300.99730
Mon Oct 19 18:44:04 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:04 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:04 2020 -> Consumed entire command
Mon Oct 19 18:44:04 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:04 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:04 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:04 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:05 2020 -> Finished scanthread
Mon Oct 19 18:44:05 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:05 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:05 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:10 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:10 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:10 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:10 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:10 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:10 2020 -> got command CONTSCAN /var/qmail/simscan/1603143849.831492.214 (50, 7), argument: /var/qmail/simscan/1603143849.831492.214
Mon Oct 19 18:44:10 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:10 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:10 2020 -> Consumed entire command
Mon Oct 19 18:44:10 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:10 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:10 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:10 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:10 2020 -> Finished scanthread
Mon Oct 19 18:44:10 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:10 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:10 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:11 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:11 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:11 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:11 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:11 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:11 2020 -> got command CONTSCAN /var/qmail/simscan/1603143851.6144.246 (48, 7), argument: /var/qmail/simscan/1603143851.6144.246
Mon Oct 19 18:44:11 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:11 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:11 2020 -> Consumed entire command
Mon Oct 19 18:44:11 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:11 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:11 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:11 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:11 2020 -> Finished scanthread
Mon Oct 19 18:44:11 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:11 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:11 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:23 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:23 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:23 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:23 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:23 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:23 2020 -> got command CONTSCAN /var/qmail/simscan/1603143863.273696.556 (50, 7), argument: /var/qmail/simscan/1603143863.273696.556
Mon Oct 19 18:44:23 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:23 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:23 2020 -> Consumed entire command
Mon Oct 19 18:44:23 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:23 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:23 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:23 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:23 2020 -> Finished scanthread
Mon Oct 19 18:44:23 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:23 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:23 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:27 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:27 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:27 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:27 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:27 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:27 2020 -> got command CONTSCAN /var/qmail/simscan/1603143867.56971.633 (49, 7), argument: /var/qmail/simscan/1603143867.56971.633
Mon Oct 19 18:44:27 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:27 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:27 2020 -> Consumed entire command
Mon Oct 19 18:44:27 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:27 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:27 2020 -> Finished scanthread
Mon Oct 19 18:44:27 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:27 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:27 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:28 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:28 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:28 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:28 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:28 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:28 2020 -> got command CONTSCAN /var/qmail/simscan/1603143868.210967.655 (50, 7), argument: /var/qmail/simscan/1603143868.210967.655
Mon Oct 19 18:44:28 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:28 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:28 2020 -> Consumed entire command
Mon Oct 19 18:44:28 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:28 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:28 2020 -> Finished scanthread
Mon Oct 19 18:44:28 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:36 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:36 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:36 2020 -> got command CONTSCAN /var/qmail/simscan/1603143876.7649.820 (48, 7), argument: /var/qmail/simscan/1603143876.7649.820
Mon Oct 19 18:44:36 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:36 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:36 2020 -> Consumed entire command
Mon Oct 19 18:44:36 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:36 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> Finished scanthread
Mon Oct 19 18:44:36 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:36 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:36 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:36 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:36 2020 -> got command CONTSCAN /var/qmail/simscan/1603143873.540984.759 (50, 7), argument: /var/qmail/simscan/1603143873.540984.759
Mon Oct 19 18:44:36 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:36 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:36 2020 -> Consumed entire command
Mon Oct 19 18:44:36 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:36 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:36 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:37 2020 -> Finished scanthread
Mon Oct 19 18:44:37 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:37 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:37 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:41 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:41 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:41 2020 -> got command CONTSCAN /var/qmail/simscan/1603143881.284756.933 (50, 7), argument: /var/qmail/simscan/1603143881.284756.933
Mon Oct 19 18:44:41 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:41 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:41 2020 -> Consumed entire command
Mon Oct 19 18:44:41 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:41 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> Finished scanthread
Mon Oct 19 18:44:41 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:41 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:41 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:41 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:41 2020 -> got command CONTSCAN /var/qmail/simscan/1603143881.535886.942 (50, 7), argument: /var/qmail/simscan/1603143881.535886.942
Mon Oct 19 18:44:41 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:41 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:41 2020 -> Consumed entire command
Mon Oct 19 18:44:41 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:41 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> Finished scanthread
Mon Oct 19 18:44:41 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:41 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:45 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:45 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:45 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:45 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:45 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:45 2020 -> got command CONTSCAN /var/qmail/simscan/1603143885.409833.1034 (51, 7), argument: /var/qmail/simscan/1603143885.409833.1034
Mon Oct 19 18:44:45 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:45 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:45 2020 -> Consumed entire command
Mon Oct 19 18:44:45 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:45 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:45 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:45 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:45 2020 -> Finished scanthread
Mon Oct 19 18:44:45 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:45 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:45 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:49 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:49 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:49 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:49 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:49 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:49 2020 -> got command CONTSCAN /var/qmail/simscan/1603143888.961403.1093 (51, 7), argument: /var/qmail/simscan/1603143888.961403.1093
Mon Oct 19 18:44:49 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:49 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:49 2020 -> Consumed entire command
Mon Oct 19 18:44:49 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:49 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:50 2020 -> Finished scanthread
Mon Oct 19 18:44:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:52 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:52 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:52 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:52 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:52 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:52 2020 -> got command CONTSCAN /var/qmail/simscan/1603143892.337012.1159 (51, 7), argument: /var/qmail/simscan/1603143892.337012.1159
Mon Oct 19 18:44:52 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:52 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:52 2020 -> Consumed entire command
Mon Oct 19 18:44:52 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:52 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:52 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:52 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:52 2020 -> Finished scanthread
Mon Oct 19 18:44:52 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:52 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:52 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:53 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:53 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:53 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:53 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:53 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:53 2020 -> got command CONTSCAN /var/qmail/simscan/1603143893.188471.1177 (51, 7), argument: /var/qmail/simscan/1603143893.188471.1177
Mon Oct 19 18:44:53 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:53 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:53 2020 -> Consumed entire command
Mon Oct 19 18:44:53 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:53 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:53 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:53 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:53 2020 -> Finished scanthread
Mon Oct 19 18:44:53 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:53 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:53 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:57 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:57 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:57 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:57 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:57 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:57 2020 -> got command CONTSCAN /var/qmail/simscan/1603143897.344148.1279 (51, 7), argument: /var/qmail/simscan/1603143897.344148.1279
Mon Oct 19 18:44:57 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:57 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:57 2020 -> Consumed entire command
Mon Oct 19 18:44:57 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:57 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:57 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:57 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:57 2020 -> Finished scanthread
Mon Oct 19 18:44:57 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:57 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:57 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:58 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:58 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:58 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:58 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:58 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:58 2020 -> got command CONTSCAN /var/qmail/simscan/1603143898.603474.1312 (51, 7), argument: /var/qmail/simscan/1603143898.603474.1312
Mon Oct 19 18:44:58 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:58 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:58 2020 -> Consumed entire command
Mon Oct 19 18:44:58 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:58 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:58 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:58 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:58 2020 -> Finished scanthread
Mon Oct 19 18:44:58 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:58 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:58 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:59 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:44:59 2020 -> Got new connection, FD 9
Mon Oct 19 18:44:59 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:44:59 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:44:59 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:44:59 2020 -> got command CONTSCAN /var/qmail/simscan/1603143899.115532.1325 (51, 7), argument: /var/qmail/simscan/1603143899.115532.1325
Mon Oct 19 18:44:59 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:44:59 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:44:59 2020 -> Consumed entire command
Mon Oct 19 18:44:59 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:44:59 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:44:59 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:59 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:44:59 2020 -> Finished scanthread
Mon Oct 19 18:44:59 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:44:59 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:44:59 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:03 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:03 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:03 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:03 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:03 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:03 2020 -> got command CONTSCAN /var/qmail/simscan/1603143903.377120.1505 (51, 7), argument: /var/qmail/simscan/1603143903.377120.1505
Mon Oct 19 18:45:03 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:03 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:03 2020 -> Consumed entire command
Mon Oct 19 18:45:03 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:03 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:03 2020 -> Finished scanthread
Mon Oct 19 18:45:03 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:05 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:05 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:05 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:05 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:05 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:05 2020 -> got command CONTSCAN /var/qmail/simscan/1603143905.725616.1564 (51, 7), argument: /var/qmail/simscan/1603143905.725616.1564
Mon Oct 19 18:45:05 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:05 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:05 2020 -> Consumed entire command
Mon Oct 19 18:45:05 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:05 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:05 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:05 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:05 2020 -> Finished scanthread
Mon Oct 19 18:45:05 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:05 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:05 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:08 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:08 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:08 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:08 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:08 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:08 2020 -> got command CONTSCAN /var/qmail/simscan/1603143908.147735.1624 (51, 7), argument: /var/qmail/simscan/1603143908.147735.1624
Mon Oct 19 18:45:08 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:08 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:08 2020 -> Consumed entire command
Mon Oct 19 18:45:08 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:08 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:08 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:08 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:09 2020 -> /var/qmail/simscan/1603143908.147735.1624/image017.png: Can't parse data ERROR
Mon Oct 19 18:45:09 2020 -> Finished scanthread
Mon Oct 19 18:45:09 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:09 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:09 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:10 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:10 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:10 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:10 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:10 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:10 2020 -> got command CONTSCAN /var/qmail/simscan/1603143908.432144.1633 (51, 7), argument: /var/qmail/simscan/1603143908.432144.1633
Mon Oct 19 18:45:10 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:10 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:10 2020 -> Consumed entire command
Mon Oct 19 18:45:10 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:10 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:10 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:10 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:10 2020 -> /var/qmail/simscan/1603143908.432144.1633/image017.png: Can't parse data ERROR
Mon Oct 19 18:45:10 2020 -> Finished scanthread
Mon Oct 19 18:45:10 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:10 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:10 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:11 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:11 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:11 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:11 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:11 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:11 2020 -> got command CONTSCAN /var/qmail/simscan/1603143908.743978.1639 (51, 7), argument: /var/qmail/simscan/1603143908.743978.1639
Mon Oct 19 18:45:11 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:11 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:11 2020 -> Consumed entire command
Mon Oct 19 18:45:11 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:11 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:11 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:11 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:11 2020 -> /var/qmail/simscan/1603143908.743978.1639/image017.png: Can't parse data ERROR
Mon Oct 19 18:45:11 2020 -> Finished scanthread
Mon Oct 19 18:45:11 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:11 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:11 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:14 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:14 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:14 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:14 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:14 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:14 2020 -> got command CONTSCAN /var/qmail/simscan/1603143914.355901.1840 (51, 7), argument: /var/qmail/simscan/1603143914.355901.1840
Mon Oct 19 18:45:14 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:14 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:14 2020 -> Consumed entire command
Mon Oct 19 18:45:14 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:14 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:14 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:14 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:14 2020 -> Finished scanthread
Mon Oct 19 18:45:14 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:14 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:14 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:16 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:16 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:16 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:16 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:16 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:16 2020 -> got command CONTSCAN /var/qmail/simscan/1603143916.705096.1892 (51, 7), argument: /var/qmail/simscan/1603143916.705096.1892
Mon Oct 19 18:45:16 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:16 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:16 2020 -> Consumed entire command
Mon Oct 19 18:45:16 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:16 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:16 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:16 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:16 2020 -> Finished scanthread
Mon Oct 19 18:45:16 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:16 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:16 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:18 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:18 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:18 2020 -> got command CONTSCAN /var/qmail/simscan/1603143918.315932.1932 (51, 7), argument: /var/qmail/simscan/1603143918.315932.1932
Mon Oct 19 18:45:18 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:18 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:18 2020 -> Consumed entire command
Mon Oct 19 18:45:18 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:18 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:18 2020 -> Got new connection, FD 12
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:18 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:18 2020 -> Received POLLIN|POLLHUP on fd 12
Mon Oct 19 18:45:18 2020 -> got command CONTSCAN /var/qmail/simscan/1603143917.278876.1903 (51, 7), argument: /var/qmail/simscan/1603143917.278876.1903
Mon Oct 19 18:45:18 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:18 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:18 2020 -> Consumed entire command
Mon Oct 19 18:45:18 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:18 2020 -> Finished scanthread
Mon Oct 19 18:45:18 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:18 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:19 2020 -> Finished scanthread
Mon Oct 19 18:45:19 2020 -> Scanthread: connection shut down (FD 12)
Mon Oct 19 18:45:19 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:19 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:25 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:25 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:25 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:25 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:25 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:25 2020 -> got command CONTSCAN /var/qmail/simscan/1603143924.971359.2060 (51, 7), argument: /var/qmail/simscan/1603143924.971359.2060
Mon Oct 19 18:45:25 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:25 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:25 2020 -> Consumed entire command
Mon Oct 19 18:45:25 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:25 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:25 2020 -> Finished scanthread
Mon Oct 19 18:45:25 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:25 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:25 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:28 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:28 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:28 2020 -> got command CONTSCAN /var/qmail/simscan/1603143927.959848.2115 (51, 7), argument: /var/qmail/simscan/1603143927.959848.2115
Mon Oct 19 18:45:28 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:28 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:28 2020 -> Consumed entire command
Mon Oct 19 18:45:28 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:28 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:28 2020 -> Got new connection, FD 12
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:28 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:28 2020 -> Received POLLIN|POLLHUP on fd 12
Mon Oct 19 18:45:28 2020 -> got command CONTSCAN /var/qmail/simscan/1603143927.939489.2114 (51, 7), argument: /var/qmail/simscan/1603143927.939489.2114
Mon Oct 19 18:45:28 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:28 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:28 2020 -> Consumed entire command
Mon Oct 19 18:45:28 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:28 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> Finished scanthread
Mon Oct 19 18:45:28 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> Finished scanthread
Mon Oct 19 18:45:28 2020 -> Scanthread: connection shut down (FD 12)
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:28 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:30 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:30 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:30 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:30 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:30 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:30 2020 -> got command CONTSCAN /var/qmail/simscan/1603143929.466811.2148 (51, 7), argument: /var/qmail/simscan/1603143929.466811.2148
Mon Oct 19 18:45:30 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:30 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:30 2020 -> Consumed entire command
Mon Oct 19 18:45:30 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:30 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:30 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:30 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:30 2020 -> Finished scanthread
Mon Oct 19 18:45:30 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:30 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:30 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:32 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:32 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:32 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:32 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:32 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:32 2020 -> got command CONTSCAN /var/qmail/simscan/1603143932.600564.2221 (51, 7), argument: /var/qmail/simscan/1603143932.600564.2221
Mon Oct 19 18:45:32 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:32 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:32 2020 -> Consumed entire command
Mon Oct 19 18:45:32 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:32 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:32 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:32 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:32 2020 -> Finished scanthread
Mon Oct 19 18:45:32 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:32 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:32 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:37 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:37 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:37 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:37 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:37 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:37 2020 -> got command CONTSCAN /var/qmail/simscan/1603143937.196010.2289 (51, 7), argument: /var/qmail/simscan/1603143937.196010.2289
Mon Oct 19 18:45:37 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:37 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:37 2020 -> Consumed entire command
Mon Oct 19 18:45:37 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:37 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:37 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:37 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:37 2020 -> Finished scanthread
Mon Oct 19 18:45:37 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:37 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:37 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:45 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:45 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:45 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:45 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:45 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:45 2020 -> got command CONTSCAN /var/qmail/simscan/1603143945.538463.2470 (51, 7), argument: /var/qmail/simscan/1603143945.538463.2470
Mon Oct 19 18:45:45 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:45 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:45 2020 -> Consumed entire command
Mon Oct 19 18:45:45 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:45 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:45 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:45 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:45 2020 -> Finished scanthread
Mon Oct 19 18:45:45 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:45 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:45 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:48 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:48 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:48 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:48 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:48 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:48 2020 -> got command CONTSCAN /var/qmail/simscan/1603143946.678649.2497 (51, 7), argument: /var/qmail/simscan/1603143946.678649.2497
Mon Oct 19 18:45:48 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:48 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:48 2020 -> Consumed entire command
Mon Oct 19 18:45:48 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:48 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:48 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:48 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:48 2020 -> Finished scanthread
Mon Oct 19 18:45:48 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:48 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:48 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:49 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:49 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:49 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:49 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:49 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:49 2020 -> got command CONTSCAN /var/qmail/simscan/1603143949.166936.2551 (51, 7), argument: /var/qmail/simscan/1603143949.166936.2551
Mon Oct 19 18:45:49 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:49 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:49 2020 -> Consumed entire command
Mon Oct 19 18:45:49 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:49 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:49 2020 -> Finished scanthread
Mon Oct 19 18:45:49 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:49 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:49 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:50 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:50 2020 -> got command CONTSCAN /var/qmail/simscan/1603143950.27679.2566 (50, 7), argument: /var/qmail/simscan/1603143950.27679.2566
Mon Oct 19 18:45:50 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:50 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:50 2020 -> Consumed entire command
Mon Oct 19 18:45:50 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> Finished scanthread
Mon Oct 19 18:45:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:50 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:50 2020 -> got command CONTSCAN /var/qmail/simscan/1603143950.105371.2567 (51, 7), argument: /var/qmail/simscan/1603143950.105371.2567
Mon Oct 19 18:45:50 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:50 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:50 2020 -> Consumed entire command
Mon Oct 19 18:45:50 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:50 2020 -> Finished scanthread
Mon Oct 19 18:45:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:50 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:50 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:50 2020 -> got command CONTSCAN /var/qmail/simscan/1603143950.360264.2573 (51, 7), argument: /var/qmail/simscan/1603143950.360264.2573
Mon Oct 19 18:45:50 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:50 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:50 2020 -> Consumed entire command
Mon Oct 19 18:45:50 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:50 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> Finished scanthread
Mon Oct 19 18:45:50 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:50 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:51 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:51 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:51 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:51 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:51 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:51 2020 -> got command CONTSCAN /var/qmail/simscan/1603143951.303705.2602 (51, 7), argument: /var/qmail/simscan/1603143951.303705.2602
Mon Oct 19 18:45:51 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:51 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:51 2020 -> Consumed entire command
Mon Oct 19 18:45:51 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:51 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:51 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:51 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:51 2020 -> Finished scanthread
Mon Oct 19 18:45:51 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:51 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:51 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:52 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:52 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:52 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:52 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:52 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:52 2020 -> got command CONTSCAN /var/qmail/simscan/1603143952.427434.2626 (51, 7), argument: /var/qmail/simscan/1603143952.427434.2626
Mon Oct 19 18:45:52 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:52 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:52 2020 -> Consumed entire command
Mon Oct 19 18:45:52 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:52 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:52 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:52 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:52 2020 -> Finished scanthread
Mon Oct 19 18:45:52 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:52 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:52 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:53 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:53 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:53 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:53 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:53 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:53 2020 -> got command CONTSCAN /var/qmail/simscan/1603143953.348472.2646 (51, 7), argument: /var/qmail/simscan/1603143953.348472.2646
Mon Oct 19 18:45:53 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:53 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:53 2020 -> Consumed entire command
Mon Oct 19 18:45:53 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:53 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:53 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:53 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:53 2020 -> Finished scanthread
Mon Oct 19 18:45:53 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:53 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:53 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:54 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:54 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:54 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:54 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:54 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:54 2020 -> got command CONTSCAN /var/qmail/simscan/1603143954.8552.2665 (49, 7), argument: /var/qmail/simscan/1603143954.8552.2665
Mon Oct 19 18:45:54 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:54 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:54 2020 -> Consumed entire command
Mon Oct 19 18:45:54 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:54 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:54 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:54 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:54 2020 -> Finished scanthread
Mon Oct 19 18:45:54 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:54 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:54 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:55 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:55 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:55 2020 -> got command CONTSCAN /var/qmail/simscan/1603143954.779721.2686 (51, 7), argument: /var/qmail/simscan/1603143954.779721.2686
Mon Oct 19 18:45:55 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:55 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:55 2020 -> Consumed entire command
Mon Oct 19 18:45:55 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:55 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> Finished scanthread
Mon Oct 19 18:45:55 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:55 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:55 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:55 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:55 2020 -> got command CONTSCAN /var/qmail/simscan/1603143955.632300.2705 (51, 7), argument: /var/qmail/simscan/1603143955.632300.2705
Mon Oct 19 18:45:55 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:55 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:55 2020 -> Consumed entire command
Mon Oct 19 18:45:55 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:55 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:56 2020 -> Finished scanthread
Mon Oct 19 18:45:56 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:56 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:56 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:56 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:56 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:56 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:56 2020 -> got command CONTSCAN /var/qmail/simscan/1603143956.504421.2725 (51, 7), argument: /var/qmail/simscan/1603143956.504421.2725
Mon Oct 19 18:45:56 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:56 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:56 2020 -> Consumed entire command
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:56 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:56 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:56 2020 -> Finished scanthread
Mon Oct 19 18:45:56 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:56 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:57 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:57 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:57 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:57 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:57 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:57 2020 -> got command CONTSCAN /var/qmail/simscan/1603143956.723627.2731 (51, 7), argument: /var/qmail/simscan/1603143956.723627.2731
Mon Oct 19 18:45:57 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:57 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:57 2020 -> Consumed entire command
Mon Oct 19 18:45:57 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:57 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:57 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:57 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:57 2020 -> Finished scanthread
Mon Oct 19 18:45:57 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:57 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:57 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:58 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:45:58 2020 -> Got new connection, FD 9
Mon Oct 19 18:45:58 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:45:58 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:45:58 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:45:58 2020 -> got command CONTSCAN /var/qmail/simscan/1603143957.814154.2756 (51, 7), argument: /var/qmail/simscan/1603143957.814154.2756
Mon Oct 19 18:45:58 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:45:58 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:45:58 2020 -> Consumed entire command
Mon Oct 19 18:45:58 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:45:58 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:58 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:45:58 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:45:58 2020 -> Finished scanthread
Mon Oct 19 18:45:58 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:45:58 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:45:58 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:01 2020 -> Got new connection, FD 9
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:46:01 2020 -> got command CONTSCAN /var/qmail/simscan/1603143958.978125.2791 (51, 7), argument: /var/qmail/simscan/1603143958.978125.2791
Mon Oct 19 18:46:01 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:01 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:01 2020 -> Consumed entire command
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:01 2020 -> Finished scanthread
Mon Oct 19 18:46:01 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:01 2020 -> Got new connection, FD 9
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:46:01 2020 -> got command CONTSCAN /var/qmail/simscan/1603143958.222342.2772 (51, 7), argument: /var/qmail/simscan/1603143958.222342.2772
Mon Oct 19 18:46:01 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:01 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:01 2020 -> Consumed entire command
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:01 2020 -> Got new connection, FD 11
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 11
Mon Oct 19 18:46:01 2020 -> got command CONTSCAN /var/qmail/simscan/1603143959.653867.2805 (51, 7), argument: /var/qmail/simscan/1603143959.653867.2805
Mon Oct 19 18:46:01 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:01 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:01 2020 -> Consumed entire command
Mon Oct 19 18:46:01 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Finished scanthread
Mon Oct 19 18:46:01 2020 -> Scanthread: connection shut down (FD 11)
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:01 2020 -> Got new connection, FD 11
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:01 2020 -> Received POLLIN|POLLHUP on fd 11
Mon Oct 19 18:46:01 2020 -> got command CONTSCAN /var/qmail/simscan/1603143960.455394.2845 (51, 7), argument: /var/qmail/simscan/1603143960.455394.2845
Mon Oct 19 18:46:01 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:01 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:01 2020 -> Consumed entire command
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:01 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:01 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:02 2020 -> Finished scanthread
Mon Oct 19 18:46:02 2020 -> Scanthread: connection shut down (FD 11)
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:02 2020 -> Got new connection, FD 11
Mon Oct 19 18:46:02 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:02 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:02 2020 -> Received POLLIN|POLLHUP on fd 11
Mon Oct 19 18:46:02 2020 -> got command CONTSCAN /var/qmail/simscan/1603143962.24020.2921 (50, 7), argument: /var/qmail/simscan/1603143962.24020.2921
Mon Oct 19 18:46:02 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:02 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:02 2020 -> Consumed entire command
Mon Oct 19 18:46:02 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:02 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> Finished scanthread
Mon Oct 19 18:46:02 2020 -> Scanthread: connection shut down (FD 11)
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> Finished scanthread
Mon Oct 19 18:46:02 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:02 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:03 2020 -> Received POLLIN|POLLHUP on fd 4
Mon Oct 19 18:46:03 2020 -> Got new connection, FD 9
Mon Oct 19 18:46:03 2020 -> Received POLLIN|POLLHUP on fd 5
Mon Oct 19 18:46:03 2020 -> fds_poll_recv: timeout after 30 seconds
Mon Oct 19 18:46:03 2020 -> Received POLLIN|POLLHUP on fd 9
Mon Oct 19 18:46:03 2020 -> got command CONTSCAN /var/qmail/simscan/1603143961.645309.2901 (51, 7), argument: /var/qmail/simscan/1603143961.645309.2901
Mon Oct 19 18:46:03 2020 -> mode -> MODE_WAITREPLY
Mon Oct 19 18:46:03 2020 -> Breaking command loop, mode is no longer MODE_COMMAND
Mon Oct 19 18:46:03 2020 -> Consumed entire command
Mon Oct 19 18:46:03 2020 -> Number of file descriptors polled: 1 fds
Mon Oct 19 18:46:03 2020 -> fds_poll_recv: timeout after 3600 seconds
Mon Oct 19 18:46:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:03 2020 -> Finished scanthread
Mon Oct 19 18:46:03 2020 -> Scanthread: connection shut down (FD 9)
Mon Oct 19 18:46:03 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:03 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:15 2020 -> Shutdown closed fd 5
Mon Oct 19 18:46:15 2020 -> Waiting for all threads to finish
Mon Oct 19 18:46:15 2020 -> Received POLLIN|POLLHUP on fd 7
Mon Oct 19 18:46:15 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:15 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:15 2020 -> Shutdown: closed fd 4
Mon Oct 19 18:46:15 2020 -> THRMGR: queue (single) crossed low threshold -> signaling
Mon Oct 19 18:46:15 2020 -> THRMGR: queue (bulk) crossed low threshold -> signaling
Mon Oct 19 18:46:15 2020 -> Shutdown: closed fd 7
Mon Oct 19 18:46:15 2020 -> Syncpipe write failed
Mon Oct 19 18:46:17 2020 -> Shutting down the main socket.
Mon Oct 19 18:46:17 2020 -> Pid file removed.
Mon Oct 19 18:46:17 2020 -> --- Stopped at Mon Oct 19 18:46:17 2020
More information about the clamav-users
mailing list