Github user kevdoran commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2111#discussion_r139978847
--- Diff:
nifi-nar-bundles/nifi-email-bundle/nifi-email-processors/src/main/java/org/apache/nifi/processors/email/ExtractEmailHeaders.java
---
@@ -103,6 +103,22 @@
.defaultValue("x-mailer")
.build();
+ private static final AllowableValue STRICT_ADDRESSING = new
AllowableValue("true", "Strict Address Parsing", "Strict email address format
will be enforced. FlowFiles will be transfered to the failure relationship if
the email address is invalid.");
--- End diff --
Just ran a build with -Pcontrib-check, and these two lines are failing the
style guide due to length (max line width is 200 columns).
@btwood can you fix?
---