mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-05 23:47:03 +03:00
20 lines
319 B
PHP
20 lines
319 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of MailSo.
|
|
*
|
|
* (c) 2014 Usenko Timur
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace MailSo;
|
|
|
|
/**
|
|
* @category MailSo
|
|
*/
|
|
class Config
|
|
{
|
|
public static string $BoundaryPrefix = '_Part_';
|
|
}
|