I have a stupid problem. I have a page which uses roundcube webmail. When I create a new mail and want to attach a file, there is a <li>
element that is appended to a <ul>
element while the file is uploading. After the upload is finished the <li>
is removed and replaced with another element.
Because of reasons I need to somehow inspect the temporary <li>
element. But since it's visible for too short time, I don't have enough time to really check it.
I am using the Roundcube Docker Container, and connecting to a remote iRedMail-server that I have no access to.
I have had the following ideas:
- Using a Chrome extension called DOMListener to see the element. I do see it there, but I cannot see the content/html for the element.
- Increase the max file size. The current max file size is 5.0 MB, and I have tried increasing that by changing
.htaccess
, settingupload_max_filesize = 100M;
according to https://docs.iredmail.org/change.mail.attachment.size.html. This did not work, I can still only upload files <= 5MB. - Slowing down the upload somehow. I have no idea how.
- Searching the code for the actual element class (
uploading
) but I cannot find it.
Does anyone have any idea what I can try?