NAME

POE::Component::IRC::Plugin::Proxy::Away - A PoCo-IRC plugin which changes the away status based on the presence of proxy clients, by listening for 'irc_proxy_authed' and 'irc_proxy_close' events.

SYNOPSIS

use POE::Component::IRC::Plugin::Proxy::Away;

$irc->plugin_add( 'Away', POE::Component::IRC::Plugin::Proxy::Away->new(
                                    Message => "I'm out to lunch") );

DESCRIPTION

POE::Component::IRC::Plugin::Proxy::Away is a POE::Component::IRC plugin. When the last proxy client detaches, it changes the status to away, with the supplied away message.

This plugin requires the IRC component to be POE::Component::IRC::State or a subclass thereof.

METHODS

new

One optional argument:

'Message', the away message you want to use. Defaults to 'No clients attached'

Returns a plugin object suitable for feeding to POE::Component::IRC's plugin_add() method.

message

One optional argument:

An away message

Changes the away message when called with an argument, returns the current away message otherwise.

AUTHOR

Hinrik Örn Sigurðsson, hinrik.sig@gmail.com