> For the complete documentation index, see [llms.txt](https://kashz.gitbook.io/kashz-jewels/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kashz.gitbook.io/kashz-jewels/protocols/imap-143-993.md).

# imap :143 :993

## nc method

```bash
nc -vn IP 143

# login
a LOGIN USER PASS
>> a OK LOGIN Ok.

# list all mailboxes
a LIST "" "*"

# see inside mailbox
a EXAMINE "<inbox-name>"
a SELECT "<inbox-name>"

# if EXISTS, we can FETCH
a FETCH <mail-number> BODY.PEEK[]
a FETCH <mail-number> BODY[]
```

## evolution

```bash
# sudo apt install evolution
File > New > Mail Account
# set up and view mail
```
