From 706e3ece34a5f08f88e1b153224f071f574854ff Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 15 Jul 2009 12:10:19 -0400 Subject: [PATCH] Added some comments to send_pgp_mime --- interfaces/email/interactive/send_pgp_mime | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/interfaces/email/interactive/send_pgp_mime b/interfaces/email/interactive/send_pgp_mime index 9089170..6b25ba7 100644 --- a/interfaces/email/interactive/send_pgp_mime +++ b/interfaces/email/interactive/send_pgp_mime @@ -3,12 +3,17 @@ # Copyright """ Python module and command line tool for sending pgp/mime email. + +Mostly uses subprocess to call gpg and a sendmail-compatible mailer +(defaults to msmtp). If you lack gpg, either don't use the encryption +functions or adjust the pgp_* commands. If you don't use msmtp, +adjust the sendmail command. """ from cStringIO import StringIO import os import re -#import GnuPGInterface +#import GnuPGInterface # Maybe should use this instead of subprocess import smtplib import subprocess import sys -- 2.26.2