a1e43f78b0b3eccf959d9ee767b98369b8ee3c71
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 ** This code sends a mail.
10 ** There are 3 modes of operation:
12 ** - Add an attachment
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");
34 if (!isset($auth_php))
35 include ("../functions/auth.php");
36 if (!isset($plugin_php))
37 include ("../functions/plugin.php");
39 include("../src/load_prefs.php");
41 // This function is used when not sending or adding attachments
43 global $forward_id, $imapConnection, $msg, $ent_num, $body_ary, $body,
44 $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc;
46 $send_to = stripslashes(decodeHeader($send_to));
47 $send_to_cc = stripslashes(decodeHeader($send_to_cc));
56 sqimap_mailbox_select($imapConnection, $mailbox);
57 $message = sqimap_get_message($imapConnection, $id, $mailbox);
58 $orig_header = $message->header
;
60 $message = getEntity($message, $ent_num);
62 if ($message->header
->type0
== "text" ||
$message->header
->type1
== "message") {
64 $body = decodeBody(mime_fetch_body($imapConnection, $id, $ent_num), $message->header
->encoding
);
66 $body = decodeBody(mime_fetch_body($imapConnection, $id, 1), $message->header
->encoding
);
71 if ($message->header
->type1
== "html")
72 $body = strip_tags($body);
74 $body_ary = explode("\n", $body);
76 for ($i=0; $i < count($body_ary); $i++
) {
77 if ($i==0 && $forward_id) {
78 $tmp = "-------- " . _("Original Message") . " --------\n";
79 $tmp .= _("Subject") . ": " . $orig_header->subject
. "\n";
80 $tmp .= " " . _("From") . ": " . $orig_header->from
. "\n";
81 $tmp .= " " . _("To") . ": " . $orig_header->to
[0] . "\n";
82 if (count($orig_header->to
) > 1) {
83 for ($x=1; $x < count($orig_header->to
); $x++
) {
84 $tmp .= " " . $orig_header->to
[$x] . "\n";
87 $tmp .= "\n" . $body_ary[$i];
92 $body = "$body$tmp\n";
94 $body = "$body> $tmp\n";
99 $send_to = stripslashes($send_to);
102 $send_to = sqimap_find_email($send_to);
105 /** This formats a CC string if they hit "reply all" **/
106 if ($send_to_cc != "") {
107 $send_to_cc = ereg_replace( '"[^"]*"', "", $send_to_cc);
108 $send_to_cc = ereg_replace(";", ",", $send_to_cc);
109 $sendcc = explode(",", $send_to_cc);
112 for ($i = 0; $i < count($sendcc); $i++
) {
113 $sendcc[$i] = trim($sendcc[$i]);
114 if ($sendcc[$i] == "")
117 $sendcc[$i] = sqimap_find_email($sendcc[$i]);
118 $whofrom = sqimap_find_displayable_name($msg["HEADER"]["FROM"]);
119 $whoreplyto = sqimap_find_email($msg["HEADER"]["REPLYTO"]);
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]) . ", ";
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);
132 } // function newMail()
134 function showInputForm () {
135 global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body,
136 $passed_body, $color, $use_signature, $signature, $editor_size,
137 $attachments, $subject, $newmail, $use_javascript_addr_book,
138 $send_to_bcc, $reply_id, $mailbox;
140 $subject = decodeHeader($subject);
141 $reply_subj = decodeHeader($reply_subj);
142 $forward_subj = decodeHeader($forward_subj);
144 if ($use_javascript_addr_book) {
145 echo "\n<SCRIPT LANGUAGE=JavaScript><!--\n";
146 echo "function open_abook() { \n";
147 echo " var nwin = window.open(\"addrbook_popup.php\",\"abookpopup\",";
148 echo "\"width=670,height=300,resizable=yes,scrollbars=yes\");\n";
149 echo " if((!nwin.opener) && (document.windows != null))\n";
150 echo " nwin.opener = document.windows;\n";
152 echo "// --></SCRIPT>\n\n";
155 echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST ENCTYPE=\"multipart/form-data\">\n";
156 //echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST>\n";
158 echo "<input type=hidden name=reply_id value=$reply_id>\n";
160 printf("<INPUT TYPE=hidden NAME=mailbox VALUE=\"%s\">\n", htmlspecialchars($mailbox));
161 echo "<TABLE WIDTH=50 ALIGN=center CELLSPACING=0 BORDER=0>\n";
163 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
165 echo " </TD><TD colspan=2 WIDTH=\"100%\" BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
166 printf(" <INPUT TYPE=text NAME=\"send_to\" VALUE=\"%s\" SIZE=60><BR>\n",
167 htmlspecialchars($send_to));
171 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
173 echo " </TD><TD colspan=2 BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
174 printf(" <INPUT TYPE=text NAME=\"send_to_cc\" SIZE=60 VALUE=\"%s\"><BR>\n",
175 htmlspecialchars($send_to_cc));
179 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
181 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
182 printf(" <INPUT TYPE=text NAME=\"send_to_bcc\" VALUE=\"%s\" SIZE=60><BR>\n",
183 htmlspecialchars($send_to_bcc));
187 echo " <TD WIDTH=50 BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
189 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
191 $reply_subj = str_replace("\"", "'", $reply_subj);
192 $reply_subj = stripslashes($reply_subj);
193 $reply_subj = trim($reply_subj);
194 if (substr(strtolower($reply_subj), 0, 3) != "re:")
195 $reply_subj = "Re: $reply_subj";
196 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
197 htmlspecialchars($reply_subj));
198 } else if ($forward_subj) {
199 $forward_subj = str_replace("\"", "'", $forward_subj);
200 $forward_subj = stripslashes($forward_subj);
201 $forward_subj = trim($forward_subj);
202 if ((substr(strtolower($forward_subj), 0, 4) != "fwd:") &&
203 (substr(strtolower($forward_subj), 0, 5) != "[fwd:") &&
204 (substr(strtolower($forward_subj), 0, 6) != "[ fwd:"))
205 $forward_subj = "[Fwd: $forward_subj]";
206 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
207 htmlspecialchars($forward_subj));
209 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
210 htmlspecialchars($subject));
212 echo "</td></tr>\n\n";
214 echo " <TR><td>\n </td><td>\n";
215 if ($use_javascript_addr_book) {
216 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"";
217 echo " <input type=button value=\\\""._("Addresses")."\\\" onclick='javascript:open_abook();'>\");";
218 echo " // --></SCRIPT><NOSCRIPT>\n";
219 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
220 echo " </NOSCRIPT>\n";
222 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
224 echo "\n <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
226 do_hook("compose_button_row");
233 echo " <TD BGCOLOR=\"$color[4]\" COLSPAN=3>\n";
234 echo " <TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>";
235 if ($use_signature == true && $newmail == true) {
236 echo htmlspecialchars($body) . "\n\n-- \n" . htmlspecialchars($signature);
238 echo htmlspecialchars($body);
240 echo "</TEXTAREA><BR>\n";
243 echo " <TR><TD COLSPAN=3 ALIGN=CENTER><INPUT TYPE=SUBMIT NAME=send VALUE=\"";
245 echo "\"></TD></TR>\n";
247 // This code is for attachments
249 echo " <TD WIDTH=50 BGCOLOR=\"$color[0]\" VALIGN=TOP ALIGN=RIGHT>\n";
250 echo " <SMALL><BR></SMALL>"._("Attach:");
251 echo " </td><td colspan=2 ALIGN=left BGCOLOR=\"$color[0]\">\n";
252 // echo " <INPUT TYPE=\"hidden\" name=\"MAX_FILE_SIZE\"\n";
253 // echo " value=\"10000\">\n";
254 echo " <INPUT NAME=\"attachfile\" TYPE=\"file\">\n";
255 echo " <input type=\"submit\" name=\"attach\"";
256 echo " value=\"" . _("Add") ."\">\n";
259 if (isset($attachments) && count($attachments)>0) {
260 echo "</tr><tr><td width=50 bgcolor=\"$color[0]\" align=right>\n";
262 echo "</td><td align=left colspan=2 bgcolor=\"$color[0]\">";
263 while (list($localname, $remotename) = each($attachments)) {
264 echo "<input type=\"checkbox\" name=\"delete[]\" value=\"$localname\">\n";
265 echo "$remotename <input type=\"hidden\" name=\"attachments[$localname]\" value=\"$remotename\"><br>\n";
268 echo "<input type=\"submit\" name=\"do_delete\" value=\""._("Delete selected attachments")."\">\n";
271 // End of attachment code
275 do_hook("compose_bottom");
278 function showSentForm () {
279 echo "<BR><BR><BR><CENTER><B>Message Sent!</B><BR><BR>";
280 echo "You will be automatically forwarded.<BR>If not, <A HREF=\"right_main.php\">click here</A>";
284 function checkInput ($show) {
285 /** I implemented the $show variable because the error messages
286 were getting sent before the page header. So, I check once
287 using $show=false, and then when i'm ready to display the
288 error message, show=true **/
289 global $body, $send_to, $subject, $color;
291 if ($send_to == "") {
293 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
297 } // function checkInput()
300 if (($mailbox == "") ||
($mailbox == "None"))
304 if (checkInput(false)) {
305 $urlMailbox = urlencode ($mailbox);
306 sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id);
307 header ("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1");
309 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
310 displayPageHeader($color, $mailbox);
314 sqimap_logout($imapConnection);
316 } else if ($html_addr_search_done) {
318 displayPageHeader($color, $mailbox);
320 $body = stripslashes($body);
321 $send_to = stripslashes($send_to);
322 $send_to_cc = stripslashes($send_to_cc);
323 $send_to_bcc = stripslashes($send_to_bcc);
324 $subject = stripslashes($subject);
326 for ($i=0; $i < count($send_to_search); $i++
) {
329 $send_to .= $send_to_search[$i];
332 for ($i=0; $i < count($send_to_cc_search); $i++
) {
335 $send_to_cc .= $send_to_cc_search[$i];
339 } else if ($html_addr_search) {
340 // I am using an include so as to elminiate an extra unnecessary click. If you
341 // can think of a better way, please implement it.
342 include ("addrbook_search_html.php");
343 } else if (isset($attach)) {
345 displayPageHeader($color, $mailbox);
347 $localfilename = md5("$attachfile, $attachfile_name, $REMOTE_IP, $REMOTE_PORT, $UNIQUE_ID, and everything else that may add entropy");
348 $localfilename = $localfilename;
350 // Put the file in a better place
351 error_reporting(0); // Rename will produce error output if it fails
352 if (!rename($attachfile, $attachment_dir.$localfilename)) {
353 if (!copy($attachfile, $attachment_dir.$localfilename)) {
354 plain_error_message(_("Could not move/copy file. File not attached"), $color);
358 // If it still exists, PHP will remove the original file
361 // Write information about the file
362 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
363 fputs ($fp, "$attachfile_type\n$attachfile_name\n");
366 $attachments[$localfilename] = $attachfile_name;
370 } else if (isset($do_delete)) {
372 displayPageHeader($color, $mailbox);
374 while (list($lkey, $localname) = each($delete)) {
375 array_splice ($attachments, $lkey, 1);
376 unlink ($attachment_dir.$localname);
377 unlink ($attachment_dir.$localname.".info");
382 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
383 displayPageHeader($color, $mailbox);
388 sqimap_logout($imapConnection);