[GH-ISSUE #719] [Feature Request] Multiple +Aliases (+addressing) #1065

Closed
opened 2026-03-14 11:37:55 +03:00 by kerem · 1 comment
Owner

Originally created by @VuzzyM on GitHub (Feb 17, 2025).
Original GitHub issue: https://github.com/anonaddy/anonaddy/issues/719

Hi, I know that addy free only supports one real address, lite 5 and premium 30, but is it possible to add multiple recipient addresses to a single e-mail domain?

For example: when someone sends a message from alias@anonaddy.com to an email address like test+work@domain.com or test+business@domain.com it is automatically added to the folder in proton via sieve filter.

It would be a very convenient feature for users, thanks.

I took the information from here: https://www.reddit.com/r/ProtonMail/s/Y6l3AXdMrL

Example Sieve Filter:

require ["envelope", "include", "fileinto", "variables"];

if header :matches "X-Original-To" "*+*@*" {

  set :lower "plusalias" "${2}";

  if string :contains "${plusalias}" "ecommerce"     { fileinto "E-Commerce 🛒";    return; }
  if string :contains "${plusalias}" "education"     { fileinto "Education 🧠";     return; }
  if string :contains "${plusalias}" "entertainment" { fileinto "Entertainment 🎮"; return; }
  if string :contains "${plusalias}" "finance"       { fileinto "Finance 📈";       return; }
  if string :contains "${plusalias}" "goverment"     { fileinto "Goverment 🏛️";     return; }
  if string :contains "${plusalias}" "insurance"     { fileinto "Insurance 📋";     return; }
  if string :contains "${plusalias}" "social"        { fileinto "Social 📱";        return; }
  if string :contains "${plusalias}" "tech"          { fileinto "Tech 🤖";          return; }
  if string :contains "${plusalias}" "travel"        { fileinto "Travel ✈️";        return; }
  if string :contains "${plusalias}" "work"          { fileinto "Work 💼";          return; }
  if string :contains "${plusalias}" "test"          { fileinto "Test 🧪";          return; }
}
Originally created by @VuzzyM on GitHub (Feb 17, 2025). Original GitHub issue: https://github.com/anonaddy/anonaddy/issues/719 Hi, I know that addy free only supports one real address, lite 5 and premium 30, but is it possible to add multiple recipient addresses to a single e-mail domain? For example: when someone sends a message from alias@anonaddy.com to an email address like test+work@domain.com or test+business@domain.com it is automatically added to the folder in proton via sieve filter. It would be a very convenient feature for users, thanks. I took the information from here: https://www.reddit.com/r/ProtonMail/s/Y6l3AXdMrL Example Sieve Filter: ``` require ["envelope", "include", "fileinto", "variables"]; if header :matches "X-Original-To" "*+*@*" { set :lower "plusalias" "${2}"; if string :contains "${plusalias}" "ecommerce" { fileinto "E-Commerce 🛒"; return; } if string :contains "${plusalias}" "education" { fileinto "Education 🧠"; return; } if string :contains "${plusalias}" "entertainment" { fileinto "Entertainment 🎮"; return; } if string :contains "${plusalias}" "finance" { fileinto "Finance 📈"; return; } if string :contains "${plusalias}" "goverment" { fileinto "Goverment 🏛️"; return; } if string :contains "${plusalias}" "insurance" { fileinto "Insurance 📋"; return; } if string :contains "${plusalias}" "social" { fileinto "Social 📱"; return; } if string :contains "${plusalias}" "tech" { fileinto "Tech 🤖"; return; } if string :contains "${plusalias}" "travel" { fileinto "Travel ✈️"; return; } if string :contains "${plusalias}" "work" { fileinto "Work 💼"; return; } if string :contains "${plusalias}" "test" { fileinto "Test 🧪"; return; } } ```
kerem closed this issue 2026-03-14 11:38:00 +03:00
Author
Owner

@VuzzyM commented on GitHub (Feb 19, 2025):

No more need, thank you.

<!-- gh-comment-id:2669151470 --> @VuzzyM commented on GitHub (Feb 19, 2025): No more need, thank you.
Sign in to join this conversation.
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/anonaddy#1065
No description provided.