mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
21 lines
426 B
PHP
21 lines
426 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
return [
|
|
'mail' => [
|
|
[
|
|
'uid' => 42,
|
|
'author-id' => 44,
|
|
'uri-id' => 44,
|
|
'parent-uri-id' => 44,
|
|
'thr-parent-id' => 44,
|
|
'guid' => '123456',
|
|
'from-name' => 'Tester',
|
|
'title' => 'item_title',
|
|
'body' => '[b]item_body[/b]',
|
|
],
|
|
],
|
|
];
|