I have a strange situation: Mailhandler and Feeds have worked ok, until probably after one update one of the extended headers started to appear both where it should go, into the Order field of my content type, but also in the body of the node.

I checked the settings, tried to change the order of the fields at the Mapping settings for the Node Processor, but it still generates the same issue.

Thanks for any advice/help.

Here is the importer setting:

$feeds_importer = new stdClass();
$feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
$feeds_importer->api_version = 1;
$feeds_importer->id = 'notes';
$feeds_importer->config = array(
  'name' => 'Notes',
  'description' => 'Notes from mail',
  'fetcher' => array(
    'plugin_key' => 'MailhandlerFetcher',
    'config' => array(
      'filter' => 'MailhandlerFiltersNodes',
    ),
  ),
  'parser' => array(
    'plugin_key' => 'MailhandlerParser',
    'config' => array(
      'available_commands' => 'status
order',
      'authenticate_plugin' => 'MailhandlerAuthenticateDefault',
      'extended_headers' => '',
    ),
  ),
  'processor' => array(
    'plugin_key' => 'FeedsNodeProcessor',
    'config' => array(
      'expire' => '-1',
      'author' => '1',
      'authorize' => 1,
      'mappings' => array(
        0 => array(
          'source' => 'subject',
          'target' => 'title',
          'unique' => 0,
        ),
        1 => array(
          'source' => 'status',
          'target' => 'status',
          'unique' => FALSE,
        ),
        2 => array(
          'source' => 'order',
          'target' => 'vsx_slide_order',
          'unique' => FALSE,
        ),
        3 => array(
          'source' => 'body_text',
          'target' => 'body',
          'unique' => FALSE,
        ),
        4 => array(
          'source' => 'attachments',
          'target' => 'vsx_slide_image',
          'unique' => FALSE,
        ),
      ),
      'update_existing' => '0',
      'input_format' => 'plain_text',
      'skip_hash_check' => 0,
      'bundle' => 'vsx_slide',
    ),
  ),
  'content_type' => '',
  'update' => 0,
  'import_period' => '1800',
  'expire_period' => 3600,
  'import_on_create' => 1,
  'process_in_background' => 0,
);

Comments

intu.cz’s picture

Status: Active » Closed (fixed)