Added some comments to send_pgp_mime
authorW. Trevor King <wking@drexel.edu>
Wed, 15 Jul 2009 16:10:19 +0000 (12:10 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 15 Jul 2009 16:10:19 +0000 (12:10 -0400)
interfaces/email/interactive/send_pgp_mime

index 1ce963621c61ebff3e9d6a7332dd8b15b4888a9e..8aa86fa268690096c797e5a2452b171270bcb8ce 100644 (file)
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 """
 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