2003-04-01 16:12:34 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* Gets the email message from the user's mailbox to add as
|
2008-12-02 19:40:16 +01:00
|
|
|
* a WordPress post. Mailbox connection information must be
|
|
|
|
* configured under Settings > Writing
|
2008-05-25 17:50:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
/** Make sure that the WordPress bootstrap has run before continuing. */
|
2008-05-21 07:59:27 +02:00
|
|
|
require(dirname(__FILE__) . '/wp-load.php');
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2010-02-25 23:06:10 +01:00
|
|
|
if ( ! apply_filters( 'enable_post_by_email_configuration', true ) )
|
2010-04-11 12:41:54 +02:00
|
|
|
wp_die( __( 'This action has been disabled by the administrator.' ) );
|
2010-01-26 21:53:59 +01:00
|
|
|
|
2009-08-28 09:17:03 +02:00
|
|
|
/** Allow a plugin to do a complete takeover of Post by Email **/
|
2009-09-18 22:43:05 +02:00
|
|
|
do_action('wp-mail.php');
|
2009-08-28 09:17:03 +02:00
|
|
|
|
2009-09-10 22:05:24 +02:00
|
|
|
/** Get the POP3 class with which to access the mailbox. */
|
|
|
|
require_once( ABSPATH . WPINC . '/class-pop3.php' );
|
|
|
|
|
2009-08-06 21:58:47 +02:00
|
|
|
/** Only check at this interval for new messages. */
|
|
|
|
if ( !defined('WP_MAIL_INTERVAL') )
|
2009-08-07 19:11:39 +02:00
|
|
|
define('WP_MAIL_INTERVAL', 300); // 5 minutes
|
2009-08-06 21:58:47 +02:00
|
|
|
|
|
|
|
$last_checked = get_transient('mailserver_last_checked');
|
|
|
|
|
|
|
|
if ( $last_checked )
|
|
|
|
wp_die(__('Slow down cowboy, no need to check for new mails so often!'));
|
|
|
|
|
|
|
|
set_transient('mailserver_last_checked', true, WP_MAIL_INTERVAL);
|
|
|
|
|
2012-09-25 07:26:19 +02:00
|
|
|
$time_difference = get_option('gmt_offset') * HOUR_IN_SECONDS;
|
2004-05-19 07:43:32 +02:00
|
|
|
|
2004-09-05 02:24:28 +02:00
|
|
|
$phone_delim = '::';
|
2004-07-27 17:04:37 +02:00
|
|
|
|
2003-04-01 16:12:34 +02:00
|
|
|
$pop3 = new POP3();
|
|
|
|
|
2010-05-26 04:42:15 +02:00
|
|
|
if ( !$pop3->connect( get_option('mailserver_url'), get_option('mailserver_port') ) || !$pop3->user( get_option('mailserver_login') ) )
|
2010-05-08 21:34:59 +02:00
|
|
|
wp_die( esc_html( $pop3->ERROR ) );
|
|
|
|
|
|
|
|
$count = $pop3->pass( get_option('mailserver_pass') );
|
|
|
|
|
2010-05-26 04:42:15 +02:00
|
|
|
if( false === $count )
|
2010-05-08 21:34:59 +02:00
|
|
|
wp_die( esc_html( $pop3->ERROR ) );
|
2010-05-26 04:42:15 +02:00
|
|
|
|
2010-05-08 21:34:59 +02:00
|
|
|
if( 0 === $count ) {
|
|
|
|
$pop3->quit();
|
|
|
|
wp_die( __('There doesn’t seem to be any new mail.') );
|
2008-12-02 19:40:16 +01:00
|
|
|
}
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
for ( $i = 1; $i <= $count; $i++ ) {
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-25 00:43:47 +02:00
|
|
|
$message = $pop3->get($i);
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
$bodysignal = false;
|
|
|
|
$boundary = '';
|
|
|
|
$charset = '';
|
2003-04-01 16:12:34 +02:00
|
|
|
$content = '';
|
|
|
|
$content_type = '';
|
2007-04-06 04:57:46 +02:00
|
|
|
$content_transfer_encoding = '';
|
2007-11-29 06:51:09 +01:00
|
|
|
$post_author = 1;
|
|
|
|
$author_found = false;
|
2007-04-06 04:57:46 +02:00
|
|
|
$dmonths = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
|
2008-12-02 19:40:16 +01:00
|
|
|
foreach ($message as $line) {
|
|
|
|
// body signal
|
|
|
|
if ( strlen($line) < 3 )
|
|
|
|
$bodysignal = true;
|
|
|
|
if ( $bodysignal ) {
|
2003-04-01 16:12:34 +02:00
|
|
|
$content .= $line;
|
|
|
|
} else {
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( preg_match('/Content-Type: /i', $line) ) {
|
2003-04-01 16:12:34 +02:00
|
|
|
$content_type = trim($line);
|
2008-12-02 19:40:16 +01:00
|
|
|
$content_type = substr($content_type, 14, strlen($content_type) - 14);
|
2003-04-01 16:12:34 +02:00
|
|
|
$content_type = explode(';', $content_type);
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( ! empty( $content_type[1] ) ) {
|
|
|
|
$charset = explode('=', $content_type[1]);
|
|
|
|
$charset = ( ! empty( $charset[1] ) ) ? trim($charset[1]) : '';
|
|
|
|
}
|
2003-04-01 16:12:34 +02:00
|
|
|
$content_type = $content_type[0];
|
|
|
|
}
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( preg_match('/Content-Transfer-Encoding: /i', $line) ) {
|
2007-04-06 04:57:46 +02:00
|
|
|
$content_transfer_encoding = trim($line);
|
2008-12-02 19:40:16 +01:00
|
|
|
$content_transfer_encoding = substr($content_transfer_encoding, 27, strlen($content_transfer_encoding) - 27);
|
2007-04-06 04:57:46 +02:00
|
|
|
$content_transfer_encoding = explode(';', $content_transfer_encoding);
|
|
|
|
$content_transfer_encoding = $content_transfer_encoding[0];
|
|
|
|
}
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( ( $content_type == 'multipart/alternative' ) && ( false !== strpos($line, 'boundary="') ) && ( '' == $boundary ) ) {
|
2003-04-01 16:12:34 +02:00
|
|
|
$boundary = trim($line);
|
|
|
|
$boundary = explode('"', $boundary);
|
|
|
|
$boundary = $boundary[1];
|
|
|
|
}
|
2004-05-19 07:43:32 +02:00
|
|
|
if (preg_match('/Subject: /i', $line)) {
|
2003-04-01 16:12:34 +02:00
|
|
|
$subject = trim($line);
|
2008-12-02 19:40:16 +01:00
|
|
|
$subject = substr($subject, 9, strlen($subject) - 9);
|
2004-07-27 17:04:37 +02:00
|
|
|
// Captures any text in the subject before $phone_delim as the subject
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( function_exists('iconv_mime_decode') ) {
|
|
|
|
$subject = iconv_mime_decode($subject, 2, get_option('blog_charset'));
|
|
|
|
} else {
|
|
|
|
$subject = wp_iso_descrambler($subject);
|
|
|
|
}
|
2004-07-27 17:04:37 +02:00
|
|
|
$subject = explode($phone_delim, $subject);
|
2004-07-26 17:57:32 +02:00
|
|
|
$subject = $subject[0];
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
2004-09-08 10:57:52 +02:00
|
|
|
|
2007-10-21 08:18:59 +02:00
|
|
|
// Set the author using the email address (From or Reply-To, the last used)
|
2004-09-08 10:57:52 +02:00
|
|
|
// otherwise use the site admin
|
2012-05-02 15:32:19 +02:00
|
|
|
if ( ! $author_found && preg_match( '/^(From|Reply-To): /', $line ) ) {
|
2007-10-21 08:18:59 +02:00
|
|
|
if ( preg_match('|[a-z0-9_.-]+@[a-z0-9_.-]+(?!.*<)|i', $line, $matches) )
|
|
|
|
$author = $matches[0];
|
|
|
|
else
|
|
|
|
$author = trim($line);
|
|
|
|
$author = sanitize_email($author);
|
2007-10-10 00:15:37 +02:00
|
|
|
if ( is_email($author) ) {
|
2008-12-02 19:40:16 +01:00
|
|
|
echo '<p>' . sprintf(__('Author is %s'), $author) . '</p>';
|
2011-08-05 18:57:31 +02:00
|
|
|
$userdata = get_user_by('email', $author);
|
2012-05-02 15:32:19 +02:00
|
|
|
if ( ! empty( $userdata ) ) {
|
2007-11-29 06:51:09 +01:00
|
|
|
$post_author = $userdata->ID;
|
|
|
|
$author_found = true;
|
|
|
|
}
|
|
|
|
}
|
2004-09-08 10:57:52 +02:00
|
|
|
}
|
|
|
|
|
2004-05-19 07:43:32 +02:00
|
|
|
if (preg_match('/Date: /i', $line)) { // of the form '20 Mar 2002 20:32:37'
|
2003-04-01 16:12:34 +02:00
|
|
|
$ddate = trim($line);
|
|
|
|
$ddate = str_replace('Date: ', '', $ddate);
|
|
|
|
if (strpos($ddate, ',')) {
|
2008-12-02 19:40:16 +01:00
|
|
|
$ddate = trim(substr($ddate, strpos($ddate, ',') + 1, strlen($ddate)));
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
|
|
|
$date_arr = explode(' ', $ddate);
|
|
|
|
$date_time = explode(':', $date_arr[3]);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2003-04-01 16:12:34 +02:00
|
|
|
$ddate_H = $date_time[0];
|
|
|
|
$ddate_i = $date_time[1];
|
|
|
|
$ddate_s = $date_time[2];
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2003-04-01 16:12:34 +02:00
|
|
|
$ddate_m = $date_arr[1];
|
|
|
|
$ddate_d = $date_arr[0];
|
|
|
|
$ddate_Y = $date_arr[2];
|
2008-12-02 19:40:16 +01:00
|
|
|
for ( $j = 0; $j < 12; $j++ ) {
|
|
|
|
if ( $ddate_m == $dmonths[$j] ) {
|
2004-07-26 17:57:32 +02:00
|
|
|
$ddate_m = $j+1;
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
|
|
|
}
|
2004-02-23 04:42:40 +01:00
|
|
|
|
2004-07-26 17:57:32 +02:00
|
|
|
$time_zn = intval($date_arr[4]) * 36;
|
2004-07-27 17:04:37 +02:00
|
|
|
$ddate_U = gmmktime($ddate_H, $ddate_i, $ddate_s, $ddate_m, $ddate_d, $ddate_Y);
|
2004-07-26 17:57:32 +02:00
|
|
|
$ddate_U = $ddate_U - $time_zn;
|
|
|
|
$post_date = gmdate('Y-m-d H:i:s', $ddate_U + $time_difference);
|
2004-03-25 03:45:32 +01:00
|
|
|
$post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U);
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
|
|
|
}
|
2008-12-02 19:40:16 +01:00
|
|
|
}
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2007-11-29 06:51:09 +01:00
|
|
|
// Set $post_status based on $author_found and on author's publish_posts capability
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( $author_found ) {
|
2007-11-29 06:51:09 +01:00
|
|
|
$user = new WP_User($post_author);
|
2008-12-02 19:40:16 +01:00
|
|
|
$post_status = ( $user->has_cap('publish_posts') ) ? 'publish' : 'pending';
|
2007-11-29 06:51:09 +01:00
|
|
|
} else {
|
2011-12-14 00:45:31 +01:00
|
|
|
// Author not found in DB, set status to pending. Author already set to admin.
|
2007-11-29 06:51:09 +01:00
|
|
|
$post_status = 'pending';
|
|
|
|
}
|
|
|
|
|
2009-03-18 03:43:45 +01:00
|
|
|
$subject = trim($subject);
|
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( $content_type == 'multipart/alternative' ) {
|
2004-04-25 00:43:47 +02:00
|
|
|
$content = explode('--'.$boundary, $content);
|
|
|
|
$content = $content[2];
|
2008-12-02 19:40:16 +01:00
|
|
|
// match case-insensitive content-transfer-encoding
|
|
|
|
if ( preg_match( '/Content-Transfer-Encoding: quoted-printable/i', $content, $delim) ) {
|
|
|
|
$content = explode($delim[0], $content);
|
|
|
|
$content = $content[1];
|
|
|
|
}
|
|
|
|
$content = strip_tags($content, '<img><p><br><i><b><u><em><strong><strike><font><span><div>');
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
2004-04-25 00:43:47 +02:00
|
|
|
$content = trim($content);
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2009-01-22 23:31:27 +01:00
|
|
|
//Give Post-By-Email extending plugins full access to the content
|
|
|
|
//Either the raw content or the content of the last quoted-printable section
|
|
|
|
$content = apply_filters('wp_mail_original_content', $content);
|
2009-03-18 03:43:45 +01:00
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( false !== stripos($content_transfer_encoding, "quoted-printable") ) {
|
2007-04-06 04:57:46 +02:00
|
|
|
$content = quoted_printable_decode($content);
|
|
|
|
}
|
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
if ( function_exists('iconv') && ! empty( $charset ) ) {
|
|
|
|
$content = iconv($charset, get_option('blog_charset'), $content);
|
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2004-07-27 17:04:37 +02:00
|
|
|
// Captures any text in the body after $phone_delim as the body
|
|
|
|
$content = explode($phone_delim, $content);
|
2008-12-02 19:40:16 +01:00
|
|
|
$content = empty( $content[1] ) ? $content[0] : $content[1];
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-25 00:43:47 +02:00
|
|
|
$content = trim($content);
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-09-05 04:03:51 +02:00
|
|
|
$post_content = apply_filters('phone_content', $content);
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-25 00:43:47 +02:00
|
|
|
$post_title = xmlrpc_getposttitle($content);
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-25 00:43:47 +02:00
|
|
|
if ($post_title == '') $post_title = $subject;
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
$post_category = array(get_option('default_email_category'));
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2005-02-01 14:21:12 +01:00
|
|
|
$post_data = compact('post_content','post_title','post_date','post_date_gmt','post_author','post_category', 'post_status');
|
2013-03-03 22:11:40 +01:00
|
|
|
$post_data = wp_slash($post_data);
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2007-03-23 03:05:29 +01:00
|
|
|
$post_ID = wp_insert_post($post_data);
|
2007-12-18 21:06:37 +01:00
|
|
|
if ( is_wp_error( $post_ID ) )
|
2007-09-18 18:32:22 +02:00
|
|
|
echo "\n" . $post_ID->get_error_message();
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
// We couldn't post, for whatever reason. Better move forward to the next email.
|
|
|
|
if ( empty( $post_ID ) )
|
2005-01-31 20:00:25 +01:00
|
|
|
continue;
|
|
|
|
|
2004-04-25 02:28:18 +02:00
|
|
|
do_action('publish_phone', $post_ID);
|
2004-01-13 10:23:41 +01:00
|
|
|
|
2009-05-18 17:11:07 +02:00
|
|
|
echo "\n<p>" . sprintf(__('<strong>Author:</strong> %s'), esc_html($post_author)) . '</p>';
|
|
|
|
echo "\n<p>" . sprintf(__('<strong>Posted title:</strong> %s'), esc_html($post_title)) . '</p>';
|
2004-01-13 10:23:41 +01:00
|
|
|
|
2005-01-31 20:00:25 +01:00
|
|
|
if(!$pop3->delete($i)) {
|
2009-05-18 17:11:07 +02:00
|
|
|
echo '<p>' . sprintf(__('Oops: %s'), esc_html($pop3->ERROR)) . '</p>';
|
2005-01-31 20:00:25 +01:00
|
|
|
$pop3->reset();
|
|
|
|
exit;
|
|
|
|
} else {
|
2011-12-14 00:45:31 +01:00
|
|
|
echo '<p>' . sprintf(__('Mission complete. Message <strong>%s</strong> deleted.'), $i) . '</p>';
|
2003-04-01 16:12:34 +02:00
|
|
|
}
|
|
|
|
|
2008-12-02 19:40:16 +01:00
|
|
|
}
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-25 00:43:47 +02:00
|
|
|
$pop3->quit();
|