In an IMAP mail account I want to reduce the size of messages with huge images as attachments. To do this programmatically for a given message, I guess I need to
- copy the message locally
- shrink the size of the attached images. (I certainly know how to do this part.)
- write the new message back to the IMAP store
- delete the original message
What is the easiest approach to this? If I write an application, I would like to use either a java or python framework. But maybe there is a (command-line) tool doing this already? Any suggestions?