Browse Source

reading messages

PYADPT-55
Volker Birk 6 years ago
parent
commit
8099863fd9
  1. 6
      test/sync_handshake.py

6
test/sync_handshake.py

@ -32,6 +32,12 @@ def run(name):
pEp.messageToSend = messageToSend pEp.messageToSend = messageToSend
ui = UserInterface() ui = UserInterface()
while True:
l = minimail.recv_all(inbox, name)
for m in l:
msg = pEp.Message(m)
msg.decrypt()
if __name__=="__main__": if __name__=="__main__":
from optparse import OptionParser from optparse import OptionParser

Loading…
Cancel
Save