if any of the standard headers are blank, read_body.php doesn't show
[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,
3806fa52 44 $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc;
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);
74
df15de21 75 $body_ary = explode("\n", $body);
76 $body = "";
429f8906 77 for ($i=0; $i < count($body_ary); $i++) {
8d8ab69a 78 if ($i==0 && $forward_id) {
d68a3926 79 $tmp = "-------- " . _("Original Message") . " --------\n";
8d8ab69a 80 $tmp .= _("Subject") . ": " . $orig_header->subject . "\n";
81 $tmp .= " " . _("From") . ": " . $orig_header->from . "\n";
82 $tmp .= " " . _("To") . ": " . $orig_header->to[0] . "\n";
83 if (count($orig_header->to) > 1) {
84 for ($x=1; $x < count($orig_header->to); $x++) {
85 $tmp .= " " . $orig_header->to[$x] . "\n";
86 }
87 }
88 $tmp .= "\n" . $body_ary[$i];
89 } else {
1195c340 90 $tmp = $body_ary[$i];
8d8ab69a 91 }
429f8906 92 if ($forward_id)
8d8ab69a 93 $body = "$body$tmp\n";
df15de21 94 else
8d8ab69a 95 $body = "$body> $tmp\n";
78509c54 96 }
a2790a61 97 sqimap_mailbox_close($imapConnection);
1195c340 98 return $body;
78509c54 99 }
429f8906 100
29d08a52 101 if (!$send_to) {
102 $send_to = sqimap_find_email($send_to);
103 }
104
df15de21 105 /** This formats a CC string if they hit "reply all" **/
106 if ($send_to_cc != "") {
a48fbf9b 107 $send_to_cc = ereg_replace( '"[^"]*"', "", $send_to_cc);
df15de21 108 $send_to_cc = ereg_replace(";", ",", $send_to_cc);
109 $sendcc = explode(",", $send_to_cc);
110 $send_to_cc = "";
111
112 for ($i = 0; $i < count($sendcc); $i++) {
113 $sendcc[$i] = trim($sendcc[$i]);
114 if ($sendcc[$i] == "")
115 continue;
116
a53e5469 117 $sendcc[$i] = sqimap_find_email($sendcc[$i]);
813eba2f 118 $whofrom = sqimap_find_displayable_name($msg["HEADER"]["FROM"]);
119 $whoreplyto = sqimap_find_email($msg["HEADER"]["REPLYTO"]);
df15de21 120
121 if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
122 (strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
123 (trim($sendcc[$i]) != "")) {
124 $send_to_cc .= trim($sendcc[$i]) . ", ";
125 }
126 }
127 $send_to_cc = trim($send_to_cc);
128 if (substr($send_to_cc, -1) == ",") {
129 $send_to_cc = substr($send_to_cc, 0, strlen($send_to_cc) - 1);
130 }
131 }
132 } // function newMail()
78509c54 133
df15de21 134 function showInputForm () {
135 global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body,
4ba45d11 136 $passed_body, $color, $use_signature, $signature, $editor_size,
3806fa52 137 $attachments, $subject, $newmail, $use_javascript_addr_book,
6e79bfe2 138 $send_to_bcc, $reply_id, $mailbox, $from_htmladdr_search;
78509c54 139
5f104808 140 $subject = sqStripSlashes(decodeHeader($subject));
2e434774 141 $reply_subj = decodeHeader($reply_subj);
142 $forward_subj = decodeHeader($forward_subj);
162efb6f 143 $body = sqStripSlashes($body);
a53e5469 144
3806fa52 145 if ($use_javascript_addr_book) {
146 echo "\n<SCRIPT LANGUAGE=JavaScript><!--\n";
147 echo "function open_abook() { \n";
148 echo " var nwin = window.open(\"addrbook_popup.php\",\"abookpopup\",";
149 echo "\"width=670,height=300,resizable=yes,scrollbars=yes\");\n";
150 echo " if((!nwin.opener) && (document.windows != null))\n";
151 echo " nwin.opener = document.windows;\n";
152 echo "}\n";
153 echo "// --></SCRIPT>\n\n";
154 }
5100704d 155
cacf2747 156 echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST ENCTYPE=\"multipart/form-data\">\n";
157 //echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST>\n";
966286ae 158 if ($reply_id) {
159 echo "<input type=hidden name=reply_id value=$reply_id>\n";
6e79bfe2 160 }
cf8758c7 161 printf("<INPUT TYPE=hidden NAME=mailbox VALUE=\"%s\">\n", htmlspecialchars($mailbox));
c5d828b3 162 echo "<TABLE WIDTH=\"100%\" ALIGN=center CELLSPACING=0 BORDER=0>\n";
df15de21 163 echo " <TR>\n";
c5d828b3 164 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
df15de21 165 echo _("To:");
c5d828b3 166 echo " </TD><TD BGCOLOR=\"$color[4]\">\n";
cf8758c7 167 printf(" <INPUT TYPE=text NAME=\"send_to\" VALUE=\"%s\" SIZE=60><BR>\n",
6e79bfe2 168 htmlspecialchars($send_to));
df15de21 169 echo " </TD>\n";
170 echo " </TR>\n";
171 echo " <TR>\n";
c5d828b3 172 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
aae41ae9 173 echo _("CC:");
c5d828b3 174 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
cf8758c7 175 printf(" <INPUT TYPE=text NAME=\"send_to_cc\" SIZE=60 VALUE=\"%s\"><BR>\n",
6e79bfe2 176 htmlspecialchars($send_to_cc));
df15de21 177 echo " </TD>\n";
178 echo " </TR>\n";
179 echo " <TR>\n";
c5d828b3 180 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
aae41ae9 181 echo _("BCC:");
761d149e 182 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
cf8758c7 183 printf(" <INPUT TYPE=text NAME=\"send_to_bcc\" VALUE=\"%s\" SIZE=60><BR>\n",
6e79bfe2 184 htmlspecialchars($send_to_bcc));
3806fa52 185 echo "</TD></TR>\n";
5100704d 186
df15de21 187 echo " <TR>\n";
c5d828b3 188 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
df15de21 189 echo _("Subject:");
761d149e 190 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
df15de21 191 if ($reply_subj) {
192 $reply_subj = str_replace("\"", "'", $reply_subj);
7aaa81fc 193 $reply_subj = sqStripSlashes($reply_subj);
df15de21 194 $reply_subj = trim($reply_subj);
195 if (substr(strtolower($reply_subj), 0, 3) != "re:")
196 $reply_subj = "Re: $reply_subj";
cf8758c7 197 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
6e79bfe2 198 htmlspecialchars($reply_subj));
df15de21 199 } else if ($forward_subj) {
200 $forward_subj = str_replace("\"", "'", $forward_subj);
7aaa81fc 201 $forward_subj = sqStripSlashes($forward_subj);
df15de21 202 $forward_subj = trim($forward_subj);
203 if ((substr(strtolower($forward_subj), 0, 4) != "fwd:") &&
204 (substr(strtolower($forward_subj), 0, 5) != "[fwd:") &&
205 (substr(strtolower($forward_subj), 0, 6) != "[ fwd:"))
206 $forward_subj = "[Fwd: $forward_subj]";
cf8758c7 207 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
6e79bfe2 208 htmlspecialchars($forward_subj));
df15de21 209 } else {
6e79bfe2 210 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
211 htmlspecialchars($subject));
31f3d7c0 212 }
480feea7 213 echo "</td></tr>\n\n";
214
215 echo " <TR><td>\n </td><td>\n";
216 if ($use_javascript_addr_book) {
217 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"";
218 echo " <input type=button value=\\\""._("Addresses")."\\\" onclick='javascript:open_abook();'>\");";
219 echo " // --></SCRIPT><NOSCRIPT>\n";
220 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
221 echo " </NOSCRIPT>\n";
222 } else {
223 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
224 }
225 echo "\n <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
15bfc1bc 226
227 do_hook("compose_button_row");
228
480feea7 229 echo " </TD>\n";
230 echo " </TR>\n\n";
231
4ba45d11 232
e5b23ff2 233 echo " <TR>\n";
c5d828b3 234 echo " <TD BGCOLOR=\"$color[4]\" COLSPAN=2>\n";
cf8758c7 235 echo " &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>";
6e79bfe2 236 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
ef3c69f0 237 echo (htmlspecialchars($body)) . "\n\n-- \n" . htmlspecialchars($signature);
cf8758c7 238 } else {
ef3c69f0 239 echo (htmlspecialchars($body));
cf8758c7 240 }
241 echo "</TEXTAREA><BR>\n";
e5b23ff2 242 echo " </TD>\n";
243 echo " </TR>\n";
c5d828b3 244 echo " <TR><TD COLSPAN=2 ALIGN=CENTER><INPUT TYPE=SUBMIT NAME=send VALUE=\"";
e5b23ff2 245 echo _("Send");
246 echo "\"></TD></TR>\n";
247
4ba45d11 248 // This code is for attachments
249 echo " <tr>\n";
c5d828b3 250 echo " <TD BGCOLOR=\"$color[0]\" VALIGN=TOP ALIGN=RIGHT>\n";
aae41ae9 251 echo " <SMALL><BR></SMALL>"._("Attach:");
c5d828b3 252 echo " </td><td ALIGN=left BGCOLOR=\"$color[0]\">\n";
4ba45d11 253 // echo " <INPUT TYPE=\"hidden\" name=\"MAX_FILE_SIZE\"\n";
254 // echo " value=\"10000\">\n";
944eb785 255 echo " <INPUT NAME=\"attachfile\" SIZE=48 TYPE=\"file\">\n";
95de6c91 256 echo " &nbsp;&nbsp;<input type=\"submit\" name=\"attach\"";
257 echo " value=\"" . _("Add") ."\">\n";
469eb37b 258 echo " </td>\n";
469eb37b 259 echo " </tr>\n";
4ba45d11 260 if (isset($attachments) && count($attachments)>0) {
162efb6f 261 echo "<tr><td bgcolor=\"$color[0]\" align=right>\n";
e5b23ff2 262 echo "&nbsp;";
c5d828b3 263 echo "</td><td align=left bgcolor=\"$color[0]\">";
4ba45d11 264 while (list($localname, $remotename) = each($attachments)) {
265 echo "<input type=\"checkbox\" name=\"delete[]\" value=\"$localname\">\n";
266 echo "$remotename <input type=\"hidden\" name=\"attachments[$localname]\" value=\"$remotename\"><br>\n";
267 }
268
269 echo "<input type=\"submit\" name=\"do_delete\" value=\""._("Delete selected attachments")."\">\n";
469eb37b 270 echo "</td></tr>";
4ba45d11 271 }
4ba45d11 272 // End of attachment code
273
ffc2ccbc 274 echo "</TABLE>\n";
df15de21 275 echo "</FORM>";
d7d3c4d4 276 do_hook("compose_bottom");
31f3d7c0 277 }
8467bf00 278
df15de21 279 function showSentForm () {
df15de21 280 echo "<BR><BR><BR><CENTER><B>Message Sent!</B><BR><BR>";
9f2215a1 281 echo "You will be automatically forwarded.<BR>If not, <A HREF=\"right_main.php\">click here</A>";
aae41ae9 282 echo "</CENTER>";
df15de21 283 }
b278172f 284
0ad7dbda 285 function checkInput ($show) {
286 /** I implemented the $show variable because the error messages
287 were getting sent before the page header. So, I check once
288 using $show=false, and then when i'm ready to display the
289 error message, show=true **/
290 global $body, $send_to, $subject, $color;
b278172f 291
99fa2b21 292 if ($send_to == "") {
0ad7dbda 293 if ($show)
294 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
df15de21 295 return false;
b278172f 296 }
df15de21 297 return true;
298 } // function checkInput()
299
3806fa52 300
ecf51658 301 if (($mailbox == "") || ($mailbox == "None"))
dcb7f454 302 $mailbox = "INBOX";
3806fa52 303
4ba45d11 304 if(isset($send)) {
0ad7dbda 305 if (checkInput(false)) {
966286ae 306 $urlMailbox = urlencode ($mailbox);
307 sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id);
308 header ("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1");
df15de21 309 } else {
e1469126 310 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
dcb7f454 311 displayPageHeader($color, $mailbox);
0ad7dbda 312 checkInput(true);
313
df15de21 314 showInputForm();
1195c340 315 sqimap_logout($imapConnection);
7c6cb7ca 316 }
3806fa52 317 } else if ($html_addr_search_done) {
3c13b9fb 318 is_logged_in();
dcb7f454 319 displayPageHeader($color, $mailbox);
3806fa52 320
7aaa81fc 321 $send_to = sqStripSlashes($send_to);
322 $send_to_cc = sqStripSlashes($send_to_cc);
323 $send_to_bcc = sqStripSlashes($send_to_bcc);
3806fa52 324
6c7fd6ca 325 for ($i=0; $i < count($send_to_search); $i++) {
326 if ($send_to)
327 $send_to .= ", ";
328 $send_to .= $send_to_search[$i];
329 }
330
331 for ($i=0; $i < count($send_to_cc_search); $i++) {
332 if ($send_to_cc)
333 $send_to_cc .= ", ";
334 $send_to_cc .= $send_to_cc_search[$i];
335 }
336
3806fa52 337 showInputForm();
6c7fd6ca 338 } else if ($html_addr_search) {
591d2a88 339 // I am using an include so as to elminiate an extra unnecessary click. If you
340 // can think of a better way, please implement it.
6c7fd6ca 341 include ("addrbook_search_html.php");
4ba45d11 342 } else if (isset($attach)) {
3c13b9fb 343 is_logged_in();
dcb7f454 344 displayPageHeader($color, $mailbox);
fc3348ac 345
4ba45d11 346 $localfilename = md5("$attachfile, $attachfile_name, $REMOTE_IP, $REMOTE_PORT, $UNIQUE_ID, and everything else that may add entropy");
c3c37167 347 $localfilename = $localfilename;
4ba45d11 348
349 // Put the file in a better place
162efb6f 350 // This shouldn't be here... Ondrej Sury <ondrej@sury.cz>
351 //$tmp=explode('/',$attachfile);
352 //$attachfile=$tmp[count($tmp)-1];
353 //$attachfile=ereg_replace('\.{2,}','',$attachfile);
cacf2747 354
162efb6f 355 //error_reporting(0); // Rename will produce error output if it fails
356 //if (!rename($attachfile, $attachment_dir.$localfilename)) {
357 // if (!copy($attachfile, $attachment_dir.$localfilename)) {
358 if (!@rename($attachfile, $attachment_dir.$localfilename)) {
359 if (!@copy($attachfile, $attachment_dir.$localfilename)) {
22ef7536 360 plain_error_message(_("Could not move/copy file. File not attached"), $color);
c3c37167 361 $failed = true;
4ba45d11 362 }
363 }
364 // If it still exists, PHP will remove the original file
365
c3c37167 366 if (!$failed) {
367 // Write information about the file
368 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
369 fputs ($fp, "$attachfile_type\n$attachfile_name\n");
370 fclose ($fp);
4ba45d11 371
c3c37167 372 $attachments[$localfilename] = $attachfile_name;
373 }
4ba45d11 374
375 showInputForm();
376 } else if (isset($do_delete)) {
3c13b9fb 377 is_logged_in();
dcb7f454 378 displayPageHeader($color, $mailbox);
fc3348ac 379
fb16d219 380 while (list($lkey, $localname) = each($delete)) {
381 array_splice ($attachments, $lkey, 1);
c3c37167 382 unlink ($attachment_dir.$localname);
383 unlink ($attachment_dir.$localname.".info");
4ba45d11 384 }
4bfed9f3 385
4ba45d11 386 showInputForm();
387 } else {
a60b9989 388 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
dcb7f454 389 displayPageHeader($color, $mailbox);
fc3348ac 390
b57c4e63 391 $newmail = true;
1220e677 392 newMail();
4ba45d11 393 showInputForm();
1195c340 394 sqimap_logout($imapConnection);
4ba45d11 395 }
da79853a 396?>