# Copyrights 2003,2004,2007 by Mark Overmeer . # For other contributors see Changes. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 0.99. package User::Identity::Collection::Emails; use vars '$VERSION'; $VERSION = '0.91'; use base 'User::Identity::Collection'; use strict; use warnings; use Mail::Identity; sub new(@) { my $class = shift; $class->SUPER::new(name => 'emails', @_); } sub init($) { my ($self, $args) = @_; $args->{item_type} ||= 'Mail::Identity'; $self->SUPER::init($args); } sub type() { 'mailgroup' } 1;