How to disable PhishingDetectionService

I need disable the service of phishing. Because this, hasn’t show messages of another account. This is causing me to not be able to see emails sent to me. When I click on the email, it shows as “not found”. The following appears in the nextcloud logs:
{“reqId”:“VDtnVHNIwhPITKgkPhSC”,“level”:3,“time”:“2025-02-27T15:44:26+00:00”,“remoteAddr”:“10.0.0.241”,“user”:“(user@account)”,“app”:“mail”,“method”:“GET”,“url”:“/apps/mail/api/messages/65090/body”,“message”:"Call to a member function getAddressList() on null in file ‘/var/www/html/custom_apps/mail/lib/Service/PhishingDetection/PhishingDetectionService.php’

Nextcloud Server version (e.g., 30.0.0):

Fixed but looks like pending release: fix: harden phishing detection against missing and malformed headers by st3iny · Pull Request #10760 · nextcloud/mail · GitHub

I modified the line

lib/Service/PhishingDetection/DateCheck.php
Delete this
		} catch (DateException $e) {
Add this
		} catch (\Exception $e) {

I still can’t see the email that appears as not found

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.