How to Install and Uninstall perl-Mail-Mbox-MessageParser Package on openSuSE Tumbleweed

Last updated: November 07,2024

1. Install "perl-Mail-Mbox-MessageParser" package

In this section, we are going to explain the necessary steps to install perl-Mail-Mbox-MessageParser on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Mail-Mbox-MessageParser

2. Uninstall "perl-Mail-Mbox-MessageParser" package

Please follow the guidance below to uninstall perl-Mail-Mbox-MessageParser on openSuSE Tumbleweed:

$ sudo zypper remove perl-Mail-Mbox-MessageParser

3. Information about the perl-Mail-Mbox-MessageParser package on openSuSE Tumbleweed

Information for package perl-Mail-Mbox-MessageParser:
-----------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Mail-Mbox-MessageParser
Version : 1.5111-1.23
Arch : noarch
Vendor : openSUSE
Installed Size : 133.0 KiB
Installed : No
Status : not installed
Source package : perl-Mail-Mbox-MessageParser-1.5111-1.23.src
Upstream URL : http://search.cpan.org/dist/Mail-Mbox-MessageParser/
Summary : Fast and Simple Mbox Folder Reader
Description :
This module implements a fast but simple mbox folder reader. One of three
implementations (Cache, Grep, Perl) will be used depending on the wishes of
the user and the system configuration. The first implementation is a
cached-based one which stores email information about mailboxes on the file
system. Subsequent accesses will be faster because no analysis of the
mailbox will be needed. The second implementation is one based on GNU grep,
and is significantly faster than the Perl version for mailboxes which
contain very large (10MB) emails. The final implementation is a fast
Perl-based one which should always be applicable.
The Cache implementation is about 6 times faster than the standard Perl
implementation. The Grep implementation is about 4 times faster than the
standard Perl implementation. If you have GNU grep, it's best to enable
both the Cache and Grep implementations. If the cache information is
available, you'll get very fast speeds. Otherwise, you'll take about a 1/3
performance hit when the Grep version is used instead.
The overriding requirement for this module is speed. If you wish more
sophisticated parsing, use Mail::MboxParser (which is based on this module)
or Mail::Box.