-# -*- coding: utf-8 -*-
-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from hashlib import md5
from django.conf import settings
def subscriber_hash(email):
- return md5(email).hexdigest()
+ return md5(email.encode('utf-8')).hexdigest()
def remove_from_groups(email, client):