mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
79e686f412
Fixed: IMAP search
50 lines
697 B
PHP
50 lines
697 B
PHP
<?php
|
|
|
|
namespace MailSo;
|
|
|
|
/**
|
|
* @category MailSo
|
|
*/
|
|
final class Version
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
const APP_VERSION = '1.3.3';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
const MIME_X_MAILER = 'MailSo';
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public static function AppVersion()
|
|
{
|
|
return \MailSo\Version::APP_VERSION;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public static function XMailer()
|
|
{
|
|
return \MailSo\Version::MIME_X_MAILER.'/'.\MailSo\Version::APP_VERSION;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public static function Signature()
|
|
{
|
|
$sSignature = '';
|
|
if (\defined('MAILSO_LIBRARY_USE_PHAR'))
|
|
{
|
|
$oPhar = new \Phar('mailso.phar');
|
|
$sSignature = $oPhar->getSignature();
|
|
}
|
|
|
|
return $sSignature;
|
|
}
|
|
}
|