On 06/03/2017 11:50 PM, Simon Liebold via Mailman-users wrote:
Hello,
#129 says that private lists are visible in the archive overview only but "archives aren't displayed".
However, I can browse a private list's archives and read the mail text while not logged in. Shouldn't the private archive be hidden from anonymous users?
Simon
Mailman-users mailing list mailman-users@mailman3.org https://lists.mailman3.org/mailman3/lists/mailman-users.mailman3.org/
Where are you seeing this behaviour?
What version of Hyperkitty are you using?
Can you check what is stored in the database of Hyperkitty?
python manage.py shell
from hyperkitty.models.mailinglist import MailingList
MailingList.objects.all().values_list('name', 'archive_policy')
If the value for your list is 1 then we have a problem. 2 is for public archives and 0 should never be archived.
It's possible that you changed the archive_policy of a list and the change wasn't reflected in Hyperkitty.
For such a possibly sensitive issue, you should open a hidden issue in Gitlab ;-)