├── .gitignore ├── GetMail-EN ├── GetMailGUI.py ├── LICENSE ├── README.md ├── getmail.py └── requirments.txt ├── GetMailGUI.py ├── LICENSE ├── README.md ├── getmail.py └── requirments.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/.gitignore -------------------------------------------------------------------------------- /GetMail-EN/GetMailGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/GetMail-EN/GetMailGUI.py -------------------------------------------------------------------------------- /GetMail-EN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/GetMail-EN/LICENSE -------------------------------------------------------------------------------- /GetMail-EN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/GetMail-EN/README.md -------------------------------------------------------------------------------- /GetMail-EN/getmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/GetMail-EN/getmail.py -------------------------------------------------------------------------------- /GetMail-EN/requirments.txt: -------------------------------------------------------------------------------- 1 | exchangelib==3.3.2 2 | -------------------------------------------------------------------------------- /GetMailGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/GetMailGUI.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/README.md -------------------------------------------------------------------------------- /getmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0bac/GetMail/HEAD/getmail.py -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- 1 | exchangelib==3.3.2 2 | --------------------------------------------------------------------------------