Added some comments to send_pgp_mime
[pgp-mime.git] / interfaces / email / interactive / send_pgp_mime
index 90891709c9777190fe6bd5695cda00f0fd3cb1dc..6b25ba7dd233535e203e82a5175f7c944b7358f8 100644 (file)
@@ -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