mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
5 years ago
|
# NeoMutt
|
||
5 years ago
|
|
||
5 years ago
|
Neomutt is a mail program that runs in your terminal.
|
||
|
It can be easily configured using mutt-wizard.
|
||
5 years ago
|
|
||
5 years ago
|
## Setup
|
||
|
|
||
|
### Arch-Linux
|
||
5 years ago
|
|
||
5 years ago
|
- `yay -S neomutt isync msmtp pass` - Install all dependecies
|
||
|
- Install mutt-wizard from [github](https://github.com/LukeSmithxyz/mutt-wizard) (AUR is not up to date)
|
||
5 years ago
|
|
||
5 years ago
|
#### Using mutt-wizard
|
||
5 years ago
|
|
||
5 years ago
|
After installation you're able to use the following commands, that will guide you through configuration.
|
||
5 years ago
|
|
||
5 years ago
|
`mw add` to add mailaccounts
|
||
5 years ago
|
|
||
5 years ago
|
`mw ls` to list existing ones
|
||
5 years ago
|
|
||
5 years ago
|
`mw pass` to revise passwords
|
||
5 years ago
|
|
||
5 years ago
|
`mw delete` to delete accounts
|
||
|
|
||
|
`mw purge` to delete all accounts and settings
|
||
|
|
||
|
`mw cron` toggle a cronjob to sync mail
|
||
5 years ago
|
|
||
5 years ago
|
## Usage
|
||
|
|
||
|
## Khard in NeoMutt
|
||
5 years ago
|
|
||
|
- Edit `~/.config/mutt/muttrc`
|
||
|
- Append the following lines.
|
||
|
```
|
||
|
set query_command= "khard email --parsable --search-in-source-files %s"
|
||
|
bind editor <Tab> complete-query
|
||
|
bind editor ^T complete
|
||
|
macro index,pager A \
|
||
|
"<pipe message>khard add-email<return>" \
|
||
|
"add the sender email address to khard"
|
||
|
```
|
||
|
- You should now be able to tab-complete email-addresses in neomutt
|
||
|
- You can also add new ones by pressing A
|
||
|
|