True, 'compose' => True, 'composeFromDraft' => True, 'getAttachment' => True, 'fileSelector' => True, 'forward' => True, 'composeAsNew' => True, 'reply' => True, 'replyAll' => True, 'selectFolder' => True, ); var $destinations = array( 'to' => 'to', 'cc' => 'cc', 'bcc' => 'bcc', 'replyto' => 'replyto', 'folder' => 'folder' ); function uicompose() { $this->displayCharset = $GLOBALS['egw']->translation->charset(); if (!isset($_POST['composeid']) && !isset($_GET['composeid'])) { // create new compose session $this->bocompose =& CreateObject('felamimail.bocompose','',$this->displayCharset); $this->composeID = $this->bocompose->getComposeID(); } else { // reuse existing compose session if (isset($_POST['composeid'])) $this->composeID = $_POST['composeid']; else $this->composeID = $_GET['composeid']; $this->bocompose =& CreateObject('felamimail.bocompose',$this->composeID,$this->displayCharset); } $this->t =& CreateObject('phpgwapi.Template',EGW_APP_TPL); $this->bofelamimail =& CreateObject('felamimail.bofelamimail',$this->displayCharset); $this->mailPreferences = ExecMethod('felamimail.bopreferences.getPreferences'); $this->t->set_unknowns('remove'); $this->rowColor[0] = $GLOBALS['egw_info']["theme"]["bg01"]; $this->rowColor[1] = $GLOBALS['egw_info']["theme"]["bg02"]; } function unhtmlentities ($string) { $trans_tbl = get_html_translation_table (HTML_ENTITIES); $trans_tbl = array_flip ($trans_tbl); return strtr ($string, $trans_tbl); } function action() { $formData['identity'] = (int)$_POST['identity']; foreach($_POST['destination'] as $key => $destination) { if(!empty($_POST['address'][$key])) { if($destination == 'folder') { $formData[$destination][] = $GLOBALS['egw']->translation->convert($_POST['address'][$key], $this->charset, 'UTF7-IMAP'); } else { $formData[$destination][] = $_POST['address'][$key]; } } } $formData['subject'] = $this->bocompose->stripSlashes($_POST['subject']); $formData['body'] = $this->bocompose->stripSlashes($_POST['body']); // if the body is empty, maybe someone pasted something with scripts, into the message body if(empty($formData['body'])) { // this is to be found with the egw_unset_vars array for the _POST['body'] array $name='_POST'; $key='body'; #error_log($GLOBALS['egw_unset_vars'][$name.'['.$key.']']); if (isset($GLOBALS['egw_unset_vars'][$name.'['.$key.']'])) { $formData['body'] = bocompose::_getCleanHTML( $GLOBALS['egw_unset_vars'][$name.'['.$key.']']); } } $formData['priority'] = $this->bocompose->stripSlashes($_POST['priority']); $formData['signatureID'] = (int)$_POST['signatureID']; $formData['mimeType'] = $this->bocompose->stripSlashes($_POST['mimeType']); $formData['disposition'] = (bool)$_POST['disposition']; $formData['to_infolog'] = $_POST['to_infolog']; //$formData['mailbox'] = $_GET['mailbox']; if((bool)$_POST['printit'] == true) { $formData['printit'] = 1; $formData['isDraft'] = 1; // pint the composed message. therefore save it as draft and reopen it as plain printwindow $formData['subject'] = "[".lang('printview').":]".$formData['subject']; $messageUid = $this->bocompose->saveAsDraft($formData); if (!$messageUid) { print ""; return; } $uidisplay =& CreateObject('felamimail.uidisplay'); $uidisplay->printMessage($messageUid, $formData['printit']); //$GLOBALS['egw']->link('/index.php',array('menuaction' => 'felamimail.uidisplay.printMessage','uid'=>$messageUid)); return; } if((bool)$_POST['saveAsDraft'] == true) { $formData['isDraft'] = 1; // save as draft $messageUid = $this->bocompose->saveAsDraft($formData); if (!$messageUid) { print ""; } } else { if(!$this->bocompose->send($formData)) { $this->compose(); return; } } #$GLOBALS['egw']->common->egw_exit(); print ""; } function compose($_focusElement='to') { // read the data from session // all values are empty for a new compose window $sessionData = $this->bocompose->getSessionData(); if (is_array($_REQUEST['preset'])) { #_debug_array($_REQUEST); if ($_REQUEST['preset']['mailto']) { // handle mailto strings such as // mailto:larry,dan?cc=mike&bcc=sue&subject=test&body=type+your&body=message+here // the above string may be htmlentyty encoded, then multiple body tags are supported // first, strip the mailto: string out of the mailto URL $tmp_send_to = trim(substr(html_entity_decode($_REQUEST['preset']['mailto']),7)); // check if there is more than the to address $mailtoArray = explode('?',$tmp_send_to,2); if ($mailtoArray[1]) { // check if there are more than one requests $addRequests = explode('&',$mailtoArray[1]); foreach ($addRequests as $key => $reqval) { // the additional requests should have a =, to separate key from value. $keyValuePair = explode('=',$reqval,2); $sessionData[$keyValuePair[0]] .= (strlen($sessionData[$keyValuePair[0]])>0 ? ' ':'') . $keyValuePair[1]; } } $sessionData['to']=$mailtoArray[0]; // if the mailto string is not htmlentity decoded the arguments are passed as simple requests foreach(array('cc','bcc','subject','body') as $name) { if ($_REQUEST[$name]) $sessionData[$name] .= (strlen($sessionData[$name])>0 ? ( $name == 'cc' || $name == 'bcc' ? ',' : ' ') : '') . $_REQUEST[$name]; } } if ($_REQUEST['preset']['file'] && is_readable($_REQUEST['preset']['file'])) { $this->bocompose->addAttachment(array_merge($sessionData,$_REQUEST['preset'])); $sessionData = $this->bocompose->getSessionData(); } foreach(array('to','cc','bcc','subject','body') as $name) { if ($_REQUEST['preset'][$name]) $sessionData[$name] = $_REQUEST['preset'][$name]; } } // is the to address set already? if (!empty($_REQUEST['send_to'])) { $sessionData['to'] = base64_decode($_REQUEST['send_to']); } //is the MimeType set/requested if (!empty($_REQUEST['mimeType'])) { $sessionData['mimeType'] = $_REQUEST['mimeType']; } // is a certain signature requested? // only the following values are supported (and make sense) // no => means -2 // system => means -1 // default => fetches the default, which is standard behavior if (!empty($_REQUEST['signature']) && (strtolower($_REQUEST['signature']) == 'no' || strtolower($_REQUEST['signature']) == 'system')) { $presetSig = (strtolower($_REQUEST['signature']) == 'no' ? -2 : -1); } $this->display_app_header(); $this->t->set_file(array("composeForm" => "composeForm.tpl")); $this->t->set_block('composeForm','header','header'); $this->t->set_block('composeForm','body_input'); $this->t->set_block('composeForm','attachment','attachment'); $this->t->set_block('composeForm','attachment_row','attachment_row'); $this->t->set_block('composeForm','attachment_row_bold'); $this->t->set_block('composeForm','destination_row'); $this->t->set_block('composeForm','simple_text'); $this->translate(); if ($GLOBALS['egw_info']['user']['apps']['addressbook']) { $this->t->set_var("link_addressbook",$GLOBALS['egw']->link('/index.php',array( 'menuaction' => 'addressbook.addressbook_ui.emailpopup', ))); } else { $this->t->set_var("link_addressbook",''); } $this->t->set_var("focusElement",$_focusElement); $linkData = array ( 'menuaction' => 'felamimail.uicompose.selectFolder', ); $this->t->set_var('folder_select_url',$GLOBALS['egw']->link('/index.php',$linkData)); $linkData = array ( 'menuaction' => 'felamimail.uicompose.fileSelector', 'composeid' => $this->composeID ); $this->t->set_var('file_selector_url',$GLOBALS['egw']->link('/index.php',$linkData)); $linkData = array ( 'menuaction' => 'felamimail.uicompose.action', 'composeid' => $this->composeID ); $this->t->set_var("link_action",$GLOBALS['egw']->link('/index.php',$linkData)); $this->t->set_var('folder_name',$this->bofelamimail->sessionData['mailbox']); $this->t->set_var('compose_id',$this->composeID); // check for some error messages from last posting attempt if($errorInfo = $this->bocompose->getErrorInfo()) { $this->t->set_var('errorInfo',"$errorInfo"); } else { $this->t->set_var('errorInfo',' '); } // header $allIdentities = $this->mailPreferences->getIdentity(); #_debug_array($allIdentities); $defaultIdentity = 0; foreach($allIdentities as $key => $singleIdentity) { #$identities[$singleIdentity->id] = $singleIdentity->realName.' <'.$singleIdentity->emailAddress.'>'; $identities[$key] = $singleIdentity->realName.' <'.$singleIdentity->emailAddress.'>'; if(!empty($singleIdentity->default)) { #$defaultIdentity = $singleIdentity->id; $defaultIdentity = $key; $sessionData['signatureID'] = $singleIdentity->signature; } } $selectFrom = html::select('identity', $defaultIdentity, $identities, true, "style='width:100%;' onchange='changeIdentity(this);'"); $this->t->set_var('select_from', $selectFrom); // navbar(, kind of) $this->t->set_var('img_clear_left', $GLOBALS['egw']->common->image('felamimail','clear_left')); $this->t->set_var('img_fileopen', $GLOBALS['egw']->common->image('phpgwapi','fileopen')); $this->t->set_var('img_mail_send', $GLOBALS['egw']->common->image('felamimail','mail_send')); $this->t->set_var('img_attach_file', $GLOBALS['egw']->common->image('felamimail','attach')); $this->t->set_var('ajax-loader', $GLOBALS['egw']->common->image('felamimail','ajax-loader')); $this->t->set_var('img_fileexport', $GLOBALS['egw']->common->image('felamimail','fileexport')); // prepare print url/button $this->t->set_var('img_print_it', $GLOBALS['egw']->common->image('felamimail','fileprint')); $this->t->set_var('lang_print_it', lang('print it')); $this->t->set_var('print_it', $printURL); // from, to, cc, replyto $destinationRows = 0; foreach(array('to','cc','bcc','replyto','folder') as $destination) { foreach((array)$sessionData[$destination] as $key => $value) { $selectDestination = html::select('destination[]', $destination, $this->destinations, false, "style='width: 100%;' onchange='fm_compose_changeInputType(this)'"); $this->t->set_var('select_destination', $selectDestination); $this->t->set_var('address', @htmlentities($value, ENT_QUOTES, $this->displayCharset)); $this->t->parse('destinationRows','destination_row',True); $destinationRows++; } } while($destinationRows < 3) { // and always add one empty row $selectDestination = html::select('destination[]', 'to', $this->destinations, false, "style='width: 100%;' onchange='fm_compose_changeInputType(this)'"); $this->t->set_var('select_destination', $selectDestination); $this->t->set_var('address', ''); $this->t->parse('destinationRows','destination_row',True); $destinationRows++; } // and always add one empty row $selectDestination = html::select('destination[]', 'to', $this->destinations, false, "style='width: 100%;' onchange='fm_compose_changeInputType(this)'"); $this->t->set_var('select_destination', $selectDestination); $this->t->set_var('address', ''); $this->t->parse('destinationRows','destination_row',True); $this->t->set_var("subject",@htmlentities($sessionData['subject'],ENT_QUOTES,$this->displayCharset)); if ($GLOBALS['egw_info']['user']['apps']['addressbook']) { $this->t->set_var('addressbookButton',''); } else { $this->t->set_var('addressbookButton',''); } if ($GLOBALS['egw_info']['user']['apps']['infolog']) { $this->t->set_var('infologImage',html::image('felamimail','to_infolog',lang('Save as infolog'),'width="17px" height="17px" valign="middle"' )); $this->t->set_var('lang_save_as_infolog',lang('Save as infolog')); $this->t->set_var('infolog_checkbox',''); } else { $this->t->set_var('infologImage',''); $this->t->set_var('lang_save_as_infolog',''); $this->t->set_var('infolog_checkbox',''); } $this->t->set_var('lang_no_recipient',lang('No recipient address given!')); $this->t->set_var('lang_no_subject',lang('No subject given!')); $this->t->pparse("out","header"); // body if($sessionData['mimeType'] == 'html') { $mode = 'simple'; #if (isset($GLOBALS['egw_info']['server']['enabled_spellcheck'])) $mode = 'egw_simple_spellcheck'; $style="border:0px; width:100%; height:400px;"; $this->t->set_var('tinymce', html::fckEditorQuick('body', $mode, $sessionData['body'])); $this->t->set_var('mimeType', 'html'); $ishtml=1; } else { $style="border:0px; width:100%; height:400px;"; $this->t->set_var('tinymce', html::fckEditorQuick('body', 'ascii', $sessionData['body'],'400px','99%')); $this->t->set_var('mimeType', 'text'); $ishtml=0; } require_once(EGW_INCLUDE_ROOT.'/felamimail/inc/class.felamimail_bosignatures.inc.php'); $boSignatures = new felamimail_bosignatures(); $signatures = $boSignatures->getListOfSignatures(); if (empty($sessionData['signatureID'])) { if ($signatureData = $boSignatures->getDefaultSignature()) { if (is_array($signatureData)) { $sessionData['signatureID'] = $signatureData['signatureid']; } else { $sessionData['signatureID'] =$signatureData; } } } $selectSignatures = array( '-2' => lang('no signature') ); foreach($signatures as $signature) { $selectSignatures[$signature['fm_signatureid']] = $signature['fm_description']; } $selectBox = html::select('signatureID', ($presetSig ? $presetSig : $sessionData['signatureID']), $selectSignatures, true, "style='width: 70%;' onchange='fm_compose_changeInputType(this)'"); $this->t->set_var("select_signature", $selectBox); $this->t->set_var("lang_editormode",lang("Editor type")); $this->t->set_var("toggle_editormode", lang("Editor type").": "); $this->t->pparse("out","body_input"); // attachments if (is_array($sessionData['attachments']) && count($sessionData['attachments']) > 0) { $imgClearLeft = $GLOBALS['egw']->common->image('felamimail','clear_left'); foreach((array)$sessionData['attachments'] as $id => $attachment) { $tempArray = array ( '1' => $attachment['name'], '2' => $attachment['type'], '.2' => "style='text-align:center;'", '3' => $attachment['size'], '4' => "composeID."','$id')\">" ); $tableRows[] = $tempArray; } if(count($tableRows) > 0) { $table = html::table($tableRows, "style='width:100%'"); } $this->t->set_var('attachment_rows',$table); } else { $this->t->set_var('attachment_rows',''); } $this->t->pparse("out","attachment"); } function composeFromDraft() { $icServer = (int)$_GET['icServer']; $folder = base64_decode($_GET['folder']); $replyID = $_GET['uid']; if (!empty($folder) && !empty($replyID) ) { // this fill the session data with the values from the original email $this->bocompose->getDraftData($icServer, $folder, $replyID); } $this->compose('body'); } function display_app_header() { $GLOBALS['egw']->js->validate_file('jscode','composeMessage','felamimail'); $GLOBALS['egw']->js->set_onload('javascript:initAll();'); $GLOBALS['egw_info']['flags']['include_xajax'] = True; $GLOBALS['egw']->common->egw_header(); } function fileSelector() { if(is_array($_FILES["addFileName"])) { #phpinfo(); #_debug_array($_FILES); if($_FILES['addFileName']['error'] == $UPLOAD_ERR_OK) { $formData['name'] = $_FILES['addFileName']['name']; $formData['type'] = $_FILES['addFileName']['type']; $formData['file'] = $_FILES['addFileName']['tmp_name']; $formData['size'] = $_FILES['addFileName']['size']; $this->bocompose->addAttachment($formData); print ""; } else { print ""; } } if(!@is_object($GLOBALS['egw']->js)) { $GLOBALS['egw']->js =& CreateObject('phpgwapi.javascript'); } $GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXCommon'); $GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXTree'); $GLOBALS['egw']->js->validate_file('jscode','composeMessage','felamimail'); $GLOBALS['egw']->common->egw_header(); #$uiwidgets =& CreateObject('felamimail.uiwidgets'); $this->t->set_file(array("composeForm" => "composeForm.tpl")); $this->t->set_block('composeForm','fileSelector','fileSelector'); $this->translate(); $linkData = array ( 'menuaction' => 'felamimail.uicompose.fileSelector', 'composeid' => $this->composeID ); $this->t->set_var('file_selector_url', $GLOBALS['egw']->link('/index.php',$linkData)); $maxUploadSize = ini_get('upload_max_filesize'); $this->t->set_var('max_uploadsize', $maxUploadSize); $this->t->set_var('ajax-loader', $GLOBALS['egw']->common->image('felamimail','ajax-loader')); $this->t->pparse("out","fileSelector"); } function forward() { $icServer = (int)$_GET['icServer']; $folder = base64_decode($_GET['folder']); $replyID = $_GET['reply_id']; $partID = $_GET['part_id']; if (!empty($replyID)) { // this fill the session data with the values from the original email $this->bocompose->getForwardData($icServer, $folder, $replyID, $partID); } $this->compose(); } function getAttachment() { $bocompose =& CreateObject('felamimail.bocompose', $_GET['_composeID']); $attachment = $bocompose->sessionData['attachments'][$_GET['attID']] ; header ("Content-Type: ".$attachment['type']."; name=\"". $this->bofelamimail->decode_header($attachment['name']) ."\""); header ("Content-Disposition: inline; filename=\"". $this->bofelamimail->decode_header($attachment['name']) ."\""); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Pragma: public"); $fp = fopen($attachment['file'], 'rb'); fpassthru($fp); $GLOBALS['egw']->common->egw_exit(); exit; } function selectFolder() { $GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXCommon'); $GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXTree'); $GLOBALS['egw']->js->validate_file('jscode','composeMessage','felamimail'); $GLOBALS['egw']->common->egw_header(); $bofelamimail =& CreateObject('felamimail.bofelamimail',$this->displayCharset); $uiwidgets =& CreateObject('felamimail.uiwidgets'); $connectionStatus = $bofelamimail->openConnection(); $folderObjects = $bofelamimail->getFolderObjects(false); $folderTree = $uiwidgets->createHTMLFolder ( $folderObjects, 'INBOX', 0, lang('IMAP Server'), $mailPreferences['username'].'@'.$mailPreferences['imapServerAddress'], 'divFolderTree', false, true ); print '
'; print $folderTree; } function composeAsNew() { $icServer = (int)$_GET['icServer']; $folder = base64_decode($_GET['folder']); $replyID = $_GET['reply_id']; $partID = $_GET['part_id']; if (!empty($folder) && !empty($replyID) ) { // this fill the session data with the values from the original email $this->bocompose->getDraftData($icServer, $folder, $replyID, $partID); } $this->compose('body'); } function reply() { $icServer = (int)$_GET['icServer']; $folder = base64_decode($_GET['folder']); $replyID = $_GET['reply_id']; $partID = $_GET['part_id']; if (!empty($folder) && !empty($replyID) ) { // this fill the session data with the values from the original email $this->bocompose->getReplyData('single', $icServer, $folder, $replyID, $partID); } $this->compose('body'); } function replyAll() { $icServer = (int)$_GET['icServer']; $folder = base64_decode($_GET['folder']); $replyID = $_GET['reply_id']; $partID = $_GET['part_id']; if (!empty($folder) && !empty($replyID) ) { // this fill the session data with the values from the original email $this->bocompose->getReplyData('all', $icServer, $folder, $replyID, $partID); } $this->compose('body'); } function translate() { $this->t->set_var("lang_message_list",lang('Message List')); $this->t->set_var("lang_to",lang('to')); $this->t->set_var("lang_cc",lang('cc')); $this->t->set_var("lang_bcc",lang('bcc')); $this->t->set_var("lang_identity",lang('identity')); $this->t->set_var("lang_reply_to",lang('reply to')); $this->t->set_var("lang_subject",lang('subject')); $this->t->set_var("lang_addressbook",lang('addressbook')); $this->t->set_var("lang_search",lang('search')); $this->t->set_var("lang_send",lang('send')); $this->t->set_var('lang_save_as_draft',lang('save as draft')); $this->t->set_var("lang_back_to_folder",lang('back to folder')); $this->t->set_var("lang_attachments",lang('attachments')); $this->t->set_var("lang_add",lang('add')); $this->t->set_var("lang_remove",lang('remove')); $this->t->set_var("lang_priority",lang('priority')); $this->t->set_var("lang_normal",lang('normal')); $this->t->set_var("lang_high",lang('high')); $this->t->set_var("lang_low",lang('low')); $this->t->set_var("lang_signature",lang('signature')); $this->t->set_var("lang_select_folder",lang('select folder')); $this->t->set_var('lang_max_uploadsize',lang('max uploadsize')); $this->t->set_var('lang_adding_file_please_wait',lang('Adding file to message. Please wait!')); $this->t->set_var('lang_receive_notification',lang('Receive notification')); $this->t->set_var('lang_no_address_set',lang('can not send message. no recipient defined!')); $this->t->set_var("th_bg",$GLOBALS['egw_info']["theme"]["th_bg"]); $this->t->set_var("bg01",$GLOBALS['egw_info']["theme"]["bg01"]); $this->t->set_var("bg02",$GLOBALS['egw_info']["theme"]["bg02"]); $this->t->set_var("bg03",$GLOBALS['egw_info']["theme"]["bg03"]); } } ?>