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";
}
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";
}
```