poppassd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
poppassd: command not found
or when using sudo you get the following error message
sudo: poppassd: command not found
Solutions to poppassd: command not found
How To Fix poppassd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu poppassd is provided by poppassd package.
poppassd is:
This package provides a daemon for changing passwords on POP mail accounts, a feature common to Eudora and other MacOS/Win32 mail user agents. This feature is also commonly used for TCP loopback password changing from web scripting languages like PHP or Perl, so that the webserver process doesn’t need to be run as root (on in the shadow group).
This version of poppassd changes passwords via PAM (as opposed to other versions of the same daemon that used the newusers(8) application to change passwords), allowing for great flexibility.
To fix this problem, we can install more using the command below.
sudo apt-get -y install poppassd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install poppassd.
sudo apt -y install poppassd
Or if you have aptitude installed you can use the following command.
sudo aptitude install poppassd
Summary
In this tutorial we learn how to fix poppassd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.