kuvert_submit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kuvert_submit: command not found
or when using sudo you get the following error message
sudo: kuvert_submit: command not found
Solutions to kuvert_submit: command not found
How To Fix kuvert_submit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kuvert_submit is provided by kuvert package.
kuvert is:
kuvert automatically signs and/or encrypts outgoing mail using the PGP/MIME standard (RFC3156), based on the availability of the recipient’s key in your keyring. Other than similar wrappers, kuvert does not store key passphrases itself, ever. kuvert works as a wrapper around your MTA but can be fed mails via SMTP, too.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kuvert
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kuvert.
sudo apt -y install kuvert
Or if you have aptitude installed you can use the following command.
sudo aptitude install kuvert
Summary
In this tutorial we learn how to fix kuvert_submit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.