Query: catalyst::authentication::store::imap
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Catalyst::Authentication::Store::IMAP(3pm) User Contributed Perl Documentation Catalyst::Authentication::Store::IMAP(3pm)NAMECatalyst::Authentication::Store::IMAP - Authentication store accessing an IMAP server.SYNOPSISuse Catalyst qw( Authentication ); __PACKAGE__->config( 'authentication' => { default_realm => "imap", realms => { imap => { credential => { class => "Password", password_field => "password", password_type => "self_check", }, store => { class => 'IMAP', host => 'localhost', }, }, }, }, ); sub login : Global { my ( $self, $c ) = @_; $c->authenticate({ id => $c->req->param("login"), password => $c->req->param("password") }); $c->res->body("Welcome " . $c->user->username . "!"); }DESCRIPTIONThis plugin implements the Catalyst::Authentication v.10 API. Read that documentation first if you are upgrading from a previous version of this plugin. This plugin uses "Mail::IMAPClient" to let your application authenticate against an IMAP server. The used imap client object is stored on the stash as imapclient for use in other components.CONFIGURATION OPTIONShost Sets the host name (or IP address) of the IMAP server. port Optionally set the port to connect to, defaults to 143. If you specify port 993, IO::Socket::SSL will be used for connecting.ATTRIBUTEShost The host name used to connect to.METHODSnew from_session find_userSEE ALSOCatalyst::Authentication::Store::IMAP::User Catalyst::Plugin::Authentication, Mail::IMAPClientAUTHORSStefan Seifert <nine@cpan.org>LICENSEThis library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-16 Catalyst::Authentication::Store::IMAP(3pm)
Similar Topics in the Unix Linux Community |
---|
IMAP on Redhat? |
getting file words as pattern matching |
Courier-IMAP 4.1 |
fetchmail imap gmail certificate |
Unable to Telnet por 143 (IMAP) |