How To Install libdkimpp on Fedora 34

libdkimpp is Lightweight and portable DKIM (RFC4871) library Lightweight and portable DKIM (RFC4871) library

Introduction

In this tutorial we learn how to install libdkimpp on Fedora 34.

What is libdkimpp

libdkim++ is a lightweight and portable DKIM (RFC4871) library for *NIX, supporting both signing and DMARC/SDID/ADSP verification, sponsored and used by Halon Security. libdkim++ has extensive unit test coverage and aims to fully comply with the current RFC. libdkimpp 2.0.0 7.fc34 x86_64 67 k libdkimpp-2.0.0-7.fc34.src.rpm fedora Lightweight and portable DKIM (RFC4871) library https LGPLv3+ libdkim++ is a lightweight and portable DKIM (RFC4871) library for *NIX, supporting both signing and DMARC/SDID/ADSP verification, sponsored and used by Halon Security. libdkim++ has extensive unit test coverage and aims to fully comply with the current RFC.

We can use yum or dnf to install libdkimpp on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdkimpp.

Install libdkimpp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libdkimpp using dnf by running the following command:

sudo dnf -y install libdkimpp

Install libdkimpp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libdkimpp using yum by running the following command:

sudo yum -y install libdkimpp

How To Uninstall libdkimpp on Fedora 34

To uninstall only the libdkimpp package we can use the following command:

sudo dnf remove libdkimpp

libdkimpp Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/6aa4c4e623b403b35a2412eba260892bf040f0
/usr/lib64/libdkim++.so.2
/usr/lib64/libdkim++.so.2.0.0
/usr/share/doc/libdkimpp
/usr/share/doc/libdkimpp/README.md
/usr/share/licenses/libdkimpp
/usr/share/licenses/libdkimpp/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/99
/usr/lib/.build-id/99/c3e714e4907725f22ebb502507c8af273dff35
/usr/lib/libdkim++.so.2
/usr/lib/libdkim++.so.2.0.0
/usr/share/doc/libdkimpp
/usr/share/doc/libdkimpp/README.md
/usr/share/licenses/libdkimpp
/usr/share/licenses/libdkimpp/LICENSE

References

Summary

In this tutorial we learn how to install libdkimpp on Fedora 34 using yum and dnf.