mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
* Mail: if user never send a mail from an account select first identity with an non-empty signature, not default identity
This commit is contained in:
parent
1af713097c
commit
afc8e763a2
@ -1026,24 +1026,14 @@ class mail_compose
|
|||||||
// default => fetches the default, which is standard behavior
|
// default => fetches the default, which is standard behavior
|
||||||
if (!empty($_REQUEST['signature']) && (strtolower($_REQUEST['signature']) == 'no' || strtolower($_REQUEST['signature']) == 'system'))
|
if (!empty($_REQUEST['signature']) && (strtolower($_REQUEST['signature']) == 'no' || strtolower($_REQUEST['signature']) == 'system'))
|
||||||
{
|
{
|
||||||
$presetSig = (strtolower($_REQUEST['signature']) == 'no' ? -2 : -1);
|
$content['mailidentity'] = $presetSig = (strtolower($_REQUEST['signature']) == 'no' ? -2 : -1);
|
||||||
}
|
|
||||||
if (($suppressSigOnTop || $content['isDraft']) && !empty($content['mailidentity'])) $presetSig = (int)$content['mailidentity'];
|
|
||||||
//if (($suppressSigOnTop || $content['isDraft']) && !empty($content['stationeryID'])) $presetStationery = $content['stationeryID'];
|
|
||||||
$presetId = NULL;
|
|
||||||
if (($suppressSigOnTop || $content['isDraft']) && !empty($content['mailaccount'])) $presetId = (int)$content['mailaccount'];
|
|
||||||
if (!empty($sigPref[$this->mail_bo->profileID]) && (empty($presetSig) || $presetSig==-1 || empty($content['mailidentity']) || $content['mailidentity']==-1)) $presetSig=$sigPref[$this->mail_bo->profileID];
|
|
||||||
|
|
||||||
// fetch the signature, prepare the select box, ...
|
|
||||||
if (empty($content['mailidentity'])) {
|
|
||||||
$content['mailidentity'] = $acc['ident_id'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$disableRuler = false;
|
$disableRuler = false;
|
||||||
//_debug_array(($presetSig ? $presetSig : $content['mailidentity']));
|
//_debug_array(($presetSig ? $presetSig : $content['mailidentity']));
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$signature = emailadmin_account::read_identity(($presetSig ? $presetSig : $content['mailidentity']),true);
|
$signature = emailadmin_account::read_identity($content['mailidentity'] ? $content['mailidentity'] : $presetSig,true);
|
||||||
}
|
}
|
||||||
catch (Exception $e)
|
catch (Exception $e)
|
||||||
{
|
{
|
||||||
@ -1158,10 +1148,6 @@ class mail_compose
|
|||||||
unset($account);
|
unset($account);
|
||||||
}
|
}
|
||||||
|
|
||||||
// signature stuff set earlier
|
|
||||||
if ($presetSig) $content['mailidentity'] = $presetSig;
|
|
||||||
// end signature stuff
|
|
||||||
|
|
||||||
//$content['bcc'] = array('kl@stylite.de','kl@leithoff.net');
|
//$content['bcc'] = array('kl@stylite.de','kl@leithoff.net');
|
||||||
// address stuff like from, to, cc, replyto
|
// address stuff like from, to, cc, replyto
|
||||||
$destinationRows = 0;
|
$destinationRows = 0;
|
||||||
@ -3121,27 +3107,34 @@ class mail_compose
|
|||||||
*/
|
*/
|
||||||
function setDefaults($content=array())
|
function setDefaults($content=array())
|
||||||
{
|
{
|
||||||
// retrieve the signature accociated with the identity associated with the current account, rather than the default
|
// if there's not already an identity selected for current account
|
||||||
$id = ($this->mail_bo->icServer->ident_id?$this->mail_bo->icServer->ident_id:$this->mail_bo->getDefaultIdentity());
|
if (empty($content['mailidentity']))
|
||||||
if (isset($GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed']) && !empty($GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed']))
|
{
|
||||||
|
// check if there a preference / previous selection of identity for current account
|
||||||
|
if (!empty($GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed']))
|
||||||
{
|
{
|
||||||
$sigPref = $GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed'];
|
$sigPref = $GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed'];
|
||||||
if (!empty($sigPref[$this->mail_bo->profileID]) && $sigPref[$this->mail_bo->profileID]>0)
|
if (!empty($sigPref[$this->mail_bo->profileID]) && $sigPref[$this->mail_bo->profileID]>0)
|
||||||
{
|
{
|
||||||
try
|
$content['mailidentity'] = $sigPref[$this->mail_bo->profileID];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// if we have no preference search for first identity with non-empty signature
|
||||||
|
if (empty($content['mailidentity']))
|
||||||
{
|
{
|
||||||
$id = $sigPref[$this->mail_bo->profileID];
|
$default_identity = null;
|
||||||
}
|
foreach(emailadmin_account::identities($this->mail_bo->profileID, true, 'params') as $identity)
|
||||||
catch (Exception $e)
|
|
||||||
{
|
{
|
||||||
unset($e);
|
if (!isset($default_identity)) $default_identity = $identity['ident_id'];
|
||||||
unset($GLOBALS['egw_info']['user']['preferences']['mail']['LastSignatureIDUsed'][$this->mail_bo->profileID]);
|
if (!empty($identity['ident_signature']))
|
||||||
|
{
|
||||||
|
$content['mailidentity'] = $identity['ident_id'];
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (empty($content['mailidentity'])) $content['mailidentity'] = $default_identity;
|
||||||
if ((!isset($content['mailaccount']) || empty($content['mailaccount'])) && $id) $content['mailidentity'] = $id;
|
}
|
||||||
if (!isset($content['mailidentity']) || empty($content['mailidentity'])) $content['mailidentity'] = $id;
|
|
||||||
if (!isset($content['mimeType']) || empty($content['mimeType']))
|
if (!isset($content['mimeType']) || empty($content['mimeType']))
|
||||||
{
|
{
|
||||||
$content['mimeType'] = 'html';
|
$content['mimeType'] = 'html';
|
||||||
|
Loading…
Reference in New Issue
Block a user