1 | | For IMAP folders, at least, this appears to be a bug. Tracker creates the text_x-email folder with a few e-mail specific columns set. See https://git.haiku-os.org/haiku/tree/src/kits/tracker/TrackerInitialState.cpp#n650 . |
2 | | |
3 | | However, they're written BE and when Tracker tries to load the column attribute it doesn't fully understand how to convert it to LE. The _trk/columns attribute is destroyed and a default _trk/columns_le attribute is written. |
4 | | |
5 | | Once that's fixed, then it shouldn't be hard too add in the right logic to copy attributes as needed. |
| 1 | For IMAP folders, at least, this appears to be a bug. Tracker creates the text_x-email folder with a few e-mail specific columns set. See https://git.haiku-os.org/haiku/tree/src/kits/tracker/TrackerInitialState.cpp#n650, but writes them always to the BE columns attribute in the hosts byte order. This breaks on LE hosts. |