This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 1e61784 CAMEL-13214: Regen
1e61784 is described below
commit 1e61784650d8272633ae3270bb6e052fb239c13e
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Mar 7 04:50:28 2019 +0100
CAMEL-13214: Regen
---
components/camel-mail/src/main/docs/mail-component.adoc | 3 ++-
.../mail/springboot/MailComponentConfiguration.java | 14 ++++++++++++++
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/components/camel-mail/src/main/docs/mail-component.adoc
b/components/camel-mail/src/main/docs/mail-component.adoc
index 5bf8c98..184cf63 100644
--- a/components/camel-mail/src/main/docs/mail-component.adoc
+++ b/components/camel-mail/src/main/docs/mail-component.adoc
@@ -78,7 +78,7 @@ You can append query options to the URI in the following
format,
// component options: START
-The Mail component supports 4 options, which are listed below.
+The Mail component supports 5 options, which are listed below.
@@ -88,6 +88,7 @@ The Mail component supports 4 options, which are listed below.
| *configuration* (advanced) | Sets the Mail configuration | |
MailConfiguration
| *contentTypeResolver* (advanced) | Resolver to determine Content-Type for
file attachments. | | ContentTypeResolver
| *useGlobalSslContext Parameters* (security) | Enable usage of global SSL
context parameters. | false | boolean
+| *headerFilterStrategy* (filter) | To use a custom
org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel
message. | | HeaderFilterStrategy
| *resolveProperty Placeholders* (advanced) | Whether the component should
resolve property placeholders on itself when starting. Only properties which
are of String type can use property placeholders. | true | boolean
|===
// component options: END
diff --git
a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
index 89caaf5..76bc62f 100644
---
a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
+++
b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
@@ -55,6 +55,12 @@ public class MailComponentConfiguration
*/
private Boolean useGlobalSslContextParameters = false;
/**
+ * To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter
+ * header to and from Camel message. The option is a
+ * org.apache.camel.spi.HeaderFilterStrategy type.
+ */
+ private String headerFilterStrategy;
+ /**
* Whether the component should resolve property placeholders on itself
when
* starting. Only properties which are of String type can use property
* placeholders.
@@ -87,6 +93,14 @@ public class MailComponentConfiguration
this.useGlobalSslContextParameters = useGlobalSslContextParameters;
}
+ public String getHeaderFilterStrategy() {
+ return headerFilterStrategy;
+ }
+
+ public void setHeaderFilterStrategy(String headerFilterStrategy) {
+ this.headerFilterStrategy = headerFilterStrategy;
+ }
+
public Boolean getResolvePropertyPlaceholders() {
return resolvePropertyPlaceholders;
}