mirror of
https://github.com/anonaddy/anonaddy.git
synced 2026-04-25 22:25:55 +03:00
[GH-ISSUE #173] Responding to sent email creates risk of leaking real email address #732
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/anonaddy#732
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?
Originally created by @xanoni on GitHub (Jul 7, 2021).
Original GitHub issue: https://github.com/anonaddy/anonaddy/issues/173
Happened to me a few times and it's always extremely annoying ...
Isn't there some technical solution to this? E.g., filtering out everything that looks like the actual email address or other identifying information? Should be a trivial regex, but so much pain saved?
@willbrowningme commented on GitHub (Jul 7, 2021):
I think this depends on the email client you are using, when I do this in Thunderbird it show's as:
On 07/07/2021 10:16, Will wrote:
So it does not expose the real email.
What client / web app are you using for your email?
Yes it should be possible to remove any mention of the real email from the message body.
@xanoni commented on GitHub (Jul 7, 2021):
I think this is how most popular webmail clients handle it (Gmail, Live.com, Protonmail, etc.) and probably even Thunderbird if you don't specify a name.
@xanoni commented on GitHub (Jul 13, 2021):
@willbrowningme curious how you think about next steps here ... as far as I know, most webmail providers don't allow users to sanitize the "From" strings... let me know if you figure out how...
Is this something that you're planning to fix in AA directly any time soon, or should I try to find my own solution?
If the latter, then I would likely write a browser extension that strips out pre-defined regex patterns. But it's a hack, so would be better to have AA do it directly.
(This is somewhat time sensitive to me, given that I don't want more "accidents" to happen..... ticking time bomb)
@xanoni commented on GitHub (Jul 16, 2021):
@willbrowningme commented on GitHub (Jul 16, 2021):
I've just implemented this using a simple
str_ireplace()please try it again now by replying to yourself to check.Notes:
@xanoni commented on GitHub (Jul 17, 2021):
THANK YOU! Will test.
EDIT: misread initially so deleted part of my message
In the end state, would it be possible to have a box in the settings where we can define our own patterns? There's other stuff we may want to remove.
@xanoni commented on GitHub (Jul 17, 2021):
@willbrowningme seems to be working! however, people should note that it only deletes the email address, not the name before the email address .. so that still has to be sanitized manually, if desired
@willbrowningme commented on GitHub (Jul 19, 2021):
Yes potentially an option to remove user set patterns, I'll do some more tests when I get time.
@xanoni commented on GitHub (Jul 19, 2021):
Got it, thank you.