Skip to content

Commit

Permalink
Release version 5.2.0
Browse files Browse the repository at this point in the history
last feature release of direct_mail 5.2.0 for TYPO3 7.6 LTS.
Any development hereafter will be focusing the TYPO3 8.7 LTS.

New feature is the rewrite of bounce handling. The bounce handling is now run from the scheduler module.
It's need the PHP IMAP extension.
  • Loading branch information
kartolo committed Jun 23, 2017
2 parents 934e050 + 375d382 commit da1c2c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Classes/DirectMailUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,9 @@ protected static function addUserPass($url, array $params)
if ($user && $pass && substr($url, 0, 7) == 'http://') {
$url = 'http://' . $user . ':' . $pass . '@' . substr($url, 7);
}
if ($user && $pass && substr($url, 0, 8) == 'https://') {
$url = 'https://' . $user . ':' . $pass . '@' . substr($url, 8);
}
if ($params['simulate_usergroup'] && MathUtility::canBeInterpretedAsInteger($params['simulate_usergroup'])) {
$url = $url . '&dmail_fe_group=' . (int)$params['simulate_usergroup'] . '&access_token=' . self::createAndGetAccessToken();
}
Expand Down
4 changes: 3 additions & 1 deletion Classes/Importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,9 @@ public function formatTable(array $tableLines, array $cellParams, $header, array
*/
public function userTempFolder()
{
return $tempFolder = 'fileadmin/_temp_/';
/** @var \TYPO3\CMS\Core\Resource\Folder $folder */
$folder = $GLOBALS['BE_USER']->getDefaultUploadTemporaryFolder();
return $folder->getPublicUrl();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'description' => 'Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.',
'category' => 'module',
'shy' => 0,
'version' => '5.1.1',
'version' => '5.2.0',
'dependencies' => 'cms,tt_address',
'conflicts' => 'sr_direct_mail_ext,it_dmail_fix,plugin_mgm,direct_mail_123',
'priority' => '',
Expand Down

1 comment on commit da1c2c4

@NamelessCoder
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • NamelessCoder\GizzleGitPlugins\GizzlePlugins\ClonePlugin:00000000777ebaa400000000423009c7:
    • 0: Executing Git clone command: /usr/bin/git clone --depth 1 --single-branch --branch '5.2.0' 'https://github.com/kartolo/direct_mail.git' /tmp/da1c2c4f7737098db3cbbe2cc17da0c5e4704c53/direct_mail
    • NamelessCoder\TYPO3RepositoryGizzle\GizzlePlugins\ExtensionRepositoryReleasePlugin:00000000777ebaba00000000423009c7:
      • resultCode: 10504
      • resultMessages:
        • 0: Please note that it might take a while (up to an hour) until your extension and the documentation appear on TYPO3.org.
        • version: 5.2.0

Please sign in to comment.