NAME
Win32::IAF - Internet Account File (*.iaf) management for Outlook Express/2003.
VERSION
Version 0.01
SYNOPSIS
Allows to create POP3, IMAP and HTTP email or NNTP news account configuration files, that can be imported by Microsoft Outlook Express/2003 clients.
Reverse operation is possible - most fields from such files can be decoded.
use Win32::IAF;
my $iaf=Win32::IAF->new();
my $src='MyAccount.iaf';
local $/;
open(INPUT,$src) or die "Can't open $src for reading: $!\n";
binmode(INPUT);
$iaf->read_iaf(<INPUT>);
close(INPUT);
# forgot your POP3 password?
print $iaf->{POP3Password},"\n";
DESCRIPTION
new
read_iaf
write_iaf
_iaf_password
AUTHOR
Przemek Czerkas, <pczerkas at gmail.com>
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Win32::IAF
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
BUGS
Please report any bugs or feature requests to bug-win32-iaf at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Win32-IAF. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT & LICENSE
Copyright 2007 Przemek Czerkas, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.