Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; # require Net::AOLIM; my $user = "---"; my $pass = "---"; my $Version; print "Subject's Name:"; chomp(my $destuser = <STDIN>); print "Message:"; chomp(my $message = <STDIN>); use Net::AOLIM; my $aim = Net::AOLIM->new( 'username' => $user, 'password' => $pass, 'callback' => \&callbackfunction, 'server' => 'toc.oscar.aol.com', 'port' => 1234, 'allow_srv_settings' => <1>, 'login_server' => 'login.oscar.aol.com', 'login_port' => 5198, 'login_timeout' => 0, 'aim_agent' => "AOLIM:$Version VERSION\$"); $aim->signon; $aim->toc_send_im($destuser, $message);
20030411 Edit by Corion: Changed title
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: AOL Messaging
by chromatic (Archbishop) on Apr 09, 2003 at 05:23 UTC | |
|
Re: AOL Messaging
by bbfu (Curate) on Apr 09, 2003 at 05:31 UTC | |
by Anonymous Monk on Apr 09, 2003 at 05:37 UTC | |
by pg (Canon) on Apr 09, 2003 at 06:04 UTC | |
by Anonymous Monk on Apr 09, 2003 at 06:10 UTC | |
|
Re: AOL Messaging
by pg (Canon) on Apr 09, 2003 at 05:42 UTC |