2013-02-08 20:11:44 +01:00
< ? php
/**
* Mail - admin , preferences and sidebox - menus and other hooks
*
* @ link http :// www . egroupware . org
* @ package mail
2013-10-24 09:15:48 +02:00
* @ author Stylite AG [ info @ stylite . de ]
* @ copyright ( c ) 2013 by Stylite AG < info - AT - stylite . de >
2013-02-08 20:11:44 +01:00
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
* @ version $Id $
*/
/**
* Class containing admin , preferences and sidebox - menus and other hooks
*/
class mail_hooks
{
/**
2014-05-19 18:13:37 +02:00
* Hook to add context menu entries to user list
*
* @ param array $data
*/
static function edit_user ( $data )
{
unset ( $data ); // not used, but required by function signature
$have_imap_admin_and_sieve = false ;
// list all mail accounts
foreach ( emailadmin_account :: search ( false , 'params' , null , false , 0 , false ) as $params )
{
// check if account is valid for multiple users, has admin credentials and sieve enabled
if ( emailadmin_account :: is_multiple ( $params ) &&
2014-05-20 12:14:27 +02:00
$params [ 'acc_imap_admin_username' ] && $params [ 'acc_sieve_enabled' ] ||
$params [ 'acc_imap_type' ] == 'managementserver_imap' )
2014-05-19 18:13:37 +02:00
{
$have_imap_admin_and_sieve = true ;
break ;
}
}
$user_actions = array ();
if ( $have_imap_admin_and_sieve ) // add action to set vacation notice for a user
{
$user_actions [] = array (
'id' => 'mail_vacation' ,
'caption' => 'Vacation notice' ,
'popup' => '750x420' ,
'url' => 'menuaction=mail.mail_sieve.editVacation&account_id=$id' ,
2014-05-19 19:20:35 +02:00
'allowMultiple' => false ,
2014-05-19 18:13:37 +02:00
);
}
return $user_actions ;
}
/**
2013-04-09 16:43:55 +02:00
* Hook called by link - class to include mail in the appregistry of the linkage
2013-02-08 20:11:44 +01:00
*
* @ param array / string $location location and other parameters ( not used )
* @ return array with method - names
*/
static function search_link ( $location )
{
return array (
'view' => array (
2013-06-06 11:14:14 +02:00
'menuaction' => 'mail.mail_ui.displayMessage' ,
2013-02-08 20:11:44 +01:00
),
2013-06-06 11:14:14 +02:00
'view_id' => 'id' ,
2013-10-01 13:29:54 +02:00
'view_popup' => '870xegw_getWindowOuterHeight()' ,
2013-12-17 09:47:16 +01:00
//'view_popup' => '870x800',
2013-06-06 11:14:14 +02:00
'view_list' => 'mail.mail_ui.index' ,
2013-02-08 20:11:44 +01:00
'add' => array (
2013-07-20 09:23:55 +02:00
'menuaction' => 'mail.mail_compose.compose' ,
2013-02-08 20:11:44 +01:00
),
2013-12-17 09:47:16 +01:00
//'add_popup' => '870xegw_getWindowOuterHeight()',
'add_popup' => '870x800' ,
2013-07-20 09:23:55 +02:00
'edit' => array (
'menuaction' => 'mail.mail_compose.compose' ,
),
'edit_id' => 'id' ,
2013-12-17 09:47:16 +01:00
//'edit_popup' => '870xegw_getWindowOuterHeight()',
'edit_popup' => '870x800' ,
2014-01-14 18:16:49 +01:00
// register mail as handler for .eml files
2013-02-08 20:11:44 +01:00
'mime' => array (
'message/rfc822' => array (
2014-01-14 18:16:49 +01:00
'menuaction' => 'mail.mail_ui.importMessageFromVFS2DraftAndDisplay' ,
2013-02-08 20:11:44 +01:00
'mime_url' => 'formData[file]' ,
2014-01-14 18:16:49 +01:00
'mime_popup' => '870xegw_getWindowOuterHeight()' ,
2013-02-08 20:11:44 +01:00
),
),
);
}
/**
* Settings hook
*
* @ param array | string $hook_data
*/
static function settings ( $hook_data )
{
unset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'auto_hide_sidebox' ]);
if ( ! $hook_data [ 'setup' ]) // does not work on setup time
{
$folderList = array ();
$profileID = 0 ;
if ( isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ]))
$profileID = ( int ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ];
2013-02-11 18:05:29 +01:00
$mailConfig = config :: read ( 'mail' );
2013-02-08 20:11:44 +01:00
}
$connectionTimeout = array (
'0' => lang ( 'use default timeout (20 seconds)' ),
'10' => '10' , // timeout used in SIEVE
'20' => '20' ,
'30' => '30' ,
'40' => '40' ,
'50' => '50' ,
'60' => '60' ,
'70' => '70' ,
'80' => '80' ,
'90' => '90' ,
);
$no_yes = array (
'0' => lang ( 'no' ),
'1' => lang ( 'yes' )
);
$no_yes_copy = array_merge ( $no_yes , array ( '2' => lang ( 'yes, offer copy option' )));
$prefAllowManageFolders = $no_yes ;
$forwardOptions = array (
'asmail' => lang ( 'forward as attachment' ),
'inline' => lang ( 'forward inline' ),
);
$sortOrder = array (
'0' => lang ( 'date(newest first)' ),
'1' => lang ( 'date(oldest first)' ),
'3' => lang ( 'from(A->Z)' ),
'2' => lang ( 'from(Z->A)' ),
'5' => lang ( 'subject(A->Z)' ),
'4' => lang ( 'subject(Z->A)' ),
'7' => lang ( 'size(0->...)' ),
'6' => lang ( 'size(...->0)' )
);
$trustServersUnseenOptions = array_merge (
$no_yes ,
array ( '2' => lang ( 'yes' ) . ' - ' . lang ( 'but check shared folders' ))
);
$selectOptions = array_merge (
$no_yes ,
array ( '2' => lang ( 'yes' ) . ' - ' . lang ( 'small view' ))
);
$newWindowOptions = array (
'1' => lang ( 'only one window' ),
'2' => lang ( 'allways a new window' ),
);
$deleteOptions = array (
'move_to_trash' => lang ( 'move to trash' ),
'mark_as_deleted' => lang ( 'mark as deleted' ),
'remove_immediately' => lang ( 'remove immediately' )
);
$sendOptions = array (
'move_to_sent' => lang ( 'send message and move to send folder (if configured)' ),
'send_only' => lang ( 'only send message, do not copy a version of the message to the configured sent folder' )
);
$composeOptions = array (
'html' => lang ( 'html' ),
'text' => lang ( 'text/plain' ),
);
$replyOptions = array (
'none' => lang ( 'use source as displayed, if applicable' ),
'html' => lang ( 'force html' ),
'text' => lang ( 'force plain text' ),
);
$saveAsOptions = array (
2014-01-07 14:25:21 +01:00
'text_only' => lang ( 'convert only Mail to item (ignore possible attachments)' ),
2013-02-08 20:11:44 +01:00
'text' => lang ( 'convert Mail to item and attach its attachments to this item (standard)' ),
'add_raw' => lang ( 'convert Mail to item, attach its attachments and add raw message (message/rfc822 (.eml)) as attachment' ),
);
$htmlOptions = array (
'never_display' => lang ( 'never display html emails' ),
'only_if_no_text' => lang ( 'display only when no plain text is available' ),
'always_display' => lang ( 'always show html emails' ),
);
$toggle = false ;
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'select_mode' ] == 'EGW_SELECTMODE_TOGGLE' ) $toggle = true ;
$rowOrderStyle = array (
2013-02-11 18:05:29 +01:00
'mail' => lang ( 'mail' ),
2013-02-08 20:11:44 +01:00
'outlook' => 'Outlook' ,
2013-02-11 18:05:29 +01:00
'mail_wCB' => lang ( 'mail' ) . ' ' . ( $toggle ? lang ( '(select mails by clicking on the line, like a checkbox)' ) : lang ( '(with checkbox enforced)' )),
2013-02-08 20:11:44 +01:00
'outlook_wCB' => 'Outlook' . ' ' . ( $toggle ? lang ( '(select mails by clicking on the line, like a checkbox)' ) : lang ( '(with checkbox enforced)' )),
);
// otherwise we get warnings during setup
if ( ! is_array ( $folderList )) $folderList = array ();
$trashOptions = array_merge (
array (
'none' => lang ( " Don't use Trash " )
),
$folderList
);
$sentOptions = array_merge (
array (
'none' => lang ( " Don't use Sent " )
),
$folderList
);
$draftOptions = array_merge (
array (
'none' => lang ( " Don't use draft folder " )
),
$folderList
);
$templateOptions = array_merge (
array (
'none' => lang ( " Don't use template folder " )
),
$folderList
);
// modify folderlist, add a none entry, to be able to force the regarding settings, if no folders apply
$folderList [ 'none' ] = lang ( 'no folders' );
/* Settings array for this app */
$settingsArray = array (
array (
'type' => 'section' ,
'title' => lang ( 'Mail settings' ),
'no_lang' => true ,
'xmlrpc' => False ,
'admin' => False
),
2014-04-07 15:46:04 +02:00
'htmlOptions' => array (
'type' => 'select' ,
'label' => 'display of html emails' ,
'help' => 'What do do with html email' ,
'name' => 'htmlOptions' ,
'values' => $htmlOptions ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => 'always_display' ,
),
'allowExternalIMGs' => array (
'type' => 'check' ,
'label' => 'Allow external images' ,
'help' => 'allow images from external sources in html emails' ,
'name' => 'allowExternalIMGs' ,
'xmlrpc' => True ,
'admin' => True ,
'forced' => true ,
),
2013-02-08 20:11:44 +01:00
'message_forwarding' => array (
'type' => 'select' ,
'label' => 'how to forward messages' ,
'help' => 'Which method to use when forwarding a message' ,
'name' => 'message_forwarding' ,
'values' => $forwardOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'asmail' ,
),
'composeOptions' => array (
'type' => 'select' ,
'label' => 'New message type' ,
'help' => 'start new messages with mime type plain/text or html?' ,
'name' => 'composeOptions' ,
'values' => $composeOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'html' ,
),
'replyOptions' => array (
'type' => 'select' ,
'label' => 'Reply message type' ,
'help' => 'start reply messages with mime type plain/text or html or try to use the displayed format (default)?' ,
'name' => 'replyOptions' ,
'values' => $replyOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'none' ,
),
'disableRulerForSignatureSeparation' => array (
'type' => 'select' ,
'label' => 'disable Ruler for separation of mailbody and signature' ,
'help' => 'Turn off horizontal line between signature and composed message (this is not according to RFC).<br>If you use templates, this option is only applied to the text part of the message.' ,
'name' => 'disableRulerForSignatureSeparation' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'default' => 0 ,
'admin' => False ,
),
'insertSignatureAtTopOfMessage' => array (
'type' => 'select' ,
'label' => 'signature at top' ,
'help' => 'insert the signature at top of the new (or reply) message when opening compose dialog (you may not be able to switch signatures)' ,
'name' => 'insertSignatureAtTopOfMessage' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'default' => 0 ,
'admin' => False ,
),
'attachVCardAtCompose' => array (
'type' => 'select' ,
'label' => 'Attach vCard' ,
'help' => 'attach users VCard at compose to every new mail' ,
'name' => 'attachVCardAtCompose' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'default' => 0 ,
'admin' => False ,
),
2014-03-10 12:13:51 +01:00
/*
// option requested by customer, removed for the new client
2013-02-08 20:11:44 +01:00
'prefaskformultipleforward' => array (
'type' => 'select' ,
'label' => 'Confirm attach message' ,
'help' => 'Do you want to be asked for confirmation before attaching selected messages to new mail?' ,
'name' => 'prefaskformultipleforward' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '1' ,
),
2014-03-10 12:13:51 +01:00
*/
2014-01-10 10:19:07 +01:00
/*
2013-02-08 20:11:44 +01:00
'mainscreen_showmail' => array (
'type' => 'select' ,
'label' => 'show new messages on home page' ,
'help' => 'Should new messages show up on the Home page' ,
'name' => 'mainscreen_showmail' ,
'values' => $selectOptions ,
'xmlrpc' => True ,
'admin' => False ,
),
'mainscreen_showfolders' => array (
'type' => 'multiselect' ,
'label' => 'home page folders' ,
'help' => 'if shown, which folders should appear on the Home page' ,
'name' => 'mainscreen_showfolders' ,
'values' => $folderList ,
'xmlrpc' => True ,
'admin' => False ,
),
2014-01-10 10:19:07 +01:00
*/
2013-02-08 20:11:44 +01:00
array (
'type' => 'section' ,
2014-04-07 15:46:04 +02:00
'title' => lang ( 'Configuration settings' ),
2013-02-08 20:11:44 +01:00
'no_lang' => true ,
'xmlrpc' => False ,
'admin' => False
),
'deleteOptions' => array (
'type' => 'select' ,
'label' => 'when deleting messages' ,
'help' => 'what to do when you delete a message' ,
'name' => 'deleteOptions' ,
'values' => $deleteOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'move_to_trash' ,
),
'sendOptions' => array (
'type' => 'select' ,
'label' => 'when sending messages' ,
'help' => 'what to do when you send a message' ,
'name' => 'sendOptions' ,
'values' => $sendOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'move_to_sent' ,
),
'trustServersUnseenInfo' => array (
'type' => 'select' ,
'label' => 'trust servers SEEN / UNSEEN info' ,
'help' => 'Trust the server when retrieving the folder status. if you select no, we will search for the UNSEEN messages and count them ourselves' ,
'name' => 'trustServersUnseenInfo' ,
'values' => $trustServersUnseenOptions ,
'xmlrpc' => True ,
'default' => 2 ,
'admin' => False ,
),
'showAllFoldersInFolderPane' => array (
'type' => 'select' ,
'label' => 'show all Folders' ,
'help' => 'show all folders, (subscribed AND unsubscribed) in Main Screen Folder Pane' ,
'name' => 'showAllFoldersInFolderPane' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'default' => 0 ,
'admin' => False ,
),
2014-02-05 21:20:02 +01:00
/* 'prefpreventmanagefolders' => array (
2013-02-08 20:11:44 +01:00
'type' => 'select' ,
'label' => 'Prevent managing folders' ,
'help' => 'Do you want to prevent the managing of folders (creation, accessrights AND subscribtion)?' ,
'name' => 'prefpreventmanagefolders' ,
'values' => $prefAllowManageFolders ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '0' ,
),
'prefpreventforwarding' => array (
'type' => 'select' ,
'label' => 'Prevent managing forwards' ,
'help' => 'Do you want to prevent the editing/setup for forwarding of mails via settings (, even if SIEVE is enabled)?' ,
'name' => 'prefpreventforwarding' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '0' ,
),
'prefpreventnotificationformailviaemail' => array (
'type' => 'select' ,
'label' => 'Prevent managing notifications' ,
'help' => 'Do you want to prevent the editing/setup of notification by mail to other emailadresses if emails arrive (, even if SIEVE is enabled)?' ,
'name' => 'prefpreventnotificationformailviaemail' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '1' ,
),
'prefpreventeditfilterrules' => array (
'type' => 'select' ,
'label' => 'Prevent managing filters' ,
'help' => 'Do you want to prevent the editing/setup of filter rules (, even if SIEVE is enabled)?' ,
'name' => 'prefpreventeditfilterrules' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '0' ,
),
'prefpreventabsentnotice' => array (
'type' => 'select' ,
'label' => 'Prevent managing vacation notice' ,
'help' => 'Do you want to prevent the editing/setup of the absent/vacation notice (, even if SIEVE is enabled)?' ,
'name' => 'prefpreventabsentnotice' ,
'values' => $no_yes ,
'xmlrpc' => True ,
'admin' => False ,
'forced' => '0' ,
),
2014-04-23 11:18:50 +02:00
*/
2014-04-07 15:46:04 +02:00
'prefaskformove' => array (
'type' => 'select' ,
'label' => 'Confirm move to folder' ,
'help' => 'Do you want to be asked for confirmation before moving selected messages to another folder?' ,
'name' => 'prefaskformove' ,
'values' => $no_yes_copy ,
'xmlrpc' => True ,
'default' => 2 ,
'admin' => False ,
'forced' => '1' ,
),
2013-02-08 20:11:44 +01:00
'saveAsOptions' => array (
'type' => 'select' ,
'label' => 'Save as' ,
'help' => 'when saving messages as item of a different app' ,
'name' => 'saveAsOptions' ,
'values' => $saveAsOptions ,
'xmlrpc' => True ,
'admin' => False ,
'default' => 'text' ,
),
2014-01-10 10:19:07 +01:00
'add_popup' => '870x800' ,
2013-02-08 20:11:44 +01:00
);
if ( ! $GLOBALS [ 'egw_info' ][ 'apps' ][ 'stylite' ]) unset ( $settingsArray [ 'attachVCardAtCompose' ]);
return $settingsArray ;
}
/**
* Admin hook
*
* @ param array | string $hook_data
*/
static function admin ( $hook_data )
{
unset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'auto_hide_sidebox' ]);
// Only Modify the $file and $title variables.....
2013-02-11 18:05:29 +01:00
$title = $appname = 'mail' ;
2013-02-08 20:11:44 +01:00
$profileID = 0 ;
2013-02-11 18:05:29 +01:00
if ( isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ]))
$profileID = ( int ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ];
2013-02-08 20:11:44 +01:00
$file = Array (
2013-02-11 18:05:29 +01:00
'Site Configuration' => egw :: link ( '/index.php' , array ( 'menuaction' => 'admin.uiconfig.index' , 'appname' => 'mail' )),
2013-02-08 20:11:44 +01:00
);
display_section ( $appname , $title , $file );
}
/**
* Sidebox menu hook
*
* @ param array | string $hook_data
*/
static function sidebox_menu ( $hook_data )
{
//error_log(__METHOD__);
// always show the side bar
unset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'auto_hide_sidebox' ]);
2013-02-11 18:05:29 +01:00
$appname = 'mail' ;
2013-02-08 20:11:44 +01:00
$menu_title = $GLOBALS [ 'egw_info' ][ 'apps' ][ $appname ][ 'title' ] . ' ' . lang ( 'Menu' );
$file = array ();
$profileID = 0 ;
2013-02-11 18:05:29 +01:00
if ( isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ]))
$profileID = ( int ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ];
2013-12-05 13:32:32 +01:00
try
{
$mail_bo = mail_bo :: getInstance ( true , $profileID );
$profileID = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'mail' ][ 'ActiveProfileID' ] = $mail_bo -> profileID ;
2014-05-09 14:43:57 +02:00
} catch ( Exception $e ) {
//error_log(__METHOD__."()" . $e->getMessage());
$profileID = emailadmin_bo :: getUserDefaultAccID ();
2013-12-05 13:32:32 +01:00
}
2013-02-08 20:11:44 +01:00
$preferences =& $mail_bo -> mailPreferences ;
2013-10-11 13:43:01 +02:00
$serverCounter = $sieveEnabledServerCounter = 0 ;
2013-12-17 09:47:16 +01:00
// account select box
$selectedID = $profileID ;
$allAccountData = emailadmin_account :: search ( $only_current_user = true , $just_name = false , $order_by = null );
if ( $allAccountData ) {
$rememberFirst = $selectedFound = null ;
foreach ( $allAccountData as $tmpkey => $icServers )
2013-10-11 13:43:01 +02:00
{
2013-12-17 09:47:16 +01:00
if ( is_null ( $rememberFirst )) $rememberFirst = $tmpkey ;
if ( $tmpkey == $selectedID ) $selectedFound = true ;
//error_log(__METHOD__.__LINE__.' Key:'.$tmpkey.'->'.array2string($icServers->acc_imap_host));
$host = $icServers -> acc_sieve_host ;
if ( empty ( $host )) continue ;
if ( $icServers -> acc_sieve_enabled && $icServers -> acc_sieve_port ) $sieveEnabledServerCounter ++ ;
2013-10-11 13:43:01 +02:00
$serverCounter ++ ;
2013-12-17 09:47:16 +01:00
//error_log(__METHOD__.__LINE__.' Key:'.$tmpkey.'->'.array2string($identities[$icServers->acc_id]));
2013-10-11 13:43:01 +02:00
}
}
2013-12-17 09:47:16 +01:00
$file = array ();
2013-02-13 15:02:02 +01:00
// Destination div for folder tree
$file [] = array (
'no_lang' => true ,
2013-07-20 09:23:55 +02:00
'text' => '<span id="mail-index_buttonmailcreate" class="button" />' ,
'link' => false ,
'icon' => false
);
$file [] = array (
'no_lang' => true ,
'text' => '<span id="mail-tree_target" class="dtree" />' ,
2013-02-13 15:02:02 +01:00
'link' => false ,
'icon' => false
);
2013-12-17 09:47:16 +01:00
$showMainScreenStuff = false ;
2013-02-08 20:11:44 +01:00
// import Message link - only when the required library is available
if (( @ include_once 'Mail/mimeDecode.php' ) !== false )
{
$linkData = array (
2013-02-11 18:05:29 +01:00
'menuaction' => 'mail.mail_ui.importMessage' ,
2013-02-08 20:11:44 +01:00
);
$file += array (
2013-10-01 13:29:54 +02:00
'import message' => " javascript:egw_openWindowCentered2(' " . egw :: link ( '/index.php' , $linkData , false ) . " ','importMessageDialog',870,125,'no',' $appname '); " ,
2013-02-08 20:11:44 +01:00
);
}
2013-12-17 09:47:16 +01:00
// create account wizard
2014-02-05 21:20:02 +01:00
if ( self :: access ( 'createaccount' ))
{
$file += array (
'create new account' => " javascript:egw_openWindowCentered2(' " .
egw :: link ( '/index.php' , array ( 'menuaction' => 'mail.mail_wizard.add' ), '' ) .
" ','_blank',640,480,'yes') " ,
);
}
2013-02-08 20:11:44 +01:00
// display them all
display_sidebox ( $appname , $menu_title , $file );
2014-04-08 10:36:27 +02:00
/*
2013-12-17 09:47:16 +01:00
unset ( $file );
if ( $preferences && $sieveEnabledServerCounter )
2013-02-08 20:11:44 +01:00
{
$menu_title = lang ( 'Sieve' );
2013-10-11 13:43:01 +02:00
$linkData = array
(
'menuaction' => 'mail.mail_sieve.index' ,
2014-02-11 22:26:31 +01:00
'ajax' => 'true'
2013-10-11 13:43:01 +02:00
);
2013-11-04 12:22:38 +01:00
if ( empty ( $preferences [ 'prefpreventeditfilterrules' ]) || $preferences [ 'prefpreventeditfilterrules' ] == 0 )
2013-10-11 13:43:01 +02:00
$file [ 'filter rules' ] = egw :: link ( '/index.php' , $linkData );
2013-02-08 20:11:44 +01:00
2013-10-11 13:43:01 +02:00
$linkData = array
(
'menuaction' => 'mail.mail_sieve.editVacation' ,
2014-02-11 22:26:31 +01:00
'ajax' => 'true'
2013-10-11 13:43:01 +02:00
);
2013-11-04 12:22:38 +01:00
if ( empty ( $preferences [ 'prefpreventabsentnotice' ]) || $preferences [ 'prefpreventabsentnotice' ] == 0 )
2013-10-11 13:43:01 +02:00
{
$file [ 'vacation notice' ] = egw :: link ( '/index.php' , $linkData );
}
2013-11-04 12:22:38 +01:00
if (( empty ( $preferences [ 'prefpreventnotificationformailviaemail' ]) ||
$preferences [ 'prefpreventnotificationformailviaemail' ] == 0 ))
2013-10-11 13:43:01 +02:00
{
2014-02-11 22:26:31 +01:00
$file [ 'email notification' ] = egw :: link ( '/index.php' , 'menuaction=mail.mail_sieve.editEmailNotification&ajax=true' ); //Added email notifications
2013-10-11 13:43:01 +02:00
}
if ( $sieveEnabledServerCounter >= 1 )
{
if ( $sieveEnabledServerCounter == 1 && ( $icServer instanceof defaultimap )) {
if ( $icServer -> enableSieve )
2013-02-08 20:11:44 +01:00
{
2013-10-11 13:43:01 +02:00
if ( count ( $file )) display_sidebox ( $appname , $menu_title , $file );
unset ( $file );
2013-02-08 20:11:44 +01:00
}
2013-10-11 13:43:01 +02:00
}
else
{
2013-02-08 20:11:44 +01:00
if ( count ( $file )) display_sidebox ( $appname , $menu_title , $file );
unset ( $file );
}
}
2013-07-25 17:35:44 +02:00
2013-02-08 20:11:44 +01:00
}
2014-04-08 10:36:27 +02:00
*/
2013-02-08 20:11:44 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'admin' ])
{
$file = Array (
2013-02-11 18:05:29 +01:00
'Site Configuration' => egw :: link ( '/index.php' , 'menuaction=admin.uiconfig.index&appname=' . $appname ),
2013-02-08 20:11:44 +01:00
);
display_sidebox ( $appname , lang ( 'Admin' ), $file );
}
}
2014-01-10 10:19:07 +01:00
/**
* checks users mailbox and sends a notification if new mails have arrived
*
* @ return boolean true or false
*/
static function notification_check_mailbox ()
{
2014-04-29 15:04:17 +02:00
// should not run more often then every 3 minutes;
$lastRun = egw_cache :: getCache ( egw_cache :: INSTANCE , 'email' , 'mailNotifyLastRun' . trim ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]), null , array (), $expiration = 60 * 60 * 24 * 2 );
$currentTime = time ();
if ( ! empty ( $lastRun ) && $lastRun > $currentTime - 3 * 60 )
{
2014-04-29 15:21:19 +02:00
//error_log(__METHOD__.__LINE__." Job should not run too often; we limit this to once every 3 Minutes :". ($currentTime-$lastRun). " Seconds to go!");
2014-04-29 15:04:17 +02:00
return true ;
}
2014-04-25 11:42:18 +02:00
$accountsToSearchObj = emailadmin_account :: search ( $only_current_user = true , $just_name = true );
foreach ( $accountsToSearchObj as $acc_id => $identity_name )
2014-04-23 11:18:50 +02:00
{
2014-04-24 15:53:10 +02:00
//error_log(__METHOD__.__LINE__.' '.$acc_id.':'.$identity_name);
$folders2notify [ $acc_id ] = emailadmin_notifications :: read ( $acc_id ); // read all, even those set for acc_id 0 (folders for all acounts?)
$accountsToSearchArray [ $acc_id ] = str_replace ( array ( '<' , '>' ), array ( '[' , ']' ), $identity_name );
2014-01-10 10:19:07 +01:00
}
2014-04-24 15:53:10 +02:00
$notified_mail_uidsCache = egw_cache :: getCache ( egw_cache :: INSTANCE , 'email' , 'notified_mail_uids' . trim ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]), null , array (), $expiration = 60 * 60 * 24 * 2 );
//error_log(__METHOD__.__LINE__.array2string($notified_mail_uidsCache));
2014-01-10 10:19:07 +01:00
2014-04-24 15:53:10 +02:00
foreach ( $folders2notify as $nFKey => $notifyfolders )
2014-01-10 10:19:07 +01:00
{
2014-04-24 15:53:10 +02:00
try
{
2014-04-25 11:42:18 +02:00
$currentRecipient = ( object ) $GLOBALS [ 'egw' ] -> accounts -> read (( $notifyfolders [ 'notify_account_id' ] ? $notifyfolders [ 'notify_account_id' ] : $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]));
$notify_folders = $notifyfolders [ 'notify_folders' ];
if ( count ( $notify_folders ) == 0 ) {
continue ; //no folders configured for notifying
2014-04-24 15:53:10 +02:00
}
2014-04-25 11:42:18 +02:00
//error_log(__METHOD__.__LINE__.' '.$nFKey.' =>'.array2string($notifyfolders));
$activeProfile = $nFKey ;
//error_log(__METHOD__.__LINE__.' (user: '.$currentRecipient->account_lid.') Active Profile:'.$activeProfile);
try
{
$bomail = mail_bo :: getInstance ( false , $activeProfile , false );
} catch ( Exception $e )
{
error_log ( __METHOD__ . __LINE__ . ' (user: ' . $currentRecipient -> account_lid . ') notification for Profile:' . $activeProfile . ' failed.' . $e -> getMessage ());
continue ; //fail silently
}
2014-04-29 15:04:17 +02:00
//error_log(__METHOD__.__LINE__.' '.$nFKey.' =>'.array2string($bomail->icServer->params));
$icServerParams = $bomail -> icServer -> params ;
if ( empty ( $icServerParams [ 'acc_imap_host' ]))
2014-04-25 11:42:18 +02:00
{
error_log ( __METHOD__ . __LINE__ . ' (user: ' . $currentRecipient -> account_lid . ') notification for Profile:' . $activeProfile . ' failed: NO IMAP HOST configured!' );
continue ; //fail silently
}
try
{
$bomail -> openConnection ( $activeProfile );
} catch ( Exception $e ) {
// TODO: This is ugly. Log a bit nicer!
$error = $e -> getMessage ();
error_log ( __METHOD__ . __LINE__ . ' # ' . ' (user: ' . $currentRecipient -> account_lid . '): cannot connect to mailbox with Profile:' . $activeProfile . '. Please check your prefs!' );
if ( ! empty ( $error )) error_log ( __METHOD__ . __LINE__ . ' # ' . $error );
error_log ( __METHOD__ . __LINE__ . ' # Instance=' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'domain' ] . ', User=' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ]);
return false ; // cannot connect to mailbox
}
//error_log(__METHOD__.__LINE__.array2string($notified_mail_uidsCache[$activeProfile][$notify_folder]));
//$notified_mail_uidsCache = array();
$recent_messages = array ();
$folder_status = array ();
foreach ( $notify_folders as $id => $notify_folder ) {
if ( empty ( $notify_folder )) continue ;
if ( ! is_array ( $notified_mail_uidsCache [ $activeProfile ][ $notify_folder ])) {
$notified_mail_uidsCache [ $activeProfile ][ $notify_folder ] = array ();
}
$folder_status [ $notify_folder ] = $bomail -> getFolderStatus ( $notify_folder );
$cutoffdate = time ();
$cutoffdate = $cutoffdate - ( 60 * 60 * 24 * 14 ); // last 14 days
$_filter = array ( 'status' => array ( 'UNSEEN' , 'UNDELETED' ), 'type' => " SINCE " , 'string' => date ( " d-M-Y " , $cutoffdate ));
//error_log(__METHOD__.__LINE__.' (user: '.$currentRecipient->account_lid.') Mailbox:'.$notify_folder.' filter:'.array2string($_filter));
// $_folderName, $_startMessage, $_numberOfMessages, $_sort, $_reverse, $_filter, $_thisUIDOnly=null, $_cacheResult=true
$headers = $bomail -> getHeaders ( $notify_folder , 1 , 999 , 0 , true , $_filter , null , false );
if ( is_array ( $headers [ 'header' ]) && count ( $headers [ 'header' ]) > 0 ) {
foreach ( $headers [ 'header' ] as $id => $header ) {
//error_log(__METHOD__.__LINE__.' Found Message:'.$header['uid'].' Subject:'.$header['subject']);
// check if unseen mail has already been notified
$headerrowid = mail_ui :: generateRowID ( $activeProfile , $notify_folder , $header [ 'uid' ], $_prependApp = false );
if ( ! in_array ( $headerrowid , $notified_mail_uidsCache [ $activeProfile ][ $notify_folder ])) {
// got a REAL recent message
$header [ 'folder' ] = $notify_folder ;
$header [ 'folder_display_name' ] = $folder_status [ $notify_folder ][ 'displayName' ];
$header [ 'folder_base64' ] = base64_encode ( $notify_folder );
$recent_messages [] = $header ;
}
}
2014-04-24 15:53:10 +02:00
}
2014-01-10 10:19:07 +01:00
}
2014-04-25 11:42:18 +02:00
//error_log(__METHOD__.__LINE__.' Found Messages for Profile'.$activeProfile.':'.array2string($recent_messages).'<->'.array2string($notified_mail_uidsCache[$activeProfile]));
if ( count ( $recent_messages ) > 0 ) {
// create notify message
$notification_subject = lang ( " You've got new mail " ) . ':' . $accountsToSearchArray [ $activeProfile ];
$values = array ();
$values [] = array (); // content array starts at index 1
foreach ( $recent_messages as $id => $recent_message ) {
//error_log(__METHOD__.__LINE__.' Found Message for Profile '.$activeProfile.':'.array2string($recent_message));
$values [] = array (
'mail_uid' => $recent_message [ 'uid' ],
'mail_folder' => $recent_message [ 'folder_display_name' ],
'mail_folder_base64' => $recent_message [ 'folder_base64' ],
'mail_subject' => mail_bo :: adaptSubjectForImport ( $recent_message [ 'subject' ]),
'mail_from' => ! empty ( $recent_message [ 'sender_name' ]) ? $recent_message [ 'sender_name' ] : $recent_message [ 'sender_address' ],
'mail_received' => $recent_message [ 'date' ],
);
// save notification status
$notified_mail_uidsCache [ $activeProfile ][ $recent_message [ 'folder' ]][] = mail_ui :: generateRowID ( $activeProfile , $recent_message [ 'folder' ], $recent_message [ 'uid' ], $_prependApp = false );
}
// create etemplate
$tpl = new etemplate ( 'mail.checkmailbox' );
$notification_message = $tpl -> exec ( false , $values , array (), array (), array (), 1 );
//error_log(__METHOD__.__LINE__.array2string($notification_message));
// send notification
$notification = new notifications ();
$notification -> set_receivers ( array ( $currentRecipient -> account_id ));
$notification -> set_message ( $notification_message );
//$notification->set_popupmessage($notification_message);
$notification -> set_sender ( $currentRecipient -> account_id );
$notification -> set_subject ( $notification_subject );
$notification -> set_skip_backends ( array ( 'email' ));
$notification -> send ();
2014-04-24 15:53:10 +02:00
}
2014-04-25 11:42:18 +02:00
egw_cache :: setCache ( egw_cache :: INSTANCE , 'email' , 'notified_mail_uids' . trim ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]), $notified_mail_uidsCache , $expiration = 60 * 60 * 24 * 2 );
} catch ( Exception $e ) {
// fail silently per server, if possible
error_log ( __METHOD__ . __LINE__ . ' Notification on new messages for Profile ' . $activeProfile . ' (' . $accountsToSearchArray [ $activeProfile ] . ') failed:' . $e -> getMessage ());
2014-01-10 10:19:07 +01:00
}
}
2014-04-29 15:04:17 +02:00
egw_cache :: setCache ( egw_cache :: INSTANCE , 'email' , 'mailNotifyLastRun' . trim ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]), time (), $expiration = 60 * 60 * 24 * 2 );
2014-04-24 15:53:10 +02:00
//error_log(__METHOD__.__LINE__.array2string($notified_mail_uidsCache));
2014-01-10 10:19:07 +01:00
return true ;
}
2014-02-05 21:20:02 +01:00
/**
* Hook returning options for deny_ * groups
*
* @ param string $name function name
* @ param array $arguments
* @ return string html
*/
public static function __callStatic ( $name , $arguments )
{
if ( substr ( $name , 0 , 5 ) != 'deny_' )
{
throw new egw_exception_wrong_parameter ( " No method $name ! " );
}
$accountsel = new uiaccountsel ();
return '<input type="hidden" value="" name="newsettings[' . $name . ']" />' .
$accountsel -> selection ( 'newsettings[' . $name . ']' , 'deny_prefs' , $arguments [ 0 ][ $name ], 'groups' , 4 );
}
/**
* Check if current user has access to a specific feature
*
* Example : if ( ! mail_hooks :: access ( " managerfolders " )) return ;
*
* @ param string $feature " createaccounts " , " managefolders " , " forwards " , " notifications " , " filters " ,
2014-04-23 11:18:50 +02:00
* " notificationformailviaemail " , " editfilterrules " , " absentnotice " , " aclmanagement "
2014-02-05 21:20:02 +01:00
* @ return boolean true if user has access , false if not
*/
public static function access ( $feature )
{
static $config = null ;
if ( ! isset ( $config )) $config = ( array ) config :: read ( 'mail' );
2014-02-07 09:33:23 +01:00
//error_log(__METHOD__.__LINE__.' '.$feature.':'.array2string($config['deny_'.$feature]));
2014-02-05 21:20:02 +01:00
if ( ! empty ( $config [ 'deny_' . $feature ]))
{
$denied_groups = explode ( ',' , $config [ 'deny_' . $feature ]);
return array_intersect ( $denied_groups , $GLOBALS [ 'egw' ] -> accounts -> memberships ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ], true ));
}
return true ;
}
2013-02-08 20:11:44 +01:00
}