this post was submitted on 25 Aug 2025
37 points (100.0% liked)

Privacy

41273 readers
337 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

much thanks to @gary_host_laptop for the logo design :)

founded 5 years ago
MODERATORS
 

Can other lemmy clients or the server admins see the email address associated with my account?

you are viewing a single comment's thread
view the rest of the comments
[–] helloworld@lemmy.ml 4 points 4 days ago (2 children)
[–] davel@lemmy.ml 5 points 4 days ago

Can I open what? I can only get my own email address through the API: https://lemmy.readme.io/reference/get_site

curl -s -w "\n" -H "authorization: Bearer ${JWT}" https://lemmy.ml/api/v3/site \
    | jq -r '.my_user.local_user_view.local_user.email'
[–] BlueEther@no.lastname.nz 4 points 4 days ago* (last edited 4 days ago)

lemmy=# select p.name, i.domain, p.display_name, p.email from person p join instance i on p.instance_id = i.id where name='helloworld';
ERROR: column p.email does not exist

email only exists in the local_user table