Forrest logo
back to context overview

mu

List of commands for mu:

  • mu:tldr:01622 mu: Index new emails.
    $ mu index
    try on your machine
    explain this command
  • mu:tldr:5860f mu: Initialize the email database, optionally specifying the Maildir directory and email addresses.
    $ mu init --maildir=${path-to-directory} --my-address=${name@example-com}
    try on your machine
    explain this command
  • mu:tldr:5a542 mu: Find messages using a specific keyword (in message body, subject, sender, ...).
    $ mu find ${keyword}
    try on your machine
    explain this command
  • mu:tldr:7e5dc mu: Find messages to Alice with subject `jellyfish` containing the words `apples` or `oranges`.
    $ mu find to:${alice} subject:${jellyfish} ${apples} OR ${oranges}
    try on your machine
    explain this command
  • mu:tldr:8b602 mu: Find messages from Sam with attached images, between 2 KiB and 2 MiB, written in 2021.
    $ mu find 'mime:${image-*} size:${2k--2m} date:${20210101--20211231} from:${sam}
    try on your machine
    explain this command
  • mu:tldr:b3129 mu: Find unread messages about words starting with `soc` (the `*` only works at the end of the search term) in the Sent Items folder.
    $ mu find 'subject:${soc}*' flag:${unread} maildir:'/${Sent Items}'
    try on your machine
    explain this command
  • mu:tldr:c6521 mu: List contacts with `Bob` in either name or email address.
    $ mu cfind ${Bob}
    try on your machine
    explain this command
back to context overview