mail2log/_define.php

31 lines
942 B
PHP
Raw Normal View History

2022-11-27 00:56:22 +00:00
<?php
/**
2023-10-13 18:57:41 +00:00
* @file
* @brief The plugin mail2log definition
* @ingroup mail2log
2022-11-27 00:56:22 +00:00
*
2023-10-13 18:57:41 +00:00
* @defgroup mail2log Plugin mail2log.
2022-11-27 00:56:22 +00:00
*
2023-10-13 18:57:41 +00:00
* Do not send mails but log them.
2022-11-27 00:56:22 +00:00
*
2023-10-13 18:57:41 +00:00
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-11-27 00:56:22 +00:00
*/
2023-10-13 18:57:41 +00:00
declare(strict_types=1);
2022-11-27 00:56:22 +00:00
$this->registerModule(
2023-03-11 16:14:04 +00:00
'Mail to log',
2022-11-27 00:56:22 +00:00
'Do not send mails but log them',
'Jean-Christian Denis and contributors',
2023-10-23 08:15:46 +00:00
'0.8',
2022-11-27 00:56:22 +00:00
[
2023-10-07 21:25:54 +00:00
'requires' => [['core', '2.28']],
2023-10-13 18:57:41 +00:00
'permissions' => 'My',
2023-10-23 08:15:46 +00:00
'priority' => 10,
2023-10-13 18:59:07 +00:00
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2022-11-27 00:56:22 +00:00
]
);