{% extends "logs/layout.html" %} {% block title %}{{_("Recent Network Activity")}}{% endblock %} {% block logs_content %}

{{_("Network Activity")}}

{{_("Recent Activity")}}

{{_("Here you can see a log of recent network activity, both successful and failed attempts.")}}

{% set proxy_settings = config.get_proxy_settings() %} {% if proxy_settings.protocol not in ("none", "unknown") %}

{{_("You have a proxy (%(proxy)s) configured at %(host)s:%(port)s.", proxy=proxy_settings.protocol, host=proxy_settings.host, port=proxy_settings.port)}}

{% if not proxy_settings.fallback %}

{{_("Proxy fallback is disabled, so if the proxy cannot connect to a given server, the connection will fail.")}} {% if proxy_settings.protocol in ("tor", "tor-risky") %} {{_("Some service providers block connections from Tor, so this may prevent you from accessing your mail or other data.")}} {% endif %}

{{_("You can configure destinations to bypass the proxy in the Advanced section of Networking in your Privacy Policy.")}}

{% else %}

{% if proxy_settings.protocol in ("tor", "tor-risky") %} {{_("Fall-back is enabled, so a direct connection will be made if Tor cannot connect.")}} {{_("This may leak your IP address and allow monitoring of which servers you communicate with.")}} {% else %} {{_("Fall-back is enabled, so a direct connection will be made if the proxy cannot connect.")}} {% endif %}

{% endif %} {% if proxy_settings.protocol == "tor-risky" %}

{{_("You are using Tor for unencrypted traffic.")}} {{_("This may allow exit-node operators to listen in or modify your communications.")}}

{% endif %} {% elif proxy_settings.protocol not in ("tor", "tor-risky") %}

{{_("You are not using Tor.")}} {{_("This may leak your IP address and allow monitoring of which servers you communicate with.")}}

{% endif %}

{{_("Edit your Privacy Policy.")}}

{%- set lines = ['uncle'] %} {%- for ts, fd, text in result|reverse %}

{{ ts|friendly_time }} {{ text }}

{%- do lines.append(text) %} {%- endfor %}{%- if result|length < 1 %}

No activity

{%- endif %}
{% endblock %}