How to Install and Uninstall perl-DateTime-Format-Mail Package on openSuSE Tumbleweed

Last updated: May 16,2024

1. Install "perl-DateTime-Format-Mail" package

Please follow the instructions below to install perl-DateTime-Format-Mail on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-DateTime-Format-Mail

2. Uninstall "perl-DateTime-Format-Mail" package

Please follow the instructions below to uninstall perl-DateTime-Format-Mail on openSuSE Tumbleweed:

$ sudo zypper remove perl-DateTime-Format-Mail

3. Information about the perl-DateTime-Format-Mail package on openSuSE Tumbleweed

Information for package perl-DateTime-Format-Mail:
--------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-DateTime-Format-Mail
Version : 0.403-1.22
Arch : noarch
Vendor : openSUSE
Installed Size : 39.9 KiB
Installed : No
Status : not installed
Source package : perl-DateTime-Format-Mail-0.403-1.22.src
Upstream URL : http://search.cpan.org/dist/DateTime-Format-Mail/
Summary : Convert between DateTime and RFC2822/822 formats
Description :
RFCs 2822 and 822 specify date formats to be used by email. This module
parses and emits such dates.
RFC2822 (April 2001) introduces a slightly different format of date than
that used by RFC822 (August 1982). The main correction is that the
preferred format is more limited, and thus easier to parse
programmatically.
Despite the ease of generating and parsing perfectly valid RFC822 and
RFC2822 people still get it wrong. So this module provides four things for
those handling mail dates:
* 1
A strict parser that will only accept RFC2822 dates, so you can see where
you're right.
* 2
A strict formatter, so you can generate the right stuff to begin with.
* 3
A _loose_ parser, so you can take the misbegotten output from other
programs and turn it into something useful. This includes various minor
errors as well as some somewhat more bizarre mistakes. The file
_t/sample_dates_ in this module's distribution should give you an idea of
what's valid, while _t/invalid.t_ should do the same for what's not. Those
regarded as invalid are just a bit *too* strange to allow.
* 4
Interoperation with the rest of the DateTime suite. These are a collection
of modules to handle dates in a modern and accurate fashion. In particular,
they make it trivial to parse, manipulate and then format dates. Shifting
timezones is a doddle, and converting between formats is a cinch.
As a future direction, I'm contemplating an even stricter parser that will
only accept dates with no obsolete elements.