Qpsmtpd::Plugin::EmailAddressLoose - Override all Email::Address->parse() used in Qpsmtpd::Plugin


Qpsmtpd-Plugin-EmailAddressLoose documentation Contained in the Qpsmtpd-Plugin-EmailAddressLoose distribution.

Index


Code Index:

NAME

Top

Qpsmtpd::Plugin::EmailAddressLoose - Override all Email::Address->parse() used in Qpsmtpd::Plugin

SYNOPSIS

Top

  # /etc/qpsmtpd/plugins
  Qpsmtpd::Plugin::EmailAddressLoose

AUTHOR

Top

Naoki Tomita <tomita@cpan.org>

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Top

Email::Address::Loose

http://coderepos.org/share/browser/lang/perl/Qpsmtpd-Plugin-EmailAddressLoose (repository)


Qpsmtpd-Plugin-EmailAddressLoose documentation Contained in the Qpsmtpd-Plugin-EmailAddressLoose distribution.

package Qpsmtpd::Plugin::EmailAddressLoose;
use strict;
use warnings;
our $VERSION = '0.02';

use base 'Qpsmtpd::Plugin';

use Email::Address::Loose -override;

1;
__END__