‘ . sprintf( __( ‘Author is %s’ ), $author ) . ‘
‘;
$userdata = get_user_by( ‘email’, $author );
if ( ! empty( $userdata ) ) {
$post_author = $userdata->ID;
$author_found = true;
} } }
if ( preg_match( ‘/Date: /i’, $line ) ) { // of the form ’20 Mar 2002 20:32:37 +0100′
$ddate
= str_replace( ‘Date: ‘, ”, trim( $line ) );
$ddate
= preg_replace( ‘!s*(.+)s*$!’, ”, $ddate ); // remove parenthesised timezone string if it exists, as this confuses strtotime
$ddate_U
= strtotime( $ddate );
$post_date
= gmdate( ‘Y-m-d H:i:s’, $ddate_U + $time_difference );
$post_date_gmt = gmdate( ‘Y-m-d H:i:s’, $ddate_U );
} } } // Set $post_status based on $author_found and on author’s publish_posts capability if ( $author_found ) {
$user
= new WP_User( $post_author );
$post_status = ( $user->has_cap( ‘publish_posts’ ) ) ? ‘publish’ : ‘pending’; } else {
// Author not found in DB, set status to pending. Author already set to admin.
$post_status = ‘pending’; }
$subject = trim( $subject );
if ( $content_type == ‘multipart/alternative’ ) {
$content = explode( ‘–‘ . $boundary, $content );
$content = $content[2];
// 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, ‘
$content = trim( $content );
/**
* Filters the original content of the email.
*
* Give Post-By-Email extending plugins full access to the content, either
* the raw content, or the content of the last quoted-printable section.
*
* @since 2.8.0
*
* @param string $content The original email content.
*/ $content = apply_filters( ‘wp_mail_original_content’, $content );
if ( false !== stripos( $content_transfer_encoding, ‘quoted-printable’ ) ) {
$content = quoted_printable_decode( $content ); }
if ( function_exists( ‘iconv’ ) && ! empty( $charset ) ) {
$content = iconv( $charset, get_option( ‘blog_charset’ ), $content ); }
// Captures any text in the body after $phone_delim as the body $content = explode( $phone_delim, $content );
$content = empty( $content[1] ) ? $content[0] : $content[1];
$content = trim( $content );
/**
* Filters the content of the post submitted by email before saving.
*
* @since 1.2.0
*
* @param string $content The email content.
*/ $post_content = apply_filters( ‘phone_content’, $content );
$post_title = xmlrpc_getposttitle( $content );
if ( $post_title == ” ) {
$post_title = $subject; }
$post_category = array( get_option( ‘default_email_category’ ) );
$post_data = compact( ‘post_content’, ‘post_title’, ‘post_date’, ‘post_date_gmt’, ‘post_author’, ‘post_category’, ‘post_status’ ); $post_data = wp_slash( $post_data );
$post_ID = wp_insert_post( $post_data ); if ( is_wp_error( $post_ID ) ) {
echo “n” . $post_ID->get_error_message(); }
// We couldn’t post, for whatever reason. Better move forward to the next email. if ( empty( $post_ID ) ) {
continue; }
/**
* Fires after a post submitted by email is published.
*
* @since 1.2.0
*
* @param int $post_ID The post ID.
*/ do_action( ‘publish_phone’, $post_ID );
echo “n
” . __( ‘Author:’ ) . ‘ ‘ . esc_html( $post_author ) . ‘
‘; echo “n
” . __( ‘Posted title:’ ) . ‘ ‘ . esc_html( $post_title ) . ‘
‘;
if ( ! $pop3->delete( $i ) ) {
echo ‘
‘ . sprintf(
/* translators: %s: POP3 error */
__( ‘Oops: %s’ ),
esc_html( $pop3->ERROR )
) . ‘ ‘;
$pop3->reset();
exit; } else {
echo ‘
‘ . sprintf(
/* translators: %s: the message ID */
__( ‘Mission complete. Message %s deleted.’ ),
‘‘ . $i . ‘‘
) . ‘ ‘; } }
$pop3->quit();
The images, poems and songs on this site are copyrighted by the respective artist and are placed here for evaluation and entertainment purposes only. No profits are made on this site from their use. Please support these artists and purchase their music and their creations.