listadmin command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
listadmin: command not found
or when using sudo you get the following error message
sudo: listadmin: command not found
Solutions to listadmin: command not found
How To Fix listadmin: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu listadmin is provided by listadmin package.
listadmin is:
listadmin is a command line tool to manipulate the queues of messages held for moderator approval by mailman. It is designed to keep user interaction to a minimum, in theory you could run it from cron to prune the queue. It can use the score from a header added by SpamAssassin to filter, or it can match specific senders, subjects, or reasons.
To fix this problem, we can install more using the command below.
sudo apt-get -y install listadmin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install listadmin.
sudo apt -y install listadmin
Or if you have aptitude installed you can use the following command.
sudo aptitude install listadmin
Summary
In this tutorial we learn how to fix listadmin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.