@bobfrankston/mailx 1.0.465 → 1.0.500

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (344) hide show
  1. package/.globalize.json5 +25 -0
  2. package/README.md +17 -420
  3. package/bin/mailx.js +87 -84
  4. package/bin/mailx.js.map +1 -1
  5. package/bin/mailx.ts +87 -84
  6. package/client/android.html +5 -5
  7. package/client/app.js +42 -38
  8. package/client/components/folder-tree.js +7 -5
  9. package/client/components/message-list.js +485 -448
  10. package/client/components/message-viewer.js +36 -41
  11. package/client/index.html +8 -8
  12. package/client/lib/message-state.js +46 -65
  13. package/index.js +59 -0
  14. package/package.json +12 -114
  15. package/packages/mailx-send/mailsend/{package-lock.json → node_modules/.package-lock.json} +0 -16
  16. package/packages/mailx-send/mailsend/node_modules/@types/node/LICENSE +21 -0
  17. package/packages/mailx-send/mailsend/node_modules/@types/node/README.md +15 -0
  18. package/packages/mailx-send/mailsend/node_modules/@types/node/assert/strict.d.ts +111 -0
  19. package/packages/mailx-send/mailsend/node_modules/@types/node/assert.d.ts +1078 -0
  20. package/packages/mailx-send/mailsend/node_modules/@types/node/async_hooks.d.ts +603 -0
  21. package/packages/mailx-send/mailsend/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  22. package/packages/mailx-send/mailsend/node_modules/@types/node/buffer.d.ts +1934 -0
  23. package/packages/mailx-send/mailsend/node_modules/@types/node/child_process.d.ts +1476 -0
  24. package/packages/mailx-send/mailsend/node_modules/@types/node/cluster.d.ts +578 -0
  25. package/packages/mailx-send/mailsend/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  26. package/packages/mailx-send/mailsend/node_modules/@types/node/compatibility/index.d.ts +9 -0
  27. package/packages/mailx-send/mailsend/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  28. package/packages/mailx-send/mailsend/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  29. package/packages/mailx-send/mailsend/node_modules/@types/node/console.d.ts +452 -0
  30. package/packages/mailx-send/mailsend/node_modules/@types/node/constants.d.ts +21 -0
  31. package/packages/mailx-send/mailsend/node_modules/@types/node/crypto.d.ts +4545 -0
  32. package/packages/mailx-send/mailsend/node_modules/@types/node/dgram.d.ts +600 -0
  33. package/packages/mailx-send/mailsend/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  34. package/packages/mailx-send/mailsend/node_modules/@types/node/dns/promises.d.ts +503 -0
  35. package/packages/mailx-send/mailsend/node_modules/@types/node/dns.d.ts +923 -0
  36. package/packages/mailx-send/mailsend/node_modules/@types/node/domain.d.ts +170 -0
  37. package/packages/mailx-send/mailsend/node_modules/@types/node/events.d.ts +976 -0
  38. package/packages/mailx-send/mailsend/node_modules/@types/node/fs/promises.d.ts +1295 -0
  39. package/packages/mailx-send/mailsend/node_modules/@types/node/fs.d.ts +4461 -0
  40. package/packages/mailx-send/mailsend/node_modules/@types/node/globals.d.ts +172 -0
  41. package/packages/mailx-send/mailsend/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  42. package/packages/mailx-send/mailsend/node_modules/@types/node/http.d.ts +2089 -0
  43. package/packages/mailx-send/mailsend/node_modules/@types/node/http2.d.ts +2644 -0
  44. package/packages/mailx-send/mailsend/node_modules/@types/node/https.d.ts +579 -0
  45. package/packages/mailx-send/mailsend/node_modules/@types/node/index.d.ts +97 -0
  46. package/packages/mailx-send/mailsend/node_modules/@types/node/inspector.d.ts +253 -0
  47. package/packages/mailx-send/mailsend/node_modules/@types/node/inspector.generated.d.ts +4052 -0
  48. package/packages/mailx-send/mailsend/node_modules/@types/node/module.d.ts +891 -0
  49. package/packages/mailx-send/mailsend/node_modules/@types/node/net.d.ts +1057 -0
  50. package/packages/mailx-send/mailsend/node_modules/@types/node/os.d.ts +506 -0
  51. package/packages/mailx-send/mailsend/node_modules/@types/node/package.json +145 -0
  52. package/packages/mailx-send/mailsend/node_modules/@types/node/path.d.ts +200 -0
  53. package/packages/mailx-send/mailsend/node_modules/@types/node/perf_hooks.d.ts +968 -0
  54. package/packages/mailx-send/mailsend/node_modules/@types/node/process.d.ts +2084 -0
  55. package/packages/mailx-send/mailsend/node_modules/@types/node/punycode.d.ts +117 -0
  56. package/packages/mailx-send/mailsend/node_modules/@types/node/querystring.d.ts +152 -0
  57. package/packages/mailx-send/mailsend/node_modules/@types/node/readline/promises.d.ts +161 -0
  58. package/packages/mailx-send/mailsend/node_modules/@types/node/readline.d.ts +594 -0
  59. package/packages/mailx-send/mailsend/node_modules/@types/node/repl.d.ts +428 -0
  60. package/packages/mailx-send/mailsend/node_modules/@types/node/sea.d.ts +153 -0
  61. package/packages/mailx-send/mailsend/node_modules/@types/node/sqlite.d.ts +721 -0
  62. package/packages/mailx-send/mailsend/node_modules/@types/node/stream/consumers.d.ts +38 -0
  63. package/packages/mailx-send/mailsend/node_modules/@types/node/stream/promises.d.ts +90 -0
  64. package/packages/mailx-send/mailsend/node_modules/@types/node/stream/web.d.ts +622 -0
  65. package/packages/mailx-send/mailsend/node_modules/@types/node/stream.d.ts +1664 -0
  66. package/packages/mailx-send/mailsend/node_modules/@types/node/string_decoder.d.ts +67 -0
  67. package/packages/mailx-send/mailsend/node_modules/@types/node/test.d.ts +2163 -0
  68. package/packages/mailx-send/mailsend/node_modules/@types/node/timers/promises.d.ts +108 -0
  69. package/packages/mailx-send/mailsend/node_modules/@types/node/timers.d.ts +287 -0
  70. package/packages/mailx-send/mailsend/node_modules/@types/node/tls.d.ts +1319 -0
  71. package/packages/mailx-send/mailsend/node_modules/@types/node/trace_events.d.ts +197 -0
  72. package/packages/mailx-send/mailsend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  73. package/packages/mailx-send/mailsend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  74. package/packages/mailx-send/mailsend/node_modules/@types/node/ts5.6/index.d.ts +97 -0
  75. package/packages/mailx-send/mailsend/node_modules/@types/node/tty.d.ts +208 -0
  76. package/packages/mailx-send/mailsend/node_modules/@types/node/url.d.ts +984 -0
  77. package/packages/mailx-send/mailsend/node_modules/@types/node/util.d.ts +2606 -0
  78. package/packages/mailx-send/mailsend/node_modules/@types/node/v8.d.ts +920 -0
  79. package/packages/mailx-send/mailsend/node_modules/@types/node/vm.d.ts +1000 -0
  80. package/packages/mailx-send/mailsend/node_modules/@types/node/wasi.d.ts +181 -0
  81. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  82. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  83. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/events.d.ts +97 -0
  84. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  85. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  86. package/packages/mailx-send/mailsend/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  87. package/packages/mailx-send/mailsend/node_modules/@types/node/worker_threads.d.ts +784 -0
  88. package/packages/mailx-send/mailsend/node_modules/@types/node/zlib.d.ts +747 -0
  89. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/LICENSE +21 -0
  90. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/README.md +15 -0
  91. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/index.d.ts +82 -0
  92. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/addressparser/index.d.ts +31 -0
  93. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/base64/index.d.ts +22 -0
  94. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/dkim/index.d.ts +45 -0
  95. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/dkim/message-parser.d.ts +75 -0
  96. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/dkim/relaxed-body.d.ts +75 -0
  97. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/dkim/sign.d.ts +21 -0
  98. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/fetch/cookies.d.ts +54 -0
  99. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/fetch/index.d.ts +38 -0
  100. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/json-transport/index.d.ts +53 -0
  101. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mail-composer/index.d.ts +25 -0
  102. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mailer/index.d.ts +283 -0
  103. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts +32 -0
  104. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mime-funcs/index.d.ts +87 -0
  105. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mime-funcs/mime-types.d.ts +2 -0
  106. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mime-node/index.d.ts +224 -0
  107. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/mime-node/last-newline.d.ts +9 -0
  108. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/qp/index.d.ts +23 -0
  109. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts +53 -0
  110. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/sendmail-transport/le-unix.d.ts +7 -0
  111. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/sendmail-transport/le-windows.d.ts +7 -0
  112. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/ses-transport/index.d.ts +146 -0
  113. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/shared/index.d.ts +58 -0
  114. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-connection/data-stream.d.ts +11 -0
  115. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-connection/http-proxy-client.d.ts +16 -0
  116. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts +270 -0
  117. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts +93 -0
  118. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-pool/pool-resource.d.ts +66 -0
  119. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts +115 -0
  120. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/stream-transport/index.d.ts +59 -0
  121. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/well-known/index.d.ts +6 -0
  122. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/lib/xoauth2/index.d.ts +114 -0
  123. package/packages/mailx-send/mailsend/node_modules/@types/nodemailer/package.json +38 -0
  124. package/packages/mailx-send/mailsend/node_modules/nodemailer/.ncurc.js +9 -0
  125. package/packages/mailx-send/mailsend/node_modules/nodemailer/.prettierignore +8 -0
  126. package/packages/mailx-send/mailsend/node_modules/nodemailer/.prettierrc +12 -0
  127. package/packages/mailx-send/mailsend/node_modules/nodemailer/.prettierrc.js +10 -0
  128. package/packages/mailx-send/mailsend/node_modules/nodemailer/.release-please-config.json +9 -0
  129. package/packages/mailx-send/mailsend/node_modules/nodemailer/LICENSE +16 -0
  130. package/packages/mailx-send/mailsend/node_modules/nodemailer/README.md +86 -0
  131. package/packages/mailx-send/mailsend/node_modules/nodemailer/SECURITY.txt +22 -0
  132. package/packages/mailx-send/mailsend/node_modules/nodemailer/eslint.config.js +88 -0
  133. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/addressparser/index.js +383 -0
  134. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/base64/index.js +139 -0
  135. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/dkim/index.js +253 -0
  136. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/dkim/message-parser.js +155 -0
  137. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/dkim/relaxed-body.js +154 -0
  138. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/dkim/sign.js +117 -0
  139. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/fetch/cookies.js +281 -0
  140. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/fetch/index.js +280 -0
  141. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/json-transport/index.js +82 -0
  142. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mail-composer/index.js +629 -0
  143. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mailer/index.js +441 -0
  144. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mailer/mail-message.js +316 -0
  145. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-funcs/index.js +625 -0
  146. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-funcs/mime-types.js +2113 -0
  147. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-node/index.js +1316 -0
  148. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-node/last-newline.js +33 -0
  149. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-node/le-unix.js +43 -0
  150. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/mime-node/le-windows.js +52 -0
  151. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/nodemailer.js +157 -0
  152. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/punycode/index.js +460 -0
  153. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/qp/index.js +227 -0
  154. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/sendmail-transport/index.js +210 -0
  155. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/ses-transport/index.js +234 -0
  156. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/shared/index.js +754 -0
  157. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-connection/data-stream.js +108 -0
  158. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-connection/http-proxy-client.js +143 -0
  159. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-connection/index.js +1870 -0
  160. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-pool/index.js +652 -0
  161. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-pool/pool-resource.js +259 -0
  162. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/smtp-transport/index.js +421 -0
  163. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/stream-transport/index.js +135 -0
  164. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/well-known/index.js +47 -0
  165. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/well-known/services.json +611 -0
  166. package/packages/mailx-send/mailsend/node_modules/nodemailer/lib/xoauth2/index.js +427 -0
  167. package/packages/mailx-send/mailsend/node_modules/nodemailer/package.json +47 -0
  168. package/packages/mailx-send/mailsend/node_modules/undici-types/LICENSE +21 -0
  169. package/packages/mailx-send/mailsend/node_modules/undici-types/README.md +6 -0
  170. package/packages/mailx-send/mailsend/node_modules/undici-types/agent.d.ts +31 -0
  171. package/packages/mailx-send/mailsend/node_modules/undici-types/api.d.ts +43 -0
  172. package/packages/mailx-send/mailsend/node_modules/undici-types/balanced-pool.d.ts +29 -0
  173. package/packages/mailx-send/mailsend/node_modules/undici-types/cache.d.ts +36 -0
  174. package/packages/mailx-send/mailsend/node_modules/undici-types/client.d.ts +108 -0
  175. package/packages/mailx-send/mailsend/node_modules/undici-types/connector.d.ts +34 -0
  176. package/packages/mailx-send/mailsend/node_modules/undici-types/content-type.d.ts +21 -0
  177. package/packages/mailx-send/mailsend/node_modules/undici-types/cookies.d.ts +28 -0
  178. package/packages/mailx-send/mailsend/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  179. package/packages/mailx-send/mailsend/node_modules/undici-types/dispatcher.d.ts +256 -0
  180. package/packages/mailx-send/mailsend/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  181. package/packages/mailx-send/mailsend/node_modules/undici-types/errors.d.ts +149 -0
  182. package/packages/mailx-send/mailsend/node_modules/undici-types/eventsource.d.ts +61 -0
  183. package/packages/mailx-send/mailsend/node_modules/undici-types/fetch.d.ts +209 -0
  184. package/packages/mailx-send/mailsend/node_modules/undici-types/file.d.ts +39 -0
  185. package/packages/mailx-send/mailsend/node_modules/undici-types/filereader.d.ts +54 -0
  186. package/packages/mailx-send/mailsend/node_modules/undici-types/formdata.d.ts +108 -0
  187. package/packages/mailx-send/mailsend/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  188. package/packages/mailx-send/mailsend/node_modules/undici-types/global-origin.d.ts +7 -0
  189. package/packages/mailx-send/mailsend/node_modules/undici-types/handlers.d.ts +15 -0
  190. package/packages/mailx-send/mailsend/node_modules/undici-types/header.d.ts +4 -0
  191. package/packages/mailx-send/mailsend/node_modules/undici-types/index.d.ts +71 -0
  192. package/packages/mailx-send/mailsend/node_modules/undici-types/interceptors.d.ts +17 -0
  193. package/packages/mailx-send/mailsend/node_modules/undici-types/mock-agent.d.ts +50 -0
  194. package/packages/mailx-send/mailsend/node_modules/undici-types/mock-client.d.ts +25 -0
  195. package/packages/mailx-send/mailsend/node_modules/undici-types/mock-errors.d.ts +12 -0
  196. package/packages/mailx-send/mailsend/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  197. package/packages/mailx-send/mailsend/node_modules/undici-types/mock-pool.d.ts +25 -0
  198. package/packages/mailx-send/mailsend/node_modules/undici-types/package.json +55 -0
  199. package/packages/mailx-send/mailsend/node_modules/undici-types/patch.d.ts +33 -0
  200. package/packages/mailx-send/mailsend/node_modules/undici-types/pool-stats.d.ts +19 -0
  201. package/packages/mailx-send/mailsend/node_modules/undici-types/pool.d.ts +39 -0
  202. package/packages/mailx-send/mailsend/node_modules/undici-types/proxy-agent.d.ts +28 -0
  203. package/packages/mailx-send/mailsend/node_modules/undici-types/readable.d.ts +65 -0
  204. package/packages/mailx-send/mailsend/node_modules/undici-types/retry-agent.d.ts +8 -0
  205. package/packages/mailx-send/mailsend/node_modules/undici-types/retry-handler.d.ts +116 -0
  206. package/packages/mailx-send/mailsend/node_modules/undici-types/util.d.ts +18 -0
  207. package/packages/mailx-send/mailsend/node_modules/undici-types/webidl.d.ts +228 -0
  208. package/packages/mailx-send/mailsend/node_modules/undici-types/websocket.d.ts +150 -0
  209. package/packages/mailx-server/index.js +1 -1
  210. package/packages/mailx-settings/cloud.js +12 -7
  211. package/packages/mailx-settings/index.js +22 -1
  212. package/client/.gitattributes +0 -10
  213. package/client/app.js.map +0 -1
  214. package/client/app.ts +0 -3190
  215. package/client/components/address-book.js.map +0 -1
  216. package/client/components/address-book.ts +0 -204
  217. package/client/components/alarms.js.map +0 -1
  218. package/client/components/alarms.ts +0 -276
  219. package/client/components/calendar-sidebar.js.map +0 -1
  220. package/client/components/calendar-sidebar.ts +0 -474
  221. package/client/components/calendar.js.map +0 -1
  222. package/client/components/calendar.ts +0 -211
  223. package/client/components/context-menu.js.map +0 -1
  224. package/client/components/context-menu.ts +0 -95
  225. package/client/components/folder-picker.js.map +0 -1
  226. package/client/components/folder-picker.ts +0 -127
  227. package/client/components/folder-tree.js.map +0 -1
  228. package/client/components/folder-tree.ts +0 -1069
  229. package/client/components/message-list.js.map +0 -1
  230. package/client/components/message-list.ts +0 -1129
  231. package/client/components/message-viewer.js.map +0 -1
  232. package/client/components/message-viewer.ts +0 -1257
  233. package/client/components/outbox-view.js.map +0 -1
  234. package/client/components/outbox-view.ts +0 -102
  235. package/client/components/tasks.js.map +0 -1
  236. package/client/components/tasks.ts +0 -234
  237. package/client/compose/compose.js.map +0 -1
  238. package/client/compose/compose.ts +0 -1231
  239. package/client/compose/editor.js.map +0 -1
  240. package/client/compose/editor.ts +0 -599
  241. package/client/compose/ghost-text.js.map +0 -1
  242. package/client/compose/ghost-text.ts +0 -140
  243. package/client/lib/android-bootstrap.js.map +0 -1
  244. package/client/lib/android-bootstrap.ts +0 -9
  245. package/client/lib/api-client.js.map +0 -1
  246. package/client/lib/api-client.ts +0 -439
  247. package/client/lib/local-service.js.map +0 -1
  248. package/client/lib/local-service.ts +0 -646
  249. package/client/lib/local-store.js.map +0 -1
  250. package/client/lib/local-store.ts +0 -283
  251. package/client/lib/message-state.js.map +0 -1
  252. package/client/lib/message-state.ts +0 -160
  253. package/client/tsconfig.json +0 -19
  254. package/packages/mailx-api/.gitattributes +0 -10
  255. package/packages/mailx-api/index.d.ts.map +0 -1
  256. package/packages/mailx-api/index.js.map +0 -1
  257. package/packages/mailx-api/index.ts +0 -283
  258. package/packages/mailx-api/tsconfig.json +0 -9
  259. package/packages/mailx-compose/.gitattributes +0 -10
  260. package/packages/mailx-compose/index.d.ts.map +0 -1
  261. package/packages/mailx-compose/index.js.map +0 -1
  262. package/packages/mailx-compose/index.ts +0 -85
  263. package/packages/mailx-compose/tsconfig.json +0 -9
  264. package/packages/mailx-host/.gitattributes +0 -10
  265. package/packages/mailx-host/index.d.ts +0 -21
  266. package/packages/mailx-host/index.d.ts.map +0 -1
  267. package/packages/mailx-host/index.js +0 -29
  268. package/packages/mailx-host/index.js.map +0 -1
  269. package/packages/mailx-host/index.ts +0 -38
  270. package/packages/mailx-host/package.json +0 -23
  271. package/packages/mailx-host/tsconfig.json +0 -9
  272. package/packages/mailx-host/types-shim.d.ts +0 -14
  273. package/packages/mailx-imap/.gitattributes +0 -10
  274. package/packages/mailx-imap/index.d.ts +0 -442
  275. package/packages/mailx-imap/index.d.ts.map +0 -1
  276. package/packages/mailx-imap/index.js +0 -3684
  277. package/packages/mailx-imap/index.js.map +0 -1
  278. package/packages/mailx-imap/index.ts +0 -3652
  279. package/packages/mailx-imap/package-lock.json +0 -131
  280. package/packages/mailx-imap/package.json +0 -28
  281. package/packages/mailx-imap/providers/gmail-api.d.ts +0 -8
  282. package/packages/mailx-imap/providers/gmail-api.d.ts.map +0 -1
  283. package/packages/mailx-imap/providers/gmail-api.js +0 -8
  284. package/packages/mailx-imap/providers/gmail-api.js.map +0 -1
  285. package/packages/mailx-imap/providers/gmail-api.ts +0 -8
  286. package/packages/mailx-imap/providers/outlook-api.ts +0 -7
  287. package/packages/mailx-imap/providers/types.d.ts +0 -9
  288. package/packages/mailx-imap/providers/types.d.ts.map +0 -1
  289. package/packages/mailx-imap/providers/types.js +0 -9
  290. package/packages/mailx-imap/providers/types.js.map +0 -1
  291. package/packages/mailx-imap/providers/types.ts +0 -9
  292. package/packages/mailx-imap/tsconfig.json +0 -9
  293. package/packages/mailx-imap/tsconfig.tsbuildinfo +0 -1
  294. package/packages/mailx-send/.gitattributes +0 -10
  295. package/packages/mailx-send/cli-queue.d.ts.map +0 -1
  296. package/packages/mailx-send/cli-queue.js.map +0 -1
  297. package/packages/mailx-send/cli-queue.ts +0 -62
  298. package/packages/mailx-send/cli-send.d.ts.map +0 -1
  299. package/packages/mailx-send/cli-send.js.map +0 -1
  300. package/packages/mailx-send/cli-send.ts +0 -83
  301. package/packages/mailx-send/cli.d.ts.map +0 -1
  302. package/packages/mailx-send/cli.js.map +0 -1
  303. package/packages/mailx-send/cli.ts +0 -126
  304. package/packages/mailx-send/index.d.ts.map +0 -1
  305. package/packages/mailx-send/index.js.map +0 -1
  306. package/packages/mailx-send/index.ts +0 -333
  307. package/packages/mailx-send/mailsend/cli.d.ts.map +0 -1
  308. package/packages/mailx-send/mailsend/cli.js.map +0 -1
  309. package/packages/mailx-send/mailsend/cli.ts +0 -81
  310. package/packages/mailx-send/mailsend/index.d.ts.map +0 -1
  311. package/packages/mailx-send/mailsend/index.js.map +0 -1
  312. package/packages/mailx-send/mailsend/index.ts +0 -333
  313. package/packages/mailx-send/mailsend/tsconfig.json +0 -21
  314. package/packages/mailx-send/package-lock.json +0 -65
  315. package/packages/mailx-send/tsconfig.json +0 -21
  316. package/packages/mailx-server/.gitattributes +0 -10
  317. package/packages/mailx-server/index.d.ts.map +0 -1
  318. package/packages/mailx-server/index.js.map +0 -1
  319. package/packages/mailx-server/index.ts +0 -429
  320. package/packages/mailx-server/tsconfig.json +0 -9
  321. package/packages/mailx-settings/.gitattributes +0 -10
  322. package/packages/mailx-settings/cloud.d.ts.map +0 -1
  323. package/packages/mailx-settings/cloud.js.map +0 -1
  324. package/packages/mailx-settings/cloud.ts +0 -388
  325. package/packages/mailx-settings/index.d.ts.map +0 -1
  326. package/packages/mailx-settings/index.js.map +0 -1
  327. package/packages/mailx-settings/index.ts +0 -892
  328. package/packages/mailx-settings/tsconfig.json +0 -9
  329. package/packages/mailx-store/.gitattributes +0 -10
  330. package/packages/mailx-store/db.d.ts.map +0 -1
  331. package/packages/mailx-store/db.js.map +0 -1
  332. package/packages/mailx-store/db.ts +0 -2007
  333. package/packages/mailx-store/file-store.d.ts.map +0 -1
  334. package/packages/mailx-store/file-store.js.map +0 -1
  335. package/packages/mailx-store/file-store.ts +0 -82
  336. package/packages/mailx-store/index.d.ts.map +0 -1
  337. package/packages/mailx-store/index.js.map +0 -1
  338. package/packages/mailx-store/index.ts +0 -7
  339. package/packages/mailx-store/tsconfig.json +0 -9
  340. package/packages/mailx-types/.gitattributes +0 -10
  341. package/packages/mailx-types/index.d.ts.map +0 -1
  342. package/packages/mailx-types/index.js.map +0 -1
  343. package/packages/mailx-types/index.ts +0 -498
  344. package/packages/mailx-types/tsconfig.json +0 -9
@@ -0,0 +1,88 @@
1
+ 'use strict';
2
+
3
+ const globals = require('globals');
4
+
5
+ module.exports = [
6
+ {
7
+ ignores: ['node_modules/**', 'coverage/**', 'dist/**', 'build/**', '.nyc_output/**']
8
+ },
9
+ {
10
+ files: ['**/*.js'],
11
+ languageOptions: {
12
+ ecmaVersion: 2017,
13
+ sourceType: 'script',
14
+ globals: Object.assign({}, globals.node, globals.es2017, {
15
+ it: true,
16
+ describe: true,
17
+ beforeEach: true,
18
+ afterEach: true
19
+ })
20
+ },
21
+ rules: {
22
+ // Error detection
23
+ 'for-direction': 'error',
24
+ 'no-await-in-loop': 'error',
25
+ 'no-div-regex': 'error',
26
+ eqeqeq: 'error',
27
+ 'dot-notation': 'error',
28
+ curly: 'error',
29
+ 'no-fallthrough': 'error',
30
+ 'no-unused-expressions': [
31
+ 'error',
32
+ {
33
+ allowShortCircuit: true
34
+ }
35
+ ],
36
+ 'no-unused-vars': [
37
+ 'error',
38
+ {
39
+ varsIgnorePattern: '^_',
40
+ argsIgnorePattern: '^_',
41
+ caughtErrorsIgnorePattern: '^_'
42
+ }
43
+ ],
44
+ 'handle-callback-err': 'error',
45
+ 'no-new': 'error',
46
+ 'new-cap': 'error',
47
+ 'no-eval': 'error',
48
+ 'no-invalid-this': 'error',
49
+ radix: ['error', 'always'],
50
+ 'no-use-before-define': ['error', 'nofunc'],
51
+ 'callback-return': ['error', ['callback', 'cb', 'done']],
52
+ 'no-regex-spaces': 'error',
53
+ 'no-empty': 'error',
54
+ 'no-duplicate-case': 'error',
55
+ 'no-empty-character-class': 'error',
56
+ 'no-redeclare': 'off', // Disabled per project preference
57
+ 'block-scoped-var': 'error',
58
+ 'no-sequences': 'error',
59
+ 'no-throw-literal': 'error',
60
+ 'no-useless-call': 'error',
61
+ 'no-useless-concat': 'error',
62
+ 'no-void': 'error',
63
+ yoda: 'error',
64
+ 'no-undef': 'error',
65
+ 'global-require': 'error',
66
+ 'no-var': 'error',
67
+ 'no-bitwise': 'error',
68
+ 'no-lonely-if': 'error',
69
+ 'no-mixed-spaces-and-tabs': 'error',
70
+ 'arrow-body-style': ['error', 'as-needed'],
71
+ 'arrow-parens': ['error', 'as-needed'],
72
+ 'prefer-arrow-callback': 'error',
73
+ 'object-shorthand': 'error',
74
+ 'prefer-spread': 'error',
75
+ 'no-prototype-builtins': 'off', // Disabled per project preference
76
+ strict: ['error', 'global'],
77
+
78
+ // Disable all formatting rules (handled by Prettier)
79
+ indent: 'off',
80
+ quotes: 'off',
81
+ 'linebreak-style': 'off',
82
+ semi: 'off',
83
+ 'quote-props': 'off',
84
+ 'comma-dangle': 'off',
85
+ 'comma-style': 'off'
86
+ }
87
+ }
88
+ ];
@@ -0,0 +1,383 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * Converts tokens for a single address into an address object
5
+ *
6
+ * @param {Array} tokens Tokens object
7
+ * @param {Number} depth Current recursion depth for nested group protection
8
+ * @return {Object} Address object
9
+ */
10
+ function _handleAddress(tokens, depth) {
11
+ let isGroup = false;
12
+ let state = 'text';
13
+ let address;
14
+ let addresses = [];
15
+ let data = {
16
+ address: [],
17
+ comment: [],
18
+ group: [],
19
+ text: [],
20
+ textWasQuoted: [] // Track which text tokens came from inside quotes
21
+ };
22
+ let i;
23
+ let len;
24
+ let insideQuotes = false; // Track if we're currently inside a quoted string
25
+
26
+ // Filter out <addresses>, (comments) and regular text
27
+ for (i = 0, len = tokens.length; i < len; i++) {
28
+ let token = tokens[i];
29
+ let prevToken = i ? tokens[i - 1] : null;
30
+ if (token.type === 'operator') {
31
+ switch (token.value) {
32
+ case '<':
33
+ state = 'address';
34
+ insideQuotes = false;
35
+ break;
36
+ case '(':
37
+ state = 'comment';
38
+ insideQuotes = false;
39
+ break;
40
+ case ':':
41
+ state = 'group';
42
+ isGroup = true;
43
+ insideQuotes = false;
44
+ break;
45
+ case '"':
46
+ // Track quote state for text tokens
47
+ insideQuotes = !insideQuotes;
48
+ state = 'text';
49
+ break;
50
+ default:
51
+ state = 'text';
52
+ insideQuotes = false;
53
+ break;
54
+ }
55
+ } else if (token.value) {
56
+ if (state === 'address') {
57
+ // handle use case where unquoted name includes a "<"
58
+ // Apple Mail truncates everything between an unexpected < and an address
59
+ // and so will we
60
+ token.value = token.value.replace(/^[^<]*<\s*/, '');
61
+ }
62
+
63
+ if (prevToken && prevToken.noBreak && data[state].length) {
64
+ // join values
65
+ data[state][data[state].length - 1] += token.value;
66
+ if (state === 'text' && insideQuotes) {
67
+ data.textWasQuoted[data.textWasQuoted.length - 1] = true;
68
+ }
69
+ } else {
70
+ data[state].push(token.value);
71
+ if (state === 'text') {
72
+ data.textWasQuoted.push(insideQuotes);
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ // If there is no text but a comment, replace the two
79
+ if (!data.text.length && data.comment.length) {
80
+ data.text = data.comment;
81
+ data.comment = [];
82
+ }
83
+
84
+ if (isGroup) {
85
+ // http://tools.ietf.org/html/rfc2822#appendix-A.1.3
86
+ data.text = data.text.join(' ');
87
+
88
+ // Parse group members, but flatten any nested groups (RFC 5322 doesn't allow nesting)
89
+ let groupMembers = [];
90
+ if (data.group.length) {
91
+ let parsedGroup = addressparser(data.group.join(','), { _depth: depth + 1 });
92
+ // Flatten: if any member is itself a group, extract its members into the sequence
93
+ parsedGroup.forEach(member => {
94
+ if (member.group) {
95
+ // Nested group detected - flatten it by adding its members directly
96
+ groupMembers = groupMembers.concat(member.group);
97
+ } else {
98
+ groupMembers.push(member);
99
+ }
100
+ });
101
+ }
102
+
103
+ addresses.push({
104
+ name: data.text || (address && address.name),
105
+ group: groupMembers
106
+ });
107
+ } else {
108
+ // If no address was found, try to detect one from regular text
109
+ if (!data.address.length && data.text.length) {
110
+ for (i = data.text.length - 1; i >= 0; i--) {
111
+ // Security fix: Do not extract email addresses from quoted strings
112
+ // RFC 5321 allows @ inside quoted local-parts like "user@domain"@example.com
113
+ // Extracting emails from quoted text leads to misrouting vulnerabilities
114
+ if (!data.textWasQuoted[i] && data.text[i].match(/^[^@\s]+@[^@\s]+$/)) {
115
+ data.address = data.text.splice(i, 1);
116
+ data.textWasQuoted.splice(i, 1);
117
+ break;
118
+ }
119
+ }
120
+
121
+ let _regexHandler = function (address) {
122
+ if (!data.address.length) {
123
+ data.address = [address.trim()];
124
+ return ' ';
125
+ } else {
126
+ return address;
127
+ }
128
+ };
129
+
130
+ // still no address
131
+ if (!data.address.length) {
132
+ for (i = data.text.length - 1; i >= 0; i--) {
133
+ // Security fix: Do not extract email addresses from quoted strings
134
+ if (!data.textWasQuoted[i]) {
135
+ // fixed the regex to parse email address correctly when email address has more than one @
136
+ data.text[i] = data.text[i].replace(/\s*\b[^@\s]+@[^\s]+\b\s*/, _regexHandler).trim();
137
+ if (data.address.length) {
138
+ break;
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+
145
+ // If there's still is no text but a comment exixts, replace the two
146
+ if (!data.text.length && data.comment.length) {
147
+ data.text = data.comment;
148
+ data.comment = [];
149
+ }
150
+
151
+ // Keep only the first address occurence, push others to regular text
152
+ if (data.address.length > 1) {
153
+ data.text = data.text.concat(data.address.splice(1));
154
+ }
155
+
156
+ // Join values with spaces
157
+ data.text = data.text.join(' ');
158
+ data.address = data.address.join(' ');
159
+
160
+ if (!data.address && isGroup) {
161
+ return [];
162
+ } else {
163
+ address = {
164
+ address: data.address || data.text || '',
165
+ name: data.text || data.address || ''
166
+ };
167
+
168
+ if (address.address === address.name) {
169
+ if ((address.address || '').match(/@/)) {
170
+ address.name = '';
171
+ } else {
172
+ address.address = '';
173
+ }
174
+ }
175
+
176
+ addresses.push(address);
177
+ }
178
+ }
179
+
180
+ return addresses;
181
+ }
182
+
183
+ /**
184
+ * Creates a Tokenizer object for tokenizing address field strings
185
+ *
186
+ * @constructor
187
+ * @param {String} str Address field string
188
+ */
189
+ class Tokenizer {
190
+ constructor(str) {
191
+ this.str = (str || '').toString();
192
+ this.operatorCurrent = '';
193
+ this.operatorExpecting = '';
194
+ this.node = null;
195
+ this.escaped = false;
196
+
197
+ this.list = [];
198
+ /**
199
+ * Operator tokens and which tokens are expected to end the sequence
200
+ */
201
+ this.operators = {
202
+ '"': '"',
203
+ '(': ')',
204
+ '<': '>',
205
+ ',': '',
206
+ ':': ';',
207
+ // Semicolons are not a legal delimiter per the RFC2822 grammar other
208
+ // than for terminating a group, but they are also not valid for any
209
+ // other use in this context. Given that some mail clients have
210
+ // historically allowed the semicolon as a delimiter equivalent to the
211
+ // comma in their UI, it makes sense to treat them the same as a comma
212
+ // when used outside of a group.
213
+ ';': ''
214
+ };
215
+ }
216
+
217
+ /**
218
+ * Tokenizes the original input string
219
+ *
220
+ * @return {Array} An array of operator|text tokens
221
+ */
222
+ tokenize() {
223
+ let list = [];
224
+
225
+ for (let i = 0, len = this.str.length; i < len; i++) {
226
+ let chr = this.str.charAt(i);
227
+ let nextChr = i < len - 1 ? this.str.charAt(i + 1) : null;
228
+ this.checkChar(chr, nextChr);
229
+ }
230
+
231
+ this.list.forEach(node => {
232
+ node.value = (node.value || '').toString().trim();
233
+ if (node.value) {
234
+ list.push(node);
235
+ }
236
+ });
237
+
238
+ return list;
239
+ }
240
+
241
+ /**
242
+ * Checks if a character is an operator or text and acts accordingly
243
+ *
244
+ * @param {String} chr Character from the address field
245
+ */
246
+ checkChar(chr, nextChr) {
247
+ if (this.escaped) {
248
+ // ignore next condition blocks
249
+ } else if (chr === this.operatorExpecting) {
250
+ this.node = {
251
+ type: 'operator',
252
+ value: chr
253
+ };
254
+
255
+ if (nextChr && ![' ', '\t', '\r', '\n', ',', ';'].includes(nextChr)) {
256
+ this.node.noBreak = true;
257
+ }
258
+
259
+ this.list.push(this.node);
260
+ this.node = null;
261
+ this.operatorExpecting = '';
262
+ this.escaped = false;
263
+
264
+ return;
265
+ } else if (!this.operatorExpecting && chr in this.operators) {
266
+ this.node = {
267
+ type: 'operator',
268
+ value: chr
269
+ };
270
+ this.list.push(this.node);
271
+ this.node = null;
272
+ this.operatorExpecting = this.operators[chr];
273
+ this.escaped = false;
274
+ return;
275
+ } else if (['"', "'"].includes(this.operatorExpecting) && chr === '\\') {
276
+ this.escaped = true;
277
+ return;
278
+ }
279
+
280
+ if (!this.node) {
281
+ this.node = {
282
+ type: 'text',
283
+ value: ''
284
+ };
285
+ this.list.push(this.node);
286
+ }
287
+
288
+ if (chr === '\n') {
289
+ // Convert newlines to spaces. Carriage return is ignored as \r and \n usually
290
+ // go together anyway and there already is a WS for \n. Lone \r means something is fishy.
291
+ chr = ' ';
292
+ }
293
+
294
+ if (chr.charCodeAt(0) >= 0x21 || [' ', '\t'].includes(chr)) {
295
+ // skip command bytes
296
+ this.node.value += chr;
297
+ }
298
+
299
+ this.escaped = false;
300
+ }
301
+ }
302
+
303
+ /**
304
+ * Maximum recursion depth for parsing nested groups.
305
+ * RFC 5322 doesn't allow nested groups, so this is a safeguard against
306
+ * malicious input that could cause stack overflow.
307
+ */
308
+ const MAX_NESTED_GROUP_DEPTH = 50;
309
+
310
+ /**
311
+ * Parses structured e-mail addresses from an address field
312
+ *
313
+ * Example:
314
+ *
315
+ * 'Name <address@domain>'
316
+ *
317
+ * will be converted to
318
+ *
319
+ * [{name: 'Name', address: 'address@domain'}]
320
+ *
321
+ * @param {String} str Address field
322
+ * @param {Object} options Optional options object
323
+ * @param {Number} options._depth Internal recursion depth counter (do not set manually)
324
+ * @return {Array} An array of address objects
325
+ */
326
+ function addressparser(str, options) {
327
+ options = options || {};
328
+ let depth = options._depth || 0;
329
+
330
+ // Prevent stack overflow from deeply nested groups (DoS protection)
331
+ if (depth > MAX_NESTED_GROUP_DEPTH) {
332
+ return [];
333
+ }
334
+
335
+ let tokenizer = new Tokenizer(str);
336
+ let tokens = tokenizer.tokenize();
337
+
338
+ let addresses = [];
339
+ let address = [];
340
+ let parsedAddresses = [];
341
+
342
+ tokens.forEach(token => {
343
+ if (token.type === 'operator' && (token.value === ',' || token.value === ';')) {
344
+ if (address.length) {
345
+ addresses.push(address);
346
+ }
347
+ address = [];
348
+ } else {
349
+ address.push(token);
350
+ }
351
+ });
352
+
353
+ if (address.length) {
354
+ addresses.push(address);
355
+ }
356
+
357
+ addresses.forEach(address => {
358
+ address = _handleAddress(address, depth);
359
+ if (address.length) {
360
+ parsedAddresses = parsedAddresses.concat(address);
361
+ }
362
+ });
363
+
364
+ if (options.flatten) {
365
+ let addresses = [];
366
+ let walkAddressList = list => {
367
+ list.forEach(address => {
368
+ if (address.group) {
369
+ return walkAddressList(address.group);
370
+ } else {
371
+ addresses.push(address);
372
+ }
373
+ });
374
+ };
375
+ walkAddressList(parsedAddresses);
376
+ return addresses;
377
+ }
378
+
379
+ return parsedAddresses;
380
+ }
381
+
382
+ // expose to the world
383
+ module.exports = addressparser;
@@ -0,0 +1,139 @@
1
+ 'use strict';
2
+
3
+ const Transform = require('stream').Transform;
4
+
5
+ /**
6
+ * Encodes a Buffer into a base64 encoded string
7
+ *
8
+ * @param {Buffer} buffer Buffer to convert
9
+ * @returns {String} base64 encoded string
10
+ */
11
+ function encode(buffer) {
12
+ if (typeof buffer === 'string') {
13
+ buffer = Buffer.from(buffer, 'utf-8');
14
+ }
15
+
16
+ return buffer.toString('base64');
17
+ }
18
+
19
+ /**
20
+ * Adds soft line breaks to a base64 string
21
+ *
22
+ * @param {String} str base64 encoded string that might need line wrapping
23
+ * @param {Number} [lineLength=76] Maximum allowed length for a line
24
+ * @returns {String} Soft-wrapped base64 encoded string
25
+ */
26
+ function wrap(str, lineLength) {
27
+ str = (str || '').toString();
28
+ lineLength = lineLength || 76;
29
+
30
+ if (str.length <= lineLength) {
31
+ return str;
32
+ }
33
+
34
+ let result = [];
35
+ let pos = 0;
36
+ let chunkLength = lineLength * 1024;
37
+ while (pos < str.length) {
38
+ let wrappedLines = str.substr(pos, chunkLength).replace(new RegExp('.{' + lineLength + '}', 'g'), '$&\r\n');
39
+ result.push(wrappedLines);
40
+ pos += chunkLength;
41
+ }
42
+
43
+ return result.join('');
44
+ }
45
+
46
+ /**
47
+ * Creates a transform stream for encoding data to base64 encoding
48
+ *
49
+ * @constructor
50
+ * @param {Object} options Stream options
51
+ * @param {Number} [options.lineLength=76] Maximum length for lines, set to false to disable wrapping
52
+ */
53
+ class Encoder extends Transform {
54
+ constructor(options) {
55
+ super();
56
+ this.options = options || {};
57
+
58
+ if (this.options.lineLength !== false) {
59
+ this.options.lineLength = this.options.lineLength || 76;
60
+ }
61
+
62
+ this._curLine = '';
63
+ this._remainingBytes = false;
64
+
65
+ this.inputBytes = 0;
66
+ this.outputBytes = 0;
67
+ }
68
+
69
+ _transform(chunk, encoding, done) {
70
+ if (encoding !== 'buffer') {
71
+ chunk = Buffer.from(chunk, encoding);
72
+ }
73
+
74
+ if (!chunk || !chunk.length) {
75
+ return setImmediate(done);
76
+ }
77
+
78
+ this.inputBytes += chunk.length;
79
+
80
+ if (this._remainingBytes && this._remainingBytes.length) {
81
+ chunk = Buffer.concat([this._remainingBytes, chunk], this._remainingBytes.length + chunk.length);
82
+ this._remainingBytes = false;
83
+ }
84
+
85
+ if (chunk.length % 3) {
86
+ this._remainingBytes = chunk.slice(chunk.length - (chunk.length % 3));
87
+ chunk = chunk.slice(0, chunk.length - (chunk.length % 3));
88
+ } else {
89
+ this._remainingBytes = false;
90
+ }
91
+
92
+ let b64 = this._curLine + encode(chunk);
93
+
94
+ if (this.options.lineLength) {
95
+ b64 = wrap(b64, this.options.lineLength);
96
+
97
+ let lastLF = b64.lastIndexOf('\n');
98
+ if (lastLF < 0) {
99
+ this._curLine = b64;
100
+ b64 = '';
101
+ } else {
102
+ this._curLine = b64.substring(lastLF + 1);
103
+ b64 = b64.substring(0, lastLF + 1);
104
+
105
+ if (b64 && !b64.endsWith('\r\n')) {
106
+ b64 += '\r\n';
107
+ }
108
+ }
109
+ } else {
110
+ this._curLine = '';
111
+ }
112
+
113
+ if (b64) {
114
+ this.outputBytes += b64.length;
115
+ this.push(Buffer.from(b64, 'ascii'));
116
+ }
117
+
118
+ setImmediate(done);
119
+ }
120
+
121
+ _flush(done) {
122
+ if (this._remainingBytes && this._remainingBytes.length) {
123
+ this._curLine += encode(this._remainingBytes);
124
+ }
125
+
126
+ if (this._curLine) {
127
+ this.outputBytes += this._curLine.length;
128
+ this.push(Buffer.from(this._curLine, 'ascii'));
129
+ this._curLine = '';
130
+ }
131
+ done();
132
+ }
133
+ }
134
+
135
+ module.exports = {
136
+ encode,
137
+ wrap,
138
+ Encoder
139
+ };