Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-27 12:42:58 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-27 12:42:58 +0300
commitf4785631f9b99e8038440f208bbae85e8f311fc2 (patch)
tree50ba3d836dedc18fb2fc2aaf86471d23c8c7f597
parent0a288b6aaa2e097f2ac76af8c353ed9c11481912 (diff)
Fix often replied percentagenightly-20200427
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--lib/Service/Classification/OftenReadSenderClassifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/Classification/OftenReadSenderClassifier.php b/lib/Service/Classification/OftenReadSenderClassifier.php
index 7eaf86e57..0973d2e9d 100644
--- a/lib/Service/Classification/OftenReadSenderClassifier.php
+++ b/lib/Service/Classification/OftenReadSenderClassifier.php
@@ -64,7 +64,7 @@ class OftenReadSenderClassifier extends AClassifier {
return $this->greater(
$this->getNrOfReadMessages($mb, $sender->getEmail()),
$this->getNumberOfMessages($mb, $sender->getEmail()),
- 0.9
+ 0.7
);
}