Email::FolderType::Maildir - class to help Email::FolderType recognise maildirs


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

Index


Code Index:

NAME

Top

Email::FolderType::Maildir - class to help Email::FolderType recognise maildirs


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

package Email::FolderType::Maildir;
use strict;

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

1;