How To Install libemail-sender-perl on Debian 10
Introduction
In this tutorial we learn how to install libemail-sender-perl
on Debian 10.
What is libemail-sender-perl
libemail-sender-perl is:
Email::Sender is a Perl module provides an interface to send email via many backends, including sendmail, SMTP, delivering directly to mbox file, etc.
Email::Sender replaces the old and sometimes problematic Email::Send library (see libemail-send-perl), which did a decent job at handling very simple mail sending tasks, but was not suitable for serious use for a variety of reasons.
There are three methods to install libemail-sender-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libemail-sender-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libemail-sender-perl
using apt-get
by running the following command:
sudo apt-get -y install libemail-sender-perl
Install libemail-sender-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libemail-sender-perl
using apt
by running the following command:
sudo apt -y install libemail-sender-perl
Install libemail-sender-perl Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libemail-sender-perl
using aptitude
by running the following command:
sudo aptitude -y install libemail-sender-perl
How To Uninstall libemail-sender-perl on Debian 10
To uninstall only the libemail-sender-perl
package we can use the following command:
sudo apt-get remove libemail-sender-perl
Uninstall libemail-sender-perl And Its Dependencies
To uninstall libemail-sender-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libemail-sender-perl
Remove libemail-sender-perl Configurations and Data
To remove libemail-sender-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libemail-sender-perl
Remove libemail-sender-perl configuration, data, and all of its dependencies
We can use the following command to remove libemail-sender-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libemail-sender-perl
Dependencies
libemail-sender-perl have the following dependencies:
- libcapture-tiny-perl
- libemail-abstract-perl
- libemail-address-xs-perl
- libemail-simple-perl
- libscalar-list-utils-perl
References
Summary
In this tutorial we learn how to install libemail-sender-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.