[Rt-commit] r5585 - in Net-Server-IMAP: lib/Net/Server/IMAP/Command

kevinr at bestpractical.com kevinr at bestpractical.com
Mon Jul 17 14:51:13 EDT 2006


Author: kevinr
Date: Mon Jul 17 14:51:13 2006
New Revision: 5585

Added:
   Net-Server-IMAP/lib/Net/Server/IMAP/Command/Noop.pm
Modified:
   Net-Server-IMAP/   (props changed)

Log:
 r14976 at sad-girl-in-snow:  kevinr | 2006-07-17 14:27:00 -0400
 * Added the Noop command.  (This means Net::Server::IMAP can be used with 
 IMAP::Client.)


Added: Net-Server-IMAP/lib/Net/Server/IMAP/Command/Noop.pm
==============================================================================
--- (empty file)
+++ Net-Server-IMAP/lib/Net/Server/IMAP/Command/Noop.pm	Mon Jul 17 14:51:13 2006
@@ -0,0 +1,9 @@
+package Net::Server::IMAP::Command::Noop;
+use base qw/Net::Server::IMAP::Command/;
+
+sub run {
+    my $self = shift;
+    $self->ok_completed();
+}
+
+1;


More information about the Rt-commit mailing list