diff options
Diffstat (limited to 'src/mailman_pgp/rules/encryption.py')
| -rw-r--r-- | src/mailman_pgp/rules/encryption.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mailman_pgp/rules/encryption.py b/src/mailman_pgp/rules/encryption.py index b2deb8d..cabd62c 100644 --- a/src/mailman_pgp/rules/encryption.py +++ b/src/mailman_pgp/rules/encryption.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License along with # this program. If not, see <http://www.gnu.org/licenses/>. -"""""" +"""Encryption moderation rule for the pgp-posting-chain.""" from mailman.core.i18n import _ from mailman.interfaces.rules import IRule @@ -26,10 +26,12 @@ from zope.interface import implementer @public @implementer(IRule) class Encryption: - """""" + """The encryption moderation rule.""" name = 'encryption' - description = _("""""") + description = _( + """A rule which jumps to the moderation chain, + when the incoming runner instructs it to.""") record = True def check(self, mlist, msg, msgdata): |
