Removed variables that were initialized, but never actually used
[squirrelmail.git] / plugins / newmail / setup.php
CommitLineData
4508b1b6 1<?php
2
3 /**
15e6162e 4 * newmail.php
cc61478a 5 *
973cfba8 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
15e6162e 7 * Copyright (c) 2000 by Michael Huttinger
8 * Licensed under the GNU GPL. For full terms see the file COPYING.
cc61478a 9 *
15e6162e 10 * Quite a hack -- but my first attempt at a plugin. We were
11 * looking for a way to play a sound when there was unseen
12 * messages to look at. Nice for users who keep the squirrel
13 * mail window up for long periods of time and want to know
14 * when mail arrives.
cc61478a 15 *
15e6162e 16 * Basically, I hacked much of left_main.php into a plugin that
17 * goes through each mail folder and increments a flag if
18 * there are unseen messages. If the final count of unseen
19 * folders is > 0, then we play a sound (using the HTML at the
20 * far end of this script).
cc61478a 21 *
15e6162e 22 * This was tested with IE5.0 - but I hear Netscape works well,
23 * too (with a plugin).
cc61478a 24 *
15e6162e 25 * $Id$
ea5f4b8e 26 * @package plugins
27 * @subpackage newmail
28 */
29
30 /**
cc61478a 31 */
692ca6b7 32 include_once(SM_PATH . 'functions/display_messages.php');
4508b1b6 33
973cfba8 34 function CheckNewMailboxSound($imapConnection, $mailbox, $real_box, $delimeter, $unseen, &$total_new) {
7d931c28 35
ce68b76b 36 global $trash_folder, $sent_folder,
37 $unseen_notify, $newmail_allbox,
38 $newmail_recent;
4508b1b6 39
2d4c15d6 40 $mailboxURL = urlencode($real_box);
4508b1b6 41
2d4c15d6 42 // Skip folders for Sent and Trash
4508b1b6 43
6a745675 44 if ($real_box == $sent_folder ||
2d4c15d6 45 $real_box == $trash_folder) {
6a745675 46 return 0;
2d4c15d6 47 }
4508b1b6 48
2d4c15d6 49 if (($unseen_notify == 2 && $real_box == 'INBOX') ||
50 ($unseen_notify == 3 && ($newmail_allbox == 'on' ||
6a745675 51 $real_box == 'INBOX'))) {
973cfba8 52 $status = sqimap_status_messages( $imapConnection, $real_box);
6a745675 53 if($newmail_recent == 'on') {
973cfba8 54 $total_new += $status['RECENT'];
55 } else {
56 $total_new += $status['UNSEEN'];
6a745675 57 }
973cfba8 58 if ($total_new) {
59 return 1;
6a745675 60 }
973cfba8 61
2d4c15d6 62 }
973cfba8 63 return 0;
2d4c15d6 64 }
4508b1b6 65
3d75ef16 66 function squirrelmail_plugin_init_newmail() {
67 global $squirrelmail_plugin_hooks;
6a745675 68
3d75ef16 69 $squirrelmail_plugin_hooks['left_main_before']['newmail'] = 'newmail_plugin';
cbe5423b 70 $squirrelmail_plugin_hooks['optpage_register_block']['newmail'] = 'newmail_optpage_register_block';
3d75ef16 71 $squirrelmail_plugin_hooks['options_save']['newmail'] = 'newmail_sav';
72 $squirrelmail_plugin_hooks['loading_prefs']['newmail'] = 'newmail_pref';
73 }
4508b1b6 74
cbe5423b 75 function newmail_optpage_register_block() {
3d75ef16 76 // Gets added to the user's OPTIONS page.
cbe5423b 77 global $optpage_blocks;
4508b1b6 78
f269af18 79 if ( checkForJavascript() ) {
80 /* Register Squirrelspell with the $optionpages array. */
cbe5423b 81 $optpage_blocks[] = array(
3d75ef16 82 'name' => _("NewMail Options"),
692ca6b7 83 'url' => SM_PATH . 'plugins/newmail/newmail_opt.php',
3d75ef16 84 'desc' => _("This configures settings for playing sounds and/or showing popup windows when new mail arrives."),
85 'js' => TRUE
86 );
87 }
88 }
4508b1b6 89
e697b6cc 90 function newmail_sav() {
692ca6b7 91 global $data_dir, $username;
92
93 if ( sqgetGlobalVar('submit_newmail', $submit, SQ_POST) ) {
94 $media_enable = '';
95 $media_popup = '';
96 $media_allbox = '';
97 $media_recent = '';
98 $media_changetitle = '';
99 $media_sel = '';
100
101 sqgetGlobalVar('media_enable', $media_enable, SQ_POST);
102 sqgetGlobalVar('media_popup', $media_popup, SQ_POST);
103 sqgetGlobalVar('media_allbox', $media_allbox, SQ_POST);
104 sqgetGlobalVar('media_recent', $media_recent, SQ_POST);
105 sqgetGlobalVar('media_changetitle', $media_changetitle, SQ_POST);
106
107 setPref($data_dir,$username,'newmail_enable',$media_enable);
108 setPref($data_dir,$username,'newmail_popup', $media_popup);
109 setPref($data_dir,$username,'newmail_allbox',$media_allbox);
110 setPref($data_dir,$username,'newmail_recent',$media_recent);
111 setPref($data_dir,$username,'newmail_changetitle',$media_changetitle);
112
113 if( sqgetGlobalVar('media_sel', $media_sel, SQ_POST) &&
114 ($media_sel == '(none)' || $media_sel == '(local media)') ) {
115 removePref($data_dir,$username,'newmail_media');
e697b6cc 116 } else {
692ca6b7 117 setPref($data_dir,$username,'newmail_media',$media_sel);
e697b6cc 118 }
4cf43843 119 echo html_tag( 'p', _("New Mail Notification options saved"), 'center' );
e697b6cc 120 }
121 }
4508b1b6 122
2d4c15d6 123 function newmail_pref() {
124
125 global $username,$data_dir;
126 global $newmail_media,$newmail_enable,$newmail_popup,$newmail_allbox;
127 global $newmail_recent, $newmail_changetitle;
128
129 $newmail_recent = getPref($data_dir,$username,'newmail_recent');
130 $newmail_enable = getPref($data_dir,$username,'newmail_enable');
692ca6b7 131 $newmail_media = getPref($data_dir, $username, 'newmail_media', '(none)');
2d4c15d6 132 $newmail_popup = getPref($data_dir, $username, 'newmail_popup');
133 $newmail_allbox = getPref($data_dir, $username, 'newmail_allbox');
134 $newmail_changetitle = getPref($data_dir, $username, 'newmail_changetitle');
e697b6cc 135
2d4c15d6 136 }
137
e697b6cc 138 function newmail_plugin() {
139
ce68b76b 140 global $username, $newmail_media, $newmail_enable, $newmail_popup,
973cfba8 141 $newmail_recent, $newmail_changetitle, $imapConnection, $PHP_SELF;
142
e697b6cc 143 if ($newmail_enable == 'on' ||
144 $newmail_popup == 'on' ||
145 $newmail_changetitle) {
146
147 // open a connection on the imap port (143)
148
149 $boxes = sqimap_mailbox_list($imapConnection);
150 $delimeter = sqimap_get_delimiter($imapConnection);
151
152 $status = 0;
153 $totalNew = 0;
154
155 for ($i = 0;$i < count($boxes); $i++) {
156
e697b6cc 157 $mailbox = $boxes[$i]['formatted'];
158
7d931c28 159 if (! isset($boxes[$i]['unseen'])) {
e697b6cc 160 $boxes[$i]['unseen'] = '';
7d931c28 161 }
e697b6cc 162 if ($boxes[$i]['flags']) {
163 $noselect = false;
164 for ($h = 0; $h < count($boxes[$i]['flags']); $h++) {
7d931c28 165 if (strtolower($boxes[$i]["flags"][$h]) == 'noselect') {
e697b6cc 166 $noselect = TRUE;
7d931c28 167 }
e697b6cc 168 }
169 if (! $noselect) {
7d931c28 170 $status += CheckNewMailboxSound($imapConnection,
171 $mailbox,
172 $boxes[$i]['unformatted'],
173 $delimeter,
174 $boxes[$i]['unseen'],
175 $totalNew);
e697b6cc 176 }
177 } else {
7d931c28 178 $status += CheckNewMailboxSound($imapConnection,
179 $mailbox,
180 $boxes[$i]['unformatted'],
181 $delimeter,
182 $boxes[$i]['unseen'],
183 $totalNew);
e697b6cc 184 }
185
186 }
4508b1b6 187
e697b6cc 188 // sqimap_logout($imapConnection);
189
190 // If we found unseen messages, then we
191 // will play the sound as follows:
192
193 if ($newmail_changetitle) {
194 echo "<script language=\"javascript\">\n" .
195 "function ChangeTitleLoad() {\n";
c5a2a440 196 echo 'window.parent.document.title = "' .
197 sprintf(ngettext("%s New Message","%s New Messages",$totalNew), $totalNew) .
198 "\";\n";
e697b6cc 199 echo "if (BeforeChangeTitle != null)\n".
200 "BeforeChangeTitle();\n".
201 "}\n".
202 "BeforeChangeTitle = window.onload;\n".
203 "window.onload = ChangeTitleLoad;\n".
204 "</script>\n";
205 }
206
692ca6b7 207 if ($totalNew > 0 && $newmail_enable == 'on' && $newmail_media != '' ) {
6fd95361 208 echo '<embed src="'.htmlspecialchars($newmail_media) .
209 "\" hidden=\"true\" autostart=\"true\">\n";
e697b6cc 210 }
7d931c28 211 if ($totalNew > 0 && $newmail_popup == 'on') {
6fd95361 212 echo "<script language=\"JavaScript\">\n".
e697b6cc 213 "<!--\n".
214 "function PopupScriptLoad() {\n".
7c15c446 215 'window.open("'.sqm_baseuri().'plugins/newmail/newmail.php?numnew='.$totalNew.
216 '", "SMPopup",'.
7d931c28 217 "\"width=200,height=130,scrollbars=no\");\n".
218 "if (BeforePopupScript != null)\n".
219 "BeforePopupScript();\n".
e697b6cc 220 "}\n".
221 "BeforePopupScript = window.onload;\n".
222 "window.onload = PopupScriptLoad;\n".
223 // Idea by: Nic Wolfe (Nic@TimelapseProductions.com)
224 // Web URL: http://fineline.xs.mw
225 // More code from Tyler Akins
226 "// End -->\n".
227 "</script>\n";
e697b6cc 228 }
229 }
230 }
6fd95361 231?>