Mail/Storage/Writable/Maildir.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Mail  
Subpackage
Storage  
Version
$Id$  

\Zend_Mail_Storage_Writable_Maildir

Package: Zend_Mail\Storage
Implements
Parent(s)
\Zend_Mail_Storage_Folder_Maildir < \Zend_Mail_Storage_Maildir < \Zend_Mail_Storage_Abstract
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedbool|int $_quota
use quota and size of quota if given
Details
Type
bool | int

Methods

methodpublic__construct(array $params) : void

Create instance with parameters Additional parameters are (see parent for more): - create if true a new maildir is create if none exists

Parameters
NameTypeDescription
$paramsarray

mail reader specific parameters

Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodprotected_addQuotaEntry( $size,  $count = 1) : void

Parameters
NameTypeDescription
$size
$count
methodprotected_calculateMaildirsize() : void

methodprotected_calculateQuota( $forceRecalc = false) : void

Parameters
NameTypeDescription
$forceRecalc
Details
See
"Calculating the quota for a Maildir++"  
methodprotected_createTmpFile(string $folder = 'INBOX') : array

open a temporary maildir file

makes sure tmp/ exists and create a file with a unique name you should close the returned filehandle!
Parameters
NameTypeDescription
$folderstring

name of current folder without leading .

Returns
TypeDescription
arrayarray('dirname' => dir of maildir folder, 'uniq' => unique id, 'filename' => name of create file 'handle' => file opened for writing)
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodprotected_createUniqueId() : string

create a uniqueid for maildir filename

This is nearly the format defined in the maildir standard. The microtime() call should already create a uniqueid, the pid is for multicore/-cpu machine that manage to call this function at the exact same time, and uname() gives us the hostname for multiple machines accessing the same storage. If someone disables posix we create a random number of the same size, so this method should also work on Windows - if you manage to get maildir working on Windows. Microtime could also be disabled, altough I've never seen it.
Returns
TypeDescription
stringnew uniqueid
methodprotected_getInfoString(array $flags) : string

create an info string for filenames with given flags

Parameters
NameTypeDescription
$flagsarray

wanted flags, with the reference you'll get the set flags with correct key (= char for flag)

Returns
TypeDescription
stringinfo string for version 2 filenames including the leading colon
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicappendMessage( $message,  $folder = null,  $flags = null,  $recent = false) : void

Parameters
NameTypeDescription
$message
$folder
$flags
$recent
methodpubliccheckQuota(bool $detailedResponse = false,  $forceRecalc = false) : bool | array

check if storage is currently over quota

Parameters
NameTypeDescription
$detailedResponsebool

return known data of quota and current size and message count @see _calculateQuota()

$forceRecalc
Returns
TypeDescription
bool | arrayover quota state or detailed response
methodpubliccopyMessage(int $id, string | \Zend_Mail_Storage_Folder $folder) : null

copy an existing message

Parameters
NameTypeDescription
$idint

number of message

$folderstring | \Zend_Mail_Storage_Folder

name or instance of targer folder

Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpubliccreateFolder(string $name, string | \Zend_Mail_Storage_Folder $parentFolder = null) : string

create a new folder

This method also creates parent folders if necessary. Some mail storages may restrict, which folder may be used as parent or which chars may be used in the folder name
Parameters
NameTypeDescription
$namestring

global name of folder, local name if $parentFolder is set

$parentFolderstring | \Zend_Mail_Storage_Folder

parent folder for new folder, else root folder is parent

Returns
TypeDescription
stringonly used internally (new created maildir)
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicgetQuota( $fromStorage = false) : bool | array

get currently set quota

Parameters
NameTypeDescription
$fromStorage
Returns
TypeDescription
bool | array
Details
See
 
methodpublicinitMaildir(string $dir) : null
static

create a new maildir

If the given dir is already a valid maildir this will not fail.
Parameters
NameTypeDescription
$dirstring

directory for the new maildir (may already exist)

Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicmoveMessage(int $id, string | \Zend_Mail_Storage_Folder $folder) : null

move an existing message

Parameters
NameTypeDescription
$idint

number of message

$folderstring | \Zend_Mail_Storage_Folder

name or instance of targer folder

Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicremoveFolder(string | \Zend_Mail_Storage_Folder $name) : null

remove a folder

Parameters
NameTypeDescription
$namestring | \Zend_Mail_Storage_Folder

name or instance of folder

Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicremoveMessage( $id) : null

stub for not supported message deletion

Parameters
NameTypeDescription
$id
Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicrenameFolder(string | \Zend_Mail_Storage_Folder $oldName, string $newName) : null

rename and/or move folder

The new name has the same restrictions as in createFolder()
Parameters
NameTypeDescription
$oldNamestring | \Zend_Mail_Storage_Folder

name or instance of folder

$newNamestring

new global name of folder

Returns
TypeDescription
null
Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicsetFlags(int $id, array $flags) : void

set flags for message

NOTE: this method can't set the recent flag.
Parameters
NameTypeDescription
$idint

number of message

$flagsarray

new flags for message

Throws
ExceptionDescription
\Zend_Mail_Storage_Exception
methodpublicsetQuota(bool | array $value) : null

enable/disable quota and set a quota value if wanted or needed

You can enable/disable quota with true/false. If you don't have a MDA or want to enforce a quota value you can also set this value here. Use array('size' => SIZE_QUOTA, 'count' => MAX_MESSAGE) do define your quota. Order of these fields does matter!
Parameters
NameTypeDescription
$valuebool | array

new quota value

Returns
TypeDescription
null
Documentation was generated by phpDocumentor 2.2.0 .