From: rettenbe Date: Tue, 29 Jul 2008 15:03:29 +0000 (+0000) Subject: update mailqueue.pm with perldoc lines X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a001980f40d0d98dbfc7bffcca632413c1d94a51;p=gosa.git update mailqueue.pm with perldoc lines git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12077 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/client/events/mailqueue.pm b/gosa-si/client/events/mailqueue.pm index 68171c276..4ba949a65 100644 --- a/gosa-si/client/events/mailqueue.pm +++ b/gosa-si/client/events/mailqueue.pm @@ -1,3 +1,29 @@ + +=head1 NAME + +mailqueue.pm + +=head1 SYNOPSIS + +use GOSA::GosaSupportDaemon; + +=head1 DESCRIPTION + +This module contains all GOsa-SI-client processing instructions concerning the mailqueue in GOsa. + +=head1 VERSION + +Version 1.0 + +=head1 AUTHOR + +Andreas Rettenberger + +=head1 FUNCTIONS + +=cut + + package mailqueue; use Exporter; @ISA = qw(Exporter); @@ -22,8 +48,61 @@ BEGIN {} END {} +############################################################################### +=over + +=item B + +=over + +=item description + +Reports all provided functions. + +=item parameter + +None. + +=item return + +ARRAYREF - array containing all functions + +=back + +=back + +=cut +############################################################################### sub get_events { return \@events; } + +############################################################################### +=over + +=item B + +=over + +=item description + +Executes /usr/sbin/mailq, parse the informations and return them + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +STRING - GOsa-SI valid xml message + +=back + +=back + +=cut +############################################################################### sub mailqueue_query { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0]; @@ -96,6 +175,33 @@ sub mailqueue_query { } +############################################################################### +=over + +=item B + +=over + +=item description + +Executes '/usr/sbin/postsuper -h' and set mail to hold. + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +Nothing. + +=back + +=back + +=cut +############################################################################### sub mailqueue_hold { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0]; @@ -147,7 +253,33 @@ sub mailqueue_hold { return; } +############################################################################### +=over + +=item B + +=over + +=item description + +Executes '/usr/sbin/postsuper -H' and set mail to unhold. + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +Nothing. + +=back + +=back +=cut +############################################################################### sub mailqueue_unhold { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0]; @@ -200,6 +332,33 @@ sub mailqueue_unhold { return; } +############################################################################### +=over + +=item B + +=over + +=item description + +Executes '/usr/sbin/postsuper -r' and requeue the mail. + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +Nothing. + +=back + +=back + +=cut +############################################################################### sub mailqueue_requeue { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0]; @@ -253,6 +412,33 @@ sub mailqueue_requeue { return; } +############################################################################### +=over + +=item B + +=over + +=item description + +Executes '/usr/sbin/postsuper -d' and deletes mail from queue. + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +Nothing. + +=back + +=back + +=cut +############################################################################### sub mailqueue_del { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0]; @@ -306,6 +492,33 @@ sub mailqueue_del { return; } +############################################################################### +=over + +=item B + +=over + +=item description + +Executes 'postcat -q', parse the informations and return them. + +=item parameter + +STRING - complete GOsa-si message + +HASHREF - content of GOsa-si message in a hash + +=item return + +STRING - GOsa-si valid xml message + +=back + +=back + +=cut +############################################################################### sub mailqueue_header { my ($msg, $msg_hash) = @_; my $header = @{$msg_hash->{'header'}}[0];