Email::FolderType::Ezmlm - class to help Email::FolderType recognise ezmlm archives


Email-FolderType documentation Contained in the Email-FolderType distribution.

Index


Code Index:

NAME

Top

Email::FolderType::Ezmlm - class to help Email::FolderType recognise ezmlm archives


Email-FolderType documentation Contained in the Email-FolderType distribution.

package Email::FolderType::Ezmlm;
use strict;

sub match {
  my $folder = shift;
  return ($folder =~ m{//$}  || -d "$folder/archive");
}


1;