root/tags/2.3.1/wp-mail.php

Revision 6280, 5.6 kB (checked in by ryan, 1 year ago)

Allow hypens in email addresses. Props Bobcat. fixes #5169 for 2.3

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2 require(dirname(__FILE__) . '/wp-config.php');
3
4 require_once(ABSPATH.WPINC.'/class-pop3.php');
5
6 error_reporting(2037);
7
8 $time_difference = get_option('gmt_offset') * 3600;
9
10 $phone_delim = '::';
11
12 $pop3 = new POP3();
13
14 if (!$pop3->connect(get_option('mailserver_url'), get_option('mailserver_port')))
15     wp_die($pop3->ERROR);
16
17 $count = $pop3->login(get_option('mailserver_login'), get_option('mailserver_pass'));
18 if (0 == $count) wp_die(__('There doesn&#8217;t seem to be any new mail.'));
19
20
21 for ($i=1; $i <= $count; $i++) :
22
23     $message = $pop3->get($i);
24
25     $content = '';
26     $content_type = '';
27     $content_transfer_encoding = '';
28     $boundary = '';
29     $bodysignal = 0;
30     $dmonths = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
31     foreach ($message as $line) :
32         if (strlen($line) < 3) $bodysignal = 1;
33
34         if ($bodysignal) {
35             $content .= $line;
36         } else {
37             if (preg_match('/Content-Type: /i', $line)) {
38                 $content_type = trim($line);
39                 $content_type = substr($content_type, 14, strlen($content_type)-14);
40                 $content_type = explode(';', $content_type);
41                 $content_type = $content_type[0];
42             }
43             if (preg_match('/Content-Transfer-Encoding: /i', $line)) {
44                 $content_transfer_encoding = trim($line);
45                 $content_transfer_encoding = substr($content_transfer_encoding, 27, strlen($content_transfer_encoding)-14);
46                 $content_transfer_encoding = explode(';', $content_transfer_encoding);
47                 $content_transfer_encoding = $content_transfer_encoding[0];
48             }
49             if (($content_type == 'multipart/alternative') && (preg_match('/boundary="/', $line)) && ($boundary == '')) {
50                 $boundary = trim($line);
51                 $boundary = explode('"', $boundary);
52                 $boundary = $boundary[1];
53             }
54             if (preg_match('/Subject: /i', $line)) {
55                 $subject = trim($line);
56                 $subject = substr($subject, 9, strlen($subject)-9);
57                 $subject = wp_iso_descrambler($subject);
58                 // Captures any text in the subject before $phone_delim as the subject
59                 $subject = explode($phone_delim, $subject);
60                 $subject = $subject[0];
61             }
62
63             // Set the author using the email address (From or Reply-To, the last used)
64             // otherwise use the site admin
65             if ( preg_match('/(From|Reply-To): /', $line) )  {
66                 if ( preg_match('|[a-z0-9_.-]+@[a-z0-9_.-]+(?!.*<)|i', $line, $matches) )
67                     $author = $matches[0];
68                 else
69                     $author = trim($line);
70                 $author = sanitize_email($author);
71                 if ( is_email($author) ) {
72                     echo "Author = {$author} <p>";
73                     $author = $wpdb->escape($author);
74                     $result = $wpdb->get_row("SELECT ID FROM $wpdb->users WHERE user_email='$author' LIMIT 1");
75                     if (!$result)
76                         $post_author = 1;
77                     else
78                         $post_author = $result->ID;
79                 } else
80                     $post_author = 1;
81             }
82
83             if (preg_match('/Date: /i', $line)) { // of the form '20 Mar 2002 20:32:37'
84                 $ddate = trim($line);
85                 $ddate = str_replace('Date: ', '', $ddate);
86                 if (strpos($ddate, ',')) {
87                     $ddate = trim(substr($ddate, strpos($ddate, ',')+1, strlen($ddate)));
88                 }
89                 $date_arr = explode(' ', $ddate);
90                 $date_time = explode(':', $date_arr[3]);
91
92                 $ddate_H = $date_time[0];
93                 $ddate_i = $date_time[1];
94                 $ddate_s = $date_time[2];
95
96                 $ddate_m = $date_arr[1];
97                 $ddate_d = $date_arr[0];
98                 $ddate_Y = $date_arr[2];
99                 for ($j=0; $j<12; $j++) {
100                     if ($ddate_m == $dmonths[$j]) {
101                         $ddate_m = $j+1;
102                     }
103                 }
104
105                 $time_zn = intval($date_arr[4]) * 36;
106                 $ddate_U = gmmktime($ddate_H, $ddate_i, $ddate_s, $ddate_m, $ddate_d, $ddate_Y);
107                 $ddate_U = $ddate_U - $time_zn;
108                 $post_date = gmdate('Y-m-d H:i:s', $ddate_U + $time_difference);
109                 $post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U);
110             }
111         }
112     endforeach;
113
114     $subject = trim($subject);
115
116     if ($content_type == 'multipart/alternative') {
117         $content = explode('--'.$boundary, $content);
118         $content = $content[2];
119         $content = explode('Content-Transfer-Encoding: quoted-printable', $content);
120         $content = strip_tags($content[1], '<img><p><br><i><b><u><em><strong><strike><font><span><div>');
121     }
122     $content = trim($content);
123
124     if (stripos($content_transfer_encoding, "quoted-printable") !== false) {
125         $content = quoted_printable_decode($content);
126     }
127
128     // Captures any text in the body after $phone_delim as the body
129     $content = explode($phone_delim, $content);
130     $content[1] ? $content = $content[1] : $content = $content[0];
131
132     echo "<p><b>Content-type:</b> $content_type, <b>Content-Transfer-Encoding:</b> $content_transfer_encoding, <b>boundary:</b> $boundary</p>\n";
133     echo "<p><b>Raw content:</b><br /><pre>".$content.'</pre></p>';
134
135     $content = trim($content);
136
137     $post_content = apply_filters('phone_content', $content);
138
139     $post_title = xmlrpc_getposttitle($content);
140
141     if ($post_title == '') $post_title = $subject;
142
143     if (empty($post_categories)) $post_categories[] = get_option('default_email_category');
144
145     $post_category = $post_categories;
146
147     // or maybe we should leave the choice to email drafts? propose a way
148     $post_status = 'publish';
149
150     $post_data = compact('post_content','post_title','post_date','post_date_gmt','post_author','post_category', 'post_status');
151     $post_data = add_magic_quotes($post_data);
152
153     $post_ID = wp_insert_post($post_data);
154     if ( is_wp_error( $post_ID ) )
155         echo "\n" . $post_ID->get_error_message();
156
157     if (!$post_ID) {
158         // we couldn't post, for whatever reason. better move forward to the next email
159         continue;
160     }
161
162     do_action('publish_phone', $post_ID);
163
164     echo "\n<p><b>Author:</b> $post_author</p>";
165     echo "\n<p><b>Posted title:</b> $post_title<br />";
166     echo "\n<b>Posted content:</b><br /><pre>".$content.'</pre></p>';
167
168     if(!$pop3->delete($i)) {
169         echo '<p>Oops '.$pop3->ERROR.'</p></div>';
170         $pop3->reset();
171         exit;
172     } else {
173         echo "<p>Mission complete, message <strong>$i</strong> deleted.</p>";
174     }
175
176 endfor;
177
178 $pop3->quit();
179
180 ?>
181
Note: See TracBrowser for help on using the browser.