59177427 |
1 | <?php |
895905c0 |
2 | |
35586184 |
3 | /** |
4 | * compose.php |
5 | * |
76911253 |
6 | * Copyright (c) 1999-2003 The SquirrelMail Project Team |
35586184 |
7 | * Licensed under the GNU GPL. For full terms see the file COPYING. |
8 | * |
9 | * This code sends a mail. |
10 | * |
11 | * There are 4 modes of operation: |
12 | * - Start new mail |
13 | * - Add an attachment |
14 | * - Send mail |
15 | * - Save As Draft |
16 | * |
17 | * $Id$ |
18 | */ |
f7fb20fe |
19 | |
86725763 |
20 | /* Path for SquirrelMail required files. */ |
21 | define('SM_PATH','../'); |
22 | |
23 | /* SquirrelMail required files. */ |
08185f2a |
24 | require_once(SM_PATH . 'include/validate.php'); |
86725763 |
25 | require_once(SM_PATH . 'functions/imap.php'); |
26 | require_once(SM_PATH . 'functions/date.php'); |
27 | require_once(SM_PATH . 'functions/mime.php'); |
86725763 |
28 | require_once(SM_PATH . 'functions/plugin.php'); |
29 | require_once(SM_PATH . 'functions/display_messages.php'); |
30 | require_once(SM_PATH . 'class/deliver/Deliver.class.php'); |
24192f77 |
31 | require_once(SM_PATH . 'functions/addressbook.php'); |
21c8d457 |
32 | require_once(SM_PATH . 'functions/set_language_align.php'); |
91f2085b |
33 | |
0b97a708 |
34 | /* --------------------- Get globals ------------------------------------- */ |
35 | $username = $_SESSION['username']; |
36 | $onetimepad = $_SESSION['onetimepad']; |
37 | $base_uri = $_SESSION['base_uri']; |
38 | $delimiter = $_SESSION['delimiter']; |
39 | |
21c8d457 |
40 | $language_align = set_language_align(); |
41 | |
0b97a708 |
42 | if (isset($_POST['return'])) { |
43 | $html_addr_search_done = 'Use Addresses'; |
44 | } |
45 | if ( isset($_SESSION['composesession']) ) { |
46 | $composesession = $_SESSION['composesession']; |
47 | } |
fe369c70 |
48 | sqextractGlobalVar('action'); |
0b97a708 |
49 | sqextractGlobalVar('session'); |
50 | sqextractGlobalVar('mailbox'); |
51 | sqextractGlobalVar('identity'); |
52 | sqextractGlobalVar('send_to'); |
53 | sqextractGlobalVar('send_to_cc'); |
54 | sqextractGlobalVar('send_to_bcc'); |
55 | sqextractGlobalVar('subject'); |
56 | sqextractGlobalVar('body'); |
57 | sqextractGlobalVar('mailprio'); |
58 | sqextractGlobalVar('request_mdn'); |
59 | sqextractGlobalVar('request_dr'); |
60 | sqextractGlobalVar('html_addr_search'); |
61 | sqextractGlobalVar('mail_sent'); |
62 | sqextractGlobalVar('passed_id'); |
fe369c70 |
63 | sqextractGlobalVar('passed_ent_id'); |
4dfb9db7 |
64 | sqextractGlobalVar('send'); |
0b97a708 |
65 | |
66 | if ( isset($_POST['sigappend']) ) { |
67 | $sigappend = $_POST['sigappend']; |
68 | } |
69 | /* From addressbook search */ |
70 | if ( isset($_POST['from_htmladdr_search']) ) { |
71 | $from_htmladdr_search = $_POST['from_htmladdr_search']; |
72 | } |
73 | if ( isset($_POST['addr_search_done']) ) { |
74 | $html_addr_search_done = $_POST['addr_search_done']; |
75 | } |
76 | if ( isset($_POST['send_to_search']) ) { |
77 | $send_to_search = &$_POST['send_to_search']; |
78 | } |
79 | |
80 | /* Attachments */ |
81 | sqextractGlobalVar('attach'); |
82 | if ( isset($_POST['do_delete']) ) { |
83 | $do_delete = $_POST['do_delete']; |
84 | } |
85 | if ( isset($_POST['delete']) ) { |
86 | $delete = &$_POST['delete']; |
87 | } |
4dfb9db7 |
88 | if ( isset($_SESSION['compose_messages']) ) { |
89 | $compose_messages = &$_SESSION['compose_messages']; |
0b97a708 |
90 | } |
91 | |
4dfb9db7 |
92 | |
0b97a708 |
93 | /* Forward message as attachment */ |
94 | if ( isset($_GET['attachedmessages']) ) { |
95 | $attachedmessages = $_GET['attachedmessages']; |
96 | } |
97 | |
98 | /* Drafts */ |
99 | sqextractGlobalVar('draft'); |
100 | sqextractGlobalVar('draft_id'); |
101 | sqextractGlobalVar('ent_num'); |
102 | sqextractGlobalVar('saved_draft'); |
103 | sqextractGlobalVar('delete_draft'); |
104 | |
105 | $key = $_COOKIE['key']; |
106 | |
09044055 |
107 | /* --------------------- Specific Functions ------------------------------ */ |
0b97a708 |
108 | |
41b94d65 |
109 | function replyAllString($header) { |
110 | global $include_self_reply_all, $username, $data_dir; |
98e47335 |
111 | $excl_ar = array(); |
41b94d65 |
112 | /** |
113 | * 1) Remove the addresses we'll be sending the message 'to' |
114 | */ |
115 | $url_replytoall_avoid_addrs = ''; |
116 | if (isset($header->replyto)) { |
117 | $excl_ar = $header->getAddr_a('replyto'); |
118 | } |
119 | /** |
120 | * 2) Remove our identities from the CC list (they still can be in the |
121 | * TO list) only if $include_self_reply_all is turned off |
122 | */ |
123 | if (!$include_self_reply_all) { |
2464e20d |
124 | $email_address = strtolower(trim(getPref($data_dir, $username, 'email_address'))); |
41b94d65 |
125 | $excl_ar[$email_address] = ''; |
41b94d65 |
126 | $idents = getPref($data_dir, $username, 'identities'); |
127 | if ($idents != '' && $idents > 1) { |
fd54bb4e |
128 | $first_id = false; |
41b94d65 |
129 | for ($i = 1; $i < $idents; $i ++) { |
130 | $cur_email_address = getPref($data_dir, $username, |
131 | 'email_address' . $i); |
2464e20d |
132 | $cur_email_address = strtolower(trim($cur_email_address)); |
fd54bb4e |
133 | $excl_ar[$cur_email_address] = ''; |
41b94d65 |
134 | } |
135 | } |
136 | } |
137 | |
138 | /** |
139 | * 3) get the addresses. |
140 | */ |
141 | $url_replytoall_ar = $header->getAddr_a(array('to','cc'), $excl_ar); |
142 | |
143 | /** |
144 | * 4) generate the string. |
145 | */ |
146 | $url_replytoallcc = ''; |
147 | foreach( $url_replytoall_ar as $email => $personal) { |
148 | if ($personal) { |
fd54bb4e |
149 | $url_replytoallcc .= ", \"$personal\" <$email>"; |
41b94d65 |
150 | } else { |
fd54bb4e |
151 | $url_replytoallcc .= ', '. $email; |
41b94d65 |
152 | } |
153 | } |
154 | $url_replytoallcc = substr($url_replytoallcc,2); |
155 | return $url_replytoallcc; |
09044055 |
156 | } |
157 | |
41b94d65 |
158 | function getforwardHeader($orig_header) { |
19c6f7a7 |
159 | global $editor_size; |
160 | |
a61878d0 |
161 | $display = array( _("Subject") => strlen(_("Subject")), |
162 | _("From") => strlen(_("From")), |
163 | _("Date") => strlen(_("Date")), |
164 | _("To") => strlen(_("To")), |
165 | _("Cc") => strlen(_("Cc")) ); |
a45887d7 |
166 | $maxsize = max($display); |
167 | $indent = str_pad('',$maxsize+2); |
168 | foreach($display as $key => $val) { |
169 | $display[$key] = $key .': '. str_pad('', $maxsize - $val); |
170 | } |
a61878d0 |
171 | $bodyTop = str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH) . |
172 | "\n". $display[_("Subject")] . |
173 | decodeHeader($orig_header->subject) . "\n" . |
174 | $display[_("From")] . |
175 | decodeHeader($orig_header->getAddr_s('from',"\n$indent")) . "\n" . |
176 | $display[_("Date")] . |
177 | getLongDateString( $orig_header->date ). "\n" . |
178 | $display[_("To")] . |
179 | decodeHeader($orig_header->getAddr_s('to',"\n$indent")) ."\n"; |
41b94d65 |
180 | if ($orig_header->cc != array() && $orig_header->cc !='') { |
c4d02444 |
181 | $bodyTop .= $display[_("Cc")] . decodeHeader($orig_header->getAddr_s('cc',"\n$indent")) . "\n"; |
41b94d65 |
182 | } |
a61878d0 |
183 | $bodyTop .= str_pad('', $editor_size -2 , '-') . |
184 | "\n"; |
41b94d65 |
185 | return $bodyTop; |
186 | } |
09044055 |
187 | /* ----------------------------------------------------------------------- */ |
188 | |
44560457 |
189 | /* |
190 | * If the session is expired during a post this restores the compose session |
191 | * vars. |
192 | */ |
5da08ef7 |
193 | if (sqsession_is_registered('session_expired_post')) { |
194 | $session_expired_post = $_SESSION['session_expired_post']; |
40934000 |
195 | /* |
196 | * extra check for username so we don't display previous post data from |
197 | * another user during this session. |
198 | */ |
199 | if ($session_expired_post['username'] != $username) { |
0ec1a14b |
200 | unset($session_expired_post); |
0b97a708 |
201 | sqsession_unregister('session_expired_post'); |
0ec1a14b |
202 | session_write_close(); |
40934000 |
203 | } else { |
204 | foreach ($session_expired_post as $postvar => $val) { |
205 | if (isset($val)) { |
206 | $$postvar = $val; |
207 | } else { |
208 | $$postvar = ''; |
209 | } |
210 | } |
0ec1a14b |
211 | $compose_messages = unserialize(urldecode($restoremessages)); |
212 | sqsession_register($compose_messages,'compose_messages'); |
213 | sqsession_register($composesession,'composesession'); |
40934000 |
214 | if (isset($send)) { |
215 | unset($send); |
216 | } |
217 | $session_expired = true; |
218 | } |
5da08ef7 |
219 | unset($session_expired_post); |
0b97a708 |
220 | sqsession_unregister('session_expired_post'); |
5da08ef7 |
221 | session_write_close(); |
40934000 |
222 | if (!isset($mailbox)) { |
223 | $mailbox = ''; |
224 | } |
225 | if ($compose_new_win == '1') { |
226 | compose_Header($color, $mailbox); |
227 | } else { |
228 | displayPageHeader($color, $mailbox); |
229 | } |
230 | showInputForm($session, false); |
231 | exit(); |
44560457 |
232 | } |
da95c4b6 |
233 | if (!isset($composesession)) { |
234 | $composesession = 0; |
a43e4b90 |
235 | sqsession_register(0,'composesession'); |
da95c4b6 |
236 | } |
237 | |
d7f8e6e6 |
238 | if (!isset($session) || (isset($newmessage) && $newmessage)) { |
0b97a708 |
239 | sqsession_unregister('composesession'); |
da95c4b6 |
240 | $session = "$composesession" +1; |
91f2085b |
241 | $composesession = $session; |
a43e4b90 |
242 | sqsession_register($composesession,'composesession'); |
d7f8e6e6 |
243 | } |
a43e4b90 |
244 | if (!isset($compose_messages)) { |
245 | $compose_messages = array(); |
246 | } |
40934000 |
247 | if (!isset($compose_messages[$session]) || ($compose_messages[$session] == NULL)) { |
248 | /* if (!array_key_exists($session, $compose_messages)) { /* We can only do this in PHP >= 4.1 */ |
5628fdde |
249 | $composeMessage = new Message(); |
a43e4b90 |
250 | $rfc822_header = new Rfc822Header(); |
251 | $composeMessage->rfc822_header = $rfc822_header; |
252 | $composeMessage->reply_rfc822_header = ''; |
253 | $compose_messages[$session] = $composeMessage; |
5628fdde |
254 | sqsession_register($compose_messages,'compose_messages'); |
255 | } else { |
256 | $composeMessage=$compose_messages[$session]; |
a43e4b90 |
257 | } |
a43e4b90 |
258 | |
00793a25 |
259 | if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) { |
260 | $mailbox = 'INBOX'; |
261 | } |
262 | |
4dfb9db7 |
263 | if ($draft) { |
264 | /* |
265 | * Set $default_charset to correspond with the user's selection |
266 | * of language interface. |
267 | */ |
268 | set_my_charset(); |
269 | $composeMessage=$compose_messages[$session]; |
b7ff469f |
270 | if (! deliverMessage($composeMessage, true)) { |
da95c4b6 |
271 | showInputForm($session); |
00793a25 |
272 | exit(); |
734f4ee6 |
273 | } else { |
5da08ef7 |
274 | unset($compose_messages[$session]); |
00793a25 |
275 | $draft_message = _("Draft Email Saved"); |
276 | /* If this is a resumed draft, then delete the original */ |
277 | if(isset($delete_draft)) { |
7058a2a9 |
278 | Header("Location: delete_message.php?mailbox=" . urlencode($draft_folder) . |
fae72101 |
279 | "&message=$delete_draft&sort=$sort&startMessage=1&saved_draft=yes"); |
00793a25 |
280 | exit(); |
7058a2a9 |
281 | } |
9c3e6cd4 |
282 | else { |
283 | if ($compose_new_win == '1') { |
da95c4b6 |
284 | Header("Location: compose.php?saved_draft=yes&session=$composesession"); |
a61878d0 |
285 | exit(); |
9c3e6cd4 |
286 | } |
287 | else { |
a61878d0 |
288 | Header("Location: right_main.php?mailbox=$draft_folder&sort=$sort". |
289 | "&startMessage=1¬e=".urlencode($draft_message)); |
290 | exit(); |
9c3e6cd4 |
291 | } |
00793a25 |
292 | } |
293 | } |
294 | } |
295 | |
4dfb9db7 |
296 | if ($send) { |
0b97a708 |
297 | if (isset($_FILES['attachfile']) && |
298 | $_FILES['attachfile']['tmp_name'] && |
299 | $_FILES['attachfile']['tmp_name'] != 'none') { |
da95c4b6 |
300 | $AttachFailure = saveAttachedFiles($session); |
00793a25 |
301 | } |
302 | if (checkInput(false) && !isset($AttachFailure)) { |
4c8f834a |
303 | if ($mailbox == "All Folders") { |
304 | /* We entered compose via the search results page */ |
305 | $mailbox="INBOX"; /* Send 'em to INBOX, that's safe enough */ |
306 | } |
00793a25 |
307 | $urlMailbox = urlencode (trim($mailbox)); |
3f6b1b6f |
308 | if (! isset($passed_id)) { |
309 | $passed_id = 0; |
00793a25 |
310 | } |
311 | /* |
312 | * Set $default_charset to correspond with the user's selection |
7058a2a9 |
313 | * of language interface. |
00793a25 |
314 | */ |
315 | set_my_charset(); |
00793a25 |
316 | /* |
317 | * This is to change all newlines to \n |
7058a2a9 |
318 | * We'll change them to \r\n later (in the sendMessage function) |
00793a25 |
319 | */ |
320 | $body = str_replace("\r\n", "\n", $body); |
321 | $body = str_replace("\r", "\n", $body); |
322 | |
323 | /* |
324 | * Rewrap $body so that no line is bigger than $editor_size |
325 | * This should only really kick in the sqWordWrap function |
f302d704 |
326 | * if the browser doesn't support "VIRTUAL" as the wrap type. |
00793a25 |
327 | */ |
328 | $body = explode("\n", $body); |
329 | $newBody = ''; |
330 | foreach ($body as $line) { |
331 | if( $line <> '-- ' ) { |
332 | $line = rtrim($line); |
333 | } |
334 | if (strlen($line) <= $editor_size + 1) { |
335 | $newBody .= $line . "\n"; |
734f4ee6 |
336 | } else { |
e0858036 |
337 | sqWordWrap($line, $editor_size); |
338 | $newBody .= $line . "\n"; |
00793a25 |
339 | } |
340 | } |
341 | $body = $newBody; |
e02775fe |
342 | do_hook('compose_send'); |
a43e4b90 |
343 | $composeMessage=$compose_messages[$session]; |
d5181a1d |
344 | |
b7ff469f |
345 | $Result = deliverMessage($composeMessage); |
00793a25 |
346 | if (! $Result) { |
da95c4b6 |
347 | showInputForm($session); |
00793a25 |
348 | exit(); |
349 | } |
0ec1a14b |
350 | unset($compose_messages[$session]); |
00793a25 |
351 | if ( isset($delete_draft)) { |
7058a2a9 |
352 | Header("Location: delete_message.php?mailbox=" . urlencode( $draft_folder ). |
fae72101 |
353 | "&message=$delete_draft&sort=$sort&startMessage=1&mail_sent=yes"); |
00793a25 |
354 | exit(); |
355 | } |
9c3e6cd4 |
356 | if ($compose_new_win == '1') { |
0ec1a14b |
357 | |
d7f8e6e6 |
358 | Header("Location: compose.php?mail_sent=yes"); |
9c3e6cd4 |
359 | } |
360 | else { |
fae72101 |
361 | Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort". |
362 | "&startMessage=1"); |
9c3e6cd4 |
363 | } |
734f4ee6 |
364 | } else { |
9c3e6cd4 |
365 | if ($compose_new_win == '1') { |
366 | compose_Header($color, $mailbox); |
367 | } |
368 | else { |
369 | displayPageHeader($color, $mailbox); |
370 | } |
00793a25 |
371 | if (isset($AttachFailure)) { |
372 | plain_error_message(_("Could not move/copy file. File not attached"), |
373 | $color); |
374 | } |
00793a25 |
375 | checkInput(true); |
da95c4b6 |
376 | showInputForm($session); |
00793a25 |
377 | /* sqimap_logout($imapConnection); */ |
378 | } |
e02775fe |
379 | } elseif (isset($html_addr_search_done)) { |
9c3e6cd4 |
380 | if ($compose_new_win == '1') { |
381 | compose_Header($color, $mailbox); |
382 | } |
383 | else { |
384 | displayPageHeader($color, $mailbox); |
385 | } |
00793a25 |
386 | |
387 | if (isset($send_to_search) && is_array($send_to_search)) { |
388 | foreach ($send_to_search as $k => $v) { |
389 | if (substr($k, 0, 1) == 'T') { |
390 | if ($send_to) { |
391 | $send_to .= ', '; |
392 | } |
393 | $send_to .= $v; |
394 | } |
395 | elseif (substr($k, 0, 1) == 'C') { |
396 | if ($send_to_cc) { |
397 | $send_to_cc .= ', '; |
398 | } |
399 | $send_to_cc .= $v; |
400 | } |
401 | elseif (substr($k, 0, 1) == 'B') { |
402 | if ($send_to_bcc) { |
403 | $send_to_bcc .= ', '; |
404 | } |
405 | $send_to_bcc .= $v; |
406 | } |
407 | } |
408 | } |
da95c4b6 |
409 | showInputForm($session); |
e02775fe |
410 | } elseif (isset($html_addr_search)) { |
0b97a708 |
411 | if (isset($_FILES['attachfile']) && |
412 | $_FILES['attachfile']['tmp_name'] && |
413 | $_FILES['attachfile']['tmp_name'] != 'none') { |
414 | if(saveAttachedFiles($session)) { |
00793a25 |
415 | plain_error_message(_("Could not move/copy file. File not attached"), $color); |
416 | } |
417 | } |
418 | /* |
419 | * I am using an include so as to elminiate an extra unnecessary |
420 | * click. If you can think of a better way, please implement it. |
421 | */ |
422 | include_once('./addrbook_search_html.php'); |
e02775fe |
423 | } elseif (isset($attach)) { |
da95c4b6 |
424 | if (saveAttachedFiles($session)) { |
00793a25 |
425 | plain_error_message(_("Could not move/copy file. File not attached"), $color); |
426 | } |
9c3e6cd4 |
427 | if ($compose_new_win == '1') { |
428 | compose_Header($color, $mailbox); |
429 | } |
430 | else { |
431 | displayPageHeader($color, $mailbox); |
432 | } |
da95c4b6 |
433 | showInputForm($session); |
01265fba |
434 | } |
435 | elseif (isset($sigappend)) { |
436 | $idents = getPref($data_dir, $username, 'identities', 0); |
437 | if ($idents > 1) { |
438 | if ($identity == 'default') { |
439 | $no = 'g'; |
440 | } else { |
441 | $no = $identity; |
442 | } |
443 | $signature = getSig($data_dir, $username, $no); |
444 | } |
445 | $body .= "\n\n".($prefix_sig==true? "-- \n":'').$signature; |
446 | if ($compose_new_win == '1') { |
447 | compose_Header($color, $mailbox); |
448 | } else { |
449 | displayPageHeader($color, $mailbox); |
450 | } |
da95c4b6 |
451 | showInputForm($session); |
e02775fe |
452 | } elseif (isset($do_delete)) { |
9c3e6cd4 |
453 | if ($compose_new_win == '1') { |
454 | compose_Header($color, $mailbox); |
455 | } |
456 | else { |
457 | displayPageHeader($color, $mailbox); |
458 | } |
00793a25 |
459 | |
00793a25 |
460 | if (isset($delete) && is_array($delete)) { |
a43e4b90 |
461 | $composeMessage = $compose_messages[$session]; |
00793a25 |
462 | foreach($delete as $index) { |
a43e4b90 |
463 | $attached_file = $composeMessage->entities[$index]->att_local_name; |
a61878d0 |
464 | unlink ($attached_file); |
a43e4b90 |
465 | unset ($composeMessage->entities[$index]); |
00793a25 |
466 | } |
a43e4b90 |
467 | $new_entities = array(); |
468 | foreach ($composeMessage->entities as $entity) { |
469 | $new_entities[] = $entity; |
470 | } |
471 | $composeMessage->entities = $new_entities; |
472 | $compose_messages[$session] = $composeMessage; |
473 | sqsession_register($compose_messages, 'compose_messages'); |
00793a25 |
474 | } |
da95c4b6 |
475 | showInputForm($session); |
734f4ee6 |
476 | } else { |
00793a25 |
477 | /* |
478 | * This handles the default case as well as the error case |
479 | * (they had the same code) --> if (isset($smtpErrors)) |
480 | */ |
44560457 |
481 | |
482 | if ($compose_new_win == '1') { |
483 | compose_Header($color, $mailbox); |
484 | } else { |
485 | displayPageHeader($color, $mailbox); |
486 | } |
00793a25 |
487 | |
488 | $newmail = true; |
489 | |
a61878d0 |
490 | if (!isset($passed_ent_id)) { |
491 | $passed_ent_id = ''; |
492 | } |
493 | if (!isset($passed_id)) { |
494 | $passed_id = ''; |
495 | } |
496 | if (!isset($mailbox)) { |
497 | $mailbox = ''; |
498 | } |
499 | if (!isset($action)) { |
500 | $action = ''; |
501 | } |
41b94d65 |
502 | |
44560457 |
503 | $values = newMail($mailbox,$passed_id,$passed_ent_id, $action, $session); |
b9928adc |
504 | |
505 | /* in case the origin is not read_body.php */ |
506 | if (isset($send_to)) { |
507 | $values['send_to'] = $send_to; |
508 | } |
509 | if (isset($send_to_cc)) { |
44560457 |
510 | $values['send_to_cc'] = $send_to_cc; |
b9928adc |
511 | } |
512 | if (isset($send_to_bcc)) { |
44560457 |
513 | $values['send_to_bcc'] = $send_to_bcc; |
b9928adc |
514 | } |
41b94d65 |
515 | showInputForm($session, $values); |
00793a25 |
516 | } |
517 | |
518 | exit(); |
519 | |
00793a25 |
520 | /**************** Only function definitions go below *************/ |
521 | |
522 | |
48985d59 |
523 | /* This function is used when not sending or adding attachments */ |
44560457 |
524 | function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $session='') { |
91f2085b |
525 | global $editor_size, $default_use_priority, $body, |
44560457 |
526 | $use_signature, $composesession, $data_dir, $username, |
a43e4b90 |
527 | $username, $key, $imapServerAddress, $imapPort, $compose_messages, |
528 | $composeMessage; |
e7f1a81d |
529 | |
91f2085b |
530 | $send_to = $send_to_cc = $send_to_bcc = $subject = $identity = ''; |
bdb92db3 |
531 | $mailprio = 3; |
44560457 |
532 | |
41b94d65 |
533 | if ($passed_id) { |
44560457 |
534 | $imapConnection = sqimap_login($username, $key, $imapServerAddress, |
a61878d0 |
535 | $imapPort, 0); |
536 | |
48985d59 |
537 | sqimap_mailbox_select($imapConnection, $mailbox); |
41b94d65 |
538 | $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); |
a43e4b90 |
539 | |
a61878d0 |
540 | $body = ''; |
541 | if ($passed_ent_id) { |
542 | /* redefine the messsage in case of message/rfc822 */ |
543 | $message = $message->getEntity($passed_ent_id); |
544 | /* message is an entity which contains the envelope and type0=message |
545 | * and type1=rfc822. The actual entities are childs from |
546 | * $message->entities[0]. That's where the encoding and is located |
547 | */ |
548 | |
549 | $entities = $message->entities[0]->findDisplayEntity |
550 | (array(), $alt_order = array('text/plain')); |
551 | if (!count($entities)) { |
552 | $entities = $message->entities[0]->findDisplayEntity |
553 | (array(), $alt_order = array('text/plain','html/plain')); |
554 | } |
555 | $orig_header = $message->rfc822_header; /* here is the envelope located */ |
556 | /* redefine the message for picking up the attachments */ |
557 | $message = $message->entities[0]; |
558 | |
559 | } else { |
560 | $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain')); |
561 | if (!count($entities)) { |
562 | $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain')); |
563 | } |
564 | $orig_header = $message->rfc822_header; |
565 | } |
a43e4b90 |
566 | |
41b94d65 |
567 | $encoding = $message->header->encoding; |
a61878d0 |
568 | $type0 = $message->type0; |
569 | $type1 = $message->type1; |
41b94d65 |
570 | foreach ($entities as $ent) { |
a61878d0 |
571 | $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent); |
572 | $body_part_entity = $message->getEntity($ent); |
573 | $bodypart = decodeBody($unencoded_bodypart, |
574 | $body_part_entity->header->encoding); |
575 | if ($type1 == 'html') { |
576 | $bodypart = strip_tags($bodypart); |
577 | } |
578 | $body .= $bodypart; |
579 | } |
580 | if ($default_use_priority) { |
581 | $mailprio = substr($orig_header->priority,0,1); |
582 | if (!$mailprio) { |
583 | $mailprio = 3; |
584 | } |
585 | } else { |
586 | $mailprio = ''; |
587 | } |
a43e4b90 |
588 | //ClearAttachments($session); |
bdb92db3 |
589 | |
590 | $identity = ''; |
591 | $idents = getPref($data_dir, $username, 'identities'); |
a45887d7 |
592 | $from_o = $orig_header->from; |
bdb92db3 |
593 | if (is_object($from_o)) { |
594 | $orig_from = $from_o->getAddress(); |
595 | } else { |
596 | $orig_from = ''; |
a61878d0 |
597 | } |
fd54bb4e |
598 | $identities = array(); |
bdb92db3 |
599 | if (!empty($idents) && $idents > 1) { |
fd54bb4e |
600 | $identities[] = '"'. getPref($data_dir, $username, 'full_name') |
601 | . '" <' . getPref($data_dir, $username, 'email_address') . '>'; |
602 | for ($i = 1; $i < $idents; $i++) { |
603 | $enc_from_name = '"'. |
604 | getPref($data_dir, $username, 'full_name' . $i) . |
605 | '" <' . |
606 | getPref($data_dir, $username, 'email_address' . $i) . '>'; |
607 | if ($enc_from_name == $orig_from && $i) { |
a61878d0 |
608 | $identity = $i; |
609 | break; |
610 | } |
fd54bb4e |
611 | $identities[] = $enc_from_name; |
a61878d0 |
612 | } |
fd54bb4e |
613 | $identity_match = $orig_header->findAddress($identities); |
614 | if ($identity_match) { |
615 | $identity = $identity_match; |
616 | } |
bdb92db3 |
617 | } |
a61878d0 |
618 | |
619 | switch ($action) { |
620 | case ('draft'): |
621 | $use_signature = FALSE; |
c3d1d2cf |
622 | $send_to = decodeHeader($orig_header->getAddr_s('to')); |
623 | $send_to_cc = decodeHeader($orig_header->getAddr_s('cc')); |
624 | $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc')); |
a61878d0 |
625 | $subject = decodeHeader($orig_header->subject); |
626 | |
627 | $body_ary = explode("\n", $body); |
628 | $cnt = count($body_ary) ; |
629 | $body = ''; |
630 | for ($i=0; $i < $cnt; $i++) { |
631 | if (!ereg("^[>\\s]*$", $body_ary[$i]) || !$body_ary[$i]) { |
632 | sqWordWrap($body_ary[$i], $editor_size ); |
633 | $body .= $body_ary[$i] . "\n"; |
634 | } |
635 | unset($body_ary[$i]); |
636 | } |
637 | sqUnWordWrap($body); |
a43e4b90 |
638 | $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection); |
a61878d0 |
639 | break; |
a45887d7 |
640 | case ('edit_as_new'): |
c3d1d2cf |
641 | $send_to = decodeHeader($orig_header->getAddr_s('to')); |
642 | $send_to_cc = decodeHeader($orig_header->getAddr_s('cc')); |
643 | $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc')); |
a61878d0 |
644 | $subject = decodeHeader($orig_header->subject); |
645 | $mailprio = $orig_header->priority; |
646 | $orig_from = ''; |
a43e4b90 |
647 | $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection); |
a61878d0 |
648 | sqUnWordWrap($body); |
649 | break; |
650 | case ('forward'): |
651 | $send_to = ''; |
652 | $subject = decodeHeader($orig_header->subject); |
653 | if ((substr(strtolower($subject), 0, 4) != 'fwd:') && |
654 | (substr(strtolower($subject), 0, 5) != '[fwd:') && |
655 | (substr(strtolower($subject), 0, 6) != '[ fwd:')) { |
656 | $subject = '[Fwd: ' . $subject . ']'; |
657 | } |
658 | $body = getforwardHeader($orig_header) . $body; |
659 | sqUnWordWrap($body); |
a43e4b90 |
660 | $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection); |
d5181a1d |
661 | $body = "\n" . $body; |
a61878d0 |
662 | break; |
663 | case ('forward_as_attachment'): |
a43e4b90 |
664 | $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection); |
a61878d0 |
665 | $body = ''; |
666 | break; |
a45887d7 |
667 | case ('reply_all'): |
a61878d0 |
668 | $send_to_cc = replyAllString($orig_header); |
669 | case ('reply'): |
670 | $send_to = $orig_header->reply_to; |
f55207e3 |
671 | if (is_array($send_to) && count($send_to)) { |
52cf8e76 |
672 | $send_to = decodeHeader($orig_header->getAddr_s('reply_to')); |
f55207e3 |
673 | } else if (is_object($send_to)) { /* unnessecarry, just for falesafe purpose */ |
52cf8e76 |
674 | $send_to = decodeHeader($orig_header->getAddr_s('reply_to')); |
f55207e3 |
675 | } else { |
c3d1d2cf |
676 | $send_to = decodeHeader($orig_header->getAddr_s('from')); |
a61878d0 |
677 | } |
678 | $subject = decodeHeader($orig_header->subject); |
679 | $subject = str_replace('"', "'", $subject); |
680 | $subject = trim($subject); |
681 | if (substr(strtolower($subject), 0, 3) != 're:') { |
682 | $subject = 'Re: ' . $subject; |
683 | } |
684 | /* this corrects some wrapping/quoting problems on replies */ |
685 | $rewrap_body = explode("\n", $body); |
cf7a1725 |
686 | $from = (is_array($orig_header->from)) ? |
687 | $orig_header->from[0] : $orig_header->from; |
4dfb9db7 |
688 | $body = getReplyCitation($from->getAddress(false)); |
6339f68f |
689 | sqUnWordWrap($body); |
a61878d0 |
690 | $cnt = count($rewrap_body); |
691 | for ($i=0;$i<$cnt;$i++) { |
cf7a1725 |
692 | sqWordWrap($rewrap_body[$i], ($editor_size)); |
a61878d0 |
693 | if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) { |
694 | $gt = $matches[1]; |
cf7a1725 |
695 | $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n"; |
a61878d0 |
696 | } else { |
cf7a1725 |
697 | $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n"; |
a61878d0 |
698 | } |
699 | unset($rewrap_body[$i]); |
700 | } |
a43e4b90 |
701 | $composeMessage->reply_rfc822_header = $orig_header; |
a61878d0 |
702 | break; |
703 | default: |
704 | break; |
41b94d65 |
705 | } |
a43e4b90 |
706 | $compose_messages[$session] = $composeMessage; |
707 | sqsession_register($compose_messages, 'compose_messages'); |
5da08ef7 |
708 | session_write_close(); |
a61878d0 |
709 | sqimap_logout($imapConnection); |
41b94d65 |
710 | } |
a61878d0 |
711 | $ret = array( 'send_to' => $send_to, |
712 | 'send_to_cc' => $send_to_cc, |
713 | 'send_to_bcc' => $send_to_bcc, |
714 | 'subject' => $subject, |
715 | 'mailprio' => $mailprio, |
716 | 'body' => $body, |
717 | 'identity' => $identity ); |
718 | |
41b94d65 |
719 | return ($ret); |
48985d59 |
720 | } /* function newMail() */ |
721 | |
a43e4b90 |
722 | function getAttachments($message, &$composeMessage, $passed_id, $entities, $imapConnection) { |
59edcad6 |
723 | global $attachment_dir, $username, $data_dir, $squirrelmail_language; |
48985d59 |
724 | $hashed_attachment_dir = getHashedDir($username, $attachment_dir); |
41b94d65 |
725 | if (!count($message->entities) || |
726 | ($message->type0 == 'message' && $message->type1 == 'rfc822')) { |
727 | if ( !in_array($message->entity_id, $entities) && $message->entity_id) { |
a43e4b90 |
728 | switch ($message->type0) { |
729 | case 'message': |
730 | if ($message->type1 == 'rfc822') { |
731 | $filename = decodeHeader($message->rfc822_header->subject.'.eml'); |
732 | if ($filename == "") { |
733 | $filename = "untitled-".$message->entity_id.'.eml'; |
734 | } |
735 | } else { |
736 | $filename = decodeHeader($message->getFilename()); |
737 | } |
738 | break; |
739 | default: |
740 | $filename = decodeHeader($message->getFilename()); |
741 | break; |
742 | } |
743 | if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && |
744 | function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) { |
745 | $filename = $languages[$squirrelmail_language]['XTRA_CODE']('encode', $filename); |
746 | } |
747 | |
748 | $localfilename = GenerateRandomString(32, '', 7); |
749 | $full_localfilename = "$hashed_attachment_dir/$localfilename"; |
750 | while (file_exists($full_localfilename)) { |
751 | $localfilename = GenerateRandomString(32, '', 7); |
752 | $full_localfilename = "$hashed_attachment_dir/$localfilename"; |
753 | } |
754 | $message->att_local_name = $full_localfilename; |
755 | if (!$message->mime_header) { /* temporary hack */ |
756 | $message->mime_header = $message->header; |
757 | } |
758 | |
759 | $composeMessage->addEntity($message); |
760 | |
761 | /* Write Attachment to file */ |
762 | $fp = fopen ("$hashed_attachment_dir/$localfilename", 'wb'); |
763 | fputs($fp, decodeBody(mime_fetch_body($imapConnection, |
764 | $passed_id, $message->entity_id), |
765 | $message->header->encoding)); |
766 | fclose ($fp); |
48985d59 |
767 | } |
734f4ee6 |
768 | } else { |
a43e4b90 |
769 | for ($i=0, $entCount=count($message->entities); $i<$entCount;$i++) { |
770 | $composeMessage=getAttachments($message->entities[$i], $composeMessage, $passed_id, $entities, $imapConnection); |
48985d59 |
771 | } |
772 | } |
a43e4b90 |
773 | // setPref($data_dir, $username, 'attachments', serialize($attachments)); |
774 | return $composeMessage; |
48985d59 |
775 | } |
776 | |
a43e4b90 |
777 | function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, |
756406df |
778 | $passed_ent_id='', $imapConnection) { |
a6ec592e |
779 | global $attachments, $attachment_dir, $username, $data_dir, $uid_support; |
780 | $hashed_attachment_dir = getHashedDir($username, $attachment_dir); |
756406df |
781 | if (!$passed_ent_id) { |
a61878d0 |
782 | $body_a = sqimap_run_command($imapConnection, |
783 | 'FETCH '.$passed_id.' RFC822', |
784 | TRUE, $response, $readmessage, |
785 | $uid_support); |
756406df |
786 | } else { |
787 | $body_a = sqimap_run_command($imapConnection, |
a61878d0 |
788 | 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']', |
789 | TRUE, $response, $readmessage, $uid_support); |
790 | $message = $message->parent; |
756406df |
791 | } |
a6ec592e |
792 | if ($response = 'OK') { |
a61878d0 |
793 | $subject = encodeHeader($message->rfc822_header->subject); |
794 | array_shift($body_a); |
795 | $body = implode('', $body_a) . "\r\n"; |
796 | |
797 | $localfilename = GenerateRandomString(32, 'FILE', 7); |
798 | $full_localfilename = "$hashed_attachment_dir/$localfilename"; |
799 | |
a43e4b90 |
800 | $fp = fopen( $full_localfilename, 'w'); |
a61878d0 |
801 | fwrite ($fp, $body); |
802 | fclose($fp); |
a43e4b90 |
803 | $composeMessage->initAttachment('message/rfc822',$subject.'.eml', |
804 | $full_localfilename); |
805 | } |
806 | return $composeMessage; |
a6ec592e |
807 | } |
808 | |
41b94d65 |
809 | function showInputForm ($session, $values=false) { |
21c8d457 |
810 | global $send_to, $send_to_cc, $body, $language_align, |
48985d59 |
811 | $passed_body, $color, $use_signature, $signature, $prefix_sig, |
812 | $editor_size, $attachments, $subject, $newmail, |
41b94d65 |
813 | $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox, |
48985d59 |
814 | $from_htmladdr_search, $location_of_buttons, $attachment_dir, |
815 | $username, $data_dir, $identity, $draft_id, $delete_draft, |
9c3e6cd4 |
816 | $mailprio, $default_use_mdn, $mdn_user_support, $compose_new_win, |
44560457 |
817 | $saved_draft, $mail_sent, $sig_first, $edit_as_new, $action, |
ab4700c3 |
818 | $username, $compose_messages, $composesession, $default_charset; |
a43e4b90 |
819 | |
820 | $composeMessage = $compose_messages[$session]; |
48985d59 |
821 | |
3b487216 |
822 | $subject = decodeHeader($subject, false); |
41b94d65 |
823 | if ($values) { |
824 | $send_to = $values['send_to']; |
825 | $send_to_cc = $values['send_to_cc']; |
826 | $send_to_bcc = $values['send_to_bcc']; |
827 | $subject = $values['subject']; |
828 | $mailprio = $values['mailprio']; |
829 | $body = $values['body']; |
d3c13a51 |
830 | $identity = (int) $values['identity']; |
41b94d65 |
831 | } |
832 | |
48985d59 |
833 | if ($use_javascript_addr_book) { |
834 | echo "\n". '<SCRIPT LANGUAGE=JavaScript><!--' . "\n" . |
835 | 'function open_abook() { ' . "\n" . |
836 | ' var nwin = window.open("addrbook_popup.php","abookpopup",' . |
837 | '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" . |
838 | ' if((!nwin.opener) && (document.windows != null))' . "\n" . |
839 | ' nwin.opener = document.windows;' . "\n" . |
840 | "}\n" . |
841 | '// --></SCRIPT>' . "\n\n"; |
842 | } |
843 | |
21c8d457 |
844 | |
41b94d65 |
845 | echo "\n" . '<FORM name=compose action="compose.php" METHOD=POST ' . |
846 | 'ENCTYPE="multipart/form-data"'; |
48985d59 |
847 | do_hook("compose_form"); |
57257333 |
848 | |
48985d59 |
849 | echo ">\n"; |
850 | |
41b94d65 |
851 | if ($action == 'draft') { |
852 | echo '<input type="hidden" name="delete_draft" value="' . $passed_id . "\">\n"; |
48985d59 |
853 | } |
854 | if (isset($delete_draft)) { |
855 | echo '<input type="hidden" name="delete_draft" value="' . $delete_draft. "\">\n"; |
856 | } |
da95c4b6 |
857 | if (isset($session)) { |
44560457 |
858 | echo '<input type="hidden" name="session" value="' . $session . "\">\n"; |
da95c4b6 |
859 | } |
08bad2b1 |
860 | |
861 | if (isset($passed_id)) { |
862 | echo '<input type="hidden" name="passed_id" value="' . $passed_id . "\">\n"; |
863 | } |
44560457 |
864 | |
9c3e6cd4 |
865 | if ($saved_draft == 'yes') { |
866 | echo '<BR><CENTER><B>'. _("Draft Saved").'</CENTER></B>'; |
867 | } |
868 | if ($mail_sent == 'yes') { |
869 | echo '<BR><CENTER><B>'. _("Your Message has been sent").'</CENTER></B>'; |
870 | } |
21c8d457 |
871 | echo '<TABLE dir="' . $language_align['dir'] . '" ALIGN=center CELLSPACING=0 BORDER=0>' . "\n"; |
9c3e6cd4 |
872 | if ($compose_new_win == '1') { |
21c8d457 |
873 | echo '<TABLE dir="' . $language_align['dir'] . '" ALIGN=CENTER BGCOLOR="'.$color[0].'" WIDTH="100%" BORDER=0>'."\n" . |
874 | ' <TR dir="' . $language_align['dir'] . '"><TD dir="' . $language_align['dir'] . '"></TD><TD dir="' . $language_align['dir'] . '" ALIGN="' . $language_align['right'] . '"><INPUT TYPE="BUTTON" NAME="Close" onClick="return self.close()" VALUE='._("Close").'></TD></TR>'."\n"; |
9c3e6cd4 |
875 | } |
78a35fcd |
876 | if ($location_of_buttons == 'top') { |
877 | showComposeButtonRow(); |
878 | } |
48985d59 |
879 | |
715225af |
880 | $idents = getPref($data_dir, $username, 'identities', 0); |
881 | if ($idents > 1) { |
21c8d457 |
882 | echo ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
883 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN="' . $language_align['right'] . '">' . |
0ec1a14b |
884 | _("From:") . '</TD>' . "\n" . |
21c8d457 |
885 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" WIDTH="90%" ALIGN="' . $language_align['left'] . '">' . "\n" . |
0ec1a14b |
886 | ' <select name=identity>' . "\n" . |
887 | ' <option value=default>' . |
888 | htmlspecialchars(getPref($data_dir, $username, 'full_name')); |
48985d59 |
889 | $em = getPref($data_dir, $username, 'email_address'); |
890 | if ($em != '') { |
248bfebb |
891 | echo htmlspecialchars(' <' . $em . '>') . "\n"; |
48985d59 |
892 | } |
893 | for ($i = 1; $i < $idents; $i ++) { |
248bfebb |
894 | echo '<option value="' . $i . '"'; |
48985d59 |
895 | if (isset($identity) && $identity == $i) { |
78a35fcd |
896 | echo ' SELECTED'; |
48985d59 |
897 | } |
898 | echo '>' . htmlspecialchars(getPref($data_dir, $username, |
899 | 'full_name' . $i)); |
248bfebb |
900 | $em = getPref($data_dir, $username, 'email_address' . $i); |
48985d59 |
901 | if ($em != '') { |
78a35fcd |
902 | echo htmlspecialchars(' <' . $em . '>') . "\n"; |
48985d59 |
903 | } |
9f599fe3 |
904 | echo '</option>'; |
48985d59 |
905 | } |
906 | echo '</select>' . "\n" . |
41b94d65 |
907 | ' </TD>' . "\n" . |
908 | ' </TR>' . "\n"; |
909 | } |
21c8d457 |
910 | echo ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
911 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN="' . $language_align['right'] . '">' . |
0ec1a14b |
912 | _("To:") . '</TD>' . "\n" . |
21c8d457 |
913 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" WIDTH="90%" ALIGN="' . $language_align['left'] . '">' . "\n" . |
41b94d65 |
914 | ' <INPUT TYPE=text NAME="send_to" VALUE="' . |
0ec1a14b |
915 | htmlspecialchars($send_to) . '" SIZE=60><BR>' . "\n" . |
41b94d65 |
916 | ' </TD>' . "\n" . |
917 | ' </TR>' . "\n" . |
21c8d457 |
918 | ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
919 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['right'] . '">' . |
0ec1a14b |
920 | _("CC:") . '</TD>' . "\n" . |
21c8d457 |
921 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['left'] . '">' . "\n" . |
41b94d65 |
922 | ' <INPUT TYPE=text NAME="send_to_cc" SIZE=60 VALUE="' . |
0ec1a14b |
923 | htmlspecialchars($send_to_cc) . '"><BR>' . "\n" . |
41b94d65 |
924 | ' </TD>' . "\n" . |
925 | ' </TR>' . "\n" . |
21c8d457 |
926 | ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
927 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['right'] . '">' . |
0ec1a14b |
928 | _("BCC:") . '</TD>' . "\n" . |
21c8d457 |
929 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['left'] . '">' . "\n" . |
41b94d65 |
930 | ' <INPUT TYPE=text NAME="send_to_bcc" VALUE="' . |
0ec1a14b |
931 | htmlspecialchars($send_to_bcc) . '" SIZE=60><BR>' . "\n" . |
932 | ' </TD>' . "\n" . |
933 | ' </TR>' . "\n" . |
21c8d457 |
934 | ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
935 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['right'] . '">' . |
0ec1a14b |
936 | _("Subject:") . '</TD>' . "\n" . |
21c8d457 |
937 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" ALIGN="' . $language_align['left'] . '">' . "\n"; |
0ec1a14b |
938 | echo ' <INPUT TYPE=text NAME=subject SIZE=60 VALUE="' . |
939 | htmlspecialchars($subject) . '">' . "\n" . |
940 | ' </TD>' . "\n" . |
941 | ' </TR>' . "\n\n"; |
48985d59 |
942 | |
78a35fcd |
943 | if ($location_of_buttons == 'between') { |
944 | showComposeButtonRow(); |
945 | } |
4dfb9db7 |
946 | |
fdc83c55 |
947 | if ($compose_new_win == '1') { |
21c8d457 |
948 | echo ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
949 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[0] . '" COLSPAN=2 ALIGN=CENTER>' . "\n" . |
41b94d65 |
950 | ' <TEXTAREA NAME=body ROWS=20 COLS="' . |
0ec1a14b |
951 | $editor_size . '" WRAP="VIRTUAL">'; |
fdc83c55 |
952 | } |
953 | else { |
21c8d457 |
954 | echo ' <TR dir="' . $language_align['dir'] . '">' . "\n" . |
955 | ' <TD dir="' . $language_align['dir'] . '" BGCOLOR="' . $color[4] . '" COLSPAN=2>' . "\n" . |
41b94d65 |
956 | ' <TEXTAREA NAME=body ROWS=20 COLS="' . |
0ec1a14b |
957 | $editor_size . '" WRAP="VIRTUAL">'; |
fdc83c55 |
958 | } |
48985d59 |
959 | if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) { |
d3c13a51 |
960 | if ($idents > 1) { |
961 | if ($identity == 'default') { |
962 | $no = 'g'; |
963 | } else { |
964 | $no = $identity; |
965 | } |
966 | $signature = getSig($data_dir, $username, $no); |
967 | } |
968 | |
3b17e952 |
969 | if ($sig_first == '1') { |
ab4700c3 |
970 | if ($default_charset == 'iso-2022-jp') { |
83be314a |
971 | echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP'); |
972 | } else { |
3b17e952 |
973 | echo "\n\n".($prefix_sig==true? "-- \n":'').htmlspecialchars($signature); |
83be314a |
974 | } |
3b17e952 |
975 | echo "\n\n".htmlspecialchars($body); |
976 | } |
977 | else { |
978 | echo "\n\n".htmlspecialchars($body); |
ab4700c3 |
979 | if ($default_charset == 'iso-2022-jp') { |
83be314a |
980 | echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP'); |
981 | }else{ |
3b17e952 |
982 | echo "\n\n".($prefix_sig==true? "-- \n":'').htmlspecialchars($signature); |
983 | } |
984 | } |
83be314a |
985 | } |
3b17e952 |
986 | else { |
987 | echo htmlspecialchars($body); |
48985d59 |
988 | } |
41b94d65 |
989 | echo '</TEXTAREA><BR>' . "\n" . |
990 | ' </TD>' . "\n" . |
991 | ' </TR>' . "\n"; |
48985d59 |
992 | |
993 | if ($location_of_buttons == 'bottom') { |
994 | showComposeButtonRow(); |
995 | } else { |
0ec1a14b |
996 | echo ' <TR>' . "\n" . |
997 | ' <TD COLSPAN=2 ALIGN=RIGHT>' . "\n" . |
998 | ' <INPUT TYPE=SUBMIT NAME=send VALUE="' . _("Send") . '">' . "\n" . |
999 | ' <BR><BR>' . "\n" . |
1000 | ' </TD>' . "\n" . |
1001 | ' </TR>' . "\n"; |
48985d59 |
1002 | } |
46bb8da8 |
1003 | |
48985d59 |
1004 | /* This code is for attachments */ |
a64f47e7 |
1005 | if ((bool) ini_get('file_uploads')) { |
0ec1a14b |
1006 | echo ' <TR>' . "\n" . |
1007 | ' <TD COLSPAN=2>' . "\n" . |
21c8d457 |
1008 | ' <table dir="' . $language_align['dir'] . '" width="100%" cellpadding="1" cellspacing="0" align="center"'. |
0ec1a14b |
1009 | ' border="0" bgcolor="'.$color[9].'">' . "\n" . |
1010 | ' <TR>' . "\n" . |
1011 | ' <TD>' . "\n" . |
21c8d457 |
1012 | ' <table dir="' . $language_align['dir'] . '" width="100%" cellpadding="3" cellspacing="0" align="center"'. |
0ec1a14b |
1013 | ' border="0">' . "\n" . |
1014 | ' <TR>' . "\n" . |
1015 | ' <TD VALIGN=MIDDLE ALIGN=RIGHT>' . |
1016 | _("Attach:") . '</TD>' . "\n" . |
1017 | ' <TD VALIGN=MIDDLE ALIGN=LEFT>' . "\n" . |
1018 | ' <INPUT NAME="attachfile" SIZE=48 TYPE="file">' . "\n" . |
1019 | ' <input type="submit" name="attach"' . |
1020 | ' value="' . _("Add") .'">' . "\n" . |
1021 | ' </TD>' . "\n" . |
1022 | ' </TR>' . "\n"; |
91f2085b |
1023 | |
41b94d65 |
1024 | |
91f2085b |
1025 | $s_a = array(); |
4dfb9db7 |
1026 | if ($composeMessage->entities) { |
1027 | foreach ($composeMessage->entities as $key => $attachment) { |
a43e4b90 |
1028 | $attached_file = $attachment->att_local_name; |
1029 | if ($attachment->att_local_name || $attachment->body_part) { |
1030 | $attached_filename = decodeHeader($attachment->mime_header->getParameter('name')); |
1031 | $type = $attachment->mime_header->type0.'/'. |
1032 | $attachment->mime_header->type1; |
21c8d457 |
1033 | $s_a[] = '<table><tr><td><input type="checkbox" name="delete[]" value="' . |
1034 | $key . "\"></td><td>\n" . $attached_filename . '</td><td>-</td><td> ' . $type . '</td><td>('.show_readable_size( filesize( $attached_file ) ) . ')</td></tr></table>'."\n"; |
a43e4b90 |
1035 | } |
4dfb9db7 |
1036 | } |
91f2085b |
1037 | } |
1038 | if (count($s_a)) { |
21c8d457 |
1039 | foreach ($s_a as $s) { |
1040 | echo '<tr><td align="' . $language_align['left'] . '" colspan="2" bgcolor="' . $color[0] . '">'.$s.'</td></tr>'; |
a61878d0 |
1041 | } |
91f2085b |
1042 | echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' . |
1043 | _("Delete selected attachments") . "\">\n" . |
1044 | '</td></tr>'; |
1045 | } |
0ec1a14b |
1046 | echo ' </table>' . "\n" . |
1047 | ' </td>' . "\n" . |
1048 | ' </tr>' . "\n" . |
1049 | ' </TABLE>' . "\n" . |
1050 | ' </TD>' . "\n" . |
1051 | ' </TR>' . "\n"; |
a64f47e7 |
1052 | } // End of file_uploads if-block |
41b94d65 |
1053 | /* End of attachment code */ |
07687736 |
1054 | if ($compose_new_win == '1') { |
41b94d65 |
1055 | echo '</TABLE>'."\n"; |
07687736 |
1056 | } |
a64f47e7 |
1057 | |
a61878d0 |
1058 | echo '</TABLE>' . "\n" . |
1059 | '<input type="hidden" name="username" value="'. $username . "\">\n" . |
5da08ef7 |
1060 | '<input type=hidden name=action value="' . $action . "\">\n" . |
a61878d0 |
1061 | '<INPUT TYPE=hidden NAME=mailbox VALUE="' . htmlspecialchars($mailbox) . |
4dfb9db7 |
1062 | "\">\n"; |
5da08ef7 |
1063 | /* |
0ec1a14b |
1064 | store the complete ComposeMessages array in a hidden input value |
1065 | so we can restore them in case of a session timeout. |
5da08ef7 |
1066 | */ |
1067 | echo '<input type=hidden name=restoremessages value="' . urlencode(serialize($compose_messages)) . "\">\n"; |
1068 | echo '<input type=hidden name=composesession value="' . $composesession . "\">\n"; |
1069 | echo '<input type=hidden name=querystring value="' . $_SERVER['QUERY_STRING'] . "\">\n"; |
4dfb9db7 |
1070 | echo '</FORM>'; |
a64f47e7 |
1071 | if (!(bool) ini_get('file_uploads')) { |
1072 | /* File uploads are off, so we didn't show that part of the form. |
1073 | To avoid bogus bug reports, tell the user why. */ |
1074 | echo 'Because PHP file uploads are turned off, you can not attach files '; |
1075 | echo "to this message. Please see your system administrator for details.\r\n"; |
1076 | } |
1077 | |
1078 | |
9f599fe3 |
1079 | do_hook('compose_bottom'); |
48985d59 |
1080 | echo '</BODY></HTML>' . "\n"; |
1081 | } |
1082 | |
1083 | |
70c4fd84 |
1084 | function showComposeButtonRow() { |
78a35fcd |
1085 | global $use_javascript_addr_book, $save_as_draft, |
a61878d0 |
1086 | $default_use_priority, $mailprio, $default_use_mdn, |
1087 | $request_mdn, $request_dr, |
1088 | $data_dir, $username; |
70c4fd84 |
1089 | |
0ec1a14b |
1090 | echo ' <TR>' . "\n" . |
1091 | ' <TD></TD>' . "\n" . |
1092 | ' <TD>' . "\n"; |
ae25968c |
1093 | if ($default_use_priority) { |
1094 | if(!isset($mailprio)) { |
1095 | $mailprio = "3"; |
70c4fd84 |
1096 | } |
0ec1a14b |
1097 | echo ' ' . _("Priority") .': <select name="mailprio">'. |
70c4fd84 |
1098 | '<option value="1"'.($mailprio=='1'?' selected':'').'>'. _("High") .'</option>'. |
1099 | '<option value="3"'.($mailprio=='3'?' selected':'').'>'. _("Normal") .'</option>'. |
1100 | '<option value="5"'.($mailprio=='5'?' selected':'').'>'. _("Low").'</option>'. |
0ec1a14b |
1101 | '</select>' . "\n"; |
ae25968c |
1102 | } |
1103 | $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn); |
1104 | if ($default_use_mdn) { |
70c4fd84 |
1105 | if ($mdn_user_support) { |
0ec1a14b |
1106 | echo ' ' . _("Receipt") .': '. |
b2a7e5bc |
1107 | '<input type="checkbox" name="request_mdn" value=1'. |
a61878d0 |
1108 | ($request_mdn=='1'?' checked':'') .'>'. _("On Read"). |
b2a7e5bc |
1109 | ' <input type="checkbox" name="request_dr" value=1'. |
a61878d0 |
1110 | ($request_dr=='1'?' checked':'') .'>'. _("On Delivery"); |
70c4fd84 |
1111 | } |
ae25968c |
1112 | } |
48985d59 |
1113 | |
0ec1a14b |
1114 | echo ' </TD>' . "\n" . |
1115 | ' </TR>' . "\n" . |
1116 | ' <TR>' . "\n" . |
1117 | ' <TD></TD>' . "\n" . |
1118 | ' <TD>' . "\n" . |
1119 | ' <INPUT TYPE=SUBMIT NAME="sigappend" VALUE="' . _("Signature") . '">' . "\n"; |
78a35fcd |
1120 | if ($use_javascript_addr_book) { |
0ec1a14b |
1121 | echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"". |
1122 | " <input type=button value=\\\""._("Addresses"). |
1123 | "\\\" onclick='javascript:open_abook();'>\");". |
1124 | " // --></SCRIPT><NOSCRIPT>\n". |
1125 | " <input type=submit name=\"html_addr_search\" value=\"". |
46bb8da8 |
1126 | _("Addresses")."\">". |
0ec1a14b |
1127 | " </NOSCRIPT>\n"; |
734f4ee6 |
1128 | } else { |
0ec1a14b |
1129 | echo ' <input type=submit name="html_addr_search" value="'. |
1130 | _("Addresses").'">' . "\n"; |
78a35fcd |
1131 | } |
48985d59 |
1132 | |
78a35fcd |
1133 | if ($save_as_draft) { |
0ec1a14b |
1134 | echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\">\n"; |
78a35fcd |
1135 | } |
0a17f9dd |
1136 | |
0ec1a14b |
1137 | echo ' <INPUT TYPE=submit NAME=send VALUE="'. _("Send") . '">' . "\n"; |
78a35fcd |
1138 | do_hook('compose_button_row'); |
441f2d33 |
1139 | |
0ec1a14b |
1140 | echo ' </TD>' . "\n" . |
1141 | ' </TR>' . "\n\n"; |
78a35fcd |
1142 | } |
b278172f |
1143 | |
70c4fd84 |
1144 | function checkInput ($show) { |
78a35fcd |
1145 | /* |
1146 | * I implemented the $show variable because the error messages |
1147 | * were getting sent before the page header. So, I check once |
1148 | * using $show=false, and then when i'm ready to display the error |
1149 | * message, show=true |
1150 | */ |
6bf2a88f |
1151 | global $body, $send_to, $send_to_bcc, $subject, $color; |
78a35fcd |
1152 | |
6bf2a88f |
1153 | if ($send_to == '' && $send_to_bcc == '') { |
78a35fcd |
1154 | if ($show) { |
0ad7dbda |
1155 | plain_error_message(_("You have not filled in the \"To:\" field."), $color); |
78a35fcd |
1156 | } |
1157 | return false; |
1158 | } |
1159 | return true; |
1160 | } /* function checkInput() */ |
df15de21 |
1161 | |
3806fa52 |
1162 | |
00793a25 |
1163 | /* True if FAILURE */ |
da95c4b6 |
1164 | function saveAttachedFiles($session) { |
0b97a708 |
1165 | global $_FILES, $attachment_dir, $attachments, $username, |
a43e4b90 |
1166 | $data_dir, $compose_messages; |
4c9d2242 |
1167 | |
45cdd1b5 |
1168 | /* get out of here if no file was attached at all */ |
1169 | if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) { |
1170 | return true; |
1171 | } |
1172 | |
4c9d2242 |
1173 | $hashed_attachment_dir = getHashedDir($username, $attachment_dir); |
1174 | $localfilename = GenerateRandomString(32, '', 7); |
1175 | $full_localfilename = "$hashed_attachment_dir/$localfilename"; |
1176 | while (file_exists($full_localfilename)) { |
1177 | $localfilename = GenerateRandomString(32, '', 7); |
1178 | $full_localfilename = "$hashed_attachment_dir/$localfilename"; |
1179 | } |
1180 | |
e6675f9a |
1181 | // FIXME: we SHOULD prefer move_uploaded_file over rename because |
1182 | // m_u_f works better with restricted PHP installes (safe_mode, open_basedir) |
1183 | if (!@rename($_FILES['attachfile']['tmp_name'], $full_localfilename)) { |
1184 | if (!@move_uploaded_file($_FILES['attachfile']['tmp_name'],$full_localfilename)) { |
1185 | return true; |
1186 | } |
a61878d0 |
1187 | } |
a43e4b90 |
1188 | $message = $compose_messages[$session]; |
0b97a708 |
1189 | $type = strtolower($_FILES['attachfile']['type']); |
1190 | $name = $_FILES['attachfile']['name']; |
a43e4b90 |
1191 | $message->initAttachment($type, $name, $full_localfilename); |
1192 | $compose_messages[$session] = $message; |
4c9d2242 |
1193 | } |
1194 | |
a43e4b90 |
1195 | function ClearAttachments($composeMessage) { |
b48d3c53 |
1196 | if ($composeMessage->att_local_name) { |
1197 | $attached_file = $composeMessage->att_local_name; |
a43e4b90 |
1198 | if (file_exists($attached_file)) { |
1199 | unlink($attached_file); |
8712abea |
1200 | } |
da95c4b6 |
1201 | } |
a43e4b90 |
1202 | for ($i=0, $entCount=count($composeMessage->entities);$i< $entCount; ++$i) { |
1203 | ClearAttachments($composeMessage->entities[$i]); |
1204 | } |
4c9d2242 |
1205 | } |
1206 | |
da95c4b6 |
1207 | |
a43e4b90 |
1208 | |
1209 | function getReplyCitation($orig_from) { |
4c9d2242 |
1210 | global $reply_citation_style, $reply_citation_start, $reply_citation_end; |
1211 | |
1212 | /* First, return an empty string when no citation style selected. */ |
1213 | if (($reply_citation_style == '') || ($reply_citation_style == 'none')) { |
1214 | return ''; |
1215 | } |
1216 | |
4c9d2242 |
1217 | /* Make sure our final value isn't an empty string. */ |
1218 | if ($orig_from == '') { |
1219 | return ''; |
1220 | } |
1221 | |
1222 | /* Otherwise, try to select the desired citation style. */ |
1223 | switch ($reply_citation_style) { |
1224 | case 'author_said': |
1225 | $start = ''; |
1226 | $end = ' ' . _("said") . ':'; |
1227 | break; |
1228 | case 'quote_who': |
1229 | $start = '<' . _("quote") . ' ' . _("who") . '="'; |
1230 | $end = '">'; |
1231 | break; |
1232 | case 'user-defined': |
55b321f2 |
1233 | $start = $reply_citation_start . |
a61878d0 |
1234 | ($reply_citation_start == '' ? '' : ' '); |
4c9d2242 |
1235 | $end = $reply_citation_end; |
1236 | break; |
1237 | default: |
1238 | return ''; |
1239 | } |
1240 | |
1241 | /* Build and return the citation string. */ |
1242 | return ($start . $orig_from . $end . "\n"); |
1243 | } |
1244 | |
a43e4b90 |
1245 | /* temporary function to make use of the deliver class. |
1246 | In the future the responsable backend should be automaticly loaded |
1247 | and conf.pl should show a list of available backends. |
1248 | The message also should be constructed by the message class. |
1249 | */ |
1250 | |
b7ff469f |
1251 | function deliverMessage($composeMessage, $draft=false) { |
a43e4b90 |
1252 | global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body, |
1253 | $username, $popuser, $usernamedata, $identity, $data_dir, |
1254 | $request_mdn, $request_dr, $default_charset, $color, $useSendmail, |
b48d3c53 |
1255 | $domain, $action; |
a43e4b90 |
1256 | global $imapServerAddress, $imapPort, $sent_folder, $key; |
1257 | |
1258 | $rfc822_header = $composeMessage->rfc822_header; |
24192f77 |
1259 | |
1260 | $abook = addressbook_init(false, true); |
1261 | |
1262 | $rfc822_header->to = $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup')); |
1263 | $rfc822_header->cc = $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup')); |
1264 | $rfc822_header->bcc = $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup')); |
a43e4b90 |
1265 | $rfc822_header->priority = $mailprio; |
1266 | $rfc822_header->subject = $subject; |
1267 | $special_encoding=''; |
1268 | if (strtolower($default_charset) == 'iso-2022-jp') { |
1269 | if (mb_detect_encoding($body) == 'ASCII') { |
1270 | $special_encoding = '8bit'; |
1271 | } else { |
1272 | $body = mb_convert_encoding($body, 'JIS'); |
1273 | $special_encoding = '7bit'; |
1274 | } |
1275 | } |
1276 | $composeMessage->setBody($body); |
1277 | |
1278 | if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) { |
1279 | $popuser = $usernamedata[1]; |
1280 | $domain = $usernamedata[2]; |
1281 | unset($usernamedata); |
1282 | } else { |
1283 | $popuser = $username; |
1284 | } |
1285 | $reply_to = ''; |
1286 | if (isset($identity) && $identity != 'default') { |
045714fd |
1287 | $from_mail = getPref($data_dir, $username,'email_address' . $identity); |
1288 | $full_name = getPref($data_dir, $username,'full_name' . $identity); |
1289 | $reply_to = getPref($data_dir, $username,'reply_to' . $identity); |
a43e4b90 |
1290 | } else { |
1291 | $from_mail = getPref($data_dir, $username, 'email_address'); |
1292 | $full_name = getPref($data_dir, $username, 'full_name'); |
a43e4b90 |
1293 | $reply_to = getPref($data_dir, $username,'reply_to'); |
1294 | } |
045714fd |
1295 | if (!$from_mail) { |
1296 | $from_mail = "$popuser@$domain"; |
1297 | $full_name = ''; |
1298 | } |
1299 | $rfc822_header->from = $rfc822_header->parseAddress($from_mail,true); |
1300 | if ($full_name) { |
9783f396 |
1301 | $from = $rfc822_header->from[0]; |
045714fd |
1302 | if (!$from->host) $from->host = $domain; |
1da690a2 |
1303 | $from_addr = '"'.$full_name .'" <'.$from->mailbox.'@'.$from->host.'>'; |
045714fd |
1304 | $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true); |
a43e4b90 |
1305 | } |
a43e4b90 |
1306 | if ($reply_to) { |
1307 | $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true); |
1308 | } |
1309 | /* Receipt: On Read */ |
1310 | if (isset($request_mdn) && $request_mdn) { |
1311 | $rfc822_header->dnt = $rfc822_header->parseAddress($from_mail,true); |
1312 | } |
1313 | /* Receipt: On Delivery */ |
1314 | if (isset($request_dr) && $request_dr) { |
1315 | $rfc822_header->more_headers['Return-Receipt-To'] = $from_mail; |
1316 | } |
1317 | /* multipart messages */ |
1318 | if (count($composeMessage->entities)) { |
1319 | $message_body = new Message(); |
1320 | $message_body->body_part = $composeMessage->body_part; |
1321 | $composeMessage->body_part = ''; |
1322 | $mime_header = new MessageHeader; |
1323 | $mime_header->type0 = 'text'; |
1324 | $mime_header->type1 = 'plain'; |
1325 | if ($special_encoding) { |
1326 | $mime_header->encoding = $special_encoding; |
1327 | } else { |
1328 | $mime_header->encoding = 'us-ascii'; |
1329 | } |
1330 | if ($default_charset) { |
1331 | $mime_header->parameters['charset'] = $default_charset; |
1332 | } |
1333 | $message_body->mime_header = $mime_header; |
1334 | array_unshift($composeMessage->entities, $message_body); |
1335 | $content_type = new ContentType('multipart/mixed'); |
1336 | } else { |
1337 | $content_type = new ContentType('text/plain'); |
1338 | } |
1339 | if ($default_charset) { |
1340 | $content_type->properties['charset']=$default_charset; |
1341 | } |
1342 | |
1343 | $rfc822_header->content_type = $content_type; |
1344 | $composeMessage->rfc822_header = $rfc822_header; |
1345 | |
b48d3c53 |
1346 | if (!$useSendmail && !$draft) { |
86725763 |
1347 | require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php'); |
a43e4b90 |
1348 | $deliver = new Deliver_SMTP(); |
47a29326 |
1349 | global $smtpServerAddress, $smtpPort, $pop_before_smtp, $smtp_auth_mech; |
1350 | |
1351 | if ($smtp_auth_mech == 'none') { |
1352 | $user = ''; |
1353 | $pass = ''; |
a43e4b90 |
1354 | } else { |
47a29326 |
1355 | global $key, $onetimepad; |
1356 | $user = $username; |
1357 | $pass = OneTimePadDecrypt($key, $onetimepad); |
a43e4b90 |
1358 | } |
47a29326 |
1359 | |
b48d3c53 |
1360 | $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false; |
a43e4b90 |
1361 | $stream = $deliver->initStream($composeMessage,$domain,0, |
70ce2218 |
1362 | $smtpServerAddress, $smtpPort, $user, $pass, $authPop); |
b48d3c53 |
1363 | } elseif (!$draft) { |
86725763 |
1364 | require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php'); |
b48d3c53 |
1365 | global $sendmail_path; |
1366 | $deliver = new Deliver_SendMail(); |
1367 | $stream = $deliver->initStream($composeMessage,$sendmail_path); |
1368 | } elseif ($draft) { |
1369 | global $draft_folder; |
86725763 |
1370 | require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php'); |
b48d3c53 |
1371 | $imap_stream = sqimap_login($username, $key, $imapServerAddress, |
1372 | $imapPort, 0); |
1373 | if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) { |
4dfb9db7 |
1374 | require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php'); |
1375 | $imap_deliver = new Deliver_IMAP(); |
1376 | $length = $imap_deliver->mail($composeMessage); |
1377 | sqimap_append ($imap_stream, $draft_folder, $length); |
1378 | $imap_deliver->mail($composeMessage, $imap_stream); |
f55207e3 |
1379 | sqimap_append_done ($imap_stream, $draft_folder); |
4dfb9db7 |
1380 | sqimap_logout($imap_stream); |
1381 | unset ($imap_deliver); |
1382 | return $length; |
1383 | } else { |
1384 | $msg = '<br>Error: '._("Draft folder")." $draft_folder" . ' does not exist.'; |
1385 | plain_error_message($msg, $color); |
1386 | return false; |
b48d3c53 |
1387 | } |
a43e4b90 |
1388 | } |
1389 | $succes = false; |
1390 | if ($stream) { |
1391 | $length = $deliver->mail($composeMessage, $stream); |
1392 | $succes = $deliver->finalizeStream($stream); |
1393 | } |
1394 | if (!$succes) { |
00ac2f42 |
1395 | $msg = $deliver->dlv_msg . '<br>' . |
1396 | _("Server replied: ") . $deliver->dlv_ret_nr . ' '. |
1397 | $deliver->dlv_server_msg; |
a43e4b90 |
1398 | plain_error_message($msg, $color); |
1399 | } else { |
1400 | unset ($deliver); |
1401 | $imap_stream = sqimap_login($username, $key, $imapServerAddress, |
1402 | $imapPort, 0); |
1403 | if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) { |
1404 | sqimap_append ($imap_stream, $sent_folder, $length); |
86725763 |
1405 | require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php'); |
a43e4b90 |
1406 | $imap_deliver = new Deliver_IMAP(); |
1407 | $imap_deliver->mail($composeMessage, $imap_stream); |
f55207e3 |
1408 | sqimap_append_done ($imap_stream, $sent_folder); |
a43e4b90 |
1409 | unset ($imap_deliver); |
1410 | } |
b48d3c53 |
1411 | global $passed_id, $mailbox, $action; |
a43e4b90 |
1412 | ClearAttachments($composeMessage); |
b48d3c53 |
1413 | if ($action == 'reply' || $action == 'reply_all') { |
1414 | sqimap_mailbox_select ($imap_stream, $mailbox); |
1415 | sqimap_messages_flag ($imap_stream, $passed_id, $passed_id, 'Answered', true); |
1416 | } |
1417 | sqimap_logout($imap_stream); |
a43e4b90 |
1418 | } |
1419 | return $succes; |
1420 | } |
1421 | |
6bf2a88f |
1422 | ?> |