Account anonymization

According to the GDPR, companies that record personal data from EU citizens must delete said data if its owner requests its deletion. An alternative is to anonymize the data, according to this article.

What is 'personal data'?

According to this article, personal data is:

  • A name and surname.
  • A home address.
  • An email address such as name.surname@company.com.
  • An identification card number.
  • Location data (for example the location data function on a mobile phone).
  • An Internet Protocol (IP) address.
  • A cookie ID.
  • The advertising identifier of your phone.
  • A phone number.
  • Data held by a hospital or doctor, which could be a symbol that uniquely identifies a person.

Out of the box, Dotkernel Frontend saves the user's name (firstname and lastname) and email (identity). This personal data is used for emails related to password reset and account activation.

Anonymization

The anonymization process makes these replacements:

  • The firstname and lastname are replaced with anonymous concatenated with the current UNIX timestamp, e.g. anonymous1725980747.
  • The email is replaced with anonymous concatenated with the current UNIX timestamp and the value in userAnonymizeAppend, e.g. anonymous1725980747@example.com.
  • The avatar image and its database record are deleted.

The userAnonymizeAppend key can be set in config/autoload/local.php or left empty.

Setting userAnonymizeAppend to an email domain would work as a catch-all email, if your email service provider has this option enabled.