check for signature validity
[edward.git] / edward
CommitLineData
0bec96d6 1#! /usr/bin/env python3
ff4136c7 2# -*- coding: utf-8 -*-
0bec96d6
AE
3"""*********************************************************************
4* Edward is free software: you can redistribute it and/or modify *
5* it under the terms of the GNU Affero Public License as published by *
6* the Free Software Foundation, either version 3 of the License, or *
7* (at your option) any later version. *
8* *
9* Edward is distributed in the hope that it will be useful, *
10* but WITHOUT ANY WARRANTY; without even the implied warranty of *
11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12* GNU Affero Public License for more details. *
13* *
14* You should have received a copy of the GNU Affero Public License *
15* along with Edward. If not, see <http://www.gnu.org/licenses/>. *
16* *
17* Copyright (C) 2014-2015 Andrew Engelbrecht (AGPLv3+) *
18* Copyright (C) 2014 Josh Drake (AGPLv3+) *
19* Copyright (C) 2014 Lisa Marie Maginnis (AGPLv3+) *
8bdfb6d4
AE
20* Copyright (C) 2009-2015 Tails developers <tails@boum.org> ( GPLv3+) *
21* Copyright (C) 2009 W. Trevor King <wking@drexel.edu> ( GPLv2+) *
0bec96d6
AE
22* *
23* Special thanks to Josh Drake for writing the original edward bot! :) *
24* *
25************************************************************************
26
a5385c04 27Code sourced from these projects:
0bec96d6 28
8bdfb6d4
AE
29 * http://agpl.fsf.org/emailselfdefense.fsf.org/edward/CURRENT/edward.tar.gz
30 * https://git-tails.immerda.ch/whisperback/tree/whisperBack/encryption.py?h=feature/python3
31 * http://www.physics.drexel.edu/~wking/code/python/send_pgp_mime
0bec96d6
AE
32"""
33
0bec96d6
AE
34import re
35import io
40c37ab3 36import os
2f4ce2b2 37import sys
0fd3389f 38import enum
2f4ce2b2 39import gpgme
adcef2f7 40import importlib
60ccbaf4 41import subprocess
0bec96d6 42
8bdfb6d4
AE
43import email.parser
44import email.message
45import email.encoders
46
e5dd6f23 47from email.mime.text import MIMEText
8bdfb6d4
AE
48from email.mime.multipart import MIMEMultipart
49from email.mime.application import MIMEApplication
50from email.mime.nonmultipart import MIMENonMultipart
51
40c37ab3 52import edward_config
c96f3837 53
5b0e37d3 54langs = ["de", "el", "en", "fr", "ja", "pt-br", "ro", "ru", "tr"]
adcef2f7 55
def9196c
AE
56"""This list contains the abbreviated names of reply languages available to
57edward."""
58
0fd3389f
AE
59class TxtType (enum.Enum):
60 text = 0
61 message = 1
62 pubkey = 2
63 detachedsig = 3
64 signature = 4
def9196c 65
0fd3389f 66
2f4102b9 67match_pairs = [(TxtType.message,
56578eaf 68 '-----BEGIN PGP MESSAGE-----.*?-----END PGP MESSAGE-----'),
0fd3389f 69 (TxtType.pubkey,
56578eaf 70 '-----BEGIN PGP PUBLIC KEY BLOCK-----.*?-----END PGP PUBLIC KEY BLOCK-----'),
0fd3389f 71 (TxtType.detachedsig,
38738401 72 '-----BEGIN PGP SIGNATURE-----.*?-----END PGP SIGNATURE-----')]
56578eaf 73
def9196c
AE
74"""This list of tuples matches query names with re.search() queries used
75to find GPG data for edward to process."""
76
56578eaf
AE
77
78class EddyMsg (object):
def9196c
AE
79 """
80 The EddyMsg class represents relevant parts of a mime message.
81
82 The represented message can be single-part or multi-part.
83
84 'multipart' is set to True if there are multiple mime parts.
85
86 'subparts' points to a list of mime sub-parts if it is a multi-part
87 message. Otherwise it points to an empty list.
88
6d8faaa7
AE
89 'payload_bytes' is a binary representation of the mime part before header
90 removal and message decoding.
def9196c
AE
91
92 'payload_pieces' is a list of objects containing strings that when strung
93 together form the fully-decoded string representation of the mime part.
94
def9196c
AE
95 The 'filename', 'content_type' and 'description_list' come from the mime
96 part parameters.
97 """
98
7d0b91d2
AE
99 multipart = False
100 subparts = []
56578eaf 101
7d0b91d2
AE
102 payload_bytes = None
103 payload_pieces = []
56578eaf 104
7d0b91d2
AE
105 filename = None
106 content_type = None
107 description_list = None
56578eaf
AE
108
109
110class PayloadPiece (object):
def9196c
AE
111 """
112 PayloadPiece represents a complte or sub-section of a mime part.
113
114 Instances of this class are often strung together within one or more arrays
115 pointed to by each instance of the EddyMsg class.
116
0fd3389f
AE
117 'piece_type' refers to an enum whose value describes the content of
118 'string'. Examples include TxtType.pubkey, for public keys, and
119 TxtType.message, for encrypted data (or armored signatures until they are
120 known to be such.) Some of the names derive from the header and footer of
121 each of these ascii-encoded gpg blocks.
def9196c
AE
122
123 'string' contains some string of text, such as non-GPG text, an encrypted
124 block of text, a signature, or a public key.
125
126 'gpg_data' points to any instances of GPGData that have been created based
127 on the contents of 'string'.
128 """
129
7d0b91d2
AE
130 piece_type = None
131 string = None
132 gpg_data = None
56578eaf
AE
133
134
38738401 135class GPGData (object):
def9196c
AE
136 """
137 GPGData holds info from decryption, sig. verification, and/or pub. keys.
138
139 Instances of this class contain decrypted information, signature
140 fingerprints and/or fingerprints of processed and imported public keys.
141
142 'decrypted' is set to True if 'plainobj' was created from encrypted data.
143
144 'plainobj' points to any decrypted, or signed part of, a GPG signature. It
145 is intended to be an instance of the EddyMsg class.
146
147 'sigs' is a list of fingerprints of keys used to sign the data in plainobj.
148
9af26cb8
AE
149 'sig_failure' is a boolean noting whether any signatures failed to verify.
150
def9196c
AE
151 'keys' is a list of fingerprints of keys obtained in public key blocks.
152 """
153
7d0b91d2
AE
154 decrypted = False
155
156 plainobj = None
157 sigs = []
9af26cb8 158 sig_failure = False
7d0b91d2 159 keys = []
38738401 160
38738401 161
d873ff48 162class ReplyInfo (object):
def9196c
AE
163 """
164 ReplyInfo contains details that edward uses in generating its reply.
165
166 Instances of this class contain information about whether a message was
167 successfully encrypted or signed, and whether a public key was attached, or
168 retrievable, from the local GPG store. It stores the fingerprints of
169 potential encryption key candidates and the message (if any at all) to
170 quote in edward's reply.
171
172 'replies' points one of the dictionaries of translated replies.
173
174 'target_key' refers to the fingerprint of a key used to sign encrypted
175 data. This is the preferred key, if it is set, and if is available.
176
177 'fallback_target_key' referst to the fingerprint of a key used to sign
178 unencrypted data; alternatively it may be a public key attached to the
179 message.
180
181 'msg_to_quote' refers to the part of a message which edward should quote in
182 his reply. This should remain as None if there was no encrypted and singed
183 part. This is to avoid making edward a service for decrypting other
184 people's messages to edward.
185
186 'success_decrypt' is set to True if edward could decrypt part of the
187 message.
188
189 'failed_decrypt' is set to True if edward failed to decrypt part of the
190 message.
191
192 'publick_key_received' is set to True if edward successfully imported a
193 public key.
194
195 'no_public_key' is set to True if edward doesn't have a key to encrypt to
196 when replying to the user.
197
198 'sig_success' is set to True if edward could to some extent verify the
199 signature of a signed part of the message to edward.
200
201 'sig_failure' is set to True if edward failed to some extent verify the
202 signature of a signed part of the message to edward.
203 """
204
7d0b91d2 205 replies = None
6906d46d 206
7d0b91d2
AE
207 target_key = None
208 fallback_target_key = None
209 msg_to_quote = ""
d873ff48 210
7d0b91d2
AE
211 success_decrypt = False
212 failed_decrypt = False
213 public_key_received = False
214 no_public_key = False
215 sig_success = False
216 sig_failure = False
d873ff48 217
38738401 218
0bec96d6
AE
219def main ():
220
def9196c
AE
221 """
222 This is the main function for edward, a GPG reply bot.
223
224 Edward responds to GPG-encrypted and signed mail, encrypting and signing
225 the response if the user's public key is, or was, included in the message.
226
227 Args:
228 None
229
230 Returns:
a3d6aff8 231 Nothing
def9196c
AE
232
233 Pre:
234 Mime or plaintext email passing in through standard input. Portions of
235 the email may be encrypted. If the To: address contains the text
236 "edward-ja", then the reply will contain a reply written in the
237 Japanese language. There are other languages as well. The default
238 language is English.
239
240 Post:
241 A reply email will be printed to standard output. The contents of the
242 reply email depends on whether the original email was encrypted or not,
243 has or doesn't have a signature, whether a public key used in the
244 original message is provided or locally stored, and the language
245 implied by the To: address in the original email.
246 """
247
60ccbaf4 248 print_reply_only = handle_args()
0bec96d6 249
0a064403
AE
250 gpgme_ctx = get_gpg_context(edward_config.gnupghome,
251 edward_config.sign_with_key)
252
c96f3837 253 email_text = sys.stdin.read()
adcef2f7
AE
254 email_struct = parse_pgp_mime(email_text, gpgme_ctx)
255
256 email_to, email_from, email_subject = email_to_from_subject(email_text)
60ccbaf4 257 lang, reply_from = import_lang_pick_address(email_to, edward_config.hostname)
fafa21c3 258
d873ff48
AE
259 replyinfo_obj = ReplyInfo()
260 replyinfo_obj.replies = lang.replies
261
262 prepare_for_reply(email_struct, replyinfo_obj)
013f7cb8 263 encrypt_to_key = get_key_from_fp(replyinfo_obj, gpgme_ctx)
d873ff48 264 reply_plaintext = write_reply(replyinfo_obj)
adcef2f7 265
2007103e
AE
266 reply_mime = generate_encrypted_mime(reply_plaintext, email_from, \
267 email_subject, encrypt_to_key,
268 gpgme_ctx)
1fccb295 269
60ccbaf4
AE
270 if print_reply_only == True:
271 print(reply_mime)
272 else:
273 send_reply(reply_mime, email_subject, email_from, reply_from)
c96f3837 274
0bec96d6 275
0a064403 276def get_gpg_context (gnupghome, sign_with_key_fp):
a3d6aff8
AE
277 """
278 This function returns the GPG context needed for encryption and signing.
279
280 The context is needed by other functions which use GPG functionality.
281
282 Args:
283 gnupghome: The path to "~/.gnupg/" or its alternative.
284 sign_with_key: The fingerprint of the key to sign with
285
286 Returns:
287 A gpgme context to be used for GPG functions.
288
289 Post:
290 the 'armor' flag is set to True and the list of signing keys contains
291 the single specified key
292 """
0a064403
AE
293
294 os.environ['GNUPGHOME'] = gnupghome
295
296 gpgme_ctx = gpgme.Context()
297 gpgme_ctx.armor = True
298
299 try:
300 sign_with_key = gpgme_ctx.get_key(sign_with_key_fp)
5f6f32b1 301 except gpgme.GpgmeError:
0a064403
AE
302 error("unable to load signing key. is the gnupghome "
303 + "and signing key properly set in the edward_config.py?")
304 exit(1)
305
306 gpgme_ctx.signers = [sign_with_key]
307
308 return gpgme_ctx
309
310
38738401 311def parse_pgp_mime (email_text, gpgme_ctx):
a3d6aff8
AE
312 """Parses the email for mime payloads and decrypts/verfies signatures.
313
314 This function creates a representation of a mime or plaintext email with
315 the EddyMsg class. It then splits each mime payload into one or more pieces
316 which may be plain text or GPG data. It then decrypts encrypted parts and
317 does some very basic signature verification on those parts.
318
319 Args:
320 email_text: an email message in string format
321 gpgme_ctx: a gpgme context
322
323 Returns:
324 A message as an instance of EddyMsg
325
326 Post:
327 the returned EddyMsg instance has split, decrypted, verified and pubkey
328 imported payloads
329 """
394a1476
AE
330
331 email_struct = email.parser.Parser().parsestr(email_text)
332
928e3819
AE
333 eddymsg_obj = parse_mime(email_struct)
334 split_payloads(eddymsg_obj)
335 gpg_on_payloads(eddymsg_obj, gpgme_ctx)
8bb4b0d5 336
928e3819 337 return eddymsg_obj
0bec96d6 338
0bec96d6 339
56578eaf 340def parse_mime(msg_struct):
a3d6aff8
AE
341 """Translates python's email.parser format into an EddyMsg format
342
343 If the message is multi-part, then a recursive object is created, where
344 each sub-part is also a EddyMsg instance.
345
346 Args:
347 msg_struct: an email parsed with email.parser.Parser(), which can be
348 multi-part
349
350 Returns:
351 an instance of EddyMsg, potentially a recursive one.
352 """
0bec96d6 353
928e3819 354 eddymsg_obj = EddyMsg()
8bb4b0d5 355
56578eaf
AE
356 if msg_struct.is_multipart() == True:
357 payloads = msg_struct.get_payload()
0bec96d6 358
928e3819
AE
359 eddymsg_obj.multipart = True
360 eddymsg_obj.subparts = list(map(parse_mime, payloads))
dd11a483 361
56578eaf 362 else:
928e3819 363 eddymsg_obj = get_subpart_data(msg_struct)
394a1476 364
928e3819 365 return eddymsg_obj
c267c233 366
80119cab 367
2f4102b9 368def scan_and_split (payload_piece, match_name, pattern):
a3d6aff8
AE
369 """This splits the payloads of an EddyMsg object into GPG and text parts.
370
371 An EddyMsg object's payload_pieces starts off as a list containing a single
372 PayloadPiece object. This function returns a list of these objects which
373 have been split into GPG data and regular text, if such splits need to be/
374 can be made.
375
376 Args:
377 payload_piece: a single payload or a split part of a payload
2f4102b9 378 match_name: the type of data to try to spit out from the payload piece
a3d6aff8
AE
379 pattern: the search pattern to be used for finding that type of data
380
381 Returns:
382 a list of objects of the PayloadPiece class, in the order that the
383 string part of payload_piece originally was, broken up according to
384 matches specified by 'pattern'.
385 """
cf75de65 386
a5d37d44 387 # don't try to re-split pieces containing gpg data
0fd3389f 388 if payload_piece.piece_type != TxtType.text:
a5d37d44
AE
389 return [payload_piece]
390
56578eaf
AE
391 flags = re.DOTALL | re.MULTILINE
392 matches = re.search("(?P<beginning>.*?)(?P<match>" + pattern +
393 ")(?P<rest>.*)", payload_piece.string, flags=flags)
86663388 394
56578eaf
AE
395 if matches == None:
396 pieces = [payload_piece]
c96f3837 397
56578eaf 398 else:
d437f8b2 399
56578eaf
AE
400 beginning = PayloadPiece()
401 beginning.string = matches.group('beginning')
402 beginning.piece_type = payload_piece.piece_type
d437f8b2 403
56578eaf
AE
404 match = PayloadPiece()
405 match.string = matches.group('match')
2f4102b9 406 match.piece_type = match_name
d437f8b2 407
56578eaf
AE
408 rest = PayloadPiece()
409 rest.string = matches.group('rest')
410 rest.piece_type = payload_piece.piece_type
d437f8b2 411
2f4102b9 412 more_pieces = scan_and_split(rest, match_name, pattern)
4615b156 413 pieces = [beginning, match ] + more_pieces
d437f8b2 414
56578eaf 415 return pieces
d437f8b2 416
d437f8b2 417
56578eaf 418def get_subpart_data (part):
a3d6aff8
AE
419 """This function grabs information from a single part mime object.
420
421 It copies needed data from a single part email.parser.Parser() object over
422 to an EddyMsg object.
423
424 Args:
425 part: a non-multi-part mime.parser.Parser() object
426
427 Returns:
428 a single-part EddyMsg() object
429 """
0bec96d6 430
6d8faaa7
AE
431 charset = part.get_content_charset()
432 mime_decoded_bytes = part.get_payload(decode=True)
0bec96d6 433
6d8faaa7
AE
434 obj = EddyMsg()
435 obj.payload_bytes = part.as_bytes()
56578eaf
AE
436
437 obj.filename = part.get_filename()
438 obj.content_type = part.get_content_type()
439 obj.description_list = part['content-description']
440
441 # your guess is as good as a-myy-ee-ine...
6d8faaa7
AE
442 if charset == None:
443 charset = 'utf-8'
56578eaf 444
6d8faaa7 445 if mime_decoded_bytes != None:
0eb75d9c
AE
446 try:
447 payload = PayloadPiece()
6d8faaa7 448 payload.string = mime_decoded_bytes.decode(charset)
0fd3389f 449 payload.piece_type = TxtType.text
0eb75d9c
AE
450
451 obj.payload_pieces = [payload]
452 except UnicodeDecodeError:
453 pass
56578eaf
AE
454
455 return obj
456
457
928e3819 458def do_to_eddys_pieces (function_to_do, eddymsg_obj, data):
a3d6aff8
AE
459 """A function which maps another function onto a message's subparts.
460
461 This is a higer-order function which recursively performs a specified
462 function on each subpart of a multi-part message. Each single-part sub-part
463 has the function applied to it. This function also works if the part passed
464 in is single-part.
465
466 Args:
467 function_to_do: function to perform on sub-parts
468 eddymsg_obj: a single part or multi-part EddyMsg object
469 data: a second argument to pass to 'function_to_do'
470
471 Returns:
472 Nothing
473
474 Post:
475 The passed-in EddyMsg object is transformed recursively on its
476 sub-parts according to 'function_to_do'.
477 """
56578eaf 478
928e3819
AE
479 if eddymsg_obj.multipart == True:
480 for sub in eddymsg_obj.subparts:
d873ff48 481 do_to_eddys_pieces(function_to_do, sub, data)
394a1476 482 else:
928e3819 483 function_to_do(eddymsg_obj, data)
dd11a483
AE
484
485
928e3819 486def split_payloads (eddymsg_obj):
a3d6aff8
AE
487 """Splits all (sub-)payloads of a message into GPG data and regular text.
488
489 Recursively performs payload splitting on all sub-parts of an EddyMsg
490 object into the various GPG data types, such as GPG messages, public key
491 blocks and signed text.
492
493 Args:
494 eddymsg_obj: an instance of EddyMsg
495
496 Returns:
497 Nothing
498
499 Pre:
500 The EddyMsg object has payloads that are unsplit (by may be split)..
501
502 Post:
503 The EddyMsg object's payloads are all split into GPG and non-GPG parts.
504 """
a5d37d44 505
2f4102b9
AE
506 for match_pair in match_pairs:
507 do_to_eddys_pieces(split_payload_pieces, eddymsg_obj, match_pair)
a5d37d44 508
a5d37d44 509
2f4102b9 510def split_payload_pieces (eddymsg_obj, match_pair):
a3d6aff8
AE
511 """A helper function for split_payloads(); works on PayloadPiece objects.
512
513 This function splits up PayloadPiece objects into multipe PayloadPiece
514 objects and replaces the EddyMsg object's previous list of payload pieces
515 with the new split up one.
516
517 Args:
518 eddymsg_obj: a single-part EddyMsg object.
2f4102b9 519 match_pair: a tuple from the match_pairs list, which specifies a match
a3d6aff8
AE
520 name and a match pattern.
521
522 Returns:
523 Nothing
524
525 Pre:
526 The payload piece(s) of an EddyMsg object may be already split or
527 unsplit.
528
529 Post:
530 The EddyMsg object's payload piece(s) are split into a list of pieces
2f4102b9 531 if matches of the match_pair are found.
a3d6aff8 532 """
a5d37d44 533
2f4102b9 534 (match_name, pattern) = match_pair
a5d37d44
AE
535
536 new_pieces_list = []
928e3819 537 for piece in eddymsg_obj.payload_pieces:
a5d37d44
AE
538 new_pieces_list += scan_and_split(piece, match_name, pattern)
539
928e3819 540 eddymsg_obj.payload_pieces = new_pieces_list
a5d37d44
AE
541
542
928e3819 543def gpg_on_payloads (eddymsg_obj, gpgme_ctx, prev_parts=[]):
a3d6aff8
AE
544 """Performs GPG operations on the GPG parts of the message
545
546 This function decrypts text, verifies signatures, and imports public keys
547 included in an email.
548
549 Args:
550 eddymsg_obj: an EddyMsg object with its payload_pieces split into GPG
551 and non-GPG sections by split_payloads()
552 gpgme_ctx: a gpgme context
553
554 prev_parts: a list of mime parts that occur before the eddymsg_obj
555 part, under the same multi-part mime part. This is used for
556 verifying detached signatures. For the root mime part, this should
557 be an empty list, which is the default value if this paramater is
558 omitted.
559
560 Return:
561 Nothing
562
563 Pre:
564 eddymsg_obj should have its payloads split into gpg and non-gpg pieces.
565
566 Post:
567 Decryption, verification and key imports occur. the gpg_data member of
568 PayloadPiece objects get filled in with GPGData objects.
569 """
38738401 570
928e3819 571 if eddymsg_obj.multipart == True:
101d54a8 572 prev_parts=[]
928e3819 573 for sub in eddymsg_obj.subparts:
101d54a8
AE
574 gpg_on_payloads (sub, gpgme_ctx, prev_parts)
575 prev_parts += [sub]
38738401 576
d873ff48 577 return
38738401 578
928e3819 579 for piece in eddymsg_obj.payload_pieces:
38738401 580
0fd3389f 581 if piece.piece_type == TxtType.text:
38738401
AE
582 # don't transform the plaintext.
583 pass
584
0fd3389f 585 elif piece.piece_type == TxtType.message:
9af26cb8 586 (plaintext, sigs, sig_failure) = decrypt_block(piece.string, gpgme_ctx)
38738401
AE
587
588 if plaintext:
589 piece.gpg_data = GPGData()
b23e171d 590 piece.gpg_data.decrypted = True
38738401 591 piece.gpg_data.sigs = sigs
9af26cb8 592 piece.gpg_data.sig_failure = sig_failure
38738401
AE
593 # recurse!
594 piece.gpg_data.plainobj = parse_pgp_mime(plaintext, gpgme_ctx)
3a753fd0
AE
595 continue
596
597 # if not encrypted, check to see if this is an armored signature.
9af26cb8 598 (plaintext, sigs, sig_failure) = verify_sig_message(piece.string, gpgme_ctx)
3a753fd0
AE
599
600 if plaintext:
0fd3389f 601 piece.piece_type = TxtType.signature
3a753fd0
AE
602 piece.gpg_data = GPGData()
603 piece.gpg_data.sigs = sigs
9af26cb8 604 piece.gpg_data.sig_failure = sig_failure
3a753fd0
AE
605 # recurse!
606 piece.gpg_data.plainobj = parse_pgp_mime(plaintext, gpgme_ctx)
129543c3 607
0fd3389f 608 elif piece.piece_type == TxtType.pubkey:
f8ee6bd3 609 key_fps = add_gpg_key(piece.string, gpgme_ctx)
8f61c66a 610
f8ee6bd3 611 if key_fps != []:
8f61c66a 612 piece.gpg_data = GPGData()
f8ee6bd3 613 piece.gpg_data.keys = key_fps
129543c3 614
0fd3389f 615 elif piece.piece_type == TxtType.detachedsig:
101d54a8 616 for prev in prev_parts:
9af26cb8 617 (sig_fps, sig_failure) = verify_detached_signature(piece.string, prev.payload_bytes, gpgme_ctx)
101d54a8 618
6d240f68
AE
619 if sig_fps != []:
620 piece.gpg_data = GPGData()
621 piece.gpg_data.sigs = sig_fps
9af26cb8 622 piece.gpg_data.sig_failure = sig_failure
6d240f68
AE
623 piece.gpg_data.plainobj = prev
624 break
7e18f14d 625
38738401
AE
626 else:
627 pass
628
629
928e3819 630def prepare_for_reply (eddymsg_obj, replyinfo_obj):
67691346
AE
631 """Updates replyinfo_obj with info on the message's GPG success/failures
632
633 This function marks replyinfo_obj with information about whether encrypted
634 text in eddymsg_obj was successfully decrypted, signatures were verified
635 and whether a public key was found or not.
636
637 Args:
638 eddymsg_obj: a message in the EddyMsg format
639 replyinfo_obj: an instance of ReplyInfo
640
641 Returns:
642 Nothing
643
644 Pre:
645 eddymsg_obj has had its gpg_data created by gpg_on_payloads
646
647 Post:
648 replyinfo_obj has been updated with info about decryption/sig
649 verififcation status, etc. However the desired key isn't imported until
650 later, so the success or failure of that updates the values set here.
651 """
dd11a483 652
928e3819 653 do_to_eddys_pieces(prepare_for_reply_pieces, eddymsg_obj, replyinfo_obj)
56578eaf 654
928e3819 655def prepare_for_reply_pieces (eddymsg_obj, replyinfo_obj):
67691346
AE
656 """A helper function for prepare_for_reply
657
658 It updates replyinfo_obj with GPG success/failure information, when
659 supplied a single-part EddyMsg object.
660
661 Args:
662 eddymsg_obj: a single-part message in the EddyMsg format
663 replyinfo_obj: an object which holds information about the message's
664 GPG status
665
666 Returns:
667 Nothing
668
669 Pre:
670 eddymsg_obj is a single-part message. (it may be a part of a multi-part
671 message.) It has had its gpg_data created by gpg_on_payloads if it has
672 gpg data.
673
674 Post:
675 replyinfo_obj has been updated with gpg success/failure information
676 """
56578eaf 677
928e3819 678 for piece in eddymsg_obj.payload_pieces:
0fd3389f 679 if piece.piece_type == TxtType.text:
d873ff48
AE
680 # don't quote the plaintext part.
681 pass
682
0fd3389f 683 elif piece.piece_type == TxtType.message:
05683768 684 prepare_for_reply_message(piece, replyinfo_obj)
d873ff48 685
0fd3389f 686 elif piece.piece_type == TxtType.pubkey:
05683768 687 prepare_for_reply_pubkey(piece, replyinfo_obj)
6906d46d 688
0fd3389f
AE
689 elif (piece.piece_type == TxtType.detachedsig) \
690 or (piece.piece_type == TxtType.signature):
05683768 691 prepare_for_reply_sig(piece, replyinfo_obj)
d873ff48 692
d873ff48 693
05683768 694def prepare_for_reply_message (piece, replyinfo_obj):
67691346
AE
695 """Helper function for prepare_for_reply()
696
697 This function is called when the piece_type of a payload piece is
9af26cb8
AE
698 TxtType.message, or GPG Message block. This should be encrypted text. If
699 the encryted block is correclty signed, a sig will be attached to
700 .target_key unless there is already one there.
67691346
AE
701
702 Args:
703 piece: a PayloadPiece object.
704 replyinfo_obj: object which gets updated with decryption status, etc.
705
706
707 Returns:
708 Nothing
709
710 Pre:
0fd3389f 711 the piece.payload_piece value should be TxtType.message.
67691346
AE
712
713 Post:
714 replyinfo_obj gets updated with decryption status, signing status and a
715 potential signing key.
716 """
44fe39b7 717
05683768
AE
718 if piece.gpg_data == None:
719 replyinfo_obj.failed_decrypt = True
720 return
721
5c40e676 722 replyinfo_obj.success_decrypt = True
05683768
AE
723
724 # we already have a key (and a message)
725 if replyinfo_obj.target_key != None:
726 return
727
728 if piece.gpg_data.sigs != []:
729 replyinfo_obj.target_key = piece.gpg_data.sigs[0]
59003069 730 replyinfo_obj.sig_success = True
05683768
AE
731 get_signed_part = False
732 else:
9af26cb8
AE
733 if piece.gpg_data.sig_failure == True:
734 replyinfo_obj.sig_failure = True
735
05683768
AE
736 # only include a signed message in the reply.
737 get_signed_part = True
738
8c3e5397 739 flatten_decrypted_payloads(piece.gpg_data.plainobj, replyinfo_obj, get_signed_part)
05683768
AE
740
741 # to catch public keys in encrypted blocks
742 prepare_for_reply(piece.gpg_data.plainobj, replyinfo_obj)
743
744
745def prepare_for_reply_pubkey (piece, replyinfo_obj):
67691346
AE
746 """Helper function for prepare_for_reply(). Marks pubkey import status.
747
748 Marks replyinfo_obj with pub key import status.
749
750 Args:
751 piece: a PayloadPiece object
752 replyinfo_obj: a ReplyInfo object
753
754 Pre:
0fd3389f 755 piece.piece_type should be set to TxtType.pubkey .
67691346
AE
756
757 Post:
758 replyinfo_obj has its fields updated.
759 """
05683768
AE
760
761 if piece.gpg_data == None or piece.gpg_data.keys == []:
762 replyinfo_obj.no_public_key = True
763 else:
764 replyinfo_obj.public_key_received = True
765
3ceb92e5
AE
766 # prefer public key as a fallback for the encrypted reply
767 replyinfo_obj.fallback_target_key = piece.gpg_data.keys[0]
05683768
AE
768
769
770def prepare_for_reply_sig (piece, replyinfo_obj):
67691346
AE
771 """Helper function for prepare_for_reply(). Marks sig verification status.
772
773 Marks replyinfo_obj with signature verification status.
774
775 Args:
776 piece: a PayloadPiece object
777 replyinfo_obj: a ReplyInfo object
778
779 Pre:
0fd3389f
AE
780 piece.piece_type should be set to TxtType.signature, or
781 TxtType.detachedsig .
67691346
AE
782
783 Post:
784 replyinfo_obj has its fields updated.
785 """
05683768
AE
786
787 if piece.gpg_data == None or piece.gpg_data.sigs == []:
788 replyinfo_obj.sig_failure = True
789 else:
790 replyinfo_obj.sig_success = True
791
9af26cb8
AE
792 if piece.gpg_data.sig_failure == True:
793 replyinfo_obj.sig_failure = True
794
05683768
AE
795 if replyinfo_obj.fallback_target_key == None:
796 replyinfo_obj.fallback_target_key = piece.gpg_data.sigs[0]
6906d46d
AE
797
798
8c3e5397
AE
799def flatten_decrypted_payloads (eddymsg_obj, replyinfo_obj, get_signed_part):
800 """For creating a string representation of a signed, encrypted part.
39e2c525 801
8c3e5397
AE
802 When given a decrypted payload, it will add either the plaintext or signed
803 plaintext to the reply message, depeding on 'get_signed_part'. This is
804 useful for ensuring that the reply message only comes from a signed and
805 ecrypted GPG message. It also sets the target_key for encrypting the reply
806 if it's told to get signed text only.
39e2c525
AE
807
808 Args:
809 eddymsg_obj: the message in EddyMsg format created by decrypting GPG
810 text
8c3e5397
AE
811 replyinfo_obj: a ReplyInfo object for holding the message to quote and
812 the target_key to encrypt to.
39e2c525
AE
813 get_signed_part: True if we should only include text that contains a
814 further signature. If False, then include plain text.
815
816 Returns:
8c3e5397 817 Nothing
39e2c525
AE
818
819 Pre:
820 The EddyMsg instance passed in should be a piece.gpg_data.plainobj
821 which represents decrypted text. It may or may not be signed on that
822 level.
d873ff48 823
8c3e5397
AE
824 Post:
825 the ReplyInfo instance may have a new 'target_key' set and its
826 'msg_to_quote' will be updated with (possibly signed) plaintext, if any
827 could be found.
828 """
d873ff48 829
0aa88c27 830 if eddymsg_obj == None:
8c3e5397 831 return
0aa88c27 832
0402995a 833 # recurse on multi-part mime
928e3819
AE
834 if eddymsg_obj.multipart == True:
835 for sub in eddymsg_obj.subparts:
8c3e5397 836 flatten_decrypted_payloads(sub, replyinfo_obj, get_signed_part)
d873ff48 837
928e3819 838 for piece in eddymsg_obj.payload_pieces:
0402995a 839 if (get_signed_part):
0fd3389f
AE
840 if ((piece.piece_type == TxtType.detachedsig) \
841 or (piece.piece_type == TxtType.signature)) \
0402995a 842 and (piece.gpg_data != None):
8c3e5397
AE
843 flatten_decrypted_payloads(piece.gpg_data.plainobj, replyinfo_obj, False)
844 replyinfo_obj.target_key = piece.gpg_data.sigs[0]
c3d417bf
AE
845 break
846 else:
0fd3389f 847 if piece.piece_type == TxtType.text:
8c3e5397 848 replyinfo_obj.msg_to_quote += piece.string
d873ff48
AE
849
850
013f7cb8 851def get_key_from_fp (replyinfo_obj, gpgme_ctx):
39e2c525
AE
852 """Obtains a public key object from a key fingerprint
853
854 If the .target_key is not set, then we use .fallback_target_key.
855
856 Args:
857 replyinfo_obj: ReplyInfo instance
858 gpgme_ctx: the gpgme context
859
860 Return:
861 The key object of the key of either the target_key or the fallback one
862 if .target_key is not set. If the key cannot be loaded, then return
863 None.
864
865 Pre:
866 Loading a key requires that we have the public key imported. This
867 requires that they email contains the pub key block, or that it was
868 previously sent to edward.
869
870 Post:
871 If the key cannot be loaded, then the replyinfo_obj is marked for
872 having no public key available.
873 """
013f7cb8 874
dc24daf1
AE
875 if replyinfo_obj.target_key == None:
876 replyinfo_obj.target_key = replyinfo_obj.fallback_target_key
877
013f7cb8
AE
878 if replyinfo_obj.target_key != None:
879 try:
880 encrypt_to_key = gpgme_ctx.get_key(replyinfo_obj.target_key)
881 return encrypt_to_key
882
5f6f32b1 883 except gpgme.GpgmeError:
013f7cb8
AE
884 pass
885
886 # no available key to use
887 replyinfo_obj.target_key = None
888 replyinfo_obj.fallback_target_key = None
889
890 replyinfo_obj.no_public_key = True
891 replyinfo_obj.public_key_received = False
892
893 return None
894
895
d873ff48 896def write_reply (replyinfo_obj):
39e2c525
AE
897 """Write the reply email body about the GPG successes/failures.
898
899 The reply is about whether decryption, sig verification and key
900 import/loading was successful or failed. If text was successfully decrypted
901 and verified, then the first instance of such text will be included in
902 quoted form.
903
904 Args:
905 replyinfo_obj: contains details of GPG processing status
906
907 Returns:
908 the plaintext message to be sent to the user
909
910 Pre:
911 replyinfo_obj should be populated with info about GPG processing status.
912 """
d873ff48
AE
913
914 reply_plain = ""
915
916 if replyinfo_obj.success_decrypt == True:
d873ff48 917 reply_plain += replyinfo_obj.replies['success_decrypt']
2694709a
AE
918
919 if replyinfo_obj.no_public_key == False:
920 quoted_text = email_quote_text(replyinfo_obj.msg_to_quote)
921 reply_plain += quoted_text
d873ff48
AE
922
923 elif replyinfo_obj.failed_decrypt == True:
924 reply_plain += replyinfo_obj.replies['failed_decrypt']
925
926
927 if replyinfo_obj.sig_success == True:
928 reply_plain += "\n\n"
929 reply_plain += replyinfo_obj.replies['sig_success']
930
931 elif replyinfo_obj.sig_failure == True:
932 reply_plain += "\n\n"
933 reply_plain += replyinfo_obj.replies['sig_failure']
934
935
936 if replyinfo_obj.public_key_received == True:
937 reply_plain += "\n\n"
938 reply_plain += replyinfo_obj.replies['public_key_received']
939
940 elif replyinfo_obj.no_public_key == True:
941 reply_plain += "\n\n"
942 reply_plain += replyinfo_obj.replies['no_public_key']
943
944
945 reply_plain += "\n\n"
946 reply_plain += replyinfo_obj.replies['signature']
7eefdf97 947 reply_plain += "\n"
56578eaf 948
d873ff48 949 return reply_plain
56578eaf
AE
950
951
8f61c66a 952def add_gpg_key (key_block, gpgme_ctx):
39e2c525
AE
953 """Adds a GPG pubkey to the local keystore
954
955 This adds keys received through email into the key store so they can be
956 used later.
957
958 Args:
959 key_block: the string form of the ascii-armored public key block
960 gpgme_ctx: the gpgme context
961
962 Returns:
963 the fingerprint(s) of the imported key(s)
964 """
c267c233 965
8f61c66a 966 fp = io.BytesIO(key_block.encode('ascii'))
c267c233 967
89c08329
AE
968 try:
969 result = gpgme_ctx.import_(fp)
970 imports = result.imports
971 except gpgme.GpgmeError:
972 imports = []
c267c233 973
f8ee6bd3 974 key_fingerprints = []
c267c233 975
8f61c66a
AE
976 if imports != []:
977 for import_ in imports:
978 fingerprint = import_[0]
f8ee6bd3 979 key_fingerprints += [fingerprint]
c267c233 980
e49673aa 981 debug("added gpg key: " + fingerprint)
ec1e779a 982
f8ee6bd3 983 return key_fingerprints
ec1e779a
AE
984
985
3a753fd0 986def verify_sig_message (msg_block, gpgme_ctx):
39e2c525
AE
987 """Verifies the signature of a signed, ascii-armored block of text.
988
989 It encodes the string into ascii, since binary GPG files are currently
990 unsupported, and alternative, the ascii-armored format is encodable into
991 ascii.
992
993 Args:
994 msg_block: a GPG Message block in string form. It may be encrypted or
995 not. If it is encrypted, it will return empty results.
996 gpgme_ctx: the gpgme context
997
998 Returns:
9af26cb8
AE
999 A tuple containing the plaintext of the signed part, the list of
1000 fingerprints of keys signing the data, and a boolean marking whether
1001 there were any invalid signatures. If verification failed, perhaps
39e2c525
AE
1002 because the message was also encrypted, then empty results are
1003 returned.
1004 """
3a753fd0
AE
1005
1006 block_b = io.BytesIO(msg_block.encode('ascii'))
1007 plain_b = io.BytesIO()
1008
1009 try:
1010 sigs = gpgme_ctx.verify(block_b, None, plain_b)
5f6f32b1 1011 except gpgme.GpgmeError:
9af26cb8 1012 return ("",[],True)
3a753fd0
AE
1013
1014 plaintext = plain_b.getvalue().decode('utf-8')
1015
9af26cb8 1016 sig_failure = False
3a753fd0
AE
1017 fingerprints = []
1018 for sig in sigs:
9af26cb8
AE
1019 if (sig.summary & gpgme.SIGSUM_VALID != 0) or (sig.summary & gpgme.SIGSUM_GREEN != 0):
1020 fingerprints += [sig.fpr]
1021 else:
1022 sig_failure = True
1023
1024 return (plaintext, fingerprints, sig_failure)
3a753fd0
AE
1025
1026
101d54a8 1027def verify_detached_signature (detached_sig, plaintext_bytes, gpgme_ctx):
39e2c525
AE
1028 """Verifies the signature of a detached signature.
1029
1030 This requires the signature part and the signed part as separate arguments.
1031
1032 Args:
1033 detached_sig: the signature part of the detached signature
1034 plaintext_bytes: the byte form of the message being signed.
1035 gpgme_ctx: the gpgme context
1036
1037 Returns:
9af26cb8
AE
1038 A tuple containging a list of signing fingerprints if the signature
1039 verification was sucessful, and a boolean noting whether there were any
1040 failed signature validations. Otherwise, a tuple containing an empty
1041 list and True are returned.
39e2c525 1042 """
101d54a8
AE
1043
1044 detached_sig_fp = io.BytesIO(detached_sig.encode('ascii'))
1045 plaintext_fp = io.BytesIO(plaintext_bytes)
101d54a8 1046
ff7aeb3d
AE
1047 try:
1048 result = gpgme_ctx.verify(detached_sig_fp, plaintext_fp, None)
1049 except gpgme.GpgmeError:
9af26cb8 1050 return ([],True)
101d54a8 1051
9af26cb8 1052 sig_failure = False
101d54a8
AE
1053 sig_fingerprints = []
1054 for res_ in result:
9af26cb8
AE
1055 if (res_.summary & gpgme.SIGSUM_VALID != 0) or (res_.summary & gpgme.SIGSUM_GREEN != 0):
1056 sig_fingerprints += [res_.fpr]
1057 else:
1058 sig_failure = True
101d54a8 1059
9af26cb8 1060 return (sig_fingerprints, sig_failure)
101d54a8
AE
1061
1062
5b3053c1 1063def decrypt_block (msg_block, gpgme_ctx):
9af26cb8 1064 """Decrypts a block of GPG text and verifies any included sigatures.
39e2c525
AE
1065
1066 Some encypted messages have embeded signatures, so those are verified too.
1067
1068 Args:
1069 msg_block: the encrypted(/signed) text
1070 gpgme_ctx: the gpgme context
1071
1072 Returns:
9af26cb8
AE
1073 A tuple containing plaintext, signatures (if the decryption and
1074 signature verification were successful, respectively), and a boolean
1075 noting whether there were signatures that could not be validated.
39e2c525 1076 """
0bec96d6 1077
5b3053c1 1078 block_b = io.BytesIO(msg_block.encode('ascii'))
0bec96d6
AE
1079 plain_b = io.BytesIO()
1080
afc1f64c
AE
1081 try:
1082 sigs = gpgme_ctx.decrypt_verify(block_b, plain_b)
5f6f32b1 1083 except gpgme.GpgmeError:
9af26cb8 1084 return ("",[],True)
0bec96d6 1085
6aa41372 1086 plaintext = plain_b.getvalue().decode('utf-8')
cbdf22c1 1087
9af26cb8 1088 sig_failure = False
cbdf22c1
AE
1089 fingerprints = []
1090 for sig in sigs:
9af26cb8
AE
1091 if (sig.summary & gpgme.SIGSUM_VALID != 0) or (sig.summary & gpgme.SIGSUM_GREEN != 0):
1092 fingerprints += [sig.fpr]
1093 else:
1094 sig_failure = True
1095
1096 return (plaintext, fingerprints, sig_failure)
0bec96d6
AE
1097
1098
dd2b62d7
AE
1099def email_to_from_subject (email_text):
1100 """Returns the values of the email's To:, From: and Subject: fields
fafa21c3 1101
dd2b62d7 1102 Returns this information from an email.
fafa21c3 1103
dd2b62d7
AE
1104 Args:
1105 email_text: the string form of the email
fafa21c3 1106
dd2b62d7
AE
1107 Returns:
1108 the email To:, From:, and Subject: fields as strings
1109 """
d65993b8
AE
1110
1111 email_struct = email.parser.Parser().parsestr(email_text)
1112
1113 email_to = email_struct['To']
1114 email_from = email_struct['From']
1115 email_subject = email_struct['Subject']
1116
1117 return email_to, email_from, email_subject
1118
1119
bb27d257
AE
1120def import_lang_pick_address(email_to, hostname):
1121 """Imports language file for i18n support; makes reply from address
dd2b62d7
AE
1122
1123 The language imported depends on the To: address of the email received by
1124 edward. an -en ending implies the English language, whereas a -ja ending
1125 implies Japanese. The list of supported languages is listed in the 'langs'
bb27d257
AE
1126 list at the beginning of the program. This function also chooses the
1127 language-dependent address which can be used as the From address in the
1128 reply email.
dd2b62d7
AE
1129
1130 Args:
1131 email_to: the string containing the email address that the mail was
bb27d257
AE
1132 sent to.
1133 hostname: the hostname part of the reply email's from address
dd2b62d7
AE
1134
1135 Returns:
1136 the reference to the imported language module. The only variable in
1137 this file is the 'replies' dictionary.
1138 """
adcef2f7 1139
bb27d257
AE
1140 # default
1141 use_lang = "en"
daed5f10 1142
5250b3b8
AE
1143 if email_to != None:
1144 for lang in langs:
1145 if "edward-" + lang in email_to:
bb27d257
AE
1146 use_lang = lang
1147 break
adcef2f7 1148
bb27d257
AE
1149 lang_mod_name = "lang." + re.sub('-', '_', use_lang)
1150 lang_module = importlib.import_module(lang_mod_name)
1151
60ccbaf4 1152 reply_from = "edward-" + use_lang + "@" + hostname
bb27d257 1153
60ccbaf4 1154 return lang_module, reply_from
adcef2f7
AE
1155
1156
cfb03389 1157def generate_encrypted_mime (plaintext, email_to, email_subject, encrypt_to_key,
0a064403 1158 gpgme_ctx):
dd2b62d7
AE
1159 """This function creates the mime email reply. It can encrypt the email.
1160
1161 If the encrypt_key is included, then the email is encrypted and signed.
1162 Otherwise it is unencrypted.
1163
1164 Args:
1165 plaintext: the plaintext body of the message to create.
cfb03389 1166 email_to: the email address to reply to
dd2b62d7
AE
1167 email_subject: the subject to use in reply
1168 encrypt_to_key: the key object to use for encrypting the email. (or
1169 None)
1170 gpgme_ctx: the gpgme context
1171
1172 Returns
1173 A string version of the mime message, possibly encrypted and signed.
1174 """
1da9b527 1175
e5dd6f23 1176 if (encrypt_to_key != None):
8bdfb6d4 1177
66a125ef
AE
1178 plaintext_mime = MIMEText(plaintext)
1179 plaintext_mime.set_charset('utf-8')
8bdfb6d4
AE
1180
1181 encrypted_text = encrypt_sign_message(plaintext_mime.as_string(),
1182 encrypt_to_key,
40c37ab3 1183 gpgme_ctx)
8bdfb6d4 1184
e5dd6f23
AE
1185 control_mime = MIMEApplication("Version: 1",
1186 _subtype='pgp-encrypted',
1187 _encoder=email.encoders.encode_7or8bit)
1188 control_mime['Content-Description'] = 'PGP/MIME version identification'
1189 control_mime.set_charset('us-ascii')
8bdfb6d4 1190
e5dd6f23
AE
1191 encoded_mime = MIMEApplication(encrypted_text,
1192 _subtype='octet-stream; name="encrypted.asc"',
1193 _encoder=email.encoders.encode_7or8bit)
1194 encoded_mime['Content-Description'] = 'OpenPGP encrypted message'
1195 encoded_mime['Content-Disposition'] = 'inline; filename="encrypted.asc"'
1196 encoded_mime.set_charset('us-ascii')
8bdfb6d4 1197
e5dd6f23
AE
1198 message_mime = MIMEMultipart(_subtype="encrypted", protocol="application/pgp-encrypted")
1199 message_mime.attach(control_mime)
1200 message_mime.attach(encoded_mime)
1201 message_mime['Content-Disposition'] = 'inline'
216708e9 1202
e5dd6f23
AE
1203 else:
1204 message_mime = MIMEText(plaintext)
66a125ef 1205 message_mime.set_charset('utf-8')
2007103e 1206
cfb03389 1207 message_mime['To'] = email_to
2007103e
AE
1208 message_mime['Subject'] = email_subject
1209
1210 reply = message_mime.as_string()
1da9b527
AE
1211
1212 return reply
1213
1214
60ccbaf4
AE
1215def send_reply(email_txt, subject, reply_to, reply_from):
1216
1217 email_bytes = email_txt.encode('ascii')
1218
1219 p = subprocess.Popen(["/usr/sbin/sendmail", "-f", reply_from, "-F", "Edward, GPG Bot", "-i", reply_to], stdin=subprocess.PIPE)
1220
1221 (stdout, stderr) = p.communicate(email_bytes)
1222
1223 if stdout != None:
1224 debug("sendmail stdout: " + str(stdout))
1225 if stderr != None:
1226 error("sendmail stderr: " + str(stderr))
1227
1228
f87041f8 1229def email_quote_text (text):
dd2b62d7
AE
1230 """Quotes input text by inserting "> "s
1231
1232 This is useful for quoting a text for the reply message. It inserts "> "
1233 strings at the beginning of lines.
1234
1235 Args:
1236 text: plain text to quote
1237
1238 Returns:
1239 Quoted text
1240 """
f87041f8
AE
1241
1242 quoted_message = re.sub(r'^', r'> ', text, flags=re.MULTILINE)
1243
1244 return quoted_message
1245
1246
0a064403 1247def encrypt_sign_message (plaintext, encrypt_to_key, gpgme_ctx):
dd2b62d7
AE
1248 """Encrypts and signs plaintext
1249
1250 This encrypts and signs a message.
1251
1252 Args:
1253 plaintext: text to sign and ecrypt
1254 encrypt_to_key: the key object to encrypt to
1255 gpgme_ctx: the gpgme context
1256
1257 Returns:
1258 An encrypted and signed string of text
1259 """
897cbaf6 1260
b33f601b 1261 # the plaintext should be mime encoded in an ascii-compatible form
6aa41372 1262 plaintext_bytes = io.BytesIO(plaintext.encode('ascii'))
1da9b527
AE
1263 encrypted_bytes = io.BytesIO()
1264
897cbaf6 1265 gpgme_ctx.encrypt_sign([encrypt_to_key], gpgme.ENCRYPT_ALWAYS_TRUST,
1da9b527
AE
1266 plaintext_bytes, encrypted_bytes)
1267
6aa41372 1268 encrypted_txt = encrypted_bytes.getvalue().decode('ascii')
1da9b527
AE
1269 return encrypted_txt
1270
1271
0a064403 1272def error (error_msg):
dd2b62d7
AE
1273 """Write an error message to stdout
1274
1275 The error message includes the program name.
1276
1277 Args:
1278 error_msg: the message to print
1279
1280 Returns:
1281 Nothing
1282
1283 Post:
1284 An error message is printed to stdout
1285 """
0a064403 1286
e4fb2ab2 1287 sys.stderr.write(progname + ": " + str(error_msg) + "\n")
0a064403
AE
1288
1289
5e8f9094 1290def debug (debug_msg):
dd2b62d7
AE
1291 """Writes a debug message to stdout if debug == True
1292
1293 If the debug option is set in edward_config.py, then the passed message
1294 gets printed to stdout.
1295
1296 Args:
1297 debug_msg: the message to print to stdout
1298
1299 Returns:
1300 Nothing
1301
1302 Post:
1303 A debug message is printed to stdout
1304 """
5e8f9094
AE
1305
1306 if edward_config.debug == True:
0a064403 1307 error(debug_msg)
5e8f9094
AE
1308
1309
20f6e7c5 1310def handle_args ():
60ccbaf4 1311 """Sets the progname variable and processes optional argument
dd2b62d7 1312
60ccbaf4
AE
1313 If there are more than two arguments then edward complains and quits. An
1314 single "-p" argument sets the print_reply_only option, which makes edward
1315 print email replies instead of mailing them.
dd2b62d7
AE
1316
1317 Args:
1318 None
1319
1320 Returns:
60ccbaf4
AE
1321 True if edward should print arguments instead of mailing them,
1322 otherwise it returns False.
dd2b62d7
AE
1323
1324 Post:
60ccbaf4
AE
1325 Exits with error 1 if there are more than two arguments, otherwise
1326 returns the print_reply_only option.
dd2b62d7 1327 """
20f6e7c5 1328
a51cdb72
AE
1329 global progname
1330 progname = sys.argv[0]
1331
60ccbaf4
AE
1332 print_reply_only = False
1333
1334 if len(sys.argv) > 2:
1335 print(progname + " usage: " + progname + " [-p]\n\n" \
1336 + " -p print reply message to stdout, do not mail it\n", \
1337 file=sys.stderr)
a51cdb72 1338 exit(1)
20f6e7c5 1339
60ccbaf4
AE
1340 elif (len(sys.argv) == 2) and (sys.argv[1] == "-p"):
1341 print_reply_only = True
1342
1343 return print_reply_only
1344
20f6e7c5 1345
a51cdb72 1346if __name__ == "__main__":
dd2b62d7 1347 """Executes main if this file is not loaded interactively"""
20f6e7c5 1348
a51cdb72 1349 main()
0bec96d6 1350