CPAN::Testers::Data::Addresses - CPAN Testers Addresses Database Manager


NAME

CPAN::Testers::Data::Addresses - CPAN Testers Addresses Database Manager


SYNOPSIS

  perl addresses.pl \
        [--verbose|v] --config|c=<file> \
        ( [--help|h] \
        | [--update] \
        | [--reindex] [--lastid=<num>] \
        | [--backup] \
        | [--mailrc|m=<file>] [--month=<string>] [--match] ) \
        [--logfile=<file>] [--logclean=(0|1)]


DESCRIPTION

This program allows the user to update the tester addresses database, or search it, based on a restricted set of criteria.


SCHEMA

The schema for the MySQL database is below:

    CREATE TABLE ixaddress (
        id          int(10) unsigned NOT NULL,
        addressid   int(10) unsigned NOT NULL,
      PRIMARY KEY  (id)
    ) ENGINE=MyISAM;
    CREATE TABLE tester_address (
        addressid   int(10) unsigned NOT NULL auto_increment,
        testerid    int(10) unsigned NOT NULL default 0,
        address     varchar(255) NOT NULL,
        email   varchar(255) default NULL,
      PRIMARY KEY  (addressid)
    ) ENGINE=MyISAM;
    CREATE TABLE tester_profile (
        testerid    int(10) unsigned NOT NULL auto_increment,
        name    varchar(255) default NULL,
        pause   varchar(255) default NULL,
      PRIMARY KEY  (testerid)
    ) ENGINE=MyISAM;

The address field is the same as the tester field in the cpanstats table, while the email field is the extracted email address field only.


INTERFACE

The Constructor

Public Methods

Accessor Methods

Internal Methods

load_addresses

Loads all the data files with addresses against we can match, then load all the addresses listed in the DB that we need to match against.

match_addresses

Given all the possible mappings, attempts to match unmapped addresses.

print_addresses

Prints the suggested mappings, and those remaining unmapped addresses.

map_address

Atempts to map an address to a known CPAN author, then to one that already exists in the database, and finally to one that is known within the CPAN Authors index.

map_domain

Attempts to map an address based on its domain.

Private Methods


BECOME A TESTER

Whether you have a common platform or a very unusual one, you can help by testing modules you install and submitting reports. There are plenty of module authors who could use test reports and helpful feedback on their modules and distributions.

If you'd like to get involved, please take a look at the CPAN Testers Wiki, where you can learn how to install and configure one of the recommended smoke tools.

For further help and advice, please subscribe to the the CPAN Testers discussion mailing list.

  CPAN Testers Wiki
    - http://wiki.cpantesters.org
  CPAN Testers Discuss mailing list
    - http://lists.cpan.org/showlist.cgi?name=cpan-testers-discuss


BUGS, PATCHES & FIXES

There are no known bugs at the time of this release. However, if you spot a bug or are experiencing difficulties, that is not explained within the POD documentation, please send an email to barbie@cpan.org. However, it would help greatly if you are able to pinpoint problems or even supply a patch.

Fixes are dependant upon their severity and my availablity. Should a fix not be forthcoming, please feel free to (politely) remind me.

RT Queue - http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Testers-Data-Addresses


SEE ALSO

the CPAN::Testers::Common::Article manpage, the CPAN::Testers::Common::DBUtils manpage, the CPAN::Testers::Data::Generate manpage

http://www.cpantesters.org/, http://stats.cpantesters.org/, http://wiki.cpantesters.org/


AUTHOR

  Barbie, <barbie@cpan.org>
  for Miss Barbell Productions <http://www.missbarbell.co.uk>;.


COPYRIGHT AND LICENSE

  Copyright (C) 2009 Barbie for Miss Barbell Productions.
  This module is free software; you can redistribute it and/or
  modify it under the same terms as Perl itself.
 CPAN::Testers::Data::Addresses - CPAN Testers Addresses Database Manager