diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-15 12:10:19 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-15 12:10:19 -0400 |
commit | dbbbb08aa74fbff314b1d99e653deb8d49f95ace (patch) | |
tree | 6ad529c9824fe5ea87be57bf904bec90af2e74c4 /interfaces | |
parent | bf6a5fdf33daabc0aa8e05b75d0a24cd3abbbdf6 (diff) | |
download | bugseverywhere-dbbbb08aa74fbff314b1d99e653deb8d49f95ace.tar.gz |
Added some comments to send_pgp_mime
Diffstat (limited to 'interfaces')
-rw-r--r-- | interfaces/email/interactive/send_pgp_mime | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/interfaces/email/interactive/send_pgp_mime b/interfaces/email/interactive/send_pgp_mime index 1ce9636..8aa86fa 100644 --- a/interfaces/email/interactive/send_pgp_mime +++ b/interfaces/email/interactive/send_pgp_mime @@ -17,12 +17,17 @@ # 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 |