• 0 Posts
  • 3 Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle
  • The emails are unencrypted, emails in transit are in transit between the e-mail servers and relays and use secure tls channels.
    They are only encrypted from your phone/notebook/browser to the server, then when send they will be encrypted till the next server.

    Every server/relay first decrypts everything send to it, because it has to due to the TLS terminating at each server.

    See also your source:

    Transport Encryption: This form of encryption is used to secure your emails while they are transmitted over the internet. Most of today’s email services, including Gmail, employ transport layer security (TLS) to protect emails in transit. While it encrypts emails between servers, it doesn’t protect the content once it reaches the recipient’s inbox.1

    In practical terms, Your e-mail server, your e-mail servers relay (if it has any) and your recipients relay server/server can all read your email unless

    End-to-End Encryption (E2EE): E2EE takes encryption a step further. It ensures that only the sender and the recipient can decrypt and read the emails. Even the email service provider cannot access the contents of the email. E2EE is typically achieved through third-party encryption tools or services.1

    Which takes active effort from both the sender and the recipient to make work - it’s almost only possible with people you know and little else.

    1 https://umatechnology.org/gmails-new-encryption-can-make-email-safer-heres-why-you-should-use-it/



  • InnerScientist@lemmy.worldtoSelfhosted@lemmy.worldHow do you keep up?
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 months ago

    I have rss feeds for my main service updates so I know what new features I have, the services mostly run in podman containers and update automatically each Monday. I also have daily backups (timed to run just before the update on monday) in case anything does break.

    If it breaks I fix it depending on how much I want/need it, mostly it’s a matter of half an hour to fix it and with my current NixOS/Podman system I haven’t yet needed to fix anything this year so it breaks infrequently.

    Also why are you using Kubernetes on a single host if you want minimal maintenance? XD

    My recommendation is to switch to just managing containers, you should just be able to export the volumes out of kubernetes and import them as normal volumes, as long as they’re mounted in the right place you keep your data and if it doesn’t work just try again. Not like you need to destroy the current system to slowly replace it.

    Edit: I also recommend to update and reboot frequently, this stops updates and unstable configurations from piling up.