feat: add smart pattern detection for emails, names, usernames, phones

Instead of requiring explicit mappings for every variation, users
now configure their identity once (Identity tab) and Silent Send
auto-catches:
- Emails: any address @gmail, @yahoo, @outlook, etc.
- Names: first/last, full name, reversed, possessives, case variants
- Usernames: user@host, ~user, /home/user, C:\Users\user
- Phones: all common formats ((555) 123-4567, 555.123.4567, etc.)

Smart patterns run before explicit mappings, so explicit rules
can override smart catches when needed.

https://claude.ai/code/session_01Dvgwe7XMoSxnWXkih8p1Cw
This commit is contained in:
Claude
2026-03-25 23:52:37 +00:00
parent 7fe110d8fc
commit 387b22530b
7 changed files with 879 additions and 60 deletions
+40
View File
@@ -242,6 +242,46 @@ body {
white-space: nowrap;
}
/* Identity tab */
.id-section {
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid #f3f4f6;
}
.id-section:last-of-type {
border-bottom: none;
margin-bottom: 4px;
}
.id-label {
font-size: 11px;
font-weight: 600;
color: #374151;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 6px;
}
.id-row {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 4px;
}
.input-sm {
padding: 5px 8px;
font-size: 12px;
}
.id-hint {
font-size: 10px;
color: #9ca3af;
margin-top: 2px;
font-style: italic;
}
/* Mapping list */
.add-mapping {
padding-bottom: 12px;