Thank you.
@Charlie Brown
In a new
.thunderbird I find approximately 50 files with five different permissions:
700
777
755
644
600
I don't know how smart this syntax is but I think it gives a good output for further work if needed:
Code: Select all
find . -printf "%m %f %g\n" | column -t
And the output I could spend a cosy time knitting with chmod for lines for the script something like this:
Code: Select all
chmod 644 ~/.thunderbird/profiles.ini
next file and so on..... this far it looks okay in theory.
However...
In my backup I find more than 2.000 files with only two different permissions:
777
755
There are a lot more files, different filenames and different folders.
And maybe some permissions are changed on purpose.
How am I ever going to be able to solve this correctly.?
Is it unfair to name it a security hole in Thunderbird and expect the Thunderbird developers to fix it.?