80d71720ca8379c8b18ce4073972e4183dcb9eb9
6 * This is the code for the left bar. The left bar shows the folders
7 * available, and has cookie information.
9 * @copyright 1999-2010 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @package squirrelmail
15 /** This is the left_main page */
16 define('PAGE_NAME', 'left_main');
19 * Include the SquirrelMail initialization file.
21 require('../include/init.php');
23 /* SquirrelMail required files. */
24 require_once(SM_PATH
. 'functions/imap_general.php');
25 require_once(SM_PATH
. 'functions/date.php');
26 require_once(SM_PATH
. 'functions/template/folder_list_util.php');
28 /* These constants are used for folder stuff. */
29 define('SM_BOX_UNCOLLAPSED', 0);
30 define('SM_BOX_COLLAPSED', 1);
33 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION
);
35 sqgetGlobalVar('fold', $fold, SQ_GET
);
36 sqgetGlobalVar('unfold', $unfold, SQ_GET
);
39 // open a connection on the imap port (143)
40 // why hide the output?
41 $imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, true);
44 * Using stristr since very old preferences may contain "None" and "none".
46 if (!empty($left_refresh) &&
47 !stristr($left_refresh, 'none')){
48 $xtra = "\n<meta http-equiv=\"Expires\" content=\"Thu, 01 Dec 1994 16:00:00 GMT\" />\n" .
49 "<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n".
50 "<meta http-equiv=\"REFRESH\" content=\"$left_refresh;URL=left_main.php\" />\n";
56 * Include extra javascript files needed by template
58 $js_includes = $oTemplate->get_javascript_includes(TRUE);
59 foreach ($js_includes as $js_file) {
60 $xtra .= '<script src="'.$js_file.'" type="text/javascript"></script>' ."\n";
63 // get mailbox list and cache it
64 $mailboxes=sqimap_get_mailboxes($imapConnection,false,$show_only_subscribed_folders);
66 displayHtmlHeader( $org_title, $xtra );
67 $oErrorHandler->setDelayedErrors(true);
69 sqgetGlobalVar('auto_create_done',$auto_create_done,SQ_SESSION
);
70 /* If requested and not yet complete, attempt to autocreate folders. */
71 if ($auto_create_special && !isset($auto_create_done)) {
72 $autocreate = array($sent_folder, $trash_folder, $draft_folder);
73 $folders_created = false;
74 foreach( $autocreate as $folder ) {
75 if ($folder != '' && $folder != SMPREF_NONE
) {
77 * If $show_only_subscribed_folders is true, don't use
78 * $mailboxes array for checking if mailbox exists.
79 * Mailbox list contains only subscribed folders.
80 * sqimap_mailbox_create() will fail, if folder exists.
82 if ($show_only_subscribed_folders) {
83 $mailbox_cache = false;
85 $mailbox_cache = $mailboxes;
87 if ( !sqimap_mailbox_exists($imapConnection, $folder, $mailbox_cache)) {
88 sqimap_mailbox_create($imapConnection, $folder, '');
89 $folders_created = true;
91 // check for subscription is useless and expensive, just
92 // surpress the NO response. Unless we're on Mecury, which
93 // will just subscribe a folder again if it's already
95 if ( strtolower($imap_server_type) != 'mercury32' ||
96 !sqimap_mailbox_is_subscribed($imapConnection, $folder) ) {
97 sqimap_subscribe($imapConnection, $folder, false);
98 $folders_created = true;
104 /* Let the world know that autocreation is complete! Hurrah! */
105 $auto_create_done = TRUE;
106 sqsession_register($auto_create_done, 'auto_create_done');
107 // reload mailbox list
108 if ($folders_created)
109 $mailboxes=sqimap_get_mailboxes($imapConnection,true,$show_only_subscribed_folders);
113 if ($date_format != 6) {
114 /* First, display the clock. */
115 if ($hour_format == 1) {
117 if ($date_format == 4) {
121 if ($date_format == 4) {
128 switch( $date_format ) {
130 $clk = date('Y-m-d '.$hr. ' T', time());
133 $clk = date('m/d/y '.$hr, time());
136 $clk = date('d/m/y '.$hr, time());
140 $clk = date($hr, time());
143 $clk = getDayAbrv( date( 'w', time() ) ) . date( ', ' . $hr, time() );
145 $clk = str_replace(' ',' ',$clk);
147 //FIXME don't build HTML here - do it in template
148 $clock = '<small><span style="white-space: nowrap;">'
149 . str_replace(' ', ' ', _("Last Refresh"))
150 . ":</span><br /><span style=\"white-space: nowrap;\">$clk</span></small><br />\n";
153 if ( $collapse_folders ) {
154 /* If directed, collapse or uncollapse a folder. */
156 setPref($data_dir, $username, 'collapse_folder_' . $fold, SM_BOX_COLLAPSED
);
157 } else if (isset($unfold)) {
158 setPref($data_dir, $username, 'collapse_folder_' . $unfold, SM_BOX_UNCOLLAPSED
);
162 /* Get unseen/total display prefs */
163 $unseen_type = getPref( $data_dir , $username , 'unseen_type' );
164 $unseen_notify = getPref( $data_dir , $username , 'unseen_notify' );
166 if (empty($unseen_type)) {
167 if (!empty($default_unseen_type)) {
168 $unseen_type = $default_unseen_type;
174 if (empty($unseen_notify)) {
175 if (!empty($default_unseen_notify)) {
176 $unseen_notify = $default_unseen_notify;
183 * pass $mailboxes now instead of $imapconnection - sqimap_get_mailboxes() has been separated from
184 * sqimap_mailbox_tree() so that the cached mailbox list can be used elsewhere in left_main and beyond
186 $boxes = sqimap_mailbox_tree($imapConnection,$mailboxes,$show_only_subscribed_folders);
187 $mailbox_structure = getBoxStructure($boxes);
189 $oTemplate->assign('clock', $clock);
190 $oTemplate->assign('mailboxes', $mailbox_structure);
193 * Build an array to pass user prefs to the template in order to avoid using
194 * globals, which are dirty, filthy things in templates. :)
197 #$settings['imapConnection'] = $imapConnection;
198 $settings['templateID'] = $sTemplateID;
199 $settings['unreadNotificationEnabled'] = $unseen_notify!=1;
200 $settings['unreadNotificationAllFolders'] = $unseen_notify == 3;
201 $settings['unreadNotificationDisplayTotal'] = $unseen_type == 2;
202 $settings['unreadNotificationCummulative'] = $unseen_cum==1;
203 $settings['useSpecialFolderColor'] = $use_special_folder_color;
204 $settings['messageRecyclingEnabled'] = $move_to_trash;
205 $settings['collapsableFoldersEnabled'] = $collapse_folders==1;
206 $oTemplate->assign('settings', $settings);
210 $oTemplate->assign('accesskey_folders_refresh', $accesskey_folders_refresh);
211 $oTemplate->assign('accesskey_folders_purge_trash', $accesskey_folders_purge_trash);
212 $oTemplate->assign('accesskey_folders_inbox', $accesskey_folders_inbox);
214 $oTemplate->display('left_main.tpl');
216 sqimap_logout($imapConnection);
217 $oTemplate->display('footer.tpl');