nextcloud / mail

💌 Mail app for Nextcloud
https://apps.nextcloud.com/apps/mail
GNU Affero General Public License v3.0
821 stars 255 forks source link

Mail app retrieves and displays message headers, but message body never loads (all messages, all users) #5983

Open morsedl opened 2 years ago

morsedl commented 2 years ago

Expected behavior

Clicking on a message header should then display the message body.

Actual behavior

"Loading message" displays, cursor changes to a spinning circle. Nothing more. For all messages, for all users.

Mail app

Lastest. Uninstall and re-install had no effect.

Server configuration

Official Docker Hub image (Docker running on Debian 10)

Nextcloud Version: (see admin page, e.g. 13.0.2)

23 (fully-fresh installation)

Client configuration

Browsers: Safari, Chrome

Operating system: Problem occurs using any version of Safari (i.e., macOS and mobile variants), as well as Chrome running on Debian 10.

Error message example from Settings -> Logging (Debugging to level 3 enabled)

Error   mail    OCA\Mail\Exception\ServiceException: Could not load message
/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php - line 249:
OCA\Mail\Service\MailManager->getImapMessage(OCA\Mail\Account {}, OCA\Mail\Db\Mailbox { id: 1}, 21138, true)
/var/www/html/lib/private/AppFramework/Http/Dispatcher.php - line 217:
OCA\Mail\Controller\MessagesController->getBody(10)
/var/www/html/lib/private/AppFramework/Http/Dispatcher.php - line 126:
OC\AppFramework\Http\Dispatcher->executeController(OCA\Mail\Con ... {}, "getBody")
/var/www/html/lib/private/AppFramework/App.php - line 157:
OC\AppFramework\Http\Dispatcher->dispatch(OCA\Mail\Con ... {}, "getBody")
/var/www/html/lib/private/Route/Router.php - line 302:
OC\AppFramework\App::main("OCA\\Mail\\ ... r", "getBody", OC\AppFramew ... {}, { id: "10",_ ... "})
/var/www/html/lib/base.php - line 1006:
OC\Route\Router->match("/apps/mail/ ... y")
/var/www/html/index.php - line 36:
OC::handleRequest()
Caused by OCP\AppFramework\Db\DoesNotExistException: Mail body for this mail(21138) could not be loaded
/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php - line 579:
OCA\Mail\Model\IMAPMessage->loadBodyData(Horde_Mime_Part { parent: null}, 1)
/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php - line 453:
OCA\Mail\Model\IMAPMessage->handleHtmlMessage(Horde_Mime_Part { parent: null}, 1)
/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php - line 381:
OCA\Mail\Model\IMAPMessage->getPart(Horde_Mime_Part { parent: null}, 1)
/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php - line 100:
OCA\Mail\Model\IMAPMessage->loadMessageBodies()
/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php - line 242:
OCA\Mail\Model\IMAPMessage->__construct(Horde_Imap_C ... e}, "INBOX", 21138, null, true)
<<closure>>
OCA\Mail\IMAP\MessageMapper->OCA\Mail\IMAP\{closure}("*** sensiti ... *")
/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php - line 256:
array_map(Closure {}, [ "*** sensi ... "])
/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php - line 69:
OCA\Mail\IMAP\MessageMapper->findByIds(Horde_Imap_C ... e}, "INBOX", [ 21138], true)
/var/www/html/custom_apps/mail/lib/Service/MailManager.php - line 180:
OCA\Mail\IMAP\MessageMapper->find(Horde_Imap_C ... e}, "INBOX", 21138, true)
/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php - line 249:
OCA\Mail\Service\MailManager->getImapMessage(OCA\Mail\Account {}, OCA\Mail\Db\Mailbox { id: 1}, 21138, true)
/var/www/html/lib/private/AppFramework/Http/Dispatcher.php - line 217:
OCA\Mail\Controller\MessagesController->getBody(10)
/var/www/html/lib/private/AppFramework/Http/Dispatcher.php - line 126:
OC\AppFramework\Http\Dispatcher->executeController(OCA\Mail\Con ... {}, "getBody")
/var/www/html/lib/private/AppFramework/App.php - line 157:
OC\AppFramework\Http\Dispatcher->dispatch(OCA\Mail\Con ... {}, "getBody")
/var/www/html/lib/private/Route/Router.php - line 302:
OC\AppFramework\App::main("OCA\\Mail\\ ... r", "getBody", OC\AppFramew ... {}, { id: "10",_ ... "})
/var/www/html/lib/base.php - line 1006:
OC\Route\Router->match("/apps/mail/ ... y")
/var/www/html/index.php - line 36:
OC::handleRequest()
miaulalala commented 2 years ago

Is this a hosted or self hosted email server? What's your setup?

morsedl commented 2 years ago

Hi miaulalala,

Thank you kindly for your prompt response! :-)

Regarding error messages, kindly see the error message already reported in the OP.

Regarding our email server, yes, self-hosted Cyrus + Postfix on Ubuntu 12.04 LTS. We'll be migrating over to Debian 10 the in the next weeks, and we'd like to have the Mail App working, but it isn't essential, as the client presently has OpenXchange also running on that server, and they can use it for webmail if need be, until such time as our email backend server is more up to date.

It took quite some fiddling around just to get the message headers to retrieve. The solution involved ensuring php-mail is the mail sending routine used by the Mail app, turning off certificate verification for the Mail app, and setting CipherString = DEFAULT@SECLEVEL=1 in the Docker container's /etc/ssl/openssl.cnf file.

Once this was done, the test user I was using could see all of their mail message headers just fine. So it rather surprised me that the message bodies would not retrieve, as I would think the Mail app uses the same transport layer / routines for retrieving headers and for message bodies. Perhaps it does, but either way something is amiss.

miaulalala commented 2 years ago

Right, if you can, could you also take a look at your horde_imap.log? It's in the same folder as the nextcloud.log (/data). Might give us some more information on what exactly the imap server isn't liking about the fetch query.

morsedl commented 2 years ago

Why is this closed? Yes, apparently its a duplicate, as I also let NextCloud generate an error report, which apparently landed here. But why close both? Fine if the problem has been resolved, but kindly LMK me know under which other tickets / patches / commits to which I should refer for understanding and correcting the problem. Thank you so very kindly. :-)

miaulalala commented 2 years ago

This issue is still open @morsedl :)

morsedl commented 2 years ago

@miaulalala

Right, if you can, could you also take a look at your horde_imap.log? It's in the same folder as the nextcloud.log (/data). Might give us some more information on what exactly the imap server isn't liking about the fetch query.

Yes, I'd like to. But those log files are not being generated for reasons I do not understand. I seem to get general error messages from Horde in my nextcloud-error.log, but the more detailed Horde log files are not to be found (I've tried). This I do not understand, as we are using the official dockerhub container image, so I would think that Horde logging would be automatically activated when debugging is on. Perhaps it only activates if I set loglevel=0?

For reference, both regarding debugging as well as the critical changes made and described here re: getting even the email headers to retrieve, here are the top lines of our present config/config.php configuration file, where these configuration changes can be viewed:

$CONFIG = array (
  'debug' => true,
  'log_type' => 'file',
  'logfile' => 'nextcloud-errors.log',
  'loglevel' => 3,
  'logdateformat' => 'F d, Y H:i:s',
  'app.mail.verify-tls-peer' => false,
  'app.mail.transport' => 'php-mail',
  ....
morsedl commented 2 years ago

This issue is still open @morsedl :)

Ah, thank you. I think I was getting confused by the green close label on one of the tickets, somehow errantly thinking both were.

morsedl commented 2 years ago

Must go to Dr.'s appointment now, ought be back working on this within 3-4 hours. Again, thank you most kindly for your assistance. Of the two issues I reported at the same time (this and the one regarding the Contacts app seemingly working fine over CardDAV but not within the NextCloud UI), the one regarding the Contacts is much more of a priority.

miaulalala commented 2 years ago

Yes, enable, debug mode for the instance - then horde logging should be enabled too.

morsedl commented 2 years ago

Hi Anna,

(In the bus at the moment, just FYI.

OK, just to be clear, when you say yes beliw, you mean set ‘log level=0’ in ‘config.pho’, correct?

Von meinem iPhone gesendet

Am 26.01.2022 um 11:21 schrieb Anna Larch @.***>:

 Yes, enable, debug mode for the instance - then horde logging should be enabled too.

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you were mentioned.

miaulalala commented 2 years ago

Yes, exactly.

cgoIT commented 2 years ago

Hi,

I not sure but I think I have the same problem. Running Nextcloud in combination with Mailcow under PHP 8.0.14 (fpm). In the nextcloud log I found this message:

"File":"/web/nextcloud/apps/mail/vendor/christophwurst/kitinerary-bin/src/BinaryAdapter.php", "Line":84},"CustomMessage":"Call to undefined function proc_open() in file '/web/nextcloud/apps/mail/vendor/christophwurst/kitinerary-bin/src/BinaryAdapter.php' line 84"}}

Maybe this helps.

Cheers Carsten

Nextcloud version: 23.0.1 Mail app version: 1.11.6

cgoIT commented 2 years ago

Ok,

I have to apologize. It was a stupid mistake by my side. I had the proc_open function (and some more) in my „disabled_functions“ array in my fpm config.

Now it works like a charm.

igorgsh commented 2 years ago

I have got the same error "CustomMessage":"Call to undefined function proc_open() in file '/web/nextcloud/apps/mail/vendor/christophwurst/kitinerary-bin/src/BinaryAdapter.php' line 84"}} and I have found that proc_open and proc_close are in the list of disabled_function. I have removed these functions from the list and the mail body is displayed successfully. Sure, the problem is resolved, but... Maybe it makes sense to review code and replace these functions with some analogs?
I installed Nextcloud from dockerized Mailcow package and these functions are disabled by defaults there.

ChristophWurst commented 2 years ago

Maybe it makes sense to review code and replace these functions with some analogs?

suggestions?

andrsharov commented 2 years ago

Hi,

I have the same error. One in one.

Docker Containers:

What is the error: Body of the some letters don't opens. Error log in attach nextcloud-errors.log image

{"reqId":"GN91JYONlI610bdP6dja","level":3,"time":"2022-04-18T16:30:43+00:00","remoteAddr":"8.8.8.8","user":"a.sharov","app":"mail","method":"GET","url":"/apps/mail/api/messages/962/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36","version":"23.0.3.2","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":249,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":21},5,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":217,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[962]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":126,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":157,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":302,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},{"id":"962","_route":"mail.messages.getBody"}]},{"file":"/var/www/html/lib/base.php","line":1006,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/962/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":186,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(5) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":564,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":435,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":375,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":100,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":252,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",5,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":266,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameter replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":69,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",[5],true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":180,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",5,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":249,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":21},5,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":217,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[962]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":126,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":157,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":302,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},{"id":"962","_route":"mail.messages.getBody"}]},{"file":"/var/www/html/lib/base.php","line":1006,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/962/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":609},"CustomMessage":"Could not load message"},"id":"625d9cb8e3b58"}

Settings my Yandex.360 mail server in the screenshots.

image image

morsedl commented 1 year ago

Hi,

I just updated our server instance to the latest version, presently 24.0.5 to see if this would correct the problem. Unfortunately not. I still see message header and select a message, but the message body is never shown.

Below the last lines within nextcloud.log that seem relevant to this problem. Unlike others, I am not seeing anything regarding undefined functions like proc_open and proc_close as mentioned by others in this thread. I think I should also mention that access is over https from an apache instance that connects to our Nextcloud instance (on another host) only via http (i.e., the web server is a trusted host for Nextcloud).

{"reqId":"7AU3Z1mh5550brTa2ZRI","level":3,"time":"2022-10-04T17:57:27+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9482/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22517,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9482]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9482","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9482/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22517) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22517,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22517,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22517,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9482]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9482","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9482/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"pBbmNlS1rFS6bfE78Uof","level":3,"time":"2022-10-04T17:58:13+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"uBdN5KVgqkil9KaXuZf6","level":3,"time":"2022-10-04T17:58:23+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"pDEWCo0gOTYSfWIXbGpe","level":3,"time":"2022-10-04T17:58:24+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"JC75mb5FnGEv2Pn06kVH","level":3,"time":"2022-10-04T17:58:43+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"sQ8whwwnJ2SmmwHhPxCY","level":3,"time":"2022-10-04T17:58:46+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"ZiZS2S0inai9f6t4xNZu","level":3,"time":"2022-10-04T18:00:30+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"BfMLS0yjDb6YXMC4uz6p","level":3,"time":"2022-10-04T18:00:33+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"16w8HRVjljGRuHCXZGIH","level":3,"time":"2022-10-04T18:00:35+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"e7K8K07MjaPuHMPEMJJr","level":3,"time":"2022-10-04T18:01:00+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9483/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(10) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Sent",10,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":8},10,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9483]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9483","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9483/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"zFGnMb1wXAYCGux6ms3F","level":3,"time":"2022-10-04T18:02:17+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9507/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22541) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":583,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":459,"function":"handleHtmlMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"hXoBBEwuxvfJtq6vS5mp","level":3,"time":"2022-10-04T18:02:21+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9506/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22540) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"RZc1t6h36laQAWpRV59Q","level":3,"time":"2022-10-04T18:02:24+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9507/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22541) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":583,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":459,"function":"handleHtmlMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"ebJvjPOR8zglkvpwM0ZY","level":3,"time":"2022-10-04T18:02:26+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9505/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22539,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9505]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9505","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9505/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22539) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22539,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22539,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22539,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9505]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9505","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9505/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"YR9s0FNpE8BFgmMsju0V","level":3,"time":"2022-10-04T18:02:29+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9504/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22538) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"qa54ETY4NGbCAsoCpac0","level":3,"time":"2022-10-04T18:02:41+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9504/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22538) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"cpDoZ52tcT4AdpkJZ3LJ","level":3,"time":"2022-10-04T18:02:49+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9504/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22538) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22538,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22538,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9504]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9504","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9504/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"6C6jN9FpJs8zPFeCgOSo","level":3,"time":"2022-10-04T18:02:50+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9506/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22540) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"NPxGiOuOsc1Y7UdTU8Lj","level":3,"time":"2022-10-04T18:03:27+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"FBI6Nt9yXnBOosE8pDXi","level":3,"time":"2022-10-04T18:03:50+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9509/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(2) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"s09UsBBItPhjyeOebQIy","level":3,"time":"2022-10-04T18:03:51+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9509/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(2) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"9kaU0AwjVOnWYVFAV8WR","level":3,"time":"2022-10-04T18:04:12+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9511/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(4) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"OirSA1TlM3pzidte2nbg","level":3,"time":"2022-10-04T18:04:14+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"zJm3s8Y0fQlvSApUaUKi","level":3,"time":"2022-10-04T18:04:22+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"0PIhrl3UEngwlbqbtg1p","level":3,"time":"2022-10-04T18:04:23+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"icuV0lYfOXlLIDlo70w6","level":3,"time":"2022-10-04T18:04:25+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"JW8QGyAwWH5dtrgnKlqu","level":3,"time":"2022-10-04T18:04:58+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9510/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(3) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",3,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},3,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9510]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9510","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9510/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"nsWT6gLuiBfUhMJFDdMl","level":3,"time":"2022-10-04T18:05:10+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9511/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(4) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"uhQ5CuM7Y7x4z5zsoQi3","level":3,"time":"2022-10-04T18:05:15+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9511/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(4) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"PykmbFeyDRLMYviwxyEx","level":3,"time":"2022-10-04T18:05:16+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9511/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(4) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",4,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},4,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9511]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9511","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9511/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"pW35NUjPuFghh3uO0Akh","level":3,"time":"2022-10-04T18:05:21+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9509/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(2) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",2,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},2,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9509]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9509","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9509/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"kpf8vXQGA2goLuSgsQ1r","level":3,"time":"2022-10-04T18:05:22+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9508/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},1,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9508]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9508","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9508/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(1) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",1,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"Wiki",1,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":11},1,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9508]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9508","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9508/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"RyjleIjLFPVmEWOFSbG8","level":3,"time":"2022-10-04T18:05:25+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9507/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22541) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":583,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":459,"function":"handleHtmlMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"GQLfuHFUJtsXcr0HXGyb","level":3,"time":"2022-10-04T18:05:28+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9506/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22540) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22540,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22540,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9506]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9506","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9506/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"O0JPy4zJEH8yR84xYXXy","level":3,"time":"2022-10-04T18:05:30+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9507/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22541) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":583,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":459,"function":"handleHtmlMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22541,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22541,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9507]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9507","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9507/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"XXj3AAQ4byJWdkktuQSd","level":3,"time":"2022-10-04T18:05:41+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9500/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22534,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9500]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9500","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9500/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22534) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22534,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22534,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22534,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9500]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9500","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9500/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"DlzWlS72ZrWnI0lvMdIl","level":3,"time":"2022-10-04T18:05:44+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9497/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22531,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9497]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9497","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9497/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22531) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":568,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":441,"function":"handleTextMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":381,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22531,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22531,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22531,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9497]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9497","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9497/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
{"reqId":"NM43zpP3MazNQDr6ialk","level":3,"time":"2022-10-04T18:05:47+00:00","remoteAddr":"10.0.2.1","user":"morse","app":"mail","method":"GET","url":"/apps/mail/api/messages/9494/body","message":"Could not load message","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15","version":"24.0.5.1","exception":{"Exception":"OCA\\Mail\\Exception\\ServiceException","Message":"Could not load message","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22528,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9494]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9494","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9494/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","Line":187,"Previous":{"Exception":"OCP\\AppFramework\\Db\\DoesNotExistException","Message":"Mail body for this mail(22528) could not be loaded","Code":0,"Trace":[{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":583,"function":"loadBodyData","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":459,"function":"handleHtmlMessage","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":387,"function":"getPart","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Mime_Part","parent":null},1]},{"file":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","line":102,"function":"loadMessageBodies","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":265,"function":"__construct","class":"OCA\\Mail\\Model\\IMAPMessage","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22528,null,true]},{"function":"OCA\\Mail\\IMAP\\{closure}","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":279,"function":"array_map","args":[{"__class__":"Closure"},["*** sensitive parameters replaced ***"]]},{"file":"/var/www/html/custom_apps/mail/lib/IMAP/MessageMapper.php","line":71,"function":"findByIds","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",{"__class__":"Horde_Imap_Client_Ids","duplicates":false},true]},{"file":"/var/www/html/custom_apps/mail/lib/Service/MailManager.php","line":181,"function":"find","class":"OCA\\Mail\\IMAP\\MessageMapper","type":"->","args":[{"__class__":"Horde_Imap_Client_Socket","cacheFields":["HICenv","HICflags","HIChdrs","HICdate","HICsize","And 1 more entries, set log level to debug to see all entries"],"changed":true,"statuscache":true},"INBOX",22528,true]},{"file":"/var/www/html/custom_apps/mail/lib/Controller/MessagesController.php","line":248,"function":"getImapMessage","class":"OCA\\Mail\\Service\\MailManager","type":"->","args":[{"__class__":"OCA\\Mail\\Account"},{"__class__":"OCA\\Mail\\Db\\Mailbox","id":1},22528,true]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":225,"function":"getBody","class":"OCA\\Mail\\Controller\\MessagesController","type":"->","args":[9494]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":133,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":172,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Mail\\Controller\\MessagesController"},"getBody"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":298,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Mail\\Controller\\MessagesController","getBody",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},["9494","mail.messages.getBody"]]},{"file":"/var/www/html/lib/base.php","line":1030,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/mail/api/messages/9494/body"]},{"file":"/var/www/html/index.php","line":36,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/custom_apps/mail/lib/Model/IMAPMessage.php","Line":613},"message":"Could not load message","exception":{},"CustomMessage":"Could not load message"}}
miaulalala commented 1 year ago

Did you het the horde logs to work? You need to set your debug level to 0 for them to run. https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/logging_configuration.html

my mistake, enabling debug should be enough to write those logs. You can find them in your data directory where your nextcloud log also resides.

meson11 commented 1 year ago

i have no disabled functions, so far i can see. Should I open another Issue, because i have no docker installation? I am on an nextcloudpi debian installation. nc 25.0.3.2 php 8.1 e-mail imap server is hosted at world4you.com

logfile:

`[ nc-limits ] (Do 26 Jän 2023 11:06:19 CET) Using 1024M for PHP max memory Installing template 'php/90-ncp.ini.sh'... Using 6 PHP threads Installing template 'php/pool.d.www.conf.sh'... System config value trusted_domains => 3 set to string cloudia Installing template 'mysql/91-ncp.cnf.sh'... System config value overwrite.cli.url set to string https://cloudia/ An unhandled exception has been thrown: RedisException: read error on connection to /var/run/redis/redis.sock:0 in /var/www/nextcloud/lib/private/Memcache/Redis.php:48 Stack trace:

0 /var/www/nextcloud/lib/private/Memcache/Redis.php(48): Redis->get()

1 /var/www/nextcloud/lib/private/App/InfoParser.php(58): OC\Memcache\Redis->get()

2 /var/www/nextcloud/lib/private/App/AppManager.php(507): OC\App\InfoParser->parse()

3 /var/www/nextcloud/lib/private/legacy/OC_App.php(596): OC\App\AppManager->getAppInfo()

4 /var/www/nextcloud/lib/private/AppFramework/App.php(74): OC_App::getAppInfo()

5 /var/www/nextcloud/lib/private/legacy/OC_App.php(281): OC\AppFramework\App::buildAppNamespace()

6 /var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php(117): OC_App::registerAutoloading()

7 /var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php(91): OC\AppFramework\Bootstrap\Coordinator->registerApps()

8 /var/www/nextcloud/lib/base.php(671): OC\AppFramework\Bootstrap\Coordinator->runInitialRegistration()

9 /var/www/nextcloud/lib/base.php(1144): OC::init()

10 /var/www/nextcloud/console.php(48): require_once('...')

11 /var/www/nextcloud/occ(11): require_once('...')

12 {main}An unhandled exception has been thrown:

RedisException: No such file or directory in /var/www/nextcloud/lib/private/RedisFactory.php:137 Stack trace:

0 /var/www/nextcloud/lib/private/RedisFactory.php(137): Redis->pconnect()

1 /var/www/nextcloud/lib/private/RedisFactory.php(178): OC\RedisFactory->create()

2 /var/www/nextcloud/lib/private/Memcache/Redis.php(43): OC\RedisFactory->getInstance()

3 /var/www/nextcloud/lib/private/Memcache/Factory.php(118): OC\Memcache\Redis->__construct()

4 /var/www/nextcloud/lib/private/Server.php(1120): OC\Memcache\Factory->createLocking()

5 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(162): OC\Server->OC{closure}()

6 /var/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php(122): OC\AppFramework\Utility\SimpleContainer->OC\AppFramework\Utility{closure}()

7 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(129): Pimple\Container->offsetGet()

8 /var/www/nextcloud/lib/private/ServerContainer.php(136): OC\AppFramework\Utility\SimpleContainer->query()

9 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(57): OC\ServerContainer->query()

10 /var/www/nextcloud/lib/private/Server.php(2070): OC\AppFramework\Utility\SimpleContainer->get()

11 /var/www/nextcloud/lib/private/Files/View.php(117): OC\Server->getLockingProvider()

12 /var/www/nextcloud/lib/private/Server.php(462): OC\Files\View->__construct()

13 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(162): OC\Server->OC{closure}()

14 /var/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php(122): OC\AppFramework\Utility\SimpleContainer->OC\AppFramework\Utility{closure}()

15 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(129): Pimple\Container->offsetGet()

16 /var/www/nextcloud/lib/private/ServerContainer.php(136): OC\AppFramework\Utility\SimpleContainer->query()

17 /var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(57): OC\ServerContainer->query()

18 /var/www/nextcloud/lib/private/Server.php(1472): OC\AppFramework\Utility\SimpleContainer->get()

19 /var/www/nextcloud/lib/base.php(617): OC\Server->boot()

20 /var/www/nextcloud/lib/base.php(1144): OC::init()

21 /var/www/nextcloud/console.php(48): require_once('...')

22 /var/www/nextcloud/occ(11): require_once('...')

23 {main}An unhandled exception has been thrown:

RedisException: LOADING Redis is loading the dataset in memory in /var/www/nextcloud/lib/private/Memcache/Redis.php:48 Stack trace:

0 /var/www/nextcloud/lib/private/Memcache/Redis.php(48): Redis->get()

1 /var/www/nextcloud/lib/private/App/InfoParser.php(58): OC\Memcache\Redis->get()

2 /var/www/nextcloud/lib/private/App/AppManager.php(507): OC\App\InfoParser->parse()

3 /var/www/nextcloud/lib/private/legacy/OC_App.php(596): OC\App\AppManager->getAppInfo()

4 /var/www/nextcloud/lib/private/AppFramework/App.php(74): OC_App::getAppInfo()

5 /var/www/nextcloud/lib/private/legacy/OC_App.php(281): OC\AppFramework\App::buildAppNamespace()

6 /var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php(117): OC_App::registerAutoloading()

7 /var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php(91): OC\AppFramework\Bootstrap\Coordinator->registerApps()

8 /var/www/nextcloud/lib/base.php(671): OC\AppFramework\Bootstrap\Coordinator->runInitialRegistration()

9 /var/www/nextcloud/lib/base.php(1144): OC::init()

10 /var/www/nextcloud/console.php(48): require_once('...')

11 /var/www/nextcloud/occ(11): require_once('...')

12 {main}

System config value trusted_proxies => 14 set to empty string Setup notify_push (attempt 1/5) ✓ redis is configured ✓ push server is receiving redis messages ✓ push server can load mount info from database ✓ push server can connect to the Nextcloud server ✓ push server is a trusted proxy ✓ push server is running the same version as the app configuration saved`

meson11 commented 1 year ago

I have to apologize, too. ublock origin was the culprit.