maildirsync command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
maildirsync: command not found
or when using sudo you get the following error message
sudo: maildirsync: command not found
Solutions to maildirsync: command not found
How To Fix maildirsync: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu maildirsync is provided by maildirsync package.
maildirsync is:
maildirsync is a utility for synchronising Maildir folders between computers. It uses its own custom protocol for efficient communication, and uses ssh as its transport.
To fix this problem, we can install more using the command below.
sudo apt-get -y install maildirsync
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install maildirsync.
sudo apt -y install maildirsync
Or if you have aptitude installed you can use the following command.
sudo aptitude install maildirsync
Summary
In this tutorial we learn how to fix maildirsync command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.