-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from kartolo/release/v7.0.1
[TASK] release v7.0.1
- Loading branch information
Showing
11 changed files
with
82 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
use TYPO3\CMS\Core\Localization\LanguageService; | ||
use TYPO3\CMS\Core\Messaging\FlashMessage; | ||
use TYPO3\CMS\Core\Utility\GeneralUtility; | ||
use TYPO3\CMS\Scheduler\AdditionalFieldProviderInterface; | ||
use TYPO3\CMS\Scheduler\AbstractAdditionalFieldProvider; | ||
use TYPO3\CMS\Scheduler\Controller\SchedulerModuleController; | ||
use TYPO3\CMS\Scheduler\Task\AbstractTask; | ||
|
||
|
@@ -29,7 +29,7 @@ | |
* @package DirectMailTeam\DirectMail\Scheduler | ||
* @author Ivan Kartolo <[email protected]> | ||
*/ | ||
class AnalyzeBounceMailAdditionalFields implements AdditionalFieldProviderInterface | ||
class AnalyzeBounceMailAdditionalFields extends AbstractAdditionalFieldProvider | ||
{ | ||
public function __construct() | ||
{ | ||
|
@@ -128,15 +128,15 @@ public function validateAdditionalFields(array &$submittedData, SchedulerModuleC | |
$imapStream = $mailServer->getImapStream(); | ||
$return = true; | ||
} catch (\Exception $e) { | ||
$schedulerModule->addMessage( | ||
$this->addMessage( | ||
$this->getLanguangeService()->getLL('scheduler.bounceMail.dataVerification') . | ||
$e->getMessage(), | ||
FlashMessage::ERROR | ||
); | ||
$return = false; | ||
} | ||
} else { | ||
$schedulerModule->addMessage( | ||
$this->addMessage( | ||
$this->getLanguangeService()->getLL('scheduler.bounceMail.phpImapError'), | ||
FlashMessage::ERROR | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
services: | ||
_defaults: | ||
autowire: true | ||
autoconfigure: true | ||
public: false | ||
|
||
DirectMailTeam\DirectMail\: | ||
resource: '../Classes/*' | ||
|
||
DirectMailTeam\DirectMail\Command\InvokeMailerEngineCommand: | ||
tags: | ||
- name: 'console.command' | ||
command: 'directmail:invokemailerengine' | ||
description: 'Invoke Mailer Engine of EXT:directmail' | ||
# not required, defaults to false | ||
#hidden: false | ||
#schedulable: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.