This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Very simple Python script to download/upload emails from/to an IMAP folder. | |
# This code is based on a simpler version from https://gist.github.com/robulouski/7442321 | |
# This code is released into the public domain. | |
# | |
# Paloha 2020 | |
import os | |
import sys |