The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DNS::RName::Converter - converting between email and rname for DNS SOA record

VERSION

Version 0.01

SYNOPSIS

    use DNS::RName::Converter;

    my $cvt = DNS::RName::Converter->new;
    my $rname = $cvt->email_to_rname($email);
    my $email = $cvt->rname_to_email($rname);

METHODS

new()

Initialize the object.

email_to_rname(email_address)

Convert the email address to the rName for SOA record.

rname_to_email(rName)

Convert the rName from SOA to the standard email address.

SEE ALSO

http://www.ripe.net/ripe/docs/ripe-203

AUTHOR

Ken Peng <yhpeng@cpan.org>

BUGS/LIMITATIONS

If you have found bugs, please send email to <yhpeng@cpan.org>

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc DNS::RName::Converter

COPYRIGHT & LICENSE

Copyright 2014 Ken Peng, all rights reserved.

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