Code Search for Developers
 
 
  

ManagerFactory.pm from AlphaMail at Krugle


Show ManagerFactory.pm syntax highlighted

package ManagerFactory;

use 5.008;
use strict;
use warnings;
use Carp;
use Apache::SiteControl::PermissionManager;
use Apache::SiteControl::ManagerFactory;
use Apache::SiteControl::GrantAllRule;

our $manager;

sub getPermissionManager
{
   return $manager if defined($manager);

   $manager = new Apache::SiteControl::PermissionManager;
   $manager->addRule(new Apache::SiteControl::GrantAllRule);

   return $manager;
}

1;




See more files for this project here

AlphaMail

AlphaMail is an accelerated web mail interface with a C++ middleware layer that is more effective than an IMAP proxy which is a highly scalable (10k+ users). The interface includes modern features, Section 508 compliance, and universal browser support.

Project homepage: http://sourceforge.net/projects/alphamail
Programming language(s): C++,Java,JavaScript,Perl
License: other

  AlphaMail/
    AddressBook.pm
    Config.pm
    HTMLHelper.pm
    MailTool.pm
    Middleware.pm
    Preferences.pm
    SessionUtil.pm
    Signature.pm
    UploadLimiter.pm
  AlphaMail.pm
  IMAPAuth.pm
  ManagerFactory.pm