Ben

My feedback

2 results found

  1. 5 votes
    How important is this to you?
    Ben supported this idea  · 
  2. 52 votes
    How important is this to you?
    An error occurred while saving the comment
    Ben commented  · 

    You can implement this policy with a sieve filter:
    https://proton.me/support/sieve-advanced-custom-filters

    However, if you're a business looking for GDPR compliance, it may be problematic as each user can just remove the "expire" after N days and retain emails forever. To enforce true data retention policy an admin would have to run a search and forcibly remove emails more than X days old in folder Y.

    Here is an example filter
    ```
    require ["vnd.proton.expire"];
    # permanently delete any email to/from a Neosofia domain after 90 days.
    if anyof(address :matches "from" ["*@neosofia.tech"], address :matches "to" ["*@neosofia.tech"] )
    {
    expire "day" "90";
    }

    ```

    Ben supported this idea  · 

Feedback and Knowledge Base