You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Module-Load-0.36-479.fc36.noarch
If you consult "perldoc -f require" you will see that "require" will behave differently when given a bare-word or a string. In the case of a string, "require" assumes you are wanting to load a file. But in the case of a bare-word, it assumes you mean a module. This gives nasty overhead when you are trying to dynamically require modules at run-time, since you will need to change the module notation to a file notation fitting the particular platform you are on. "load" eliminates the need for this overhead and will just DWYM.
RPMPackage perl-Module-Implementation-0.09-32.fc36.noarch
This module abstracts out the process of choosing one of several underlying implementations for a module. This can be used to provide XS and pure Perl implementations of a module, or it could be used to load an implementation for a given OS or any other case of needing to provide multiple implementations. This module is only useful when you know all the implementations ahead of time. If you want to load arbitrary implementations then you probably want something like a plugin system, not this module.
RPMPackage perl-Module-CoreList-5.20220820-1.fc36.noarch
Module::CoreList provides information on which core and dual-life modules are shipped with each version of perl.
RPMPackage perl-Memoize-1.03-486.fc36.noarch
Memoizing a function makes it faster by trading space for time. It does this by caching the return values of the function in a table. If you call the function again with the same arguments, memoize jumps in and gives you the value out of the table, instead of letting the function compute the value all over again.
RPMPackage perl-Math-Complex-1.59-486.fc36.noarch
This package lets you create and manipulate complex numbers. By default, Perl limits itself to real numbers, but an extra "use" statement brings full complex support, along with a full set of mathematical functions typically associated with and/or extended to complex numbers.
RPMPackage perl-Math-BigRat-0.2622-1.fc36.noarch
Math::BigRat complements Math::BigInt and Math::BigFloat by providing support for arbitrary big rational numbers.
RPMPackage perl-Math-BigInt-1.9998.30-1.fc36.noarch
This provides Perl modules for arbitrary-size integer and float mathematics.
RPMPackage perl-MailTools-2.21-10.fc36.noarch
MailTools is a set of ancient Perl modules related to mail applications.
RPMPackage perl-Mail-Sendmail-0.80-14.fc36.noarch
Mail::Sendmail is a simple platform independent library for sending e-mail from your perl script. It only requires Perl 5 and a network connection. Mail::Sendmail contains mainly &sendmail, which takes a hash with the message to send and sends it. It is intended to be very easy to setup and use.
RPMPackage perl-Mail-Sender-0.903-17.fc36.noarch
Module for sending mails with attachments through an SMTP server.
RPMPackage perl-Mail-SPF-Iterator-1.120-4.fc36.noarch
This module provides an iterative resolving of SPF records. Contrary to Mail::SPF, which does blocking DNS lookups, this module just returns the DNS queries and later expects the responses.
RPMPackage perl-Mail-SPF-2.9.0-27.fc36.noarch
Mail::SPF is an object-oriented implementation of Sender Policy Framework (SPF). See http://www.openspf.org for more information about SPF.
RPMPackage perl-Mail-Procmail-1.08-28.fc36.noarch
procmail is a great mail filter program, but it has weird recipe format. It's pattern matching capabilities are basic and often insufficient. This module provides flexibility to filter your mail using the power of Perl.
RPMPackage perl-Mail-Message-3.012-1.fc36.noarch
MIME message handling code, formerly part of the Mail::Box package.
RPMPackage perl-Mail-DKIM-1.20200907-5.fc36.noarch
This module implements the various components of the DKIM and DomainKeys message-signing and verifying standards for Internet mail. It currently tries to implement RFC4871 (for DKIM) and RFC4870 (DomainKeys). It is required if you wish to enable DKIM checking in SpamAssassin via the Mail::SpamAssassin::Plugin::DKIM plugin.
RPMPackage perl-Mail-AuthenticationResults-2.20210915-2.fc36.noarch
Object Oriented Authentication-Results email headers.
RPMPackage perl-Mail-Alias-1.15-1.fc36.noarch
This module allows direct manipulation of various types of E-Mail Alias files. The primary use of Mail::Alias is for manipulating alias files in the SENDMAIL alias file format. Additionally it is possible to read some other formats and to convert between various alias file formats.
RPMPackage perl-MRO-Compat-0.15-2.fc36.noarch
The "mro" namespace provides several utilities for dealing with method resolution order and method caching in general in Perl 5.9.5 and higher. This module provides those interfaces for earlier versions of Perl (back to 5.6.0 anyways). It is a harmless no-op to use this module on 5.9.5+. That is to say, code which properly uses MRO::Compat will work unmodified on both older Perls and 5.9.5+. If you're writing a piece of software that would like to use the parts of 5.9.5+'s mro:: interfaces that are supported here, and you want compatibility with older Perls, this is the module for you.
RPMPackage perl-MIME-Types-2.22-2.fc36.noarch
MIME types are used in many applications, for instance as part of e-mail and HTTP traffic, to indicate the type of content that is transmitted. Sometimes detailed knowledge about a mime-type is need; however, this module only knows about the file-name extensions that relate to some file-type. It can also be used to produce the right format: types that are not registered at IANA need to use 'x-' prefixes.
RPMPackage perl-MIME-Lite-3.033-3.fc36.noarch
MIME::Lite is intended as a simple, standalone module for generating (not parsing!) MIME messages... Specifically, it allows you to output a simple, decent single- or multi-part message with text or binary attachments. It does not require that you have the Mail:: or MIME:: modules installed.