Another array detection "if" statement.
[squirrelmail.git] / src / compose.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** compose.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This code sends a mail.
df15de21 9 **
10 ** There are 3 modes of operation:
11 ** - Start new mail
12 ** - Add an attachment
13 ** - Send mail
14 **/
15
2a32fc83 16 session_start();
17
d068c0ec 18 if (!isset($config_php))
19 include("../config/config.php");
20 if (!isset($strings_php))
21 include("../functions/strings.php");
22 if (!isset($page_header_php))
23 include("../functions/page_header.php");
24 if (!isset($imap_php))
25 include("../functions/imap.php");
26 if (!isset($date_php))
27 include("../functions/date.php");
28 if (!isset($mime_php))
29 include("../functions/mime.php");
30 if (!isset($smtp_php))
31 include("../functions/smtp.php");
32 if (!isset($display_messages_php))
33 include("../functions/display_messages.php");
3c13b9fb 34 if (!isset($auth_php))
35 include ("../functions/auth.php");
15bfc1bc 36 if (!isset($plugin_php))
37 include ("../functions/plugin.php");
f7fb20fe 38
d3cdb279 39 include("../src/load_prefs.php");
8467bf00 40
4ba45d11 41 // This function is used when not sending or adding attachments
df15de21 42 function newMail () {
43 global $forward_id, $imapConnection, $msg, $ent_num, $body_ary, $body,
a794e82c 44 $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc, $editor_size;
e39d73e5 45
7aaa81fc 46 $send_to = sqStripSlashes(decodeHeader($send_to));
47 $send_to_cc = sqStripSlashes(decodeHeader($send_to_cc));
6e79bfe2 48 $send_to_bcc = sqStripSlashes(decodeHeader($send_to_bcc));
a53e5469 49
429f8906 50 if ($forward_id)
51 $id = $forward_id;
52 else if ($reply_id)
53 $id = $reply_id;
54
1195c340 55
429f8906 56 if ($id) {
813eba2f 57 sqimap_mailbox_select($imapConnection, $mailbox);
429f8906 58 $message = sqimap_get_message($imapConnection, $id, $mailbox);
8d8ab69a 59 $orig_header = $message->header;
1195c340 60 if ($ent_num)
61 $message = getEntity($message, $ent_num);
429f8906 62
63 if ($message->header->type0 == "text" || $message->header->type1 == "message") {
1195c340 64 if ($ent_num)
65 $body = decodeBody(mime_fetch_body($imapConnection, $id, $ent_num), $message->header->encoding);
66 else
67 $body = decodeBody(mime_fetch_body($imapConnection, $id, 1), $message->header->encoding);
429f8906 68 } else {
69 $body = "";
df15de21 70 }
71
429f8906 72 if ($message->header->type1 == "html")
73 $body = strip_tags($body);
01aab860 74
75 sqUnWordWrap($body);
a794e82c 76 $body_ary = explode("\n", $body);
fb6ce88e 77 $i = count($body_ary) - 1;
78 while (isset($body_ary[$i]) && ereg("^[>\s]*$", $body_ary[$i])) {
79 unset($body_ary[$i]);
80 $i --;
441f2d33 81 }
a794e82c 82 $body = "";
83 for ($i=0; $i < count($body_ary); $i++) {
01aab860 84 if (! $forward_id)
85 {
441f2d33 86 if (ereg('^[\s>]+', $body_ary[$i]))
01aab860 87 {
88 $body_ary[$i] = '>' . $body_ary[$i];
89 }
90 else
91 {
92 $body_ary[$i] = '> ' . $body_ary[$i];
93 }
94 }
a794e82c 95 sqWordWrap($body_ary[$i], $editor_size - 1);
01aab860 96 $body .= $body_ary[$i] . "\n";
97 $body_ary[$i] = '';
a794e82c 98 }
01aab860 99 if ($forward_id)
100 {
101 $bodyTop = "-------- " . _("Original Message") . " --------\n";
102 $bodyTop .= _("Subject") . ": " . $orig_header->subject . "\n";
103 $bodyTop .= _("From") . ": " . $orig_header->from . "\n";
104 $bodyTop .= _("To") . ": " . $orig_header->to[0] . "\n";
105 if (count($orig_header->to) > 1) {
106 for ($x=1; $x < count($orig_header->to); $x++) {
107 $bodyTop .= " " . $orig_header->to[$x] . "\n";
108 }
109 }
110 $bodyTop .= "\n";
111 $body = $bodyTop . $body;
78509c54 112 }
441f2d33 113
114 $body = ereg_replace('\\\\', '\\\\', $body);
a794e82c 115
a2790a61 116 sqimap_mailbox_close($imapConnection);
01aab860 117 return;
78509c54 118 }
429f8906 119
29d08a52 120 if (!$send_to) {
121 $send_to = sqimap_find_email($send_to);
122 }
123
df15de21 124 /** This formats a CC string if they hit "reply all" **/
125 if ($send_to_cc != "") {
a48fbf9b 126 $send_to_cc = ereg_replace( '"[^"]*"', "", $send_to_cc);
df15de21 127 $send_to_cc = ereg_replace(";", ",", $send_to_cc);
128 $sendcc = explode(",", $send_to_cc);
129 $send_to_cc = "";
130
131 for ($i = 0; $i < count($sendcc); $i++) {
132 $sendcc[$i] = trim($sendcc[$i]);
133 if ($sendcc[$i] == "")
134 continue;
135
a53e5469 136 $sendcc[$i] = sqimap_find_email($sendcc[$i]);
813eba2f 137 $whofrom = sqimap_find_displayable_name($msg["HEADER"]["FROM"]);
138 $whoreplyto = sqimap_find_email($msg["HEADER"]["REPLYTO"]);
df15de21 139
140 if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
141 (strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
142 (trim($sendcc[$i]) != "")) {
143 $send_to_cc .= trim($sendcc[$i]) . ", ";
144 }
145 }
146 $send_to_cc = trim($send_to_cc);
147 if (substr($send_to_cc, -1) == ",") {
148 $send_to_cc = substr($send_to_cc, 0, strlen($send_to_cc) - 1);
149 }
150 }
151 } // function newMail()
78509c54 152
5713b4f9 153 function getAttachments($message) {
154 global $mailbox, $attachments, $attachment_dir, $imapConnection,
155 $ent_num, $forward_id;
156
157 if (!$message) {
158 sqimap_mailbox_select($imapConnection, $mailbox);
159 $message = sqimap_get_message($imapConnection, $forward_id, $mailbox); }
160
161 if (!$message->entities) {
162 if ($message->header->entity_id != $ent_num) {
163 $filename = decodeHeader($message->header->filename);
164
165 if ($filename == "")
166 $filename = "untitled-".$message->header->entity_id;
167
168 $localfilename = md5($filename.", $REMOTE_IP, REMOTE_PORT, $UNIQUE_ID, extra-stuff here");
169
170 // Write File Info
171 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
172 fputs ($fp, strtolower($message->header->type0)."/".strtolower($message->header->type1)."\n".$filename."\n");
173 fclose ($fp);
174
175 // Write Attachment to file
176 $fp = fopen ($attachment_dir.$localfilename, "w");
177 fputs ($fp, decodeBody(mime_fetch_body($imapConnection, $forward_id, $message->header->entity_id), $message->header->encoding));
178 fgets($imapConnection, 256);
179 fgets($imapConnection, 256);
180 fclose ($fp);
181
182 $attachments[$localfilename] = $filename;
183
184 }
185 } else {
186 for ($i = 0; $i < count($message->entities); $i++) {
187 getAttachments($message->entities[$i]);
188 }
189 }
190 return;
191 }
192
df15de21 193 function showInputForm () {
194 global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body,
4ba45d11 195 $passed_body, $color, $use_signature, $signature, $editor_size,
3806fa52 196 $attachments, $subject, $newmail, $use_javascript_addr_book,
441f2d33 197 $send_to_bcc, $reply_id, $mailbox, $from_htmladdr_search,
198 $location_of_buttons;
78509c54 199
5f104808 200 $subject = sqStripSlashes(decodeHeader($subject));
2e434774 201 $reply_subj = decodeHeader($reply_subj);
202 $forward_subj = decodeHeader($forward_subj);
162efb6f 203 $body = sqStripSlashes($body);
01aab860 204
3806fa52 205 if ($use_javascript_addr_book) {
206 echo "\n<SCRIPT LANGUAGE=JavaScript><!--\n";
207 echo "function open_abook() { \n";
208 echo " var nwin = window.open(\"addrbook_popup.php\",\"abookpopup\",";
209 echo "\"width=670,height=300,resizable=yes,scrollbars=yes\");\n";
210 echo " if((!nwin.opener) && (document.windows != null))\n";
211 echo " nwin.opener = document.windows;\n";
212 echo "}\n";
213 echo "// --></SCRIPT>\n\n";
214 }
5100704d 215
cacf2747 216 echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST ENCTYPE=\"multipart/form-data\">\n";
217 //echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST>\n";
966286ae 218 if ($reply_id) {
219 echo "<input type=hidden name=reply_id value=$reply_id>\n";
6e79bfe2 220 }
cf8758c7 221 printf("<INPUT TYPE=hidden NAME=mailbox VALUE=\"%s\">\n", htmlspecialchars($mailbox));
c5d828b3 222 echo "<TABLE WIDTH=\"100%\" ALIGN=center CELLSPACING=0 BORDER=0>\n";
441f2d33 223
224 if ($location_of_buttons == 'top') showComposeButtonRow();
225
df15de21 226 echo " <TR>\n";
c5d828b3 227 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
df15de21 228 echo _("To:");
c5d828b3 229 echo " </TD><TD BGCOLOR=\"$color[4]\">\n";
cf8758c7 230 printf(" <INPUT TYPE=text NAME=\"send_to\" VALUE=\"%s\" SIZE=60><BR>\n",
6e79bfe2 231 htmlspecialchars($send_to));
df15de21 232 echo " </TD>\n";
233 echo " </TR>\n";
234 echo " <TR>\n";
c5d828b3 235 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
aae41ae9 236 echo _("CC:");
c5d828b3 237 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
cf8758c7 238 printf(" <INPUT TYPE=text NAME=\"send_to_cc\" SIZE=60 VALUE=\"%s\"><BR>\n",
6e79bfe2 239 htmlspecialchars($send_to_cc));
df15de21 240 echo " </TD>\n";
241 echo " </TR>\n";
242 echo " <TR>\n";
c5d828b3 243 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
aae41ae9 244 echo _("BCC:");
761d149e 245 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
cf8758c7 246 printf(" <INPUT TYPE=text NAME=\"send_to_bcc\" VALUE=\"%s\" SIZE=60><BR>\n",
6e79bfe2 247 htmlspecialchars($send_to_bcc));
3806fa52 248 echo "</TD></TR>\n";
5100704d 249
df15de21 250 echo " <TR>\n";
c5d828b3 251 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
df15de21 252 echo _("Subject:");
761d149e 253 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
df15de21 254 if ($reply_subj) {
255 $reply_subj = str_replace("\"", "'", $reply_subj);
7aaa81fc 256 $reply_subj = sqStripSlashes($reply_subj);
df15de21 257 $reply_subj = trim($reply_subj);
258 if (substr(strtolower($reply_subj), 0, 3) != "re:")
259 $reply_subj = "Re: $reply_subj";
cf8758c7 260 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
6e79bfe2 261 htmlspecialchars($reply_subj));
df15de21 262 } else if ($forward_subj) {
263 $forward_subj = str_replace("\"", "'", $forward_subj);
7aaa81fc 264 $forward_subj = sqStripSlashes($forward_subj);
df15de21 265 $forward_subj = trim($forward_subj);
266 if ((substr(strtolower($forward_subj), 0, 4) != "fwd:") &&
267 (substr(strtolower($forward_subj), 0, 5) != "[fwd:") &&
268 (substr(strtolower($forward_subj), 0, 6) != "[ fwd:"))
269 $forward_subj = "[Fwd: $forward_subj]";
cf8758c7 270 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
6e79bfe2 271 htmlspecialchars($forward_subj));
df15de21 272 } else {
6e79bfe2 273 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
274 htmlspecialchars($subject));
31f3d7c0 275 }
480feea7 276 echo "</td></tr>\n\n";
277
441f2d33 278 if ($location_of_buttons == 'between') showComposeButtonRow();
4ba45d11 279
e5b23ff2 280 echo " <TR>\n";
c5d828b3 281 echo " <TD BGCOLOR=\"$color[4]\" COLSPAN=2>\n";
cf8758c7 282 echo " &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>";
441f2d33 283 echo htmlspecialchars($body);
6e79bfe2 284 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
441f2d33 285 echo "\n\n-- \n" . htmlspecialchars($signature);
cf8758c7 286 }
287 echo "</TEXTAREA><BR>\n";
e5b23ff2 288 echo " </TD>\n";
289 echo " </TR>\n";
441f2d33 290
291 if ($location_of_buttons == 'bottom')
292 showComposeButtonRow();
293 else {
294 echo " <TR><TD>&nbsp;</TD><TD ALIGN=LEFT><INPUT TYPE=SUBMIT NAME=send VALUE=\""._("Send")."\"></TD></TR>\n";
295 }
e5b23ff2 296
4ba45d11 297 // This code is for attachments
298 echo " <tr>\n";
c5d828b3 299 echo " <TD BGCOLOR=\"$color[0]\" VALIGN=TOP ALIGN=RIGHT>\n";
aae41ae9 300 echo " <SMALL><BR></SMALL>"._("Attach:");
c5d828b3 301 echo " </td><td ALIGN=left BGCOLOR=\"$color[0]\">\n";
4ba45d11 302 // echo " <INPUT TYPE=\"hidden\" name=\"MAX_FILE_SIZE\"\n";
303 // echo " value=\"10000\">\n";
944eb785 304 echo " <INPUT NAME=\"attachfile\" SIZE=48 TYPE=\"file\">\n";
95de6c91 305 echo " &nbsp;&nbsp;<input type=\"submit\" name=\"attach\"";
306 echo " value=\"" . _("Add") ."\">\n";
469eb37b 307 echo " </td>\n";
469eb37b 308 echo " </tr>\n";
4ba45d11 309 if (isset($attachments) && count($attachments)>0) {
162efb6f 310 echo "<tr><td bgcolor=\"$color[0]\" align=right>\n";
e5b23ff2 311 echo "&nbsp;";
c5d828b3 312 echo "</td><td align=left bgcolor=\"$color[0]\">";
4ba45d11 313 while (list($localname, $remotename) = each($attachments)) {
314 echo "<input type=\"checkbox\" name=\"delete[]\" value=\"$localname\">\n";
315 echo "$remotename <input type=\"hidden\" name=\"attachments[$localname]\" value=\"$remotename\"><br>\n";
316 }
317
318 echo "<input type=\"submit\" name=\"do_delete\" value=\""._("Delete selected attachments")."\">\n";
469eb37b 319 echo "</td></tr>";
4ba45d11 320 }
4ba45d11 321 // End of attachment code
322
ffc2ccbc 323 echo "</TABLE>\n";
df15de21 324 echo "</FORM>";
d7d3c4d4 325 do_hook("compose_bottom");
31f3d7c0 326 }
441f2d33 327
328 function showComposeButtonRow() {
2037f4f3 329 global $use_javascript_addr_book;
441f2d33 330 echo " <TR><td>\n </td><td>\n";
331 if ($use_javascript_addr_book) {
332 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"";
333 echo " <input type=button value=\\\""._("Addresses")."\\\" onclick='javascript:open_abook();'>\");";
334 echo " // --></SCRIPT><NOSCRIPT>\n";
335 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
336 echo " </NOSCRIPT>\n";
337 } else {
338 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
339 }
340 echo "\n <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
341
342 do_hook("compose_button_row");
343
344 echo " </TD>\n";
345 echo " </TR>\n\n";
346 }
8467bf00 347
df15de21 348 function showSentForm () {
df15de21 349 echo "<BR><BR><BR><CENTER><B>Message Sent!</B><BR><BR>";
9f2215a1 350 echo "You will be automatically forwarded.<BR>If not, <A HREF=\"right_main.php\">click here</A>";
aae41ae9 351 echo "</CENTER>";
df15de21 352 }
b278172f 353
0ad7dbda 354 function checkInput ($show) {
355 /** I implemented the $show variable because the error messages
356 were getting sent before the page header. So, I check once
357 using $show=false, and then when i'm ready to display the
358 error message, show=true **/
359 global $body, $send_to, $subject, $color;
b278172f 360
99fa2b21 361 if ($send_to == "") {
0ad7dbda 362 if ($show)
363 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
df15de21 364 return false;
b278172f 365 }
df15de21 366 return true;
367 } // function checkInput()
368
3806fa52 369
056ddad7 370 // True if FAILURE
371 function saveAttachedFiles() {
372 global $HTTP_POST_FILES, $attachment_dir, $attachments;
373
374 is_logged_in();
375 $localfilename = GenerateRandomString(32, '', 7);
376
377 if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $attachment_dir.$localfilename)) {
378 if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $attachment_dir.$localfilename)) {
379 return true;
380 }
381 }
382
383 if (!$failed) {
384 // Write information about the file
385 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
386 fputs ($fp, $HTTP_POST_FILES['attachfile']['type']."\n".$HTTP_POST_FILES['attachfile']['name']."\n");
387 fclose ($fp);
388
389 $attachments[$localfilename] = $HTTP_POST_FILES['attachfile']['name'];
390 }
391 }
392
ecf51658 393 if (($mailbox == "") || ($mailbox == "None"))
dcb7f454 394 $mailbox = "INBOX";
3806fa52 395
4ba45d11 396 if(isset($send)) {
78b4216e 397 if ($HTTP_POST_FILES['attachfile']['tmp_name'] &&
398 $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none')
056ddad7 399 $AttachFailure = saveAttachedFiles();
400 if (checkInput(false) && ! $AttachFailure) {
966286ae 401 $urlMailbox = urlencode ($mailbox);
402 sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id);
403 header ("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1");
df15de21 404 } else {
01aab860 405 //$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
dcb7f454 406 displayPageHeader($color, $mailbox);
056ddad7 407
408 if ($AttachFailure)
409 plain_error_message(_("Could not move/copy file. File not attached"), $color);
410
0ad7dbda 411 checkInput(true);
412
df15de21 413 showInputForm();
01aab860 414 //sqimap_logout($imapConnection);
7c6cb7ca 415 }
3806fa52 416 } else if ($html_addr_search_done) {
3c13b9fb 417 is_logged_in();
dcb7f454 418 displayPageHeader($color, $mailbox);
3806fa52 419
7aaa81fc 420 $send_to = sqStripSlashes($send_to);
421 $send_to_cc = sqStripSlashes($send_to_cc);
422 $send_to_bcc = sqStripSlashes($send_to_bcc);
3806fa52 423
6c7fd6ca 424 for ($i=0; $i < count($send_to_search); $i++) {
425 if ($send_to)
426 $send_to .= ", ";
427 $send_to .= $send_to_search[$i];
428 }
429
430 for ($i=0; $i < count($send_to_cc_search); $i++) {
431 if ($send_to_cc)
432 $send_to_cc .= ", ";
433 $send_to_cc .= $send_to_cc_search[$i];
434 }
435
3806fa52 436 showInputForm();
6c7fd6ca 437 } else if ($html_addr_search) {
591d2a88 438 // I am using an include so as to elminiate an extra unnecessary click. If you
439 // can think of a better way, please implement it.
2037f4f3 440 include ("./addrbook_search_html.php");
4ba45d11 441 } else if (isset($attach)) {
056ddad7 442 if (saveAttachedFiles())
22ef7536 443 plain_error_message(_("Could not move/copy file. File not attached"), $color);
21bc0570 444 displayPageHeader($color, $mailbox);
4ba45d11 445 showInputForm();
446 } else if (isset($do_delete)) {
3c13b9fb 447 is_logged_in();
dcb7f454 448 displayPageHeader($color, $mailbox);
fc3348ac 449
fb16d219 450 while (list($lkey, $localname) = each($delete)) {
90555fe7 451 unset ($attachments[$localname]);
c3c37167 452 unlink ($attachment_dir.$localname);
453 unlink ($attachment_dir.$localname.".info");
4ba45d11 454 }
4bfed9f3 455
4ba45d11 456 showInputForm();
66289791 457 } else if ($smtpErrors) {
458 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
459 displayPageHeader($color, $mailbox);
460
461 $newmail = true;
462 if ($forward_id && $ent_num) getAttachments(0);
463
464 newMail();
465 showInputForm();
466 sqimap_logout($imapConnection);
4ba45d11 467 } else {
a60b9989 468 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
dcb7f454 469 displayPageHeader($color, $mailbox);
fc3348ac 470
b57c4e63 471 $newmail = true;
66289791 472
5713b4f9 473 if ($forward_id && $ent_num) getAttachments(0);
474
1220e677 475 newMail();
4ba45d11 476 showInputForm();
1195c340 477 sqimap_logout($imapConnection);
4ba45d11 478 }
da79853a 479?>
5713b4f9 480
481