Kevin Johnson > MailFolder > Mail::Folder::Maildir

Download:
MailFolder-0.07.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  3
Open  0
View/Report Bugs
Module Version: 0.07   Source  

NAME ^

Mail::Folder::Maildir - A maildir folder interface for Mail::Folder.

WARNING: This code is in alpha release. Expect the interface to change.

SYNOPSIS ^

use Mail::Folder::Maildir;

DESCRIPTION ^

This module provides an interface to the maildir folder mechanism.

The maildir folder format is the preferred folder mechanism for the qmail mail transport agent. It uses directories as folders and files as messages. It also provides separate directories for new and current messages. One of the most distinguishing features of the maildir format is that it accomplishes it's job without the need for file locking, so it's better equipped to deal with things like nfs mounts and the like.

More information about qmail is available from http://pobox.com/~djb/qmail.html.

METHODS ^

open($folder_name)

Populates the Mail::Folder object with information about the folder.

close

Deletes the working copy of the folder and calls the superclass close method.

sync

pack

Calls the superclass pack method. Reassociates the filenames in the folders to message numbers, deleting holes in the sequence of message numbers.

get_message($msg_number)

Call the superclass get_message method.

Retrieves the contents of the file pointed to by $msg_number into a Mail::Internet object reference, caches the header, marks the message as 'seen' and returns the reference.

get_message_file($msg_number)

Call the superclass get_message_file method.

Retrieves the given mail message file pointed to by $msg_number and returns the name of the file.

get_header($msg_number)

If the particular header has never been retrieved then get_header loads the header of the given mail message into a member of $self->{Messages}{$msg_number} and returns the object reference

If the header for the given mail message has already been retrieved in a prior call to get_header, then the cached entry is returned.

append_message($mref)

Calls the superclass append_message method.

Writes a temporary copy of the message in $mref to the folder tmp directory, then moves that temporary copy into the folder cur directory.

It will delete the From_ line in the header if one is present.

update_message($msg_number, $mref)

Calls the superclass update_message method.

Writes a temporary copy of the message in $mref to the folder tmp directory, then moves that temporary copy into the folder cur directory, replacing the message pointed to by $msg_number.

It will delete the From_ line in the header if one is present.

is_valid_folder_format($foldername)

Returns 1 if the folder is a directory and contains tmp, cur, and new subdirectories otherwise returns 0.

create($foldername)

Creates a new folder named $foldername. Returns 0 if the folder already exists, otherwise returns 1.

AUTHOR ^

Kevin Johnson <kjj@pobox.com>

COPYRIGHT ^

Copyright (c) 1996-1998 Kevin Johnson <kjj@pobox.com>.

All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

syntax highlighting: