Github user mattyb149 commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/710#discussion_r73518325
  
    --- Diff: 
nifi-nar-bundles/nifi-email-bundle/nifi-email-processors/src/main/java/org/apache/nifi/processors/email/ConsumeIMAP.java
 ---
    @@ -0,0 +1,91 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +package org.apache.nifi.processors.email;
    +
    +import java.util.ArrayList;
    +import java.util.Collections;
    +import java.util.List;
    +
    +import org.apache.nifi.annotation.behavior.InputRequirement;
    +import org.apache.nifi.annotation.behavior.InputRequirement.Requirement;
    +import org.apache.nifi.annotation.documentation.CapabilityDescription;
    +import org.apache.nifi.annotation.documentation.Tags;
    +import org.apache.nifi.components.PropertyDescriptor;
    +import org.apache.nifi.processor.ProcessContext;
    +import org.apache.nifi.processor.util.StandardValidators;
    +import org.springframework.integration.mail.ImapMailReceiver;
    +
    +@InputRequirement(Requirement.INPUT_FORBIDDEN)
    +@CapabilityDescription("Consumes messages from Email Server using IMAP 
protocol. "
    +        + "The raw-bytes of each received email message are written as 
contents of the FlowFile")
    +@Tags({ "Email", "Imap", "Get", "Ingest", "Ingress", "Message", "Consume" 
})
    +public class ConsumeIMAP extends AbstractEmailProcessor<ImapMailReceiver> {
    +
    +    public static final PropertyDescriptor SHOULD_MARK_READ = new 
PropertyDescriptor.Builder()
    +            .name("Mark Messages as Read")
    +            .description("Specify if messages should be marked as read 
after retrieval.")
    +            .required(true)
    +            .allowableValues("true", "false")
    +            .defaultValue("false")
    +            .addValidator(StandardValidators.BOOLEAN_VALIDATOR)
    +            .build();
    +    public static final PropertyDescriptor USE_SSL = new 
PropertyDescriptor.Builder()
    +            .name("Use SSL")
    +            .description("Specifies if IMAP connection must be obtained 
via SSL encypted connection (i.e., IMAPS)")
    --- End diff --
    
    Typo in "encrypted". Also the description should include any 
instructions/guidance on how to configure NiFi and/or the processor in order to 
use IMAPS, especially since the default value is true. When I tested this, I 
got the following error:
    Failed to receive messages from Email server: 
[javax.mail.MessagingException - sun.security.validator.ValidatorException: 
PKIX path building failed: 
sun.security.provider.certpath.SunCertPathBuilderException: unable to find 
valid certification path to requested target
    
    I assume I'm missing something like a truststore but not sure where to set 
that up. Is it possible instead of a "Use SSL" property to use an SSLContext 
Controller Service?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to