muttdown command not found

In this troubleshooting guide we learn how to fix muttdown command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

muttdown: command not found

or when using sudo you get the following error message

sudo: muttdown: command not found

Solutions to muttdown: command not found

How To Fix muttdown: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu muttdown is provided by muttdown package.

muttdown is:

muttdown is a sendmail-replacement designed for use with the mutt email client which will transparently compile annotated text/plain mail into text/html using the Markdown standard. It will recursively walk the MIME tree and compile any text/plain or text/markdown part which begins with the sigil “!m” into Markdown, which it will insert alongside the original in a multipart/alternative container.

It’s also smart enough not to break multipart/signed

To fix this problem, we can install more using the command below.

sudo apt-get -y install muttdown

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install muttdown.

sudo apt -y install muttdown

Or if you have aptitude installed you can use the following command.

sudo aptitude install muttdown

Summary

In this tutorial we learn how to fix muttdown command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.