| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {% extends 'base.html' %}
- {% block top %}
- <p>
- Benvenuto {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
- </p>
- <p>
- Il tuo ultimo login e' avvenuto {{ utenteautorizzato.last_panel_login }}.
- </p>
- <p>
- Non aggiorni la tua password dal {{ utenteautorizzato.last_password_update }}.
- </p>
- <p>
- I tuoi diritti in questa applicazione: {{ securitylevel.nome }}({{securityrowLen}})
- </p>
- <p>
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>Servizio</th>
- <th scope='col'>Attivo</th>
- </tr>
- </thead>
- <tbody>
- <tr><td>POP3</td><td>{% if utenteautorizzato.pop3 %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>IMAP</td><td>{% if utenteautorizzato.imap %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>WEBMAIL</td><td>{% if utenteautorizzato.webmail %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>SMTP</td><td>{% if utenteautorizzato.smtp %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>RELAY</td><td>{% if utenteautorizzato.smtp_relay %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>LMTP</td><td>{% if utenteautorizzato.lmtp %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>SIEVE</td><td>{% if utenteautorizzato.sieve %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>NEXTCLOUD</td><td>{% if utenteautorizzato.nextcloud %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>MAIL DI RECUPERO</td><td>{% if utenteautorizzato.mail_di_recupero %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>ANTIVIRUS</td><td>{% if utenteautorizzato.antivirus %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>BLACK LIST</td><td>{% if utenteautorizzato.blacklist %}SI{% else %}NO{% endif %}</td></tr>
- <tr><td>SPF CHECK</td><td>{% if utenteautorizzato.spf %}SI{% else %}NO{% endif %}</td></tr>
- </tbody>
- </table>
- </p>
-
- {% endblock %}
- {% block body %}
- <p>
- Attualmente stai occupando: {{ utenteautorizzato.mail_quota }} Mb (compreso il cestino/Trash).
- </p>
- <p>
- Nota: il check degli spazi occupati viene effettuato una volta a settimana.
- </p>
- {% if 'DOMAININFO' in securitylist %}
- <p>Dati di registrazione</p>
- <p>tipologia di servizi attualmente attivi</p>
- <p>Stato amministrativo</p>
- <p>Informazioni circa il dominio gestito:</p>
- <table = class='table'>
- <tbody>
- <tr>
- <th scope='row'>Occupazione Mail</th>
- <td>{{ dominio_mail_quota }}</td>
- </tr>
- <tr>
- <th scope='row'>Occupazione sito Web</th>
- <td>0</td>
- </tr>
- <tr>
- <th scope='row'>Occupazione Spazi FTP</th>
- <td>0</td>
- </tr>
- <tr>
- <th scope='row'>Occupazione SQL</th>
- <td>0</td>
- </tr>
- </tbody>
- </table>
- {% endif %}
- </p>
- {% endblock %}
|