minor bugfix, first line of message used to remove preceeding spaces.
[squirrelmail.git] / src / compose.php
1 <?php
2 /** This code sends a mail.
3 **
4 ** There are 3 modes of operation:
5 ** - Start new mail
6 ** - Add an attachment
7 ** - Send mail
8 **/
9
10 session_start();
11
12 if (!isset($config_php))
13 include("../config/config.php");
14 if (!isset($strings_php))
15 include("../functions/strings.php");
16 if (!isset($page_header_php))
17 include("../functions/page_header.php");
18 if (!isset($imap_php))
19 include("../functions/imap.php");
20 if (!isset($date_php))
21 include("../functions/date.php");
22 if (!isset($mime_php))
23 include("../functions/mime.php");
24 if (!isset($smtp_php))
25 include("../functions/smtp.php");
26 if (!isset($display_messages_php))
27 include("../functions/display_messages.php");
28
29 include("../src/load_prefs.php");
30
31 // This function is used when not sending or adding attachments
32 function newMail () {
33 global $forward_id, $imapConnection, $msg, $ent_num, $body_ary, $body,
34 $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc;
35
36 $send_to = decodeHeader($send_to);
37 $send_to_cc = decodeHeader($send_to_cc);
38
39 if ($forward_id) {
40 sqimap_mailbox_select($imapConnection, $mailbox);
41 $msg = sqimap_get_message($imapConnection, $forward_id, $mailbox);
42
43 if (containsType($msg, "text", "html", $ent_num)) {
44 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"]);
45 } else if (containsType($msg, "text", "plain", $ent_num)) {
46 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"]);
47 }
48 // add other primary displaying msg types here
49 else {
50 // find any type that's displayable
51 if (containsType($msg, "text", "any_type", $ent_num)) {
52 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"]);
53 } else if (containsType($msg, "msg", "any_type", $ent_num)) {
54 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"]);
55 } else {
56 $body = _("No Message");
57 }
58 }
59
60 $type1 = $msg["ENTITIES"][$ent_num]["TYPE1"];
61
62 $tmp = _("-------- Original Message ---------\n");
63 $body_ary = explode("\n", $body);
64 $body = "";
65 for ($i=0;$i < count($body_ary);$i++) {
66 if ($type1 == "html")
67 $tmp .= strip_tags($body_ary[$i]);
68 else
69 $tmp .= $body_ary[$i];
70 $body = "$body$tmp\n";
71 $tmp = "";
72 }
73 }
74
75 if ($reply_id) {
76 sqimap_mailbox_select($imapConnection, $mailbox);
77 $msg = sqimap_get_message($imapConnection, $reply_id, $mailbox);
78
79 if (containsType($msg, "text", "html", $ent_num)) {
80 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"], false);
81 } else if (containsType($msg, "text", "plain", $ent_num)) {
82 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"], false);
83 }
84 // add other primary displaying msg types here
85 else {
86 // find any type that's displayable
87 if (containsType($msg, "text", "any_type", $ent_num)) {
88 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"], false);
89 } else if (containsType($msg, "msg", "any_type", $ent_num)) {
90 $body = decodeBody($msg["ENTITIES"][$ent_num]["BODY"], $msg["ENTITIES"][$ent_num]["ENCODING"], false);
91 } else {
92 $body = _("No Message");
93 }
94 }
95
96 $type1 = $msg["ENTITIES"][$ent_num]["TYPE1"];
97
98 $body_ary = explode("\n", $body);
99 $body = "";
100 for ($i=0;$i < count($body_ary);$i++) {
101 if ($type1 == "html")
102 $tmp = strip_tags($body_ary[$i]);
103 else
104 $tmp = $body_ary[$i];
105 $body = "$body> $tmp\n";
106 }
107 }
108
109 if (!$send_to) {
110 $send_to = sqimap_find_email($send_to);
111 }
112
113 $send_to = ereg_replace("\"", "", $send_to);
114 $send_to = stripslashes($send_to);
115
116 /** This formats a CC string if they hit "reply all" **/
117 if ($send_to_cc != "") {
118 $send_to_cc = ereg_replace(";", ",", $send_to_cc);
119 $sendcc = explode(",", $send_to_cc);
120 $send_to_cc = "";
121
122 for ($i = 0; $i < count($sendcc); $i++) {
123 $sendcc[$i] = trim($sendcc[$i]);
124 if ($sendcc[$i] == "")
125 continue;
126
127 $sendcc[$i] = sqimap_find_email($sendcc[$i]);
128 $whofrom = sqimap_find_displayable_name($msg["HEADER"]["FROM"]);
129 $whoreplyto = sqimap_find_email($msg["HEADER"]["REPLYTO"]);
130
131 if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
132 (strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
133 (trim($sendcc[$i]) != "")) {
134 $send_to_cc .= trim($sendcc[$i]) . ", ";
135 }
136 }
137 $send_to_cc = trim($send_to_cc);
138 if (substr($send_to_cc, -1) == ",") {
139 $send_to_cc = substr($send_to_cc, 0, strlen($send_to_cc) - 1);
140 }
141 }
142 } // function newMail()
143
144 function showInputForm () {
145 global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body,
146 $passed_body, $color, $use_signature, $signature, $editor_size,
147 $attachments, $subject, $newmail, $use_javascript_addr_book,
148 $send_to_bcc;
149
150 $subject = decodeHeader($subject);
151 $reply_subj = decodeHeader($reply_subj);
152 $forward_subj = decodeHeader($forward_subj);
153
154 if ($use_javascript_addr_book) {
155 echo "\n<SCRIPT LANGUAGE=JavaScript><!--\n";
156 echo "function open_abook() { \n";
157 echo " var nwin = window.open(\"addrbook_popup.php\",\"abookpopup\",";
158 echo "\"width=670,height=300,resizable=yes,scrollbars=yes\");\n";
159 echo " if((!nwin.opener) && (document.windows != null))\n";
160 echo " nwin.opener = document.windows;\n";
161 echo "}\n";
162 echo "// --></SCRIPT>\n\n";
163 }
164
165 echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST ENCTYPE=\"multipart/form-data\">\n";
166 echo "<TABLE COLS=2 WIDTH=50 ALIGN=center CELLSPACING=0 BORDER=0>\n";
167 echo " <TR>\n";
168 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
169 echo _("To:");
170 echo " </TD><TD colspan=2 WIDTH=% BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
171 if ($send_to)
172 echo " <INPUT TYPE=TEXT NAME=send_to VALUE=\"$send_to\" SIZE=60><BR>";
173 else
174 echo " <INPUT TYPE=TEXT NAME=send_to SIZE=60><BR>";
175 echo " </TD>\n";
176 echo " </TR>\n";
177 echo " <TR>\n";
178 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
179 echo _("CC:");
180 echo " </TD><TD WIDTH=% colspan=2 BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
181 if ($send_to_cc)
182 echo " <INPUT TYPE=TEXT NAME=send_to_cc SIZE=60 VALUE=\"$send_to_cc\"><BR>";
183 else
184 echo " <INPUT TYPE=TEXT NAME=send_to_cc SIZE=60><BR>";
185 echo " </TD>\n";
186 echo " </TR>\n";
187 echo " <TR>\n";
188 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
189 echo _("BCC:");
190 echo " </TD><TD WIDTH=% BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
191 if ($send_to_bcc)
192 echo " <INPUT TYPE=TEXT NAME=send_to_bcc VALUE=\"$send_to_bcc\" SIZE=55><BR>";
193 else
194 echo " <INPUT TYPE=TEXT NAME=send_to_bcc SIZE=55><BR>";
195 echo " </TD>\n";
196 echo "<TD width=1% BGCOLOR=\"$color[4]\" ALIGN=Right>";
197
198 if ($use_javascript_addr_book) {
199 echo "<SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"";
200 echo "<input type=button value=\\\""._("Addresses")."\\\" onclick='javascript:open_abook();'>\");";
201 echo "// --></SCRIPT><NOSCRIPT>\n";
202 echo "<input type=submit name=html_addr_search value=\""._("Addresses")."\">";
203 echo "</NOSCRIPT>\n";
204 } else {
205 echo "<input type=submit name=html_addr_search value=\""._("Addresses")."\">";
206 }
207
208 echo "</TD></TR>\n";
209
210 echo " <TR>\n";
211 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
212 echo _("Subject:");
213 echo " </TD><TD WIDTH=% BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
214 if ($reply_subj) {
215 $reply_subj = str_replace("\"", "'", $reply_subj);
216 $reply_subj = stripslashes($reply_subj);
217 $reply_subj = trim($reply_subj);
218 if (substr(strtolower($reply_subj), 0, 3) != "re:")
219 $reply_subj = "Re: $reply_subj";
220 echo " <INPUT TYPE=TEXT NAME=subject SIZE=55 VALUE=\"$reply_subj\">";
221 } else if ($forward_subj) {
222 $forward_subj = str_replace("\"", "'", $forward_subj);
223 $forward_subj = stripslashes($forward_subj);
224 $forward_subj = trim($forward_subj);
225 if ((substr(strtolower($forward_subj), 0, 4) != "fwd:") &&
226 (substr(strtolower($forward_subj), 0, 5) != "[fwd:") &&
227 (substr(strtolower($forward_subj), 0, 6) != "[ fwd:"))
228 $forward_subj = "[Fwd: $forward_subj]";
229 echo " <INPUT TYPE=TEXT NAME=subject SIZE=55 VALUE=\"$forward_subj\">";
230 } else {
231 echo " <INPUT TYPE=TEXT NAME=subject VALUE=\"$subject\" SIZE=55>";
232 }
233 echo "</td><td align=right>";
234 echo "<INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">";
235 echo " </TD>\n";
236 echo " </TR>\n";
237
238 echo " <TR>\n";
239 echo " <TD BGCOLOR=\"$color[4]\" COLSPAN=3>\n";
240 if ($use_signature == true && $newmail == true)
241 echo " &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>". $body . "\n\n-- \n".$signature."</TEXTAREA><BR>";
242 else
243 echo " &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>".$body."</TEXTAREA><BR>\n";
244 echo " </TD>\n";
245 echo " </TR>\n";
246 echo " <TR><TD COLSPAN=2 ALIGN=CENTER><INPUT TYPE=SUBMIT NAME=send VALUE=\"";
247 echo _("Send");
248 echo "\"></TD></TR>\n";
249
250 // This code is for attachments
251 echo " <tr>\n";
252 echo " <TD WIDTH=50 BGCOLOR=\"$color[0]\" VALIGN=TOP ALIGN=RIGHT>\n";
253 echo " <SMALL><BR></SMALL>"._("Attach:");
254 echo " </td><td width=% ALIGN=left BGCOLOR=\"$color[0]\">\n";
255 // echo " <INPUT TYPE=\"hidden\" name=\"MAX_FILE_SIZE\"\n";
256 // echo " value=\"10000\">\n";
257 echo " <INPUT NAME=\"attachfile\" TYPE=\"file\">\n";
258 echo " &nbsp;&nbsp;<input type=\"submit\" name=\"attach\"\n";
259 echo " value=\"" . _("Add") ."\">\n";
260 echo " </td>\n";
261 echo " </font>\n";
262 echo " </tr>\n";
263 if (isset($attachments) && count($attachments)>0) {
264 echo "</tr><tr><td width=50 bgcolor=\"$color[0]\" align=right>\n";
265 echo "&nbsp;";
266 echo "</td><td width=% align=left bgcolor=\"$color[0]\">";
267 while (list($localname, $remotename) = each($attachments)) {
268 echo "<input type=\"checkbox\" name=\"delete[]\" value=\"$localname\">\n";
269 echo "$remotename <input type=\"hidden\" name=\"attachments[$localname]\" value=\"$remotename\"><br>\n";
270 }
271
272 echo "<input type=\"submit\" name=\"do_delete\" value=\""._("Delete selected attachments")."\">\n";
273 echo "</td></tr>";
274 }
275 // End of attachment code
276
277 echo "</TABLE>\n";
278 echo "</FORM>";
279 }
280
281 function showSentForm () {
282 echo "<BR><BR><BR><CENTER><B>Message Sent!</B><BR><BR>";
283 echo "You will be automatically forwarded.<BR>If not, <A HREF=\"right_main.php\">click here</A>";
284 echo "</CENTER>";
285 }
286
287 function checkInput ($show) {
288 /** I implemented the $show variable because the error messages
289 were getting sent before the page header. So, I check once
290 using $show=false, and then when i'm ready to display the
291 error message, show=true **/
292 global $body, $send_to, $subject, $color;
293
294 if ($body == "") {
295 if ($show)
296 plain_error_message(_("You have not entered a message body."), $color);
297 return false;
298 } else if ($send_to == "") {
299 if ($show)
300 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
301 return false;
302 } else if ($subject == "") {
303 if ($show)
304 plain_error_message(_("You have not entered a subject."), $color);
305 return false;
306 }
307 return true;
308 } // function checkInput()
309
310
311
312
313
314
315
316
317
318 if(isset($send)) {
319 if (checkInput(false)) {
320 sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body);
321 header ("Location: right_main.php");
322 } else {
323 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
324 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
325 displayPageHeader($color, "None");
326 checkInput(true);
327
328 showInputForm();
329 }
330 } else if ($html_addr_search) {
331 //* I am using an include so as to elminiate an extra unnecessary click. If you
332 //* can think of a better way, please implement it.
333 include ("addrbook_search_html.php");
334 } else if ($html_addr_search_done) {
335 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
336 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
337 displayPageHeader($color, "None");
338
339 $body = stripslashes($body);
340 $send_to = stripslashes($send_to);
341 $send_to_cc = stripslashes($send_to_cc);
342 $send_to_bcc = stripslashes($send_to_bcc);
343 $subject = stripslashes($subject);
344
345 showInputForm();
346 } else if (isset($attach)) {
347 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
348 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
349 displayPageHeader($color, "None");
350
351 $localfilename = md5("$attachfile, $attachfile_name, $REMOTE_IP, $REMOTE_PORT, $UNIQUE_ID, and everything else that may add entropy");
352 $localfilename = $localfilename;
353
354 // Put the file in a better place
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 plain_error_message(_("Could not move/copy file. File not attached"));
359 $failed = true;
360 }
361 }
362 // If it still exists, PHP will remove the original file
363
364 if (!$failed) {
365 // Write information about the file
366 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
367 fputs ($fp, "$attachfile_type\n$attachfile_name\n");
368 fclose ($fp);
369
370 $attachments[$localfilename] = $attachfile_name;
371 }
372
373 showInputForm();
374 } else if (isset($do_delete)) {
375 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
376 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
377 displayPageHeader($color, "None");
378
379 while (list($key, $localname) = each($delete)) {
380 array_splice ($attachments, $key, 1);
381 unlink ($attachment_dir.$localname);
382 unlink ($attachment_dir.$localname.".info");
383 }
384
385 showInputForm();
386 } else {
387 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
388 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
389 displayPageHeader($color, "None");
390
391 $newmail = true;
392 newMail();
393 showInputForm();
394 }
395 ?>