mail addressbook convert juno
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2135
Mail::Addressbook::Convert::Juno 1.1
Mail::Addressbook::Convert::Juno can convert from Juno addressbooks. more>>
Mail::Addressbook::Convert::Juno can convert from Juno addressbooks.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Juno;
my $Juno = new Mail::Addressbook::Convert::Juno();
my $JunoInFile ="junoSample.nv"; # name of the file containing the Juno data # it is found in the Spry folder
# Convert Juno to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Juno->scan($JunoInFile.nv);
# This will also work
#my @JunoInArray = @arrayContainingTheJunoData;
#my $raIntermediate = $Juno->scan(@JunoInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Juno;
my $Juno = new Mail::Addressbook::Convert::Juno();
my $JunoInFile ="junoSample.nv"; # name of the file containing the Juno data # it is found in the Spry folder
# Convert Juno to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Juno->scan($JunoInFile.nv);
# This will also work
#my @JunoInArray = @arrayContainingTheJunoData;
#my $raIntermediate = $Juno->scan(@JunoInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert 1.1
Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks. more>>
Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks.
SYNOPSIS
These modules allow to to convert between the following e-mail addressbook formats
From To csv csv ( Note: MS Outlook. Outlook Express and many other mailers will export and import into this format) tsv tsv (tab-separated ascii, Outlook and OE also do these) pine pine ccMail Eudora Eudora Pegasus Pegasus Juno Lidf Ldif (Netscape 4 exports in this format ) Mailrc Spry
This distribution will convert email addressbooks between many common formats. Some examples are Pine, Eudora, Pegasus, csv.
The documentation here is general. For details on conversion, each module has pod documentation specific to its conversion
As an example
To use to convert between Pine and Eudora as an example, you would do the following
use 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 data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
All modules follow this template except Pegasus. Pegasus stores its address books in multiple files. See the documentation in Pegasus.pm
<<lessSYNOPSIS
These modules allow to to convert between the following e-mail addressbook formats
From To csv csv ( Note: MS Outlook. Outlook Express and many other mailers will export and import into this format) tsv tsv (tab-separated ascii, Outlook and OE also do these) pine pine ccMail Eudora Eudora Pegasus Pegasus Juno Lidf Ldif (Netscape 4 exports in this format ) Mailrc Spry
This distribution will convert email addressbooks between many common formats. Some examples are Pine, Eudora, Pegasus, csv.
The documentation here is general. For details on conversion, each module has pod documentation specific to its conversion
As an example
To use to convert between Pine and Eudora as an example, you would do the following
use 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 data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
All modules follow this template except Pegasus. Pegasus stores its address books in multiple files. See the documentation in Pegasus.pm
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Mail::Addressbook::Convert::Tsv 1.1
Mail::Addressbook::Convert::Tsv is a Perl module that can convert to and from Tsv ( Tab Separated )formatted addressbooks. more>>
Mail::Addressbook::Convert::Tsv is a Perl module that can convert to and from Tsv ( Tab Separated )formatted addressbooks.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Tsv;
my $TSV = new Mail::Addressbook::Convert::Tsv();
my $TsvInFile ="csvSample.txt"; # name of the file containing the csv data
# Convert Tsv to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $TSV->scan($CsvInFile);
# This will also work
#my @TsvInArray = @arrayContainingTheCsvData;
#my $raIntermediate = $csv->scan(@TsvInArray);
# Convert back to Tsv
my $raTsvOut = $TSV->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raTsvOut;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Tsv;
my $TSV = new Mail::Addressbook::Convert::Tsv();
my $TsvInFile ="csvSample.txt"; # name of the file containing the csv data
# Convert Tsv to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $TSV->scan($CsvInFile);
# This will also work
#my @TsvInArray = @arrayContainingTheCsvData;
#my $raIntermediate = $csv->scan(@TsvInArray);
# Convert back to Tsv
my $raTsvOut = $TSV->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raTsvOut;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert::Eudora 1.1
Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks. more>>
Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks.
SYNOPSIS
use strict;
use Eudora;
my $Eudora = new Eudora();
my $EudoraInFile ="eudoraSample.txt"; # name of the file containing the Eudora data
# Convert Eudora to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Eudora->scan($EudoraInFile);
# This will also work
#my @EudoraInArray = @arrayContainingTheEudoraData;
#my $raIntermediate = $Eudora->scan(@EudoraInArray);
# Convert back to Eudora
my $raEudorafOut = $Eudora->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raEudorafOut ;
<<lessSYNOPSIS
use strict;
use Eudora;
my $Eudora = new Eudora();
my $EudoraInFile ="eudoraSample.txt"; # name of the file containing the Eudora data
# Convert Eudora to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Eudora->scan($EudoraInFile);
# This will also work
#my @EudoraInArray = @arrayContainingTheEudoraData;
#my $raIntermediate = $Eudora->scan(@EudoraInArray);
# Convert back to Eudora
my $raEudorafOut = $Eudora->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raEudorafOut ;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1180 downloads
Mail::Addressbook::Convert::Spry 1.1
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook. more>>
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: Perl Artistic License Price:
1172 downloads
Mail::Addressbook::Convert::Ldif 1.1
Mail::Addressbook::Convert::Ldif is a Perl module that can convert to and from Ldif formatted addressbooks. more>>
Mail::Addressbook::Convert::Ldif is a Perl module that can convert to and from Ldif formatted addressbooks.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Ldif;
my $LDIF = new Mail::Addressbook::Convert::Ldif();
my $LdifInFile ="ldifSample.txt"; # name of the file containing the Ldif data
# Convert Ldif to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $LDIF->scan($LdifInFile);
# This will also work
#my @LdifInArray = @arrayContainingTheLdifData;
#my $raIntermediate = $LDIF->scan(@LdifInArray);
# Convert back to Ldif
my $raLdifOut = $LDIF->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raLdifOut;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Ldif;
my $LDIF = new Mail::Addressbook::Convert::Ldif();
my $LdifInFile ="ldifSample.txt"; # name of the file containing the Ldif data
# Convert Ldif to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $LDIF->scan($LdifInFile);
# This will also work
#my @LdifInArray = @arrayContainingTheLdifData;
#my $raIntermediate = $LDIF->scan(@LdifInArray);
# Convert back to Ldif
my $raLdifOut = $LDIF->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raLdifOut;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Mail::Addressbook::Convert::Pine 1.1
Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks. more>>
Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks.
SYNOPSIS
use 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 Pine
my $raPineOut = $pine->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raPineOut;
REQUIRES ^
Perl, version 5.001 or higher
Carp
This 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 following
use 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 data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
<<lessSYNOPSIS
use 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 Pine
my $raPineOut = $pine->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raPineOut;
REQUIRES ^
Perl, version 5.001 or higher
Carp
This 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 following
use 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 data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
Download (0.030MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
Mail::Addressbook::Convert::Mailrc 1.1
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook. more>>
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
Mail::Addressbook::Convert::Utilities 1.1
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion. more>>
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion.
SYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
<<lessSYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
Download (0.030MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1163 downloads
Mail::Message::Convert 2.066
Mail::Message::Convert is a Perl module for conversions between message types. more>>
Mail::Message::Convert is a Perl module for conversions between message types.
INHERITANCE
Mail::Message::Convert
is a Mail::Reporter
Mail::Message::Convert is extended by
Mail::Message::Convert::Html
Mail::Message::Convert::HtmlFormatPS
Mail::Message::Convert::HtmlFormatText
Mail::Message::Convert::MailInternet
Mail::Message::Convert::MimeEntity
Mail::Message::Convert::TextAutoformat
SYNOPSIS
Available methods are very converter-specific.
This class is the base for various message (and message parts) converters. When the conversion does not change the contents of the body, most of the converters will return the source object. In any case, an Mail::Message::Body is returned with the conversion applied but as much of the other meta data stored in the source body unchanged.
In most cases, converters are created by Mail::Message when they are needed; have a look at the encode and decoded methods on message objects.
<<lessINHERITANCE
Mail::Message::Convert
is a Mail::Reporter
Mail::Message::Convert is extended by
Mail::Message::Convert::Html
Mail::Message::Convert::HtmlFormatPS
Mail::Message::Convert::HtmlFormatText
Mail::Message::Convert::MailInternet
Mail::Message::Convert::MimeEntity
Mail::Message::Convert::TextAutoformat
SYNOPSIS
Available methods are very converter-specific.
This class is the base for various message (and message parts) converters. When the conversion does not change the contents of the body, most of the converters will return the source object. In any case, an Mail::Message::Body is returned with the conversion applied but as much of the other meta data stored in the source body unchanged.
In most cases, converters are created by Mail::Message when they are needed; have a look at the encode and decoded methods on message objects.
Download (0.57MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1159 downloads
Mail::Message::Convert::Html 2.066
Mail::Message::Convert::Html is a Perl module to format messages in HTML. more>>
Mail::Message::Convert::Html is a Perl module to format messages in HTML.
INHERITANCE
Mail::Message::Convert::Html
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::Html;
my $Html = Mail::Message::Convert::Html->new;
print $html->fieldToHtml($head);
print $html->headToHtmlHead($head);
print $html->headToHtmlTable($head);
print $html->textToHtml($text);
The package contains various translators which handle HTML or XHTML without the help of external modules. There are more HTML related modules, which do require extra packages to be installed.
<<lessINHERITANCE
Mail::Message::Convert::Html
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::Html;
my $Html = Mail::Message::Convert::Html->new;
print $html->fieldToHtml($head);
print $html->headToHtmlHead($head);
print $html->headToHtmlTable($head);
print $html->textToHtml($text);
The package contains various translators which handle HTML or XHTML without the help of external modules. There are more HTML related modules, which do require extra packages to be installed.
Download (0.57MB)
Added: 2006-08-12 License: Perl Artistic License Price:
1168 downloads
Mail 2 Wordpress 1.02
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.
<<less Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
Mail::Message::Convert::TextAutoformat 2.066
Mail::Message::Convert::TextAutoformat is a Perl module that can reformat plain text messages. more>>
Mail::Message::Convert::TextAutoformat is a Perl module that can reformat plain text messages.
INHERITANCE
Mail::Message::Convert::TextAutoformat
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::TextAutoformat;
my $af = Mail::Message::Convert::TextAutoformat->new;
my $beautified_body = $af->autoformatBody($body);
Play trics with plain text, for instance bodies with type text/plain using Damian Conways Text::Autoformat.
<<lessINHERITANCE
Mail::Message::Convert::TextAutoformat
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::TextAutoformat;
my $af = Mail::Message::Convert::TextAutoformat->new;
my $beautified_body = $af->autoformatBody($body);
Play trics with plain text, for instance bodies with type text/plain using Damian Conways Text::Autoformat.
Download (0.57MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Mail::Message::Convert::MimeEntity 2.066
Mail::Message::Convert::MimeEntity is a Perl module that can translate Mail::Message to MIME::Entity vv. more>>
Mail::Message::Convert::MimeEntity is a Perl module that can translate Mail::Message to MIME::Entity vv.
INHERITANCE
Mail::Message::Convert::MimeEntity
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::MimeEntity;
my $convert = Mail::Message::Convert::MimeEntity->new;
my Mail::Message $msg = Mail::Message->new;
my MIME::Entity $entity = $convert->export($msg);
my MIME::Entity $entity = MIME::Entity->new;
my Mail::Message $msg = $convert->from($entity);
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => Outbox);
The MIME::Entity extends Mail::Internet message with multiparts and more methods. The Mail::Message objects are more flexible in how the message parts are stored, and uses separate header and body objects.
<<lessINHERITANCE
Mail::Message::Convert::MimeEntity
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::MimeEntity;
my $convert = Mail::Message::Convert::MimeEntity->new;
my Mail::Message $msg = Mail::Message->new;
my MIME::Entity $entity = $convert->export($msg);
my MIME::Entity $entity = MIME::Entity->new;
my Mail::Message $msg = $convert->from($entity);
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => Outbox);
The MIME::Entity extends Mail::Internet message with multiparts and more methods. The Mail::Message objects are more flexible in how the message parts are stored, and uses separate header and body objects.
Download (0.57MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
Time::Convert 0.5
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes. more>>
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes.
SYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
<<lessSYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
Download (0.002MB)
Added: 2006-08-10 License: Perl Artistic License Price:
1172 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mail addressbook convert juno search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed