diff --git a/offlineimap/head/offlineimap/test.py b/offlineimap/head/offlineimap/test.py deleted file mode 100644 index 60b2f8f..0000000 --- a/offlineimap/head/offlineimap/test.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/python2.2 -i -import hmac -def getpassword(): - return 'tanstaaftanstaaf' - -def md5handler(response): - challenge = response.strip() - print "challenge is", challenge - msg = getpassword() - reply = hmac.new(challenge, msg) - retval = 'tim' + ' ' + \ - reply.hexdigest() - while len(retval) < 64: - retval += "\0" - - print "md5handler returning", retval - return retval