Hi
Qim,
You are probably doing
nothing wrong — Thunderbird mailbox files can be awkward to inspect.
Most likely reasons Notepad showed a blank page
- The file you copied may now be empty or near-empty
- You may have copied the wrong mailbox file
- Notepad is not the best tool for this kind of mailbox file
First check this
- Right-click the copied
Inbox file on the Desktop
- Click Properties
- Check the Size
If it is 0 KB
Then there is nothing in that file to inspect.
If it is not 0 KB
Then the content is there, and we should search it another way.
Better method than Notepad
Use
PowerShell to search inside the mailbox file directly.
Step 1
Close
Thunderbird first.
Step 2
Open
PowerShell.
Step 3
Run this command, changing the path if needed:
Select-String -Path "$env:USERPROFILE\Desktop\Inbox" -Pattern ".pdf","filename=","Subject:","From:","Content-Type: application/pdf" | Select-Object -First 30
What this does
It searches the whole mailbox file for:
.pdf
filename=
Subject:
From:
Content-Type: application/pdf
and shows the first matches.
If your copied file has a different name
For example, if you renamed it to
Inbox_copy.txt, use:
Select-String -Path "$env:USERPROFILE\Desktop\Inbox_copy.txt" -Pattern ".pdf","filename=","Subject:","From:","Content-Type: application/pdf" | Select-Object -First 30
Even more important
Because ESET is still finding the items, the key thing now is the
exact current path from the new ESET scan.
Please post the new ESET result showing the full path again, because if ESET is now scanning a
renamed file, we need to make sure you are opening the
same file it is detecting.
Short answer
- No, you are probably not doing anything wrong
- Notepad is just unreliable here
- Use PowerShell
Select-String instead
If you want, after you run that command, paste the output here and I’ll help you identify the exact bad email.