New mail functionality.
git-svn-id: https://develop.svn.wordpress.org/trunk@1153 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8024c0ed25
commit
fb9ec6bad8
199
wp-mail.php
199
wp-mail.php
@ -3,45 +3,29 @@ require(dirname(__FILE__) . '/wp-config.php');
|
|||||||
|
|
||||||
require_once(ABSPATH.WPINC.'/class-pop3.php');
|
require_once(ABSPATH.WPINC.'/class-pop3.php');
|
||||||
|
|
||||||
|
|
||||||
timer_start();
|
|
||||||
|
|
||||||
$output_debugging_info = 0; # =1 if you want to output debugging info
|
|
||||||
|
|
||||||
if (get_settings('use_phoneemail')) {
|
|
||||||
// if you're using phone email, the email will already be in your timezone
|
|
||||||
$time_difference = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
error_reporting(2037);
|
error_reporting(2037);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$pop3 = new POP3();
|
$pop3 = new POP3();
|
||||||
|
|
||||||
if(!$pop3->connect(get_settings('mailserver_url'), get_settings('mailserver_port'))) {
|
if (!$pop3->connect(get_settings('mailserver_url'), get_settings('mailserver_port'))) :
|
||||||
echo "Ooops $pop3->ERROR <br />\n";
|
echo "Ooops $pop3->ERROR <br />\n";
|
||||||
exit;
|
exit;
|
||||||
}
|
endif;
|
||||||
|
|
||||||
$Count = $pop3->login(get_settings('mailserver_login'), get_settings('mailserver_pass'));
|
$count = $pop3->login(get_settings('mailserver_login'), get_settings('mailserver_pass'));
|
||||||
if((!$Count) || ($Count == -1)) {
|
if (0 == $count) die(__('There doesn’t seem to be any new mail.'));
|
||||||
echo "<h1>Login Failed: $pop3->ERROR</h1>\n";
|
|
||||||
$pop3->quit();
|
|
||||||
exit;
|
for ($i=1; $i <= $count; $i++) :
|
||||||
}
|
|
||||||
|
$message = $pop3->get($i);
|
||||||
|
|
||||||
// ONLY USE THIS IF YOUR PHP VERSION SUPPORTS IT!
|
if(!$pop3->delete($i)) {
|
||||||
//register_shutdown_function($pop3->quit());
|
echo '<p>Oops '.$pop3->ERROR.'</p></div>';
|
||||||
|
$pop3->reset();
|
||||||
for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|
||||||
|
|
||||||
$MsgOne = $pop3->get($iCount);
|
|
||||||
if((!$MsgOne) || (gettype($MsgOne) != 'array')) {
|
|
||||||
echo "oops, $pop3->ERROR<br />\n";
|
|
||||||
$pop3->quit();
|
|
||||||
exit;
|
exit;
|
||||||
|
} else {
|
||||||
|
echo "<p>Mission complete, message <strong>$i</strong> deleted.</p>";
|
||||||
}
|
}
|
||||||
|
|
||||||
$content = '';
|
$content = '';
|
||||||
@ -50,10 +34,9 @@ for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|||||||
$bodysignal = 0;
|
$bodysignal = 0;
|
||||||
$dmonths = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
$dmonths = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
|
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
|
||||||
while ( list ( $lineNum,$line ) = each ($MsgOne) ) {
|
foreach ($message as $line) :
|
||||||
if (strlen($line) < 3) {
|
if (strlen($line) < 3) $bodysignal = 1;
|
||||||
$bodysignal = 1;
|
|
||||||
}
|
|
||||||
if ($bodysignal) {
|
if ($bodysignal) {
|
||||||
$content .= $line;
|
$content .= $line;
|
||||||
} else {
|
} else {
|
||||||
@ -74,13 +57,6 @@ for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|||||||
if (!preg_match('#\=\?(.+)\?Q\?(.+)\?\=#i', $subject)) {
|
if (!preg_match('#\=\?(.+)\?Q\?(.+)\?\=#i', $subject)) {
|
||||||
$subject = wp_iso_descrambler($subject);
|
$subject = wp_iso_descrambler($subject);
|
||||||
}
|
}
|
||||||
if (get_settings('use_phoneemail')) {
|
|
||||||
$subject = explode(get_settings('phoneemail_separator'), $subject);
|
|
||||||
$subject = trim($subject[0]);
|
|
||||||
}
|
|
||||||
if (!ereg(get_settings('subjectprefix'), $subject)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (preg_match('/Date: /', $line)) { // of the form '20 Mar 2002 20:32:37'
|
if (preg_match('/Date: /', $line)) { // of the form '20 Mar 2002 20:32:37'
|
||||||
$ddate = trim($line);
|
$ddate = trim($line);
|
||||||
@ -109,27 +85,12 @@ for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|||||||
$post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U);
|
$post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
endforeach;
|
||||||
|
|
||||||
$ddate_today = time() + ($time_difference * 3600);
|
$ddate_today = time() + ($time_difference * 3600);
|
||||||
$ddate_difference_days = ($ddate_today - $ddate_U) / 86400;
|
$ddate_difference_days = ($ddate_today - $ddate_U) / 86400;
|
||||||
|
|
||||||
|
|
||||||
# starts buffering the output
|
|
||||||
ob_start();
|
|
||||||
|
|
||||||
if ($ddate_difference_days > 14) {
|
|
||||||
echo 'Too old<br />';
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (preg_match('/'.get_settings('subjectprefix').'/', $subject)) {
|
|
||||||
|
|
||||||
$userpassstring = '';
|
|
||||||
|
|
||||||
echo '<div style="border: 1px dashed #999; padding: 10px; margin: 10px;">';
|
|
||||||
echo "<p><b>$iCount</b></p><p><b>Subject: </b>$subject</p>\n";
|
|
||||||
|
|
||||||
$subject = trim(str_replace(get_settings('subjectprefix'), '', $subject));
|
$subject = trim(str_replace(get_settings('subjectprefix'), '', $subject));
|
||||||
|
|
||||||
if ($content_type == 'multipart/alternative') {
|
if ($content_type == 'multipart/alternative') {
|
||||||
@ -143,111 +104,34 @@ for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|||||||
echo "<p><b>Content-type:</b> $content_type, <b>boundary:</b> $boundary</p>\n";
|
echo "<p><b>Content-type:</b> $content_type, <b>boundary:</b> $boundary</p>\n";
|
||||||
echo "<p><b>Raw content:</b><br /><pre>".$content.'</pre></p>';
|
echo "<p><b>Raw content:</b><br /><pre>".$content.'</pre></p>';
|
||||||
|
|
||||||
$btpos = strpos($content, get_settings('bodyterminator'));
|
|
||||||
if ($btpos) {
|
|
||||||
$content = substr($content, 0, $btpos);
|
|
||||||
}
|
|
||||||
$content = trim($content);
|
$content = trim($content);
|
||||||
|
|
||||||
$blah = explode("\n", $content);
|
|
||||||
$firstline = $blah[0];
|
|
||||||
$secondline = $blah[1];
|
|
||||||
|
|
||||||
if (get_settings('use_phoneemail')) {
|
|
||||||
$btpos = strpos($firstline, get_settings('phoneemail_separator'));
|
|
||||||
if ($btpos) {
|
|
||||||
$userpassstring = trim(substr($firstline, 0, $btpos));
|
|
||||||
$content = trim(substr($content, $btpos+strlen(get_settings('phoneemail_separator')), strlen($content)));
|
|
||||||
$btpos = strpos($content, get_settings('phoneemail_separator'));
|
|
||||||
if ($btpos) {
|
|
||||||
$userpassstring = trim(substr($content, 0, $btpos));
|
|
||||||
$content = trim(substr($content, $btpos+strlen(get_settings('phoneemail_separator')), strlen($content)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$contentfirstline = $blah[1];
|
|
||||||
} else {
|
|
||||||
$userpassstring = $firstline;
|
|
||||||
$contentfirstline = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
$flat = 999.0;
|
|
||||||
$flon = 999.0;
|
|
||||||
$secondlineParts = explode(':',$secondline);
|
|
||||||
if(strncmp($secondlineParts[0],"POS",3)==0) {
|
|
||||||
echo "Found POS:<br>\n";
|
|
||||||
//echo "Second parts is:".$secondlineParts[1];
|
|
||||||
// the second line is the postion listing line
|
|
||||||
$secLineParts = explode(',',$secondlineParts[1]);
|
|
||||||
$flatStr = $secLineParts[0];
|
|
||||||
$flonStr = $secLineParts[1];
|
|
||||||
//echo "String are ".$flatStr.$flonStr;
|
|
||||||
$flat = floatval($secLineParts[0]);
|
|
||||||
$flon = floatval($secLineParts[1]);
|
|
||||||
//echo "values are ".$flat." and ".$flon;
|
|
||||||
// ok remove that position... we should not have it in the final output
|
|
||||||
$content = str_replace($secondline,'',$content);
|
|
||||||
}
|
|
||||||
|
|
||||||
$blah = explode(':', $userpassstring);
|
|
||||||
$user_login = $blah[0];
|
|
||||||
$user_pass = md5($blah[1]);
|
|
||||||
|
|
||||||
$content = $contentfirstline.str_replace($firstline, '', $content);
|
|
||||||
$content = trim($content);
|
$content = trim($content);
|
||||||
|
|
||||||
echo "<p><b>Login:</b> $user_login, <b>Pass:</b> $user_pass</p>";
|
|
||||||
|
|
||||||
$sql = "SELECT ID, user_level FROM $tableusers WHERE user_login='$user_login' AND user_pass='$user_pass' ORDER BY ID DESC LIMIT 1";
|
|
||||||
$result = $wpdb->get_row($sql);
|
|
||||||
|
|
||||||
if (!$result) {
|
|
||||||
echo '<p><b>Wrong login or password.</b></p></div>';
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$user_level = $result->user_level;
|
|
||||||
$post_author = $result->ID;
|
|
||||||
|
|
||||||
if ($user_level > 0) {
|
|
||||||
|
|
||||||
$post_title = xmlrpc_getposttitle($content);
|
$post_title = xmlrpc_getposttitle($content);
|
||||||
$post_categories[] = xmlrpc_getpostcategory($content);
|
|
||||||
|
|
||||||
if ($post_title == '') {
|
if ($post_title == '') $post_title = $subject;
|
||||||
$post_title = $subject;
|
|
||||||
}
|
if (empty($post_categories)) $post_categories[] = get_settings('default_category');
|
||||||
if (empty($post_categories)) {
|
|
||||||
$post_categories[] = get_settings('default_category');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$thisisforfunonly) {
|
|
||||||
$post_title = addslashes(trim($post_title));
|
$post_title = addslashes(trim($post_title));
|
||||||
$content = preg_replace("|\n([^\n])|", " $1", $content);
|
$content = preg_replace("|\n([^\n])|", " $1", $content);
|
||||||
$content = addslashes(trim($content));
|
$content = addslashes(trim($content));
|
||||||
if($flat > 500) {
|
|
||||||
$sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_modified, post_modified_gmt) VALUES ($post_author, '$post_date', '$post_date_gmt', '$content', '$post_title', '$post_date', '$post_date_gmt')";
|
|
||||||
} else {
|
$sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_modified, post_modified_gmt) VALUES (1, '$post_date', '$post_date_gmt', '$content', '$post_title', '$post_date', '$post_date_gmt')";
|
||||||
$sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_modified, post_modified_gmt, post_lat, post_lon) VALUES ($post_author, '$post_date', '$post_date_gmt', '$content', '$post_title', '$post_date', '$post_date_gmt', $flat, $flon)";
|
|
||||||
}
|
|
||||||
$result = $wpdb->query($sql);
|
$result = $wpdb->query($sql);
|
||||||
$post_ID = $wpdb->insert_id;
|
$post_ID = $wpdb->insert_id;
|
||||||
|
|
||||||
if (isset($sleep_after_edit) && $sleep_after_edit > 0) {
|
|
||||||
sleep($sleep_after_edit);
|
|
||||||
}
|
|
||||||
|
|
||||||
$blog_ID = 1;
|
|
||||||
if($flat < 500) {
|
|
||||||
pingGeoUrl($post_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
pingback($content, $post_ID);
|
pingback($content, $post_ID);
|
||||||
}
|
|
||||||
echo "\n<p><b>Posted title:</b> $post_title<br />";
|
echo "\n<p><b>Posted title:</b> $post_title<br />";
|
||||||
echo "\n<b>Posted content:</b><br /><pre>".$content.'</pre></p>';
|
echo "\n<b>Posted content:</b><br /><pre>".$content.'</pre></p>';
|
||||||
|
|
||||||
if (!$post_categories) $post_categories[] = 1;
|
if (!$post_categories) $post_categories[] = 1;
|
||||||
foreach ($post_categories as $post_category) {
|
foreach ($post_categories as $post_category) :
|
||||||
$post_category = intval($post_category);
|
$post_category = intval($post_category);
|
||||||
|
|
||||||
// Double check it's not there already
|
// Double check it's not there already
|
||||||
@ -261,31 +145,10 @@ for ($iCount=1; $iCount<=$Count; $iCount++) {
|
|||||||
($post_ID, $post_category)
|
($post_ID, $post_category)
|
||||||
");
|
");
|
||||||
}
|
}
|
||||||
}
|
endforeach;
|
||||||
|
|
||||||
if(!$pop3->delete($iCount)) {
|
endfor;
|
||||||
echo '<p>Oops '.$pop3->ERROR.'</p></div>';
|
|
||||||
$pop3->reset();
|
|
||||||
exit;
|
|
||||||
} else {
|
|
||||||
echo "<p>Mission complete, message <strong>$iCount</strong> deleted.</p>";
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo '<p><strong>Level 0 users can\'t post.</strong></p>';
|
|
||||||
}
|
|
||||||
echo '</div>';
|
|
||||||
if ($output_debugging_info) {
|
|
||||||
ob_end_flush();
|
|
||||||
} else {
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$pop3->quit();
|
$pop3->quit();
|
||||||
|
|
||||||
timer_stop($output_debugging_info);
|
|
||||||
exit;
|
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user