Moving email from one server to another #334
Replies: 2 comments 6 replies
-
No embedded device that has enough memory to keep the message that can be large as hundred kilobytes to megabytes, unless you use PSRAM. For ESP32, it is possible to open two IMAP sessions because it has enough memory. Library allows you to access message that is fetching via stream callback. You can handle the message in that stream e.g. save to filesystem, send to other device via serial port or store in memory which is up to you. |
Beta Was this translation helpful? Give feedback.
-
You should create an nodejs app to work in this way instead of using embedded device to do this hard work. |
Beta Was this translation helpful? Give feedback.
-
Has anybody tried writing an app that would monitor one server's IMAP folder, and move any emails meeting certain criterion (a week old), to another server?
Does the library support reading an email into ram, rather than to flash? Can it handle two open connections to separate servers?
Beta Was this translation helpful? Give feedback.
All reactions