release 0.6
This commit is contained in:
parent
3b3fff7142
commit
9258788db5
@ -1,3 +1,9 @@
|
||||
mail2log 0.6 - 2023.10.07
|
||||
===========================================================
|
||||
* Require Dotclear 2.28
|
||||
* Require PHP 8.1
|
||||
* Upgrade to Dotclear 2.28
|
||||
|
||||
mail2log 0.5 - 2023.08.13
|
||||
===========================================================
|
||||
* Require Dotclear 2.24
|
||||
|
29
README.md
29
README.md
@ -1,25 +1,21 @@
|
||||
# README
|
||||
|
||||
[![Release](https://img.shields.io/badge/release-0.5-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/mail2log/releases)
|
||||
[![Date](https://img.shields.io/badge/date-2023.08.13-c44d58.svg)](https://git.dotclear.watch/JcDenis/mail2log/releases)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.27-137bbb.svg)](https://fr.dotclear.org/download)
|
||||
[![Release](https://img.shields.io/badge/release-0.6-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/mail2log/releases)
|
||||
![Date](https://img.shields.io/badge/date-2023.10.07-c44d58.svg)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.28-137bbb.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-9ac123.svg)](https://plugins.dotaddict.org/dc2/details/mail2log)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/mail2log)](https://git.dotclear.watch/JcDenis/mail2log/blob/master/LICENSE)
|
||||
[![License](https://img.shields.io/badge/license-GPL--2.0-ececec.svg)](https://git.dotclear.watch/JcDenis/mail2log/src/branch/master/LICENSE)
|
||||
|
||||
## WHAT IS MAIL2LOG ?
|
||||
## ABOUT
|
||||
|
||||
_mail2log_ is a plugin for the open-source
|
||||
web publishing software called Dotclear.
|
||||
_mail2log_ is a plugin for the open-source web publishing software called [Dotclear](https://www.dotclear.org).
|
||||
|
||||
It replaces mail function
|
||||
and send them to Dotclear's log database table.
|
||||
> It replaces mail function and send them to Dotclear's log database table.
|
||||
|
||||
## REQUIREMENTS
|
||||
|
||||
_mail2log_ requires:
|
||||
|
||||
* Dotclear 2.24
|
||||
* PHP 7.4
|
||||
* Dotclear 2.28
|
||||
* PHP 8.1+
|
||||
* A plugin to read log. (dcLog)
|
||||
|
||||
## USAGE
|
||||
@ -32,9 +28,10 @@ Use it for dev only.
|
||||
|
||||
## LINKS
|
||||
|
||||
* License : [GNU GPL v2](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html)
|
||||
* Source & contribution : [Gitea Page](https://git.dotclear.watch/JcDenis/mail2log) or [GitHub Page](https://github.com/JcDenis/mail2log)
|
||||
* Packages & details: [Gitea Page](https://git.dotclear.watch/JcDenis/mail2log/releases) or [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/mail2log)
|
||||
* [License](https://git.dotclear.watch/JcDenis/mail2log/src/branch/master/LICENSE)
|
||||
* [Packages & details](https://git.dotclear.watch/JcDenis/mail2log/releases) (or on [Dotaddict](https://plugins.dotaddict.org/dc2/details/mail2log))
|
||||
* [Sources & contributions](https://git.dotclear.watch/JcDenis/mail2log) (or on [GitHub](https://github.com/JcDenis/mail2log))
|
||||
* [Issues & security](https://git.dotclear.watch/JcDenis/mail2log/issues) (or on [GitHub](https://github.com/JcDenis/mail2log/issues))
|
||||
|
||||
## CONTRIBUTORS
|
||||
|
||||
|
16
_define.php
16
_define.php
@ -10,19 +10,17 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
use Dotclear\App;
|
||||
|
||||
$this->registerModule(
|
||||
'Mail to log',
|
||||
'Do not send mails but log them',
|
||||
'Jean-Christian Denis and contributors',
|
||||
'0.5',
|
||||
'0.6',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcCore::app()->auth::PERMISSION_USAGE,
|
||||
'requires' => [['core', '2.28']],
|
||||
'permissions' => App::auth()->makePermissions([
|
||||
App::auth()::PERMISSION_USAGE,
|
||||
]),
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
||||
@ -36,10 +34,10 @@ if (!function_exists('\_mail')) {
|
||||
{
|
||||
$headers = is_array($headers) ? implode("\n\t", $headers) : (is_string($headers) ? $headers : '');
|
||||
|
||||
$cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcLog::LOG_TABLE_NAME);
|
||||
$cur = App::log()->openLogCursor();
|
||||
$cur->setField('log_table', basename(__DIR__));
|
||||
$cur->setField('log_msg', sprintf("%s\n-----\n To: %s\n Subject: %s\n-----\n Message:\n%s\n", $headers, $to, $subject, $message));
|
||||
dcCore::app()->log->addLog($cur);
|
||||
App::log()->addLog($cur);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -2,11 +2,11 @@
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="mail2log">
|
||||
<name>Mail to log</name>
|
||||
<version>0.5</version>
|
||||
<version>0.6</version>
|
||||
<author>Jean-Christian Denis and contributors</author>
|
||||
<desc>Do not send mails but log them</desc>
|
||||
<file>https://git.dotclear.watch/JcDenis/mail2log/releases/download/v0.5/plugin-mail2log.zip</file>
|
||||
<da:dcmin>2.24</da:dcmin>
|
||||
<file>https://git.dotclear.watch/JcDenis/mail2log/releases/download/v0.6/plugin-mail2log.zip</file>
|
||||
<da:dcmin>2.28</da:dcmin>
|
||||
<da:details>https://git.dotclear.watch/JcDenis/mail2log/src/branch/master/README.md</da:details>
|
||||
<da:support>https://git.dotclear.watch/JcDenis/mail2log/issues</da:support>
|
||||
</module>
|
||||
|
Loading…
Reference in New Issue
Block a user