Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Feb 17, 2025
2 parents 0303cc4 + e25f1f8 commit 3a7c34f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions tine20/Felamimail/Controller/Message/Send.php
Original file line number Diff line number Diff line change
Expand Up @@ -850,10 +850,15 @@ protected function _setMailRecipients(Zend_Mail $_mail, Felamimail_Model_Message
return $nonPrivateRecipients;
}

protected function _getErrorException($messageText)
protected function _getErrorException(string $messageText): Tinebase_Exception_SystemGeneric
{
$translation = Tinebase_Translation::getTranslation('Felamimail');
$message = sprintf($translation->_('Error: %s'), $messageText);
if (preg_match('/evp_decrypt/i', $messageText)) {
$message = $translation->_(
'Decryption Error: Maybe your shared credential cache key is longer than 24 chars?');
} else {
$message = sprintf($translation->_('Error: %s'), $messageText);
}
$tesg = new Tinebase_Exception_SystemGeneric($message);
$tesg->setTitle($translation->_('Could not send message'));

Expand Down
6 changes: 5 additions & 1 deletion tine20/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ TINE RELEASENOTES
=====================
Release: Pelle (2024.11)
Last change: 2024-10-22
Last change: 2024-11-06

# GENERAL CHANGES (Administrative/Operative)

Expand Down Expand Up @@ -37,6 +37,10 @@ TINE RELEASENOTES
## number range configuration (for example for Sales product numbers)
## Send Password via SMS
## Show Mailaccount Sieve-Script
## Tinebase feature "featureShowAccountEmail" has been removed

It is now possible to configure the account "title" display via TWIG templates.
See Tinebase_Config::ACCOUNT_TWIG configuration.

# SSO

Expand Down

0 comments on commit 3a7c34f

Please sign in to comment.