├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── imap.asd ├── imap.cl ├── imap.html ├── imap.txt ├── load.cl ├── mime-api.cl ├── mime-parse.cl ├── mime-parse.txt ├── mime-transfer-encoding.cl ├── rfc1939.txt ├── rfc2060.txt ├── rfc2822.cl ├── rfc2822.txt ├── rfc3696.txt ├── smtp.cl └── t-imap.cl /.gitignore: -------------------------------------------------------------------------------- 1 | .git-branch-name 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/README.md -------------------------------------------------------------------------------- /imap.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/imap.asd -------------------------------------------------------------------------------- /imap.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/imap.cl -------------------------------------------------------------------------------- /imap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/imap.html -------------------------------------------------------------------------------- /imap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/imap.txt -------------------------------------------------------------------------------- /load.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/load.cl -------------------------------------------------------------------------------- /mime-api.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/mime-api.cl -------------------------------------------------------------------------------- /mime-parse.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/mime-parse.cl -------------------------------------------------------------------------------- /mime-parse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/mime-parse.txt -------------------------------------------------------------------------------- /mime-transfer-encoding.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/mime-transfer-encoding.cl -------------------------------------------------------------------------------- /rfc1939.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/rfc1939.txt -------------------------------------------------------------------------------- /rfc2060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/rfc2060.txt -------------------------------------------------------------------------------- /rfc2822.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/rfc2822.cl -------------------------------------------------------------------------------- /rfc2822.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/rfc2822.txt -------------------------------------------------------------------------------- /rfc3696.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/rfc3696.txt -------------------------------------------------------------------------------- /smtp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/smtp.cl -------------------------------------------------------------------------------- /t-imap.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzinc/imap/HEAD/t-imap.cl --------------------------------------------------------------------------------