mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 09:18:07 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
72 lines
962 B
PHP
72 lines
962 B
PHP
<?php
|
|
|
|
namespace MailSo\Mime\Parser;
|
|
|
|
/**
|
|
* @category MailSo
|
|
* @package Mime
|
|
* @subpackage Parser
|
|
*/
|
|
class ParserEmpty implements ParserInterface
|
|
{
|
|
/**
|
|
* @param \MailSo\Mime\Part $oPart
|
|
*
|
|
* @return void
|
|
*/
|
|
public function StartParse(\MailSo\Mime\Part &$oPart)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param \MailSo\Mime\Part $oPart
|
|
*
|
|
* @return void
|
|
*/
|
|
public function EndParse(\MailSo\Mime\Part &$oPart)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param \MailSo\Mime\Part $oPart
|
|
*
|
|
* @return void
|
|
*/
|
|
public function StartParseMimePart(\MailSo\Mime\Part &$oPart)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param \MailSo\Mime\Part $oMimePart
|
|
*
|
|
* @return void
|
|
*/
|
|
public function EndParseMimePart(\MailSo\Mime\Part &$oPart)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function InitMimePartHeader()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param string $sBuffer
|
|
*
|
|
* @return void
|
|
*/
|
|
public function ReadBuffer($sBuffer)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param string $sBuffer
|
|
*
|
|
* @return void
|
|
*/
|
|
public function WriteBody($sBuffer)
|
|
{
|
|
}
|
|
}
|