Damien Krotkine > Bot-BasicBot-Pluggable-Module-RT-0.03 > Bot::BasicBot::Pluggable::Module::RT

Download:
Bot-BasicBot-Pluggable-Module-RT-0.03.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  1
Open  0
View Bugs
Report a bug
Module Version: 0.03   Source  

NAME ^

Bot::BasicBot::Pluggable::Module::RT - Retrieves information of RT tickets

SYNOPSIS ^

    < you> RT#12345
    < bot> RT 12345: there is a bug in the matrix! - open

DESCRIPTION ^

This module uses RT::Client::REST::Ticket to connect to a RT server and grab information on tickets.

IRC USAGE ^

See synopsis

VARS ^

server

The url of the RT server. Set it using:

  !set RT server <url>
login

The login to use. Set it using:

  !set RT login <login>
password

The password to use. Set it using:

  !set RT password <password>
output

The output format the bot should use to display information. Set it using:

  !set RT output <output_string>. 

the string can contain the following placeholders :

  %i : id of the ticket
  %q : queue of the ticket
  %c : creator of the ticket
  %s : subject of the ticket
  %S : status of the ticket
  %p : priotity of the ticket
  %C : time where it was created

Default is : 'RT %id: %s - %S';

regexp

The regexp that is used to extract the rt number from the body. Set it using:

  !set RT regexp <some_regexp>.

Its first match should be the rt number. Default is (?:^|\s)rt\s*#?\s*(\d+)

AUTHOR ^

Damien "dams" Krotkine, <dams@cpan.org>

BUGS ^

Please report any bugs or feature requests to bug-bot-basicbot-pluggable-module-rt@rt.cpan.org, or through the web interface at http://rt.cpan.org/. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE ^

Copyright 2007 Damien "dams" Krotkine, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.