{% extends "meta.html" %} {% block title %} Privacy settings - {{cfg("sr.ht", "site-name")}} meta {% endblock %} {% block content %}

Encryption

{% if pgp_key_id %} All emails sent from {{cfg("sr.ht", "site-name")}} to you are signed with
{{pgp_key_id}}. {% else %} Emails sent from {{cfg("sr.ht", "site-name")}} are not encrypted. Please contact {{owner.name}} <{{owner.email}}> to request PGP signing of emails. {% endif %}

{% if any(current_user.pgp_keys) %}
{{csrf_token()}}
{% for key in current_user.pgp_keys %}
{% endfor %}
{{csrf_token()}}
{% elif pgp_key_id %}

If you add a PGP key to your account, we can encrypt emails to you.

{% endif %}
{% endblock %}