β This project is still in development is not yet ready for use
Simple mail client for Vim, this work is based on Iris.vim
[//]: #( TODO: Update image) [//]: #
I always wanted to have a integrated mail client in Vim. For me using a client with Vim-like commands was not enough, I wanted to use my plugins and mappings. Then I found Iris:
(Neo)Mutt and Alpine are very good terminal mail clients, but they lack of Vim mappings. You can emulate, but it requires a lot of time, patience and configuration. Why trying to emulate, when you can have it in Vim? VimL and Python are strong enough to do so. The aim of Iris is to provide a simple mail client that:
- Allows you to manage your mails inside Vim
- Does not slow down neither Vim nor your workflow (async+lazy)
- Is built on the top of a robust Python IMAP client to avoid implementing IMAP protocol logic
Unfortunately when I found Iris the project was already archived. Instead it was succeeded by himalaya a more robust mail client with support for a Vim plugin.
Yet it didn't work for me. Therefore, as we say in Catalan "Si vols estar ben servit, fes-te tu mateix el llit", which roughly translates to: Do it yourself.
Since I was already working on a personal project named Iris I decided to rename this fork. Iris made me think on Osiris, then Isis and then Thoth, Egyptian god of messages. Well, Thoth is supposed to be an ibis, so you can guess where the new name came to be. π
New changes made are shown in the changelog. However the main differences with Iris are:
- Support for SSL connection
- Improved key mapping
- Python3 support enabled
:echo has("python3")
- Job enabled
:echo has("job")
- Channel enabled
:echo has("channel")
- Install python library imapclient
pip install imapclient
This project will be only tested on Vim8+, if you want to use it on Neovim I can't guarantee full functionality.
For eg. with vim-plug
:
Plug "marc24force/ibis.vim"
Before using Ibis, you need to configure it:
let g:ibis_name = "My name"
let g:ibis_mail = "[email protected]"
let g:ibis_imap_host = "your.imap.host"
let g:ibis_imap_port = 993
let g:ibis_imap_login = "Your IMAP login" "Default to g:ibis_mail
let g:ibis_smtp_host = "your.smtp.host" "Default to g:ibis_imap_host
let g:ibis_smtp_port = 587
let g:ibis_smtp_login = "Your IMAP login" "Default to g:ibis_mail
On startup, Ibis always asks for your IMAP and SMTP passwords. To avoid this, you can save your password in a file and encrypt it via GPG:
gpg --encrypt --sign --armor --output myfile.gpg myfile
let g:ibis_imap_passwd_filepath = "/path/to/imap.gpg"
let g:ibis_smtp_passwd_filepath = "/path/to/smtp.gpg"
Note: ibis_imap_passwd_filepath
& ibis_smtp_password_filepath
must be absolute paths. For example the path ~/passwords/imap.gpg
would not work because of the ~
.
If you want to use something else than GPG, you can set up your custom command.
For eg., with the MacOSX security
tool:
let g:ibis_imap_passwd_show_cmd = "security find-internet-password -gs IMAP_KEY -w"
let g:ibis_smtp_passwd_show_cmd = "security find-internet-password -gs SMTP_KEY -w"
On startup, Ibis spawns two Python jobs: one for the API, one for the idle mode. The last one allows you to receive notifications on new mails. You can disable this option or change the default timeout (every 15s):
let g:ibis_idle_enabled = 1
let g:ibis_idle_timeout = 15
By default, Ibis fetches your last 50 mails:
let g:ibis_emails_chunk_size = 50
Note: the pagination is based on message sequences which is not necessary consecutive. It makes the pagination less accurate (doesn't fetch always the same amount of mails) but more performant.
let g:ibis_download_dir = "~/Downloads"
:Ibis
Function | Default keybind | Override |
---|---|---|
Preview (text) | <Enter> |
nmap <cr> <plug>(ibis-preview-text-email) |
Preview (html) | gp (for go preview ) |
nmap gp <plug>(ibis-preview-html-email) |
Download attachments | ga (for go attachments ) |
nmap ga <plug>(ibis-download-attachments) |
New mail | gn (for go new ) |
nmap gn <plug>(ibis-new-email) |
Previous page | <Ctrl+b> (for page backward ) |
nmap <c-b> <plug>(ibis-prev-page-emails) |
Next page | <Ctrl+f> (for page forward ) |
nmap <c-f> <plug>(ibis-next-page-emails) |
Change folder | gf (for go folder ) |
nmap gf <plug>(ibis-change-folder) |
Function | Default keybind | Override |
---|---|---|
Reply | gr (for go reply ) |
nmap gr <plug>(ibis-reply-email) |
Reply all | gR (for go reply all ) |
nmap gR <plug>(ibis-reply-all-email) |
Forward | gf (for go forward ) |
nmap gf <plug>(ibis-forward-email) |
Ibis is based on the builtin mail.vim
filetype and syntax. An email should
contains a list of headers followed by the message:
To: mail@test.com
Subject: Welcome
Hello world!
Function | Default keybind | Override |
---|---|---|
Save draft | :w |
|
Send | gs (for go send ) |
nmap gs <plug>(ibis-send-email) |
By default, Ibis will display a basic prompt to select your folders:
:IbisFolder
Ibis supports those fuzzy finders:
Note: Ibis will use the first fuzzy finder available automatically.
Flags appears in the first column of the email list view. There is 5 different flags:
N
if it's a new emailR
if it has been repliedF
if it has been flaggedD
if it's a draft@
if it contains an attachment
In order to autocomplete addresses, Ibis keeps a .contacts
file that contains
emails of your contacts. It's updated each time you send a new email (only the
To
header is used). You can extract existing addresses from all your emails:
:IbisExtractContacts
Note: the completion may need to be triggered manually via <C-x><C-u>
, see
:h i_CTRL-X_CTRL-U
.
Git commits must start with:
[NEW]:
When adding a new feature[UPD]:
When updating a feature or improving it[FIX]:
When fixing an issue[DEL]:
When removing a feature
Don't need to mention the action done after the braked prefix, just the feature or files affected. In case of removing the reason must be stated First letter after the prefix must be capital, and no dot (.) at the end.
Code should be as clean as possible, variables and functions use the snake case
convention. A line should never contain more than 80
characters.
Tests should be added for each new functionality. Be sure to run tests before proposing a pull request.
- Iris
- Neomutt
- Alpine
- IMAPClient
- Class IMAPClient
- Example
- Idle example
- IMAP RFC3501