Archiv-Darstellung: Filter-Lücken + Mail-Subject Encoding #321
Labels
No labels
app/archiv
app/einkaufslisten
app/imap-client
app/wissensbasis
arch-answered
arch-question
area/api
area/auth
area/infra
area/mobile
area/shared
area/ui
area/web
portfolio-status
prio/high
prio/low
prio/medium
roadmap/public
size/l
size/m
size/s
size/xl
size/xs
status/blocked
status/needs-info
type/bug
type/chore
type/docs
type/feature
type/idea
type/refactor
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
admin-mrrm/mrrmlabapp#321
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Zwei Probleme in der Archiv-Ansicht (Screenshot vom 2026-05-17):
1. Mobile-Filter-Rows konsumieren Flex-Höhe
Drei
<ScrollView horizontal>inapps/mobile/app/(drawer)/archiv.tsx(Tags/Korrespondent/Typ) belegen jeweils ~1/3 der Screen-Höhe — riesige Leerräume.Fix: ScrollViews zu
<XStack flexWrap="wrap">machen wie auf Web — keine Höhenexpansion, konsistent zwischen Plattformen.2. Mail-Subject als RFC-2047 encoded-word im Titel
Beispiel:
=?UTF-8?Q?The_Middle_Staffel_3_ist_jetzt_verf=C3=BCgbar?=— sollte zuThe Middle Staffel 3 ist jetzt verfügbardekodiert werden.Quelle:
apps/api/src/modules/mail/imap.service.tsparst Subject-Header roh.mail-archive.service.ts:101schreibt ihn 1:1 als Paperless-Title.Fix: RFC-2047-Decoder in imap.service einbauen (Q-encoded und B-encoded). TDD.
DoD