Consenti il polling dell'avatar da URI

Il codice sembra già esistere per Discourse

ma, cosa più importante, questo è implementato altrove, e Gravatar e Libravatar lo supportano esplicitamente bene.

Ad esempio, ecco un documento che ho creato sul supporto di Libravatar

https://gitlab.com/-/snippets/2590066/raw/main/s0s2gl.txt.md

0. **API**
*   https://wiki.libravatar.org/api/
*   https://metacpan.org/pod/Libravatar::URL

```python3
email = ''.encode('utf-8')
hash = hashlib.md5(email.strip().lower()).hexdigest()
print(hash)
```
  1. Esempi