aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/archivers/remote.py
blob: 388de3a0663577b0e257fa0a8401b549543b9132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Archives messages by sending to django-pgpmailman,
an extension on top of Postorius and HyperKitty.
"""

from mailman.interfaces.archiver import IArchiver
from public import public
from zope.interface import implementer


@public
@implementer(IArchiver)
class RemoteArchiver:
    pass