mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 03:11:40 +01:00
remove since 14.3 no longer necessary workaround for submiting mail compose to a different url, which was causing now problems (Application echoed something), and fixed not always instanciate $contacts_objs from previous commit
This commit is contained in:
parent
b42c2fe4f7
commit
4f3eb21e84
@ -812,6 +812,7 @@ class mail_compose
|
|||||||
|
|
||||||
if ($_REQUEST['preset']['mailtocontactbyid']) {
|
if ($_REQUEST['preset']['mailtocontactbyid']) {
|
||||||
if ($GLOBALS['egw_info']['user']['apps']['addressbook']) {
|
if ($GLOBALS['egw_info']['user']['apps']['addressbook']) {
|
||||||
|
$contacts_obj = new Api\Contacts();
|
||||||
$addressbookprefs =& $GLOBALS['egw_info']['user']['preferences']['addressbook'];
|
$addressbookprefs =& $GLOBALS['egw_info']['user']['preferences']['addressbook'];
|
||||||
if (method_exists($contacts_obj,'search')) {
|
if (method_exists($contacts_obj,'search')) {
|
||||||
|
|
||||||
@ -2613,11 +2614,13 @@ class mail_compose
|
|||||||
*/
|
*/
|
||||||
static function resolveEmailAddressList($_emailAddressList)
|
static function resolveEmailAddressList($_emailAddressList)
|
||||||
{
|
{
|
||||||
|
$contacts_obs = null;
|
||||||
$addrFromList=array();
|
$addrFromList=array();
|
||||||
foreach((array)$_emailAddressList as $ak => $address)
|
foreach((array)$_emailAddressList as $ak => $address)
|
||||||
{
|
{
|
||||||
if(is_int($address))
|
if(is_int($address))
|
||||||
{
|
{
|
||||||
|
if (!isset($contacts_obs)) $contacts_obj = new Api\Contacts();
|
||||||
// List was selected, expand to addresses
|
// List was selected, expand to addresses
|
||||||
unset($_emailAddressList[$ak]);
|
unset($_emailAddressList[$ak]);
|
||||||
$list = $contacts_obj->search('',array('n_fn','n_prefix','n_given','n_family','org_name','email','email_home'),'','','',False,'AND',false,array('list' =>(int)$address));
|
$list = $contacts_obj->search('',array('n_fn','n_prefix','n_given','n_family','org_name','email','email_home'),'','','',False,'AND',false,array('list' =>(int)$address));
|
||||||
@ -3496,20 +3499,4 @@ class mail_compose
|
|||||||
$response->error(implode(',',$results['failed']));
|
$response->error(implode(',',$results['failed']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Wrapper for Api\Etemplate::ajax_process_content to be able to identify send request to select different fpm pool
|
|
||||||
*
|
|
||||||
* @param string $etemplate_exec_id
|
|
||||||
* @param array $content
|
|
||||||
* @param boolean $no_validation
|
|
||||||
* @throws egw_exception_wrong_parameter
|
|
||||||
*/
|
|
||||||
static public function ajax_send($etemplate_exec_id, array $content, $no_validation)
|
|
||||||
{
|
|
||||||
// setting menuaction is required as it triggers different behavior eg. in egw_framework::window_close()
|
|
||||||
$_GET['menuaction'] = 'Api\Etemplate::ajax_process_content';
|
|
||||||
|
|
||||||
return Api\Etemplate::ajax_process_content($etemplate_exec_id, $content, $no_validation);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -225,8 +225,6 @@ app.classes.mail = AppJS.extend(
|
|||||||
{
|
{
|
||||||
this.mailvelopeAvailable(this.mailvelopeCompose);
|
this.mailvelopeAvailable(this.mailvelopeCompose);
|
||||||
}
|
}
|
||||||
// use a wrapper on a different url to be able to use a different fpm pool
|
|
||||||
et2.menuaction = 'mail_compose::ajax_send';
|
|
||||||
var that = this;
|
var that = this;
|
||||||
var textAreaWidget = this.et2.getWidgetById('mail_htmltext');
|
var textAreaWidget = this.et2.getWidgetById('mail_htmltext');
|
||||||
this.mail_isMainWindow = false;
|
this.mail_isMainWindow = false;
|
||||||
@ -857,10 +855,10 @@ app.classes.mail = AppJS.extend(
|
|||||||
{
|
{
|
||||||
var _id = this.mail_fetchCurrentlyFocussed(selected);
|
var _id = this.mail_fetchCurrentlyFocussed(selected);
|
||||||
dataElem = jQuery.extend(dataElem, egw.dataGetUIDdata(_id));
|
dataElem = jQuery.extend(dataElem, egw.dataGetUIDdata(_id));
|
||||||
|
|
||||||
// Try to resolve winmail.data attachment
|
// Try to resolve winmail.data attachment
|
||||||
if (dataElem.data && dataElem.data.attachmentsBlock[0]
|
if (dataElem.data && dataElem.data.attachmentsBlock[0]
|
||||||
&& dataElem.data.attachmentsBlock[0].winmailFlag
|
&& dataElem.data.attachmentsBlock[0].winmailFlag
|
||||||
&& (dataElem.data.attachmentsBlock[0].mimetype =='application/ms-tnef' ||
|
&& (dataElem.data.attachmentsBlock[0].mimetype =='application/ms-tnef' ||
|
||||||
dataElem.data.attachmentsBlock[0].filename == "winmail.dat"))
|
dataElem.data.attachmentsBlock[0].filename == "winmail.dat"))
|
||||||
{
|
{
|
||||||
@ -870,11 +868,11 @@ app.classes.mail = AppJS.extend(
|
|||||||
if (typeof _data == 'object')
|
if (typeof _data == 'object')
|
||||||
{
|
{
|
||||||
attachmentArea.set_value({content:_data});
|
attachmentArea.set_value({content:_data});
|
||||||
|
|
||||||
this.data.attachmentsBlock = _data;
|
this.data.attachmentsBlock = _data;
|
||||||
// Update client cache to avoid resolving winmail.dat attachment again
|
// Update client cache to avoid resolving winmail.dat attachment again
|
||||||
egw.dataStoreUID(this.data.uid, this.data);
|
egw.dataStoreUID(this.data.uid, this.data);
|
||||||
|
|
||||||
set_prev_iframe_top();
|
set_prev_iframe_top();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -3211,7 +3209,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
var ftree = this.et2.getWidgetById(this.nm_index+'[foldertree]');
|
var ftree = this.et2.getWidgetById(this.nm_index+'[foldertree]');
|
||||||
var src_label = _senders[0].id.replace(/^[0-9]+::/,'');
|
var src_label = _senders[0].id.replace(/^[0-9]+::/,'');
|
||||||
var dest_label = destination.id.replace(/^[0-9]+::/,'');
|
var dest_label = destination.id.replace(/^[0-9]+::/,'');
|
||||||
|
|
||||||
var callback = function (_button)
|
var callback = function (_button)
|
||||||
{
|
{
|
||||||
if (_button == et2_dialog.YES_BUTTON)
|
if (_button == et2_dialog.YES_BUTTON)
|
||||||
@ -5156,10 +5154,10 @@ app.classes.mail = AppJS.extend(
|
|||||||
et2_dialog.show_dialog(callbackDialog, this.egw.lang('Are you sure you want to delete all selected folders?'), this.egw.lang('Delete folder'), {},
|
et2_dialog.show_dialog(callbackDialog, this.egw.lang('Are you sure you want to delete all selected folders?'), this.egw.lang('Delete folder'), {},
|
||||||
et2_dialog.BUTTON_YES_NO, et2_dialog.WARNING_MESSAGE, undefined, egw);
|
et2_dialog.BUTTON_YES_NO, et2_dialog.WARNING_MESSAGE, undefined, egw);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implement mobile view
|
* Implement mobile view
|
||||||
*
|
*
|
||||||
* @param {type} _action
|
* @param {type} _action
|
||||||
* @param {type} _sender
|
* @param {type} _sender
|
||||||
*/
|
*/
|
||||||
@ -5167,7 +5165,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
{
|
{
|
||||||
// row id in nm
|
// row id in nm
|
||||||
var id = _sender[0].id;
|
var id = _sender[0].id;
|
||||||
|
|
||||||
var defaultActions= {
|
var defaultActions= {
|
||||||
actions:['delete', 'forward','reply','flagged'], // default actions to display
|
actions:['delete', 'forward','reply','flagged'], // default actions to display
|
||||||
check:function(_action){
|
check:function(_action){
|
||||||
@ -5178,10 +5176,10 @@ app.classes.mail = AppJS.extend(
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var content = {};
|
var content = {};
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
if (id){
|
if (id){
|
||||||
content = egw.dataGetUIDdata(id);
|
content = egw.dataGetUIDdata(id);
|
||||||
content.data['toolbar'] = this.et2.getArrayMgr('sel_options').getEntry('toolbar');
|
content.data['toolbar'] = this.et2.getArrayMgr('sel_options').getEntry('toolbar');
|
||||||
@ -5193,7 +5191,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
// update local storage with added toolbar actions
|
// update local storage with added toolbar actions
|
||||||
egw.dataStoreUID(id,content.data);
|
egw.dataStoreUID(id,content.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.viewEntry(_action, _sender, true, function(etemplate){
|
this.viewEntry(_action, _sender, true, function(etemplate){
|
||||||
// et2 object in view
|
// et2 object in view
|
||||||
var et2 = etemplate.widgetContainer;
|
var et2 = etemplate.widgetContainer;
|
||||||
@ -5207,10 +5205,10 @@ app.classes.mail = AppJS.extend(
|
|||||||
var $details = jQuery('.et2_details.details');
|
var $details = jQuery('.et2_details.details');
|
||||||
// Content
|
// Content
|
||||||
var content = et2.getArrayMgr('content').data;
|
var content = et2.getArrayMgr('content').data;
|
||||||
|
|
||||||
// set the current selected row
|
// set the current selected row
|
||||||
et2.mail_currentlyFocussed = id;
|
et2.mail_currentlyFocussed = id;
|
||||||
|
|
||||||
if (content.attachmentsBlock.length>0 && content.attachmentsBlock[0].filename)
|
if (content.attachmentsBlock.length>0 && content.attachmentsBlock[0].filename)
|
||||||
{
|
{
|
||||||
$attachment.text(content.attachmentsBlock.length+' '+ egw.lang('attachments'));
|
$attachment.text(content.attachmentsBlock.length+' '+ egw.lang('attachments'));
|
||||||
@ -5222,9 +5220,9 @@ app.classes.mail = AppJS.extend(
|
|||||||
}
|
}
|
||||||
// disable the detials if there's no details
|
// disable the detials if there's no details
|
||||||
if (!content.ccaddress) $details.hide();
|
if (!content.ccaddress) $details.hide();
|
||||||
|
|
||||||
toolbar.set_actions(content.toolbar);
|
toolbar.set_actions(content.toolbar);
|
||||||
|
|
||||||
// Request email body from server
|
// Request email body from server
|
||||||
iframe.set_src(egw.link('/index.php',{menuaction:'mail.mail_ui.loadEmailBody',_messageID:id}));
|
iframe.set_src(egw.link('/index.php',{menuaction:'mail.mail_ui.loadEmailBody',_messageID:id}));
|
||||||
jQuery(iframe.getDOMNode()).on('load',function(){
|
jQuery(iframe.getDOMNode()).on('load',function(){
|
||||||
|
Loading…
Reference in New Issue
Block a user