]> git.mxchange.org Git - friendica.git/blob - include/email.php
Merge pull request #2112 from rabuzarus/2811_group_side
[friendica.git] / include / email.php
1 <?php
2 require_once('include/html2plain.php');
3 require_once('include/msgclean.php');
4 require_once('include/quoteconvert.php');
5
6 function email_connect($mailbox,$username,$password) {
7         if(! function_exists('imap_open'))
8                 return false;
9
10         $mbox = @imap_open($mailbox,$username,$password);
11
12         return $mbox;
13 }
14
15 function email_poll($mbox,$email_addr) {
16
17         if(! ($mbox && $email_addr))
18                 return array();
19
20         $search1 = @imap_search($mbox,'FROM "' . $email_addr . '"', SE_UID);
21         if(! $search1)
22                 $search1 = array();
23
24         $search2 = @imap_search($mbox,'TO "' . $email_addr . '"', SE_UID);
25         if(! $search2)
26                 $search2 = array();
27
28         $search3 = @imap_search($mbox,'CC "' . $email_addr . '"', SE_UID);
29         if(! $search3)
30                 $search3 = array();
31
32         $search4 = @imap_search($mbox,'BCC "' . $email_addr . '"', SE_UID);
33         if(! $search4)
34                 $search4 = array();
35
36         $res = array_unique(array_merge($search1,$search2,$search3,$search4));
37
38         return $res;
39 }
40
41
42 function construct_mailbox_name($mailacct) {
43         $ret = '{' . $mailacct['server'] . ((intval($mailacct['port'])) ? ':' . $mailacct['port'] : '');
44         $ret .= (($mailacct['ssltype']) ?  '/' . $mailacct['ssltype'] . '/novalidate-cert' : '');
45         $ret .= '}' . $mailacct['mailbox'];
46         return $ret;
47 }
48
49
50 function email_msg_meta($mbox,$uid) {
51         $ret = (($mbox && $uid) ? @imap_fetch_overview($mbox,$uid,FT_UID) : array(array())); // POSSIBLE CLEANUP --> array(array()) is probably redundant now
52         return ((count($ret)) ? $ret : array());
53 }
54
55 function email_msg_headers($mbox,$uid) {
56         $raw_header = (($mbox && $uid) ? @imap_fetchheader($mbox,$uid,FT_UID) : '');
57         $raw_header = str_replace("\r",'',$raw_header);
58         $ret = array();
59         $h = explode("\n",$raw_header);
60         if(count($h))
61         foreach($h as $line ) {
62             if (preg_match("/^[a-zA-Z]/", $line)) {
63                         $key = substr($line,0,strpos($line,':'));
64                         $value = substr($line,strpos($line,':')+1);
65
66                         $last_entry = strtolower($key);
67                         $ret[$last_entry] = trim($value);
68                 }
69                 else {
70                         $ret[$last_entry] .= ' ' . trim($line);
71         }
72         }
73         return $ret;
74 }
75
76
77 function email_get_msg($mbox,$uid, $reply) {
78         $ret = array();
79
80         $struc = (($mbox && $uid) ? @imap_fetchstructure($mbox,$uid,FT_UID) : null);
81
82         if(! $struc)
83                 return $ret;
84
85         if(! $struc->parts) {
86                 $ret['body'] = email_get_part($mbox,$uid,$struc,0, 'html');
87                 $html = $ret['body'];
88
89                 if (trim($ret['body']) == '')
90                         $ret['body'] = email_get_part($mbox,$uid,$struc,0, 'plain');
91                 else
92                         $ret['body'] = html2bbcode($ret['body']);
93         }
94         else {
95                 $text = '';
96                 $html = '';
97                 foreach($struc->parts as $ptop => $p) {
98                         $x = email_get_part($mbox,$uid,$p,$ptop + 1, 'plain');
99                         if($x)  $text .= $x;
100
101                         $x = email_get_part($mbox,$uid,$p,$ptop + 1, 'html');
102                         if($x)  $html .= $x;
103                 }
104                 if (trim($html) != '')
105                         $ret['body'] = html2bbcode($html);
106                 else
107                         $ret['body'] = $text;
108         }
109
110         $ret['body'] = removegpg($ret['body']);
111         $msg = removesig($ret['body']);
112         $ret['body'] = $msg['body'];
113         $ret['body'] = convertquote($ret['body'], $reply);
114
115         if (trim($html) != '')
116                 $ret['body'] = removelinebreak($ret['body']);
117
118         $ret['body'] = unifyattributionline($ret['body']);
119
120         return $ret;
121 }
122
123 // At the moment - only return plain/text.
124 // Later we'll repackage inline images as data url's and make the HTML safe
125
126 function email_get_part($mbox,$uid,$p,$partno, $subtype) {
127         // $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple
128         global $htmlmsg,$plainmsg,$charset,$attachments;
129
130         //echo $partno."\n";
131
132         // DECODE DATA
133         $data = ($partno)
134                 ? @imap_fetchbody($mbox,$uid,$partno, FT_UID|FT_PEEK)
135         : @imap_body($mbox,$uid,FT_UID|FT_PEEK);
136
137         // Any part may be encoded, even plain text messages, so check everything.
138         if ($p->encoding==4)
139                 $data = quoted_printable_decode($data);
140         elseif ($p->encoding==3)
141                 $data = base64_decode($data);
142
143         // PARAMETERS
144         // get all parameters, like charset, filenames of attachments, etc.
145         $params = array();
146         if ($p->parameters)
147                 foreach ($p->parameters as $x)
148                         $params[strtolower($x->attribute)] = $x->value;
149         if (isset($p->dparameters) and $p->dparameters)
150                 foreach ($p->dparameters as $x)
151                         $params[strtolower($x->attribute)] = $x->value;
152
153         // ATTACHMENT
154         // Any part with a filename is an attachment,
155         // so an attached text file (type 0) is not mistaken as the message.
156
157         if ((isset($params['filename']) and $params['filename']) || (isset($params['name']) and $params['name'])) {
158                 // filename may be given as 'Filename' or 'Name' or both
159                 $filename = ($params['filename'])? $params['filename'] : $params['name'];
160                 // filename may be encoded, so see imap_mime_header_decode()
161                 $attachments[$filename] = $data;  // this is a problem if two files have same name
162         }
163
164         // TEXT
165         if ($p->type == 0 && $data) {
166                 // Messages may be split in different parts because of inline attachments,
167                 // so append parts together with blank row.
168                 if (strtolower($p->subtype)==$subtype) {
169                         $data = iconv($params['charset'], 'UTF-8//IGNORE', $data);
170                         return (trim($data) ."\n\n");
171                 } else
172                         $data = '';
173
174  //           $htmlmsg .= $data ."<br><br>";
175                 $charset = $params['charset'];  // assume all parts are same charset
176         }
177
178         // EMBEDDED MESSAGE
179         // Many bounce notifications embed the original message as type 2,
180         // but AOL uses type 1 (multipart), which is not handled here.
181         // There are no PHP functions to parse embedded messages,
182         // so this just appends the raw source to the main message.
183 //      elseif ($p->type==2 && $data) {
184 //              $plainmsg .= $data."\n\n";
185 //      }
186
187         // SUBPART RECURSION
188         if (isset($p->parts) and $p->parts) {
189                 $x = "";
190                 foreach ($p->parts as $partno0=>$p2) {
191                         $x .=  email_get_part($mbox,$uid,$p2,$partno . '.' . ($partno0+1), $subtype);  // 1.2, 1.2.1, etc.
192                         //if($x)
193                         //      return $x;
194                 }
195                 return $x;
196         }
197 }
198
199
200
201 function email_header_encode($in_str, $charset) {
202     $out_str = $in_str;
203         $need_to_convert = false;
204
205         for($x = 0; $x < strlen($in_str); $x ++) {
206                 if((ord($in_str[$x]) == 0) || ((ord($in_str[$x]) > 128))) {
207                         $need_to_convert = true;
208                 }
209         }
210
211         if(! $need_to_convert)
212                 return $in_str;
213
214     if ($out_str && $charset) {
215
216         // define start delimimter, end delimiter and spacer
217         $end = "?=";
218         $start = "=?" . $charset . "?B?";
219         $spacer = $end . "\r\n " . $start;
220
221         // determine length of encoded text within chunks
222         // and ensure length is even
223         $length = 75 - strlen($start) - strlen($end);
224
225         /*
226             [EDIT BY danbrown AT php DOT net: The following
227             is a bugfix provided by (gardan AT gmx DOT de)
228             on 31-MAR-2005 with the following note:
229             "This means: $length should not be even,
230             but divisible by 4. The reason is that in
231             base64-encoding 3 8-bit-chars are represented
232             by 4 6-bit-chars. These 4 chars must not be
233             split between two encoded words, according
234             to RFC-2047.
235         */
236         $length = $length - ($length % 4);
237
238         // encode the string and split it into chunks
239         // with spacers after each chunk
240         $out_str = base64_encode($out_str);
241         $out_str = chunk_split($out_str, $length, $spacer);
242
243         // remove trailing spacer and
244         // add start and end delimiters
245         $spacer = preg_quote($spacer,'/');
246         $out_str = preg_replace("/" . $spacer . "$/", "", $out_str);
247         $out_str = $start . $out_str . $end;
248     }
249     return $out_str;
250 }
251
252 /**
253  * email_send is used by NETWORK_EMAIL and NETWORK_EMAIL2 code
254  * (not to notify the user, but to send items to email contacts
255  *
256  * TODO: this could be changed to use the Emailer class
257  */
258 function email_send($addr, $subject, $headers, $item) {
259         //$headers .= 'MIME-Version: 1.0' . "\n";
260         //$headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
261         //$headers .= 'Content-Type: text/plain; charset=UTF-8' . "\n";
262         //$headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
263
264         $part = uniqid("", true);
265
266         $html    = prepare_body($item);
267
268         $headers .= "Mime-Version: 1.0\n";
269         $headers .= 'Content-Type: multipart/alternative; boundary="=_'.$part.'"'."\n\n";
270
271         $body = "\n--=_".$part."\n";
272         $body .= "Content-Transfer-Encoding: 8bit\n";
273         $body .= "Content-Type: text/plain; charset=utf-8; format=flowed\n\n";
274
275         $body .= html2plain($html)."\n";
276
277         $body .= "--=_".$part."\n";
278         $body .= "Content-Transfer-Encoding: 8bit\n";
279         $body .= "Content-Type: text/html; charset=utf-8\n\n";
280
281         $body .= '<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">'.$html."</body></html>\n";
282
283         $body .= "--=_".$part."--";
284
285         //$message = '<html><body>' . $html . '</body></html>';
286         //$message = html2plain($html);
287         logger('notifier: email delivery to ' . $addr);
288         mail($addr, $subject, $body, $headers);
289 }
290
291 function iri2msgid($iri) {
292         if (!strpos($iri, "@"))
293                 $msgid = preg_replace("/urn:(\S+):(\S+)\.(\S+):(\d+):(\S+)/i", "urn!$1!$4!$5@$2.$3", $iri);
294         else
295                 $msgid = $iri;
296         return($msgid);
297 }
298
299 function msgid2iri($msgid) {
300         if (strpos($msgid, "@"))
301                 $iri = preg_replace("/urn!(\S+)!(\d+)!(\S+)@(\S+)\.(\S+)/i", "urn:$1:$4.$5:$2:$3", $msgid);
302         else
303                 $iri = $msgid;
304         return($iri);
305 }