consent tracking: option not to save IP / mail address
-
I am using gdpr-framework 1.0.10 on a small site where I have no interest into collecting more data than absolutely required (data minimization). Cause what is not there, does not need any protection or regulations. Currently I use something like this every 10 minutes:
mysql --defaults-extra-file=[…] --database "somedb" --execute "UPDATE wp_comments SET comment_author_IP='', comment_author_email='', comment_author_url='', comment_karma=0, comment_agent=''; UPDATE wp_gdpr_consent SET ip='';"
to kick out any data I don′t choose to be saved in the first place. Comments are allowed only for registered users and only I can add a new user.
I′d rather have WordPress not track any IP addresses whatsoever in the database. Is it possible to disable storing the IP in consent table?
Also it seems gdpr-framework appears to be using the mail address to reference the user if I read the table schema correctly. This does not work for two reasons:
- The user can change mail address at any time
- I patched the WordPress installation to make IP address in profile optional
Could gdpr-framework use a different field to reference to the user like the user ID from table
wp_users
or the usernameuser_login
.Also it would be nice to be able to search data subjects by username.
I chose to make it optional for users whether they like to provide their mail address.
- The topic ‘consent tracking: option not to save IP / mail address’ is closed to new replies.