imaplib.py 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595
  1. """IMAP4 client.
  2. Based on RFC 2060.
  3. Public class: IMAP4
  4. Public variable: Debug
  5. Public functions: Internaldate2tuple
  6. Int2AP
  7. ParseFlags
  8. Time2Internaldate
  9. """
  10. # Author: Piers Lauder <piers@cs.su.oz.au> December 1997.
  11. #
  12. # Authentication code contributed by Donn Cave <donn@u.washington.edu> June 1998.
  13. # String method conversion by ESR, February 2001.
  14. # GET/SETACL contributed by Anthony Baxter <anthony@interlink.com.au> April 2001.
  15. # IMAP4_SSL contributed by Tino Lange <Tino.Lange@isg.de> March 2002.
  16. # GET/SETQUOTA contributed by Andreas Zeidler <az@kreativkombinat.de> June 2002.
  17. # PROXYAUTH contributed by Rick Holbert <holbert.13@osu.edu> November 2002.
  18. # GET/SETANNOTATION contributed by Tomas Lindroos <skitta@abo.fi> June 2005.
  19. __version__ = "2.58"
  20. import binascii, errno, random, re, socket, subprocess, sys, time, calendar
  21. from datetime import datetime, timezone, timedelta
  22. from io import DEFAULT_BUFFER_SIZE
  23. try:
  24. import ssl
  25. HAVE_SSL = True
  26. except ImportError:
  27. HAVE_SSL = False
  28. __all__ = ["IMAP4", "IMAP4_stream", "Internaldate2tuple",
  29. "Int2AP", "ParseFlags", "Time2Internaldate"]
  30. # Globals
  31. CRLF = b'\r\n'
  32. Debug = 0
  33. IMAP4_PORT = 143
  34. IMAP4_SSL_PORT = 993
  35. AllowedVersions = ('IMAP4REV1', 'IMAP4') # Most recent first
  36. # Maximal line length when calling readline(). This is to prevent
  37. # reading arbitrary length lines. RFC 3501 and 2060 (IMAP 4rev1)
  38. # don't specify a line length. RFC 2683 suggests limiting client
  39. # command lines to 1000 octets and that servers should be prepared
  40. # to accept command lines up to 8000 octets, so we used to use 10K here.
  41. # In the modern world (eg: gmail) the response to, for example, a
  42. # search command can be quite large, so we now use 1M.
  43. _MAXLINE = 1000000
  44. # Commands
  45. Commands = {
  46. # name valid states
  47. 'APPEND': ('AUTH', 'SELECTED'),
  48. 'AUTHENTICATE': ('NONAUTH',),
  49. 'CAPABILITY': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  50. 'CHECK': ('SELECTED',),
  51. 'CLOSE': ('SELECTED',),
  52. 'COPY': ('SELECTED',),
  53. 'CREATE': ('AUTH', 'SELECTED'),
  54. 'DELETE': ('AUTH', 'SELECTED'),
  55. 'DELETEACL': ('AUTH', 'SELECTED'),
  56. 'ENABLE': ('AUTH', ),
  57. 'EXAMINE': ('AUTH', 'SELECTED'),
  58. 'EXPUNGE': ('SELECTED',),
  59. 'FETCH': ('SELECTED',),
  60. 'GETACL': ('AUTH', 'SELECTED'),
  61. 'GETANNOTATION':('AUTH', 'SELECTED'),
  62. 'GETQUOTA': ('AUTH', 'SELECTED'),
  63. 'GETQUOTAROOT': ('AUTH', 'SELECTED'),
  64. 'MYRIGHTS': ('AUTH', 'SELECTED'),
  65. 'LIST': ('AUTH', 'SELECTED'),
  66. 'LOGIN': ('NONAUTH',),
  67. 'LOGOUT': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  68. 'LSUB': ('AUTH', 'SELECTED'),
  69. 'NAMESPACE': ('AUTH', 'SELECTED'),
  70. 'NOOP': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  71. 'PARTIAL': ('SELECTED',), # NB: obsolete
  72. 'PROXYAUTH': ('AUTH',),
  73. 'RENAME': ('AUTH', 'SELECTED'),
  74. 'SEARCH': ('SELECTED',),
  75. 'SELECT': ('AUTH', 'SELECTED'),
  76. 'SETACL': ('AUTH', 'SELECTED'),
  77. 'SETANNOTATION':('AUTH', 'SELECTED'),
  78. 'SETQUOTA': ('AUTH', 'SELECTED'),
  79. 'SORT': ('SELECTED',),
  80. 'STARTTLS': ('NONAUTH',),
  81. 'STATUS': ('AUTH', 'SELECTED'),
  82. 'STORE': ('SELECTED',),
  83. 'SUBSCRIBE': ('AUTH', 'SELECTED'),
  84. 'THREAD': ('SELECTED',),
  85. 'UID': ('SELECTED',),
  86. 'UNSUBSCRIBE': ('AUTH', 'SELECTED'),
  87. }
  88. # Patterns to match server responses
  89. Continuation = re.compile(br'\+( (?P<data>.*))?')
  90. Flags = re.compile(br'.*FLAGS \((?P<flags>[^\)]*)\)')
  91. InternalDate = re.compile(br'.*INTERNALDATE "'
  92. br'(?P<day>[ 0123][0-9])-(?P<mon>[A-Z][a-z][a-z])-(?P<year>[0-9][0-9][0-9][0-9])'
  93. br' (?P<hour>[0-9][0-9]):(?P<min>[0-9][0-9]):(?P<sec>[0-9][0-9])'
  94. br' (?P<zonen>[-+])(?P<zoneh>[0-9][0-9])(?P<zonem>[0-9][0-9])'
  95. br'"')
  96. # Literal is no longer used; kept for backward compatibility.
  97. Literal = re.compile(br'.*{(?P<size>\d+)}$', re.ASCII)
  98. MapCRLF = re.compile(br'\r\n|\r|\n')
  99. Response_code = re.compile(br'\[(?P<type>[A-Z-]+)( (?P<data>[^\]]*))?\]')
  100. Untagged_response = re.compile(br'\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
  101. # Untagged_status is no longer used; kept for backward compatibility
  102. Untagged_status = re.compile(
  103. br'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?', re.ASCII)
  104. # We compile these in _mode_xxx.
  105. _Literal = br'.*{(?P<size>\d+)}$'
  106. _Untagged_status = br'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?'
  107. class IMAP4:
  108. """IMAP4 client class.
  109. Instantiate with: IMAP4([host[, port]])
  110. host - host's name (default: localhost);
  111. port - port number (default: standard IMAP4 port).
  112. All IMAP4rev1 commands are supported by methods of the same
  113. name (in lower-case).
  114. All arguments to commands are converted to strings, except for
  115. AUTHENTICATE, and the last argument to APPEND which is passed as
  116. an IMAP4 literal. If necessary (the string contains any
  117. non-printing characters or white-space and isn't enclosed with
  118. either parentheses or double quotes) each string is quoted.
  119. However, the 'password' argument to the LOGIN command is always
  120. quoted. If you want to avoid having an argument string quoted
  121. (eg: the 'flags' argument to STORE) then enclose the string in
  122. parentheses (eg: "(\Deleted)").
  123. Each command returns a tuple: (type, [data, ...]) where 'type'
  124. is usually 'OK' or 'NO', and 'data' is either the text from the
  125. tagged response, or untagged results from command. Each 'data'
  126. is either a string, or a tuple. If a tuple, then the first part
  127. is the header of the response, and the second part contains
  128. the data (ie: 'literal' value).
  129. Errors raise the exception class <instance>.error("<reason>").
  130. IMAP4 server errors raise <instance>.abort("<reason>"),
  131. which is a sub-class of 'error'. Mailbox status changes
  132. from READ-WRITE to READ-ONLY raise the exception class
  133. <instance>.readonly("<reason>"), which is a sub-class of 'abort'.
  134. "error" exceptions imply a program error.
  135. "abort" exceptions imply the connection should be reset, and
  136. the command re-tried.
  137. "readonly" exceptions imply the command should be re-tried.
  138. Note: to use this module, you must read the RFCs pertaining to the
  139. IMAP4 protocol, as the semantics of the arguments to each IMAP4
  140. command are left to the invoker, not to mention the results. Also,
  141. most IMAP servers implement a sub-set of the commands available here.
  142. """
  143. class error(Exception): pass # Logical errors - debug required
  144. class abort(error): pass # Service errors - close and retry
  145. class readonly(abort): pass # Mailbox status changed to READ-ONLY
  146. def __init__(self, host='', port=IMAP4_PORT):
  147. self.debug = Debug
  148. self.state = 'LOGOUT'
  149. self.literal = None # A literal argument to a command
  150. self.tagged_commands = {} # Tagged commands awaiting response
  151. self.untagged_responses = {} # {typ: [data, ...], ...}
  152. self.continuation_response = '' # Last continuation response
  153. self.is_readonly = False # READ-ONLY desired state
  154. self.tagnum = 0
  155. self._tls_established = False
  156. self._mode_ascii()
  157. # Open socket to server.
  158. self.open(host, port)
  159. try:
  160. self._connect()
  161. except Exception:
  162. try:
  163. self.shutdown()
  164. except OSError:
  165. pass
  166. raise
  167. def _mode_ascii(self):
  168. self.utf8_enabled = False
  169. self._encoding = 'ascii'
  170. self.Literal = re.compile(_Literal, re.ASCII)
  171. self.Untagged_status = re.compile(_Untagged_status, re.ASCII)
  172. def _mode_utf8(self):
  173. self.utf8_enabled = True
  174. self._encoding = 'utf-8'
  175. self.Literal = re.compile(_Literal)
  176. self.Untagged_status = re.compile(_Untagged_status)
  177. def _connect(self):
  178. # Create unique tag for this session,
  179. # and compile tagged response matcher.
  180. self.tagpre = Int2AP(random.randint(4096, 65535))
  181. self.tagre = re.compile(br'(?P<tag>'
  182. + self.tagpre
  183. + br'\d+) (?P<type>[A-Z]+) (?P<data>.*)', re.ASCII)
  184. # Get server welcome message,
  185. # request and store CAPABILITY response.
  186. if __debug__:
  187. self._cmd_log_len = 10
  188. self._cmd_log_idx = 0
  189. self._cmd_log = {} # Last `_cmd_log_len' interactions
  190. if self.debug >= 1:
  191. self._mesg('imaplib version %s' % __version__)
  192. self._mesg('new IMAP4 connection, tag=%s' % self.tagpre)
  193. self.welcome = self._get_response()
  194. if 'PREAUTH' in self.untagged_responses:
  195. self.state = 'AUTH'
  196. elif 'OK' in self.untagged_responses:
  197. self.state = 'NONAUTH'
  198. else:
  199. raise self.error(self.welcome)
  200. self._get_capabilities()
  201. if __debug__:
  202. if self.debug >= 3:
  203. self._mesg('CAPABILITIES: %r' % (self.capabilities,))
  204. for version in AllowedVersions:
  205. if not version in self.capabilities:
  206. continue
  207. self.PROTOCOL_VERSION = version
  208. return
  209. raise self.error('server not IMAP4 compliant')
  210. def __getattr__(self, attr):
  211. # Allow UPPERCASE variants of IMAP4 command methods.
  212. if attr in Commands:
  213. return getattr(self, attr.lower())
  214. raise AttributeError("Unknown IMAP4 command: '%s'" % attr)
  215. def __enter__(self):
  216. return self
  217. def __exit__(self, *args):
  218. try:
  219. self.logout()
  220. except OSError:
  221. pass
  222. # Overridable methods
  223. def _create_socket(self):
  224. return socket.create_connection((self.host, self.port))
  225. def open(self, host = '', port = IMAP4_PORT):
  226. """Setup connection to remote server on "host:port"
  227. (default: localhost:standard IMAP4 port).
  228. This connection will be used by the routines:
  229. read, readline, send, shutdown.
  230. """
  231. self.host = host
  232. self.port = port
  233. self.sock = self._create_socket()
  234. self.file = self.sock.makefile('rb')
  235. def read(self, size):
  236. """Read 'size' bytes from remote."""
  237. return self.file.read(size)
  238. def readline(self):
  239. """Read line from remote."""
  240. line = self.file.readline(_MAXLINE + 1)
  241. if len(line) > _MAXLINE:
  242. raise self.error("got more than %d bytes" % _MAXLINE)
  243. return line
  244. def send(self, data):
  245. """Send data to remote."""
  246. self.sock.sendall(data)
  247. def shutdown(self):
  248. """Close I/O established in "open"."""
  249. self.file.close()
  250. try:
  251. self.sock.shutdown(socket.SHUT_RDWR)
  252. except OSError as e:
  253. # The server might already have closed the connection
  254. if e.errno != errno.ENOTCONN:
  255. raise
  256. finally:
  257. self.sock.close()
  258. def socket(self):
  259. """Return socket instance used to connect to IMAP4 server.
  260. socket = <instance>.socket()
  261. """
  262. return self.sock
  263. # Utility methods
  264. def recent(self):
  265. """Return most recent 'RECENT' responses if any exist,
  266. else prompt server for an update using the 'NOOP' command.
  267. (typ, [data]) = <instance>.recent()
  268. 'data' is None if no new messages,
  269. else list of RECENT responses, most recent last.
  270. """
  271. name = 'RECENT'
  272. typ, dat = self._untagged_response('OK', [None], name)
  273. if dat[-1]:
  274. return typ, dat
  275. typ, dat = self.noop() # Prod server for response
  276. return self._untagged_response(typ, dat, name)
  277. def response(self, code):
  278. """Return data for response 'code' if received, or None.
  279. Old value for response 'code' is cleared.
  280. (code, [data]) = <instance>.response(code)
  281. """
  282. return self._untagged_response(code, [None], code.upper())
  283. # IMAP4 commands
  284. def append(self, mailbox, flags, date_time, message):
  285. """Append message to named mailbox.
  286. (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
  287. All args except `message' can be None.
  288. """
  289. name = 'APPEND'
  290. if not mailbox:
  291. mailbox = 'INBOX'
  292. if flags:
  293. if (flags[0],flags[-1]) != ('(',')'):
  294. flags = '(%s)' % flags
  295. else:
  296. flags = None
  297. if date_time:
  298. date_time = Time2Internaldate(date_time)
  299. else:
  300. date_time = None
  301. literal = MapCRLF.sub(CRLF, message)
  302. if self.utf8_enabled:
  303. literal = b'UTF8 (' + literal + b')'
  304. self.literal = literal
  305. return self._simple_command(name, mailbox, flags, date_time)
  306. def authenticate(self, mechanism, authobject):
  307. """Authenticate command - requires response processing.
  308. 'mechanism' specifies which authentication mechanism is to
  309. be used - it must appear in <instance>.capabilities in the
  310. form AUTH=<mechanism>.
  311. 'authobject' must be a callable object:
  312. data = authobject(response)
  313. It will be called to process server continuation responses; the
  314. response argument it is passed will be a bytes. It should return bytes
  315. data that will be base64 encoded and sent to the server. It should
  316. return None if the client abort response '*' should be sent instead.
  317. """
  318. mech = mechanism.upper()
  319. # XXX: shouldn't this code be removed, not commented out?
  320. #cap = 'AUTH=%s' % mech
  321. #if not cap in self.capabilities: # Let the server decide!
  322. # raise self.error("Server doesn't allow %s authentication." % mech)
  323. self.literal = _Authenticator(authobject).process
  324. typ, dat = self._simple_command('AUTHENTICATE', mech)
  325. if typ != 'OK':
  326. raise self.error(dat[-1])
  327. self.state = 'AUTH'
  328. return typ, dat
  329. def capability(self):
  330. """(typ, [data]) = <instance>.capability()
  331. Fetch capabilities list from server."""
  332. name = 'CAPABILITY'
  333. typ, dat = self._simple_command(name)
  334. return self._untagged_response(typ, dat, name)
  335. def check(self):
  336. """Checkpoint mailbox on server.
  337. (typ, [data]) = <instance>.check()
  338. """
  339. return self._simple_command('CHECK')
  340. def close(self):
  341. """Close currently selected mailbox.
  342. Deleted messages are removed from writable mailbox.
  343. This is the recommended command before 'LOGOUT'.
  344. (typ, [data]) = <instance>.close()
  345. """
  346. try:
  347. typ, dat = self._simple_command('CLOSE')
  348. finally:
  349. self.state = 'AUTH'
  350. return typ, dat
  351. def copy(self, message_set, new_mailbox):
  352. """Copy 'message_set' messages onto end of 'new_mailbox'.
  353. (typ, [data]) = <instance>.copy(message_set, new_mailbox)
  354. """
  355. return self._simple_command('COPY', message_set, new_mailbox)
  356. def create(self, mailbox):
  357. """Create new mailbox.
  358. (typ, [data]) = <instance>.create(mailbox)
  359. """
  360. return self._simple_command('CREATE', mailbox)
  361. def delete(self, mailbox):
  362. """Delete old mailbox.
  363. (typ, [data]) = <instance>.delete(mailbox)
  364. """
  365. return self._simple_command('DELETE', mailbox)
  366. def deleteacl(self, mailbox, who):
  367. """Delete the ACLs (remove any rights) set for who on mailbox.
  368. (typ, [data]) = <instance>.deleteacl(mailbox, who)
  369. """
  370. return self._simple_command('DELETEACL', mailbox, who)
  371. def enable(self, capability):
  372. """Send an RFC5161 enable string to the server.
  373. (typ, [data]) = <intance>.enable(capability)
  374. """
  375. if 'ENABLE' not in self.capabilities:
  376. raise IMAP4.error("Server does not support ENABLE")
  377. typ, data = self._simple_command('ENABLE', capability)
  378. if typ == 'OK' and 'UTF8=ACCEPT' in capability.upper():
  379. self._mode_utf8()
  380. return typ, data
  381. def expunge(self):
  382. """Permanently remove deleted items from selected mailbox.
  383. Generates 'EXPUNGE' response for each deleted message.
  384. (typ, [data]) = <instance>.expunge()
  385. 'data' is list of 'EXPUNGE'd message numbers in order received.
  386. """
  387. name = 'EXPUNGE'
  388. typ, dat = self._simple_command(name)
  389. return self._untagged_response(typ, dat, name)
  390. def fetch(self, message_set, message_parts):
  391. """Fetch (parts of) messages.
  392. (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
  393. 'message_parts' should be a string of selected parts
  394. enclosed in parentheses, eg: "(UID BODY[TEXT])".
  395. 'data' are tuples of message part envelope and data.
  396. """
  397. name = 'FETCH'
  398. typ, dat = self._simple_command(name, message_set, message_parts)
  399. return self._untagged_response(typ, dat, name)
  400. def getacl(self, mailbox):
  401. """Get the ACLs for a mailbox.
  402. (typ, [data]) = <instance>.getacl(mailbox)
  403. """
  404. typ, dat = self._simple_command('GETACL', mailbox)
  405. return self._untagged_response(typ, dat, 'ACL')
  406. def getannotation(self, mailbox, entry, attribute):
  407. """(typ, [data]) = <instance>.getannotation(mailbox, entry, attribute)
  408. Retrieve ANNOTATIONs."""
  409. typ, dat = self._simple_command('GETANNOTATION', mailbox, entry, attribute)
  410. return self._untagged_response(typ, dat, 'ANNOTATION')
  411. def getquota(self, root):
  412. """Get the quota root's resource usage and limits.
  413. Part of the IMAP4 QUOTA extension defined in rfc2087.
  414. (typ, [data]) = <instance>.getquota(root)
  415. """
  416. typ, dat = self._simple_command('GETQUOTA', root)
  417. return self._untagged_response(typ, dat, 'QUOTA')
  418. def getquotaroot(self, mailbox):
  419. """Get the list of quota roots for the named mailbox.
  420. (typ, [[QUOTAROOT responses...], [QUOTA responses]]) = <instance>.getquotaroot(mailbox)
  421. """
  422. typ, dat = self._simple_command('GETQUOTAROOT', mailbox)
  423. typ, quota = self._untagged_response(typ, dat, 'QUOTA')
  424. typ, quotaroot = self._untagged_response(typ, dat, 'QUOTAROOT')
  425. return typ, [quotaroot, quota]
  426. def list(self, directory='""', pattern='*'):
  427. """List mailbox names in directory matching pattern.
  428. (typ, [data]) = <instance>.list(directory='""', pattern='*')
  429. 'data' is list of LIST responses.
  430. """
  431. name = 'LIST'
  432. typ, dat = self._simple_command(name, directory, pattern)
  433. return self._untagged_response(typ, dat, name)
  434. def login(self, user, password):
  435. """Identify client using plaintext password.
  436. (typ, [data]) = <instance>.login(user, password)
  437. NB: 'password' will be quoted.
  438. """
  439. typ, dat = self._simple_command('LOGIN', user, self._quote(password))
  440. if typ != 'OK':
  441. raise self.error(dat[-1])
  442. self.state = 'AUTH'
  443. return typ, dat
  444. def login_cram_md5(self, user, password):
  445. """ Force use of CRAM-MD5 authentication.
  446. (typ, [data]) = <instance>.login_cram_md5(user, password)
  447. """
  448. self.user, self.password = user, password
  449. return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
  450. def _CRAM_MD5_AUTH(self, challenge):
  451. """ Authobject to use with CRAM-MD5 authentication. """
  452. import hmac
  453. pwd = (self.password.encode('utf-8') if isinstance(self.password, str)
  454. else self.password)
  455. return self.user + " " + hmac.HMAC(pwd, challenge, 'md5').hexdigest()
  456. def logout(self):
  457. """Shutdown connection to server.
  458. (typ, [data]) = <instance>.logout()
  459. Returns server 'BYE' response.
  460. """
  461. self.state = 'LOGOUT'
  462. try: typ, dat = self._simple_command('LOGOUT')
  463. except: typ, dat = 'NO', ['%s: %s' % sys.exc_info()[:2]]
  464. self.shutdown()
  465. if 'BYE' in self.untagged_responses:
  466. return 'BYE', self.untagged_responses['BYE']
  467. return typ, dat
  468. def lsub(self, directory='""', pattern='*'):
  469. """List 'subscribed' mailbox names in directory matching pattern.
  470. (typ, [data, ...]) = <instance>.lsub(directory='""', pattern='*')
  471. 'data' are tuples of message part envelope and data.
  472. """
  473. name = 'LSUB'
  474. typ, dat = self._simple_command(name, directory, pattern)
  475. return self._untagged_response(typ, dat, name)
  476. def myrights(self, mailbox):
  477. """Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
  478. (typ, [data]) = <instance>.myrights(mailbox)
  479. """
  480. typ,dat = self._simple_command('MYRIGHTS', mailbox)
  481. return self._untagged_response(typ, dat, 'MYRIGHTS')
  482. def namespace(self):
  483. """ Returns IMAP namespaces ala rfc2342
  484. (typ, [data, ...]) = <instance>.namespace()
  485. """
  486. name = 'NAMESPACE'
  487. typ, dat = self._simple_command(name)
  488. return self._untagged_response(typ, dat, name)
  489. def noop(self):
  490. """Send NOOP command.
  491. (typ, [data]) = <instance>.noop()
  492. """
  493. if __debug__:
  494. if self.debug >= 3:
  495. self._dump_ur(self.untagged_responses)
  496. return self._simple_command('NOOP')
  497. def partial(self, message_num, message_part, start, length):
  498. """Fetch truncated part of a message.
  499. (typ, [data, ...]) = <instance>.partial(message_num, message_part, start, length)
  500. 'data' is tuple of message part envelope and data.
  501. """
  502. name = 'PARTIAL'
  503. typ, dat = self._simple_command(name, message_num, message_part, start, length)
  504. return self._untagged_response(typ, dat, 'FETCH')
  505. def proxyauth(self, user):
  506. """Assume authentication as "user".
  507. Allows an authorised administrator to proxy into any user's
  508. mailbox.
  509. (typ, [data]) = <instance>.proxyauth(user)
  510. """
  511. name = 'PROXYAUTH'
  512. return self._simple_command('PROXYAUTH', user)
  513. def rename(self, oldmailbox, newmailbox):
  514. """Rename old mailbox name to new.
  515. (typ, [data]) = <instance>.rename(oldmailbox, newmailbox)
  516. """
  517. return self._simple_command('RENAME', oldmailbox, newmailbox)
  518. def search(self, charset, *criteria):
  519. """Search mailbox for matching messages.
  520. (typ, [data]) = <instance>.search(charset, criterion, ...)
  521. 'data' is space separated list of matching message numbers.
  522. If UTF8 is enabled, charset MUST be None.
  523. """
  524. name = 'SEARCH'
  525. if charset:
  526. if self.utf8_enabled:
  527. raise IMAP4.error("Non-None charset not valid in UTF8 mode")
  528. typ, dat = self._simple_command(name, 'CHARSET', charset, *criteria)
  529. else:
  530. typ, dat = self._simple_command(name, *criteria)
  531. return self._untagged_response(typ, dat, name)
  532. def select(self, mailbox='INBOX', readonly=False):
  533. """Select a mailbox.
  534. Flush all untagged responses.
  535. (typ, [data]) = <instance>.select(mailbox='INBOX', readonly=False)
  536. 'data' is count of messages in mailbox ('EXISTS' response).
  537. Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so
  538. other responses should be obtained via <instance>.response('FLAGS') etc.
  539. """
  540. self.untagged_responses = {} # Flush old responses.
  541. self.is_readonly = readonly
  542. if readonly:
  543. name = 'EXAMINE'
  544. else:
  545. name = 'SELECT'
  546. typ, dat = self._simple_command(name, mailbox)
  547. if typ != 'OK':
  548. self.state = 'AUTH' # Might have been 'SELECTED'
  549. return typ, dat
  550. self.state = 'SELECTED'
  551. if 'READ-ONLY' in self.untagged_responses \
  552. and not readonly:
  553. if __debug__:
  554. if self.debug >= 1:
  555. self._dump_ur(self.untagged_responses)
  556. raise self.readonly('%s is not writable' % mailbox)
  557. return typ, self.untagged_responses.get('EXISTS', [None])
  558. def setacl(self, mailbox, who, what):
  559. """Set a mailbox acl.
  560. (typ, [data]) = <instance>.setacl(mailbox, who, what)
  561. """
  562. return self._simple_command('SETACL', mailbox, who, what)
  563. def setannotation(self, *args):
  564. """(typ, [data]) = <instance>.setannotation(mailbox[, entry, attribute]+)
  565. Set ANNOTATIONs."""
  566. typ, dat = self._simple_command('SETANNOTATION', *args)
  567. return self._untagged_response(typ, dat, 'ANNOTATION')
  568. def setquota(self, root, limits):
  569. """Set the quota root's resource limits.
  570. (typ, [data]) = <instance>.setquota(root, limits)
  571. """
  572. typ, dat = self._simple_command('SETQUOTA', root, limits)
  573. return self._untagged_response(typ, dat, 'QUOTA')
  574. def sort(self, sort_criteria, charset, *search_criteria):
  575. """IMAP4rev1 extension SORT command.
  576. (typ, [data]) = <instance>.sort(sort_criteria, charset, search_criteria, ...)
  577. """
  578. name = 'SORT'
  579. #if not name in self.capabilities: # Let the server decide!
  580. # raise self.error('unimplemented extension command: %s' % name)
  581. if (sort_criteria[0],sort_criteria[-1]) != ('(',')'):
  582. sort_criteria = '(%s)' % sort_criteria
  583. typ, dat = self._simple_command(name, sort_criteria, charset, *search_criteria)
  584. return self._untagged_response(typ, dat, name)
  585. def starttls(self, ssl_context=None):
  586. name = 'STARTTLS'
  587. if not HAVE_SSL:
  588. raise self.error('SSL support missing')
  589. if self._tls_established:
  590. raise self.abort('TLS session already established')
  591. if name not in self.capabilities:
  592. raise self.abort('TLS not supported by server')
  593. # Generate a default SSL context if none was passed.
  594. if ssl_context is None:
  595. ssl_context = ssl._create_stdlib_context()
  596. typ, dat = self._simple_command(name)
  597. if typ == 'OK':
  598. self.sock = ssl_context.wrap_socket(self.sock,
  599. server_hostname=self.host)
  600. self.file = self.sock.makefile('rb')
  601. self._tls_established = True
  602. self._get_capabilities()
  603. else:
  604. raise self.error("Couldn't establish TLS session")
  605. return self._untagged_response(typ, dat, name)
  606. def status(self, mailbox, names):
  607. """Request named status conditions for mailbox.
  608. (typ, [data]) = <instance>.status(mailbox, names)
  609. """
  610. name = 'STATUS'
  611. #if self.PROTOCOL_VERSION == 'IMAP4': # Let the server decide!
  612. # raise self.error('%s unimplemented in IMAP4 (obtain IMAP4rev1 server, or re-code)' % name)
  613. typ, dat = self._simple_command(name, mailbox, names)
  614. return self._untagged_response(typ, dat, name)
  615. def store(self, message_set, command, flags):
  616. """Alters flag dispositions for messages in mailbox.
  617. (typ, [data]) = <instance>.store(message_set, command, flags)
  618. """
  619. if (flags[0],flags[-1]) != ('(',')'):
  620. flags = '(%s)' % flags # Avoid quoting the flags
  621. typ, dat = self._simple_command('STORE', message_set, command, flags)
  622. return self._untagged_response(typ, dat, 'FETCH')
  623. def subscribe(self, mailbox):
  624. """Subscribe to new mailbox.
  625. (typ, [data]) = <instance>.subscribe(mailbox)
  626. """
  627. return self._simple_command('SUBSCRIBE', mailbox)
  628. def thread(self, threading_algorithm, charset, *search_criteria):
  629. """IMAPrev1 extension THREAD command.
  630. (type, [data]) = <instance>.thread(threading_algorithm, charset, search_criteria, ...)
  631. """
  632. name = 'THREAD'
  633. typ, dat = self._simple_command(name, threading_algorithm, charset, *search_criteria)
  634. return self._untagged_response(typ, dat, name)
  635. def uid(self, command, *args):
  636. """Execute "command arg ..." with messages identified by UID,
  637. rather than message number.
  638. (typ, [data]) = <instance>.uid(command, arg1, arg2, ...)
  639. Returns response appropriate to 'command'.
  640. """
  641. command = command.upper()
  642. if not command in Commands:
  643. raise self.error("Unknown IMAP4 UID command: %s" % command)
  644. if self.state not in Commands[command]:
  645. raise self.error("command %s illegal in state %s, "
  646. "only allowed in states %s" %
  647. (command, self.state,
  648. ', '.join(Commands[command])))
  649. name = 'UID'
  650. typ, dat = self._simple_command(name, command, *args)
  651. if command in ('SEARCH', 'SORT', 'THREAD'):
  652. name = command
  653. else:
  654. name = 'FETCH'
  655. return self._untagged_response(typ, dat, name)
  656. def unsubscribe(self, mailbox):
  657. """Unsubscribe from old mailbox.
  658. (typ, [data]) = <instance>.unsubscribe(mailbox)
  659. """
  660. return self._simple_command('UNSUBSCRIBE', mailbox)
  661. def xatom(self, name, *args):
  662. """Allow simple extension commands
  663. notified by server in CAPABILITY response.
  664. Assumes command is legal in current state.
  665. (typ, [data]) = <instance>.xatom(name, arg, ...)
  666. Returns response appropriate to extension command `name'.
  667. """
  668. name = name.upper()
  669. #if not name in self.capabilities: # Let the server decide!
  670. # raise self.error('unknown extension command: %s' % name)
  671. if not name in Commands:
  672. Commands[name] = (self.state,)
  673. return self._simple_command(name, *args)
  674. # Private methods
  675. def _append_untagged(self, typ, dat):
  676. if dat is None:
  677. dat = b''
  678. ur = self.untagged_responses
  679. if __debug__:
  680. if self.debug >= 5:
  681. self._mesg('untagged_responses[%s] %s += ["%r"]' %
  682. (typ, len(ur.get(typ,'')), dat))
  683. if typ in ur:
  684. ur[typ].append(dat)
  685. else:
  686. ur[typ] = [dat]
  687. def _check_bye(self):
  688. bye = self.untagged_responses.get('BYE')
  689. if bye:
  690. raise self.abort(bye[-1].decode(self._encoding, 'replace'))
  691. def _command(self, name, *args):
  692. if self.state not in Commands[name]:
  693. self.literal = None
  694. raise self.error("command %s illegal in state %s, "
  695. "only allowed in states %s" %
  696. (name, self.state,
  697. ', '.join(Commands[name])))
  698. for typ in ('OK', 'NO', 'BAD'):
  699. if typ in self.untagged_responses:
  700. del self.untagged_responses[typ]
  701. if 'READ-ONLY' in self.untagged_responses \
  702. and not self.is_readonly:
  703. raise self.readonly('mailbox status changed to READ-ONLY')
  704. tag = self._new_tag()
  705. name = bytes(name, self._encoding)
  706. data = tag + b' ' + name
  707. for arg in args:
  708. if arg is None: continue
  709. if isinstance(arg, str):
  710. arg = bytes(arg, self._encoding)
  711. data = data + b' ' + arg
  712. literal = self.literal
  713. if literal is not None:
  714. self.literal = None
  715. if type(literal) is type(self._command):
  716. literator = literal
  717. else:
  718. literator = None
  719. data = data + bytes(' {%s}' % len(literal), self._encoding)
  720. if __debug__:
  721. if self.debug >= 4:
  722. self._mesg('> %r' % data)
  723. else:
  724. self._log('> %r' % data)
  725. try:
  726. self.send(data + CRLF)
  727. except OSError as val:
  728. raise self.abort('socket error: %s' % val)
  729. if literal is None:
  730. return tag
  731. while 1:
  732. # Wait for continuation response
  733. while self._get_response():
  734. if self.tagged_commands[tag]: # BAD/NO?
  735. return tag
  736. # Send literal
  737. if literator:
  738. literal = literator(self.continuation_response)
  739. if __debug__:
  740. if self.debug >= 4:
  741. self._mesg('write literal size %s' % len(literal))
  742. try:
  743. self.send(literal)
  744. self.send(CRLF)
  745. except OSError as val:
  746. raise self.abort('socket error: %s' % val)
  747. if not literator:
  748. break
  749. return tag
  750. def _command_complete(self, name, tag):
  751. # BYE is expected after LOGOUT
  752. if name != 'LOGOUT':
  753. self._check_bye()
  754. try:
  755. typ, data = self._get_tagged_response(tag)
  756. except self.abort as val:
  757. raise self.abort('command: %s => %s' % (name, val))
  758. except self.error as val:
  759. raise self.error('command: %s => %s' % (name, val))
  760. if name != 'LOGOUT':
  761. self._check_bye()
  762. if typ == 'BAD':
  763. raise self.error('%s command error: %s %s' % (name, typ, data))
  764. return typ, data
  765. def _get_capabilities(self):
  766. typ, dat = self.capability()
  767. if dat == [None]:
  768. raise self.error('no CAPABILITY response from server')
  769. dat = str(dat[-1], self._encoding)
  770. dat = dat.upper()
  771. self.capabilities = tuple(dat.split())
  772. def _get_response(self):
  773. # Read response and store.
  774. #
  775. # Returns None for continuation responses,
  776. # otherwise first response line received.
  777. resp = self._get_line()
  778. # Command completion response?
  779. if self._match(self.tagre, resp):
  780. tag = self.mo.group('tag')
  781. if not tag in self.tagged_commands:
  782. raise self.abort('unexpected tagged response: %r' % resp)
  783. typ = self.mo.group('type')
  784. typ = str(typ, self._encoding)
  785. dat = self.mo.group('data')
  786. self.tagged_commands[tag] = (typ, [dat])
  787. else:
  788. dat2 = None
  789. # '*' (untagged) responses?
  790. if not self._match(Untagged_response, resp):
  791. if self._match(self.Untagged_status, resp):
  792. dat2 = self.mo.group('data2')
  793. if self.mo is None:
  794. # Only other possibility is '+' (continuation) response...
  795. if self._match(Continuation, resp):
  796. self.continuation_response = self.mo.group('data')
  797. return None # NB: indicates continuation
  798. raise self.abort("unexpected response: %r" % resp)
  799. typ = self.mo.group('type')
  800. typ = str(typ, self._encoding)
  801. dat = self.mo.group('data')
  802. if dat is None: dat = b'' # Null untagged response
  803. if dat2: dat = dat + b' ' + dat2
  804. # Is there a literal to come?
  805. while self._match(self.Literal, dat):
  806. # Read literal direct from connection.
  807. size = int(self.mo.group('size'))
  808. if __debug__:
  809. if self.debug >= 4:
  810. self._mesg('read literal size %s' % size)
  811. data = self.read(size)
  812. # Store response with literal as tuple
  813. self._append_untagged(typ, (dat, data))
  814. # Read trailer - possibly containing another literal
  815. dat = self._get_line()
  816. self._append_untagged(typ, dat)
  817. # Bracketed response information?
  818. if typ in ('OK', 'NO', 'BAD') and self._match(Response_code, dat):
  819. typ = self.mo.group('type')
  820. typ = str(typ, self._encoding)
  821. self._append_untagged(typ, self.mo.group('data'))
  822. if __debug__:
  823. if self.debug >= 1 and typ in ('NO', 'BAD', 'BYE'):
  824. self._mesg('%s response: %r' % (typ, dat))
  825. return resp
  826. def _get_tagged_response(self, tag):
  827. while 1:
  828. result = self.tagged_commands[tag]
  829. if result is not None:
  830. del self.tagged_commands[tag]
  831. return result
  832. # If we've seen a BYE at this point, the socket will be
  833. # closed, so report the BYE now.
  834. self._check_bye()
  835. # Some have reported "unexpected response" exceptions.
  836. # Note that ignoring them here causes loops.
  837. # Instead, send me details of the unexpected response and
  838. # I'll update the code in `_get_response()'.
  839. try:
  840. self._get_response()
  841. except self.abort as val:
  842. if __debug__:
  843. if self.debug >= 1:
  844. self.print_log()
  845. raise
  846. def _get_line(self):
  847. line = self.readline()
  848. if not line:
  849. raise self.abort('socket error: EOF')
  850. # Protocol mandates all lines terminated by CRLF
  851. if not line.endswith(b'\r\n'):
  852. raise self.abort('socket error: unterminated line: %r' % line)
  853. line = line[:-2]
  854. if __debug__:
  855. if self.debug >= 4:
  856. self._mesg('< %r' % line)
  857. else:
  858. self._log('< %r' % line)
  859. return line
  860. def _match(self, cre, s):
  861. # Run compiled regular expression match method on 's'.
  862. # Save result, return success.
  863. self.mo = cre.match(s)
  864. if __debug__:
  865. if self.mo is not None and self.debug >= 5:
  866. self._mesg("\tmatched r'%r' => %r" % (cre.pattern, self.mo.groups()))
  867. return self.mo is not None
  868. def _new_tag(self):
  869. tag = self.tagpre + bytes(str(self.tagnum), self._encoding)
  870. self.tagnum = self.tagnum + 1
  871. self.tagged_commands[tag] = None
  872. return tag
  873. def _quote(self, arg):
  874. arg = arg.replace('\\', '\\\\')
  875. arg = arg.replace('"', '\\"')
  876. return '"' + arg + '"'
  877. def _simple_command(self, name, *args):
  878. return self._command_complete(name, self._command(name, *args))
  879. def _untagged_response(self, typ, dat, name):
  880. if typ == 'NO':
  881. return typ, dat
  882. if not name in self.untagged_responses:
  883. return typ, [None]
  884. data = self.untagged_responses.pop(name)
  885. if __debug__:
  886. if self.debug >= 5:
  887. self._mesg('untagged_responses[%s] => %s' % (name, data))
  888. return typ, data
  889. if __debug__:
  890. def _mesg(self, s, secs=None):
  891. if secs is None:
  892. secs = time.time()
  893. tm = time.strftime('%M:%S', time.localtime(secs))
  894. sys.stderr.write(' %s.%02d %s\n' % (tm, (secs*100)%100, s))
  895. sys.stderr.flush()
  896. def _dump_ur(self, dict):
  897. # Dump untagged responses (in `dict').
  898. l = dict.items()
  899. if not l: return
  900. t = '\n\t\t'
  901. l = map(lambda x:'%s: "%s"' % (x[0], x[1][0] and '" "'.join(x[1]) or ''), l)
  902. self._mesg('untagged responses dump:%s%s' % (t, t.join(l)))
  903. def _log(self, line):
  904. # Keep log of last `_cmd_log_len' interactions for debugging.
  905. self._cmd_log[self._cmd_log_idx] = (line, time.time())
  906. self._cmd_log_idx += 1
  907. if self._cmd_log_idx >= self._cmd_log_len:
  908. self._cmd_log_idx = 0
  909. def print_log(self):
  910. self._mesg('last %d IMAP4 interactions:' % len(self._cmd_log))
  911. i, n = self._cmd_log_idx, self._cmd_log_len
  912. while n:
  913. try:
  914. self._mesg(*self._cmd_log[i])
  915. except:
  916. pass
  917. i += 1
  918. if i >= self._cmd_log_len:
  919. i = 0
  920. n -= 1
  921. if HAVE_SSL:
  922. class IMAP4_SSL(IMAP4):
  923. """IMAP4 client class over SSL connection
  924. Instantiate with: IMAP4_SSL([host[, port[, keyfile[, certfile[, ssl_context]]]]])
  925. host - host's name (default: localhost);
  926. port - port number (default: standard IMAP4 SSL port);
  927. keyfile - PEM formatted file that contains your private key (default: None);
  928. certfile - PEM formatted certificate chain file (default: None);
  929. ssl_context - a SSLContext object that contains your certificate chain
  930. and private key (default: None)
  931. Note: if ssl_context is provided, then parameters keyfile or
  932. certfile should not be set otherwise ValueError is raised.
  933. for more documentation see the docstring of the parent class IMAP4.
  934. """
  935. def __init__(self, host='', port=IMAP4_SSL_PORT, keyfile=None,
  936. certfile=None, ssl_context=None):
  937. if ssl_context is not None and keyfile is not None:
  938. raise ValueError("ssl_context and keyfile arguments are mutually "
  939. "exclusive")
  940. if ssl_context is not None and certfile is not None:
  941. raise ValueError("ssl_context and certfile arguments are mutually "
  942. "exclusive")
  943. self.keyfile = keyfile
  944. self.certfile = certfile
  945. if ssl_context is None:
  946. ssl_context = ssl._create_stdlib_context(certfile=certfile,
  947. keyfile=keyfile)
  948. self.ssl_context = ssl_context
  949. IMAP4.__init__(self, host, port)
  950. def _create_socket(self):
  951. sock = IMAP4._create_socket(self)
  952. return self.ssl_context.wrap_socket(sock,
  953. server_hostname=self.host)
  954. def open(self, host='', port=IMAP4_SSL_PORT):
  955. """Setup connection to remote server on "host:port".
  956. (default: localhost:standard IMAP4 SSL port).
  957. This connection will be used by the routines:
  958. read, readline, send, shutdown.
  959. """
  960. IMAP4.open(self, host, port)
  961. __all__.append("IMAP4_SSL")
  962. class IMAP4_stream(IMAP4):
  963. """IMAP4 client class over a stream
  964. Instantiate with: IMAP4_stream(command)
  965. "command" - a string that can be passed to subprocess.Popen()
  966. for more documentation see the docstring of the parent class IMAP4.
  967. """
  968. def __init__(self, command):
  969. self.command = command
  970. IMAP4.__init__(self)
  971. def open(self, host = None, port = None):
  972. """Setup a stream connection.
  973. This connection will be used by the routines:
  974. read, readline, send, shutdown.
  975. """
  976. self.host = None # For compatibility with parent class
  977. self.port = None
  978. self.sock = None
  979. self.file = None
  980. self.process = subprocess.Popen(self.command,
  981. bufsize=DEFAULT_BUFFER_SIZE,
  982. stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  983. shell=True, close_fds=True)
  984. self.writefile = self.process.stdin
  985. self.readfile = self.process.stdout
  986. def read(self, size):
  987. """Read 'size' bytes from remote."""
  988. return self.readfile.read(size)
  989. def readline(self):
  990. """Read line from remote."""
  991. return self.readfile.readline()
  992. def send(self, data):
  993. """Send data to remote."""
  994. self.writefile.write(data)
  995. self.writefile.flush()
  996. def shutdown(self):
  997. """Close I/O established in "open"."""
  998. self.readfile.close()
  999. self.writefile.close()
  1000. self.process.wait()
  1001. class _Authenticator:
  1002. """Private class to provide en/decoding
  1003. for base64-based authentication conversation.
  1004. """
  1005. def __init__(self, mechinst):
  1006. self.mech = mechinst # Callable object to provide/process data
  1007. def process(self, data):
  1008. ret = self.mech(self.decode(data))
  1009. if ret is None:
  1010. return b'*' # Abort conversation
  1011. return self.encode(ret)
  1012. def encode(self, inp):
  1013. #
  1014. # Invoke binascii.b2a_base64 iteratively with
  1015. # short even length buffers, strip the trailing
  1016. # line feed from the result and append. "Even"
  1017. # means a number that factors to both 6 and 8,
  1018. # so when it gets to the end of the 8-bit input
  1019. # there's no partial 6-bit output.
  1020. #
  1021. oup = b''
  1022. if isinstance(inp, str):
  1023. inp = inp.encode('utf-8')
  1024. while inp:
  1025. if len(inp) > 48:
  1026. t = inp[:48]
  1027. inp = inp[48:]
  1028. else:
  1029. t = inp
  1030. inp = b''
  1031. e = binascii.b2a_base64(t)
  1032. if e:
  1033. oup = oup + e[:-1]
  1034. return oup
  1035. def decode(self, inp):
  1036. if not inp:
  1037. return b''
  1038. return binascii.a2b_base64(inp)
  1039. Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ')
  1040. Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])}
  1041. def Internaldate2tuple(resp):
  1042. """Parse an IMAP4 INTERNALDATE string.
  1043. Return corresponding local time. The return value is a
  1044. time.struct_time tuple or None if the string has wrong format.
  1045. """
  1046. mo = InternalDate.match(resp)
  1047. if not mo:
  1048. return None
  1049. mon = Mon2num[mo.group('mon')]
  1050. zonen = mo.group('zonen')
  1051. day = int(mo.group('day'))
  1052. year = int(mo.group('year'))
  1053. hour = int(mo.group('hour'))
  1054. min = int(mo.group('min'))
  1055. sec = int(mo.group('sec'))
  1056. zoneh = int(mo.group('zoneh'))
  1057. zonem = int(mo.group('zonem'))
  1058. # INTERNALDATE timezone must be subtracted to get UT
  1059. zone = (zoneh*60 + zonem)*60
  1060. if zonen == b'-':
  1061. zone = -zone
  1062. tt = (year, mon, day, hour, min, sec, -1, -1, -1)
  1063. utc = calendar.timegm(tt) - zone
  1064. return time.localtime(utc)
  1065. def Int2AP(num):
  1066. """Convert integer to A-P string representation."""
  1067. val = b''; AP = b'ABCDEFGHIJKLMNOP'
  1068. num = int(abs(num))
  1069. while num:
  1070. num, mod = divmod(num, 16)
  1071. val = AP[mod:mod+1] + val
  1072. return val
  1073. def ParseFlags(resp):
  1074. """Convert IMAP4 flags response to python tuple."""
  1075. mo = Flags.match(resp)
  1076. if not mo:
  1077. return ()
  1078. return tuple(mo.group('flags').split())
  1079. def Time2Internaldate(date_time):
  1080. """Convert date_time to IMAP4 INTERNALDATE representation.
  1081. Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"'. The
  1082. date_time argument can be a number (int or float) representing
  1083. seconds since epoch (as returned by time.time()), a 9-tuple
  1084. representing local time, an instance of time.struct_time (as
  1085. returned by time.localtime()), an aware datetime instance or a
  1086. double-quoted string. In the last case, it is assumed to already
  1087. be in the correct format.
  1088. """
  1089. if isinstance(date_time, (int, float)):
  1090. dt = datetime.fromtimestamp(date_time,
  1091. timezone.utc).astimezone()
  1092. elif isinstance(date_time, tuple):
  1093. try:
  1094. gmtoff = date_time.tm_gmtoff
  1095. except AttributeError:
  1096. if time.daylight:
  1097. dst = date_time[8]
  1098. if dst == -1:
  1099. dst = time.localtime(time.mktime(date_time))[8]
  1100. gmtoff = -(time.timezone, time.altzone)[dst]
  1101. else:
  1102. gmtoff = -time.timezone
  1103. delta = timedelta(seconds=gmtoff)
  1104. dt = datetime(*date_time[:6], tzinfo=timezone(delta))
  1105. elif isinstance(date_time, datetime):
  1106. if date_time.tzinfo is None:
  1107. raise ValueError("date_time must be aware")
  1108. dt = date_time
  1109. elif isinstance(date_time, str) and (date_time[0],date_time[-1]) == ('"','"'):
  1110. return date_time # Assume in correct format
  1111. else:
  1112. raise ValueError("date_time not of a known type")
  1113. fmt = '"%d-{}-%Y %H:%M:%S %z"'.format(Months[dt.month])
  1114. return dt.strftime(fmt)
  1115. if __name__ == '__main__':
  1116. # To test: invoke either as 'python imaplib.py [IMAP4_server_hostname]'
  1117. # or 'python imaplib.py -s "rsh IMAP4_server_hostname exec /etc/rimapd"'
  1118. # to test the IMAP4_stream class
  1119. import getopt, getpass
  1120. try:
  1121. optlist, args = getopt.getopt(sys.argv[1:], 'd:s:')
  1122. except getopt.error as val:
  1123. optlist, args = (), ()
  1124. stream_command = None
  1125. for opt,val in optlist:
  1126. if opt == '-d':
  1127. Debug = int(val)
  1128. elif opt == '-s':
  1129. stream_command = val
  1130. if not args: args = (stream_command,)
  1131. if not args: args = ('',)
  1132. host = args[0]
  1133. USER = getpass.getuser()
  1134. PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))
  1135. test_mesg = 'From: %(user)s@localhost%(lf)sSubject: IMAP4 test%(lf)s%(lf)sdata...%(lf)s' % {'user':USER, 'lf':'\n'}
  1136. test_seq1 = (
  1137. ('login', (USER, PASSWD)),
  1138. ('create', ('/tmp/xxx 1',)),
  1139. ('rename', ('/tmp/xxx 1', '/tmp/yyy')),
  1140. ('CREATE', ('/tmp/yyz 2',)),
  1141. ('append', ('/tmp/yyz 2', None, None, test_mesg)),
  1142. ('list', ('/tmp', 'yy*')),
  1143. ('select', ('/tmp/yyz 2',)),
  1144. ('search', (None, 'SUBJECT', 'test')),
  1145. ('fetch', ('1', '(FLAGS INTERNALDATE RFC822)')),
  1146. ('store', ('1', 'FLAGS', '(\Deleted)')),
  1147. ('namespace', ()),
  1148. ('expunge', ()),
  1149. ('recent', ()),
  1150. ('close', ()),
  1151. )
  1152. test_seq2 = (
  1153. ('select', ()),
  1154. ('response',('UIDVALIDITY',)),
  1155. ('uid', ('SEARCH', 'ALL')),
  1156. ('response', ('EXISTS',)),
  1157. ('append', (None, None, None, test_mesg)),
  1158. ('recent', ()),
  1159. ('logout', ()),
  1160. )
  1161. def run(cmd, args):
  1162. M._mesg('%s %s' % (cmd, args))
  1163. typ, dat = getattr(M, cmd)(*args)
  1164. M._mesg('%s => %s %s' % (cmd, typ, dat))
  1165. if typ == 'NO': raise dat[0]
  1166. return dat
  1167. try:
  1168. if stream_command:
  1169. M = IMAP4_stream(stream_command)
  1170. else:
  1171. M = IMAP4(host)
  1172. if M.state == 'AUTH':
  1173. test_seq1 = test_seq1[1:] # Login not needed
  1174. M._mesg('PROTOCOL_VERSION = %s' % M.PROTOCOL_VERSION)
  1175. M._mesg('CAPABILITIES = %r' % (M.capabilities,))
  1176. for cmd,args in test_seq1:
  1177. run(cmd, args)
  1178. for ml in run('list', ('/tmp/', 'yy%')):
  1179. mo = re.match(r'.*"([^"]+)"$', ml)
  1180. if mo: path = mo.group(1)
  1181. else: path = ml.split()[-1]
  1182. run('delete', (path,))
  1183. for cmd,args in test_seq2:
  1184. dat = run(cmd, args)
  1185. if (cmd,args) != ('uid', ('SEARCH', 'ALL')):
  1186. continue
  1187. uid = dat[-1].split()
  1188. if not uid: continue
  1189. run('uid', ('FETCH', '%s' % uid[-1],
  1190. '(FLAGS INTERNALDATE RFC822.SIZE RFC822.HEADER RFC822.TEXT)'))
  1191. print('\nAll tests OK.')
  1192. except:
  1193. print('\nTests failed.')
  1194. if not Debug:
  1195. print('''
  1196. If you would like to see debugging output,
  1197. try: %s -d5
  1198. ''' % sys.argv[0])
  1199. raise