Mail::Addressbook::Convert::Pine

Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks.
Download

Mail::Addressbook::Convert::Pine Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Price:
  • FREE
  • Publisher Name:
  • Joe Davidson
  • Publisher web site:
  • http://search.cpan.org/~interguru/Mail-Addressbook-Convert-1.1/Convert/Utilities.pm

Mail::Addressbook::Convert::Pine Tags


Mail::Addressbook::Convert::Pine Description

Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks. Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks.SYNOPSISuse strict;use Mail::Addressbook::Convert::Pine;my $pine = new Mail::Addressbook::Convert::Pine();my $PineInFile ="pineSample.txt"; # name of the file containing the Ldif data# Convert Pine to Standard Intermediate format# see documentation for details on format.my $raIntermediate = $pine->scan($PineInFile);# This will also work#my @PineInArray = @arrayContainingThePineData;#my $raIntermediate = $pine->scan(@PineInArray);# Convert back to Pinemy $raPineOut = $pine->output($raIntermediate);print join "", @$raIntermediate;print "nnnn";print join "", @$raPineOut;REQUIRES ^Perl, version 5.001 or higherCarpThis module is meant to be used as part of the Mail::Addressbook::Convert distribution.It can convert a Pine addressbook to a Standard Intermediate format(STF) and a STF to Pine As part of the larger distribution, it will allow conversion between Pine and many other formats.To use to convert between Pine and Eudora as an example, you would do the followinguse Mail::Addressbook::Convert::Pine;use Mail::Addressbook::Convert::Eudora;my $Pine = new Mail::Addressbook::Convert::Pine();my $Eudora = new Mail::Addressbook::Convert::Eudora();my $PineInFile ="pineSample.txt"; # name of the file containing the Pine datamy $raIntermediate = $Pine->scan($PineInFile);my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook Requirements: · Perl


Mail::Addressbook::Convert::Pine Related Software