blob: 2425983fb14ddefc45926aa93af7dde45f088053 [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.imap.CamelImapSourceConnector",
"artifactId": "camel-imap-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-imap-source",
"type": "source",
"version": "0.7.2",
"description": "Send and receive emails using imap, pop3 and smtp protocols."
},
"properties": {
"camel.source.path.host": {
"name": "camel.source.path.host",
"description": "The mail server host name",
"priority": "HIGH",
"required": "true"
},
"camel.source.path.port": {
"name": "camel.source.path.port",
"description": "The port number of the mail server",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.bridgeErrorHandler": {
"name": "camel.source.endpoint.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.closeFolder": {
"name": "camel.source.endpoint.closeFolder",
"description": "Whether the consumer should close the folder after polling. Setting this option to false and having disconnect=false as well, then the consumer keep the folder open between polls.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.copyTo": {
"name": "camel.source.endpoint.copyTo",
"description": "After processing a mail message, it can be copied to a mail folder with the given name. You can override this configuration value, with a header with the key copyTo, allowing you to copy messages to folder names configured at runtime.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.delete": {
"name": "camel.source.endpoint.delete",
"description": "Deletes the messages after they have been processed. This is done by setting the DELETED flag on the mail message. If false, the SEEN flag is set instead. As of Camel 2.10 you can override this configuration option by setting a header with the key delete to determine if the mail should be deleted or not.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.disconnect": {
"name": "camel.source.endpoint.disconnect",
"description": "Whether the consumer should disconnect after polling. If enabled this forces Camel to connect on each poll.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.handleFailedMessage": {
"name": "camel.source.endpoint.handleFailedMessage",
"description": "If the mail consumer cannot retrieve a given mail message, then this option allows to handle the caused exception by the consumer's error handler. By enable the bridge error handler on the consumer, then the Camel routing error handler can handle the exception instead. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maxMessagesPerPoll": {
"name": "camel.source.endpoint.maxMessagesPerPoll",
"description": "Specifies the maximum number of messages to gather per poll. By default, no maximum is set. Can be used to set a limit of e.g. 1000 to avoid downloading thousands of files when the server starts up. Set a value of 0 or negative to disable this option.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.mimeDecodeHeaders": {
"name": "camel.source.endpoint.mimeDecodeHeaders",
"description": "This option enables transparent MIME decoding and unfolding for mail headers.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.moveTo": {
"name": "camel.source.endpoint.moveTo",
"description": "After processing a mail message, it can be moved to a mail folder with the given name. You can override this configuration value, with a header with the key moveTo, allowing you to move messages to folder names configured at runtime.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.peek": {
"name": "camel.source.endpoint.peek",
"description": "Will mark the javax.mail.Message as peeked before processing the mail message. This applies to IMAPMessage messages types only. By using peek the mail will not be eager marked as SEEN on the mail server, which allows us to rollback the mail message if there is an error processing in Camel.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sendEmptyMessageWhenIdle": {
"name": "camel.source.endpoint.sendEmptyMessageWhenIdle",
"description": "If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.skipFailedMessage": {
"name": "camel.source.endpoint.skipFailedMessage",
"description": "If the mail consumer cannot retrieve a given mail message, then this option allows to skip the message and move on to retrieve the next mail message. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.unseen": {
"name": "camel.source.endpoint.unseen",
"description": "Whether to limit by unseen mails only.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exceptionHandler": {
"name": "camel.source.endpoint.exceptionHandler",
"description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exchangePattern": {
"name": "camel.source.endpoint.exchangePattern",
"description": "Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"InOnly",
"InOut",
"InOptionalOut"
]
},
"camel.source.endpoint.fetchSize": {
"name": "camel.source.endpoint.fetchSize",
"description": "Sets the maximum number of messages to consume during a poll. This can be used to avoid overloading a mail server, if a mailbox folder contains a lot of messages. Default value of -1 means no fetch size and all messages will be consumed. Setting the value to 0 is a special corner case, where Camel will not consume any messages at all.",
"defaultValue": "-1",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.folderName": {
"name": "camel.source.endpoint.folderName",
"description": "The folder to poll.",
"defaultValue": "\"INBOX\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.mailUidGenerator": {
"name": "camel.source.endpoint.mailUidGenerator",
"description": "A pluggable MailUidGenerator that allows to use custom logic to generate UUID of the mail message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.mapMailMessage": {
"name": "camel.source.endpoint.mapMailMessage",
"description": "Specifies whether Camel should map the received mail message to Camel body\/headers\/attachments. If set to true, the body of the mail message is mapped to the body of the Camel IN message, the mail headers are mapped to IN headers, and the attachments to Camel IN attachment message. If this option is set to false then the IN message contains a raw javax.mail.Message. You can retrieve this raw message by calling exchange.getIn().getBody(javax.mail.Message.class).",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.pollStrategy": {
"name": "camel.source.endpoint.pollStrategy",
"description": "A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.postProcessAction": {
"name": "camel.source.endpoint.postProcessAction",
"description": "Refers to an MailBoxPostProcessAction for doing post processing tasks on the mailbox once the normal processing ended.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.additionalJavaMailProperties": {
"name": "camel.source.endpoint.additionalJavaMailProperties",
"description": "Sets additional java mail properties, that will append\/override any default properties that is set based on all the other options. This is useful if you need to add some special options but want to keep the others as is.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.alternativeBodyHeader": {
"name": "camel.source.endpoint.alternativeBodyHeader",
"description": "Specifies the key to an IN message header that contains an alternative email body. For example, if you send emails in text\/html format and want to provide an alternative mail body for non-HTML email clients, set the alternative mail body with this key as a header.",
"defaultValue": "\"CamelMailAlternativeBody\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.attachmentsContentTransferEncodingResolver": {
"name": "camel.source.endpoint.attachmentsContentTransferEncodingResolver",
"description": "To use a custom AttachmentsContentTransferEncodingResolver to resolve what content-type-encoding to use for attachments.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.authenticator": {
"name": "camel.source.endpoint.authenticator",
"description": "The authenticator for login. If set then the password and username are ignored. Can be used for tokens which can expire and therefore must be read dynamically.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.binding": {
"name": "camel.source.endpoint.binding",
"description": "Sets the binding used to convert from a Camel message to and from a Mail message",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.connectionTimeout": {
"name": "camel.source.endpoint.connectionTimeout",
"description": "The connection timeout in milliseconds.",
"defaultValue": "30000",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.contentType": {
"name": "camel.source.endpoint.contentType",
"description": "The mail message content type. Use text\/html for HTML mails.",
"defaultValue": "\"text\/plain\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.contentTypeResolver": {
"name": "camel.source.endpoint.contentTypeResolver",
"description": "Resolver to determine Content-Type for file attachments.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.debugMode": {
"name": "camel.source.endpoint.debugMode",
"description": "Enable debug mode on the underlying mail framework. The SUN Mail framework logs the debug messages to System.out by default.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.headerFilterStrategy": {
"name": "camel.source.endpoint.headerFilterStrategy",
"description": "To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter headers.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.ignoreUnsupportedCharset": {
"name": "camel.source.endpoint.ignoreUnsupportedCharset",
"description": "Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.ignoreUriScheme": {
"name": "camel.source.endpoint.ignoreUriScheme",
"description": "Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.javaMailProperties": {
"name": "camel.source.endpoint.javaMailProperties",
"description": "Sets the java mail options. Will clear any default properties and only use the properties provided for this method.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.session": {
"name": "camel.source.endpoint.session",
"description": "Specifies the mail session that camel should use for all mail interactions. Useful in scenarios where mail sessions are created and managed by some other resource, such as a JavaEE container. When using a custom mail session, then the hostname and port from the mail session will be used (if configured on the session).",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.synchronous": {
"name": "camel.source.endpoint.synchronous",
"description": "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.useInlineAttachments": {
"name": "camel.source.endpoint.useInlineAttachments",
"description": "Whether to use disposition inline or attachment.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.idempotentRepository": {
"name": "camel.source.endpoint.idempotentRepository",
"description": "A pluggable repository org.apache.camel.spi.IdempotentRepository which allows to cluster consuming from the same mailbox, and let the repository coordinate whether a mail message is valid for the consumer to process. By default no repository is in use.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.idempotentRepositoryRemoveOnCommit": {
"name": "camel.source.endpoint.idempotentRepositoryRemoveOnCommit",
"description": "When using idempotent repository, then when the mail message has been successfully processed and is committed, should the message id be removed from the idempotent repository (default) or be kept in the repository. By default its assumed the message id is unique and has no value to be kept in the repository, because the mail message will be marked as seen\/moved or deleted to prevent it from being consumed again. And therefore having the message id stored in the idempotent repository has little value. However this option allows to store the message id, for whatever reason you may have.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.searchTerm": {
"name": "camel.source.endpoint.searchTerm",
"description": "Refers to a javax.mail.search.SearchTerm which allows to filter mails based on search criteria such as subject, body, from, sent after a certain date etc.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffErrorThreshold": {
"name": "camel.source.endpoint.backoffErrorThreshold",
"description": "The number of subsequent error polls (failed due some error) that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffIdleThreshold": {
"name": "camel.source.endpoint.backoffIdleThreshold",
"description": "The number of subsequent idle polls that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffMultiplier": {
"name": "camel.source.endpoint.backoffMultiplier",
"description": "To let the scheduled polling consumer backoff if there has been a number of subsequent idles\/errors in a row. The multiplier is then the number of polls that will be skipped before the next actual attempt is happening again. When this option is in use then backoffIdleThreshold and\/or backoffErrorThreshold must also be configured.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.delay": {
"name": "camel.source.endpoint.delay",
"description": "Milliseconds before the next poll.",
"defaultValue": "60000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.greedy": {
"name": "camel.source.endpoint.greedy",
"description": "If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.initialDelay": {
"name": "camel.source.endpoint.initialDelay",
"description": "Milliseconds before the first poll starts.",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.repeatCount": {
"name": "camel.source.endpoint.repeatCount",
"description": "Specifies a maximum limit of number of fires. So if you set it to 1, the scheduler will only fire once. If you set it to 5, it will only fire five times. A value of zero or negative means fire forever.",
"defaultValue": "0L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.runLoggingLevel": {
"name": "camel.source.endpoint.runLoggingLevel",
"description": "The consumer logs a start\/complete log line when it polls. This option allows you to configure the logging level for that. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]",
"defaultValue": "\"TRACE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"TRACE",
"DEBUG",
"INFO",
"WARN",
"ERROR",
"OFF"
]
},
"camel.source.endpoint.scheduledExecutorService": {
"name": "camel.source.endpoint.scheduledExecutorService",
"description": "Allows for configuring a custom\/shared thread pool to use for the consumer. By default each consumer has its own single threaded thread pool.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.scheduler": {
"name": "camel.source.endpoint.scheduler",
"description": "To use a cron scheduler from either camel-spring or camel-quartz component. Use value spring or quartz for built in scheduler",
"defaultValue": "\"none\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.schedulerProperties": {
"name": "camel.source.endpoint.schedulerProperties",
"description": "To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.startScheduler": {
"name": "camel.source.endpoint.startScheduler",
"description": "Whether the scheduler should be auto started.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.timeUnit": {
"name": "camel.source.endpoint.timeUnit",
"description": "Time unit for initialDelay and delay options. One of: [NANOSECONDS] [MICROSECONDS] [MILLISECONDS] [SECONDS] [MINUTES] [HOURS] [DAYS]",
"defaultValue": "\"MILLISECONDS\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"NANOSECONDS",
"MICROSECONDS",
"MILLISECONDS",
"SECONDS",
"MINUTES",
"HOURS",
"DAYS"
]
},
"camel.source.endpoint.useFixedDelay": {
"name": "camel.source.endpoint.useFixedDelay",
"description": "Controls if fixed delay or fixed rate is used. See ScheduledExecutorService in JDK for details.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.password": {
"name": "camel.source.endpoint.password",
"description": "The password for login. See also setAuthenticator(MailAuthenticator).",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sslContextParameters": {
"name": "camel.source.endpoint.sslContextParameters",
"description": "To configure security using SSLContextParameters.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.username": {
"name": "camel.source.endpoint.username",
"description": "The username for login. See also setAuthenticator(MailAuthenticator).",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sortTerm": {
"name": "camel.source.endpoint.sortTerm",
"description": "Sorting order for messages. Only natively supported for IMAP. Emulated to some degree when using POP3 or when IMAP server does not have the SORT capability.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.bridgeErrorHandler": {
"name": "camel.component.imap.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.closeFolder": {
"name": "camel.component.imap.closeFolder",
"description": "Whether the consumer should close the folder after polling. Setting this option to false and having disconnect=false as well, then the consumer keep the folder open between polls.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.copyTo": {
"name": "camel.component.imap.copyTo",
"description": "After processing a mail message, it can be copied to a mail folder with the given name. You can override this configuration value, with a header with the key copyTo, allowing you to copy messages to folder names configured at runtime.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.delete": {
"name": "camel.component.imap.delete",
"description": "Deletes the messages after they have been processed. This is done by setting the DELETED flag on the mail message. If false, the SEEN flag is set instead. As of Camel 2.10 you can override this configuration option by setting a header with the key delete to determine if the mail should be deleted or not.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.disconnect": {
"name": "camel.component.imap.disconnect",
"description": "Whether the consumer should disconnect after polling. If enabled this forces Camel to connect on each poll.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.handleFailedMessage": {
"name": "camel.component.imap.handleFailedMessage",
"description": "If the mail consumer cannot retrieve a given mail message, then this option allows to handle the caused exception by the consumer's error handler. By enable the bridge error handler on the consumer, then the Camel routing error handler can handle the exception instead. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.mimeDecodeHeaders": {
"name": "camel.component.imap.mimeDecodeHeaders",
"description": "This option enables transparent MIME decoding and unfolding for mail headers.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.moveTo": {
"name": "camel.component.imap.moveTo",
"description": "After processing a mail message, it can be moved to a mail folder with the given name. You can override this configuration value, with a header with the key moveTo, allowing you to move messages to folder names configured at runtime.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.peek": {
"name": "camel.component.imap.peek",
"description": "Will mark the javax.mail.Message as peeked before processing the mail message. This applies to IMAPMessage messages types only. By using peek the mail will not be eager marked as SEEN on the mail server, which allows us to rollback the mail message if there is an error processing in Camel.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.skipFailedMessage": {
"name": "camel.component.imap.skipFailedMessage",
"description": "If the mail consumer cannot retrieve a given mail message, then this option allows to skip the message and move on to retrieve the next mail message. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.unseen": {
"name": "camel.component.imap.unseen",
"description": "Whether to limit by unseen mails only.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.fetchSize": {
"name": "camel.component.imap.fetchSize",
"description": "Sets the maximum number of messages to consume during a poll. This can be used to avoid overloading a mail server, if a mailbox folder contains a lot of messages. Default value of -1 means no fetch size and all messages will be consumed. Setting the value to 0 is a special corner case, where Camel will not consume any messages at all.",
"defaultValue": "-1",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.folderName": {
"name": "camel.component.imap.folderName",
"description": "The folder to poll.",
"defaultValue": "\"INBOX\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.mapMailMessage": {
"name": "camel.component.imap.mapMailMessage",
"description": "Specifies whether Camel should map the received mail message to Camel body\/headers\/attachments. If set to true, the body of the mail message is mapped to the body of the Camel IN message, the mail headers are mapped to IN headers, and the attachments to Camel IN attachment message. If this option is set to false then the IN message contains a raw javax.mail.Message. You can retrieve this raw message by calling exchange.getIn().getBody(javax.mail.Message.class).",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.additionalJavaMailProperties": {
"name": "camel.component.imap.additionalJavaMailProperties",
"description": "Sets additional java mail properties, that will append\/override any default properties that is set based on all the other options. This is useful if you need to add some special options but want to keep the others as is.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.alternativeBodyHeader": {
"name": "camel.component.imap.alternativeBodyHeader",
"description": "Specifies the key to an IN message header that contains an alternative email body. For example, if you send emails in text\/html format and want to provide an alternative mail body for non-HTML email clients, set the alternative mail body with this key as a header.",
"defaultValue": "\"CamelMailAlternativeBody\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.attachmentsContentTransferEncodingResolver": {
"name": "camel.component.imap.attachmentsContentTransferEncodingResolver",
"description": "To use a custom AttachmentsContentTransferEncodingResolver to resolve what content-type-encoding to use for attachments.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.authenticator": {
"name": "camel.component.imap.authenticator",
"description": "The authenticator for login. If set then the password and username are ignored. Can be used for tokens which can expire and therefore must be read dynamically.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.autowiredEnabled": {
"name": "camel.component.imap.autowiredEnabled",
"description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.configuration": {
"name": "camel.component.imap.configuration",
"description": "Sets the Mail configuration",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.connectionTimeout": {
"name": "camel.component.imap.connectionTimeout",
"description": "The connection timeout in milliseconds.",
"defaultValue": "30000",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.contentType": {
"name": "camel.component.imap.contentType",
"description": "The mail message content type. Use text\/html for HTML mails.",
"defaultValue": "\"text\/plain\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.contentTypeResolver": {
"name": "camel.component.imap.contentTypeResolver",
"description": "Resolver to determine Content-Type for file attachments.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.debugMode": {
"name": "camel.component.imap.debugMode",
"description": "Enable debug mode on the underlying mail framework. The SUN Mail framework logs the debug messages to System.out by default.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.ignoreUnsupportedCharset": {
"name": "camel.component.imap.ignoreUnsupportedCharset",
"description": "Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.ignoreUriScheme": {
"name": "camel.component.imap.ignoreUriScheme",
"description": "Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.javaMailProperties": {
"name": "camel.component.imap.javaMailProperties",
"description": "Sets the java mail options. Will clear any default properties and only use the properties provided for this method.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.session": {
"name": "camel.component.imap.session",
"description": "Specifies the mail session that camel should use for all mail interactions. Useful in scenarios where mail sessions are created and managed by some other resource, such as a JavaEE container. When using a custom mail session, then the hostname and port from the mail session will be used (if configured on the session).",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.useInlineAttachments": {
"name": "camel.component.imap.useInlineAttachments",
"description": "Whether to use disposition inline or attachment.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.headerFilterStrategy": {
"name": "camel.component.imap.headerFilterStrategy",
"description": "To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.password": {
"name": "camel.component.imap.password",
"description": "The password for login. See also setAuthenticator(MailAuthenticator).",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.sslContextParameters": {
"name": "camel.component.imap.sslContextParameters",
"description": "To configure security using SSLContextParameters.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.useGlobalSslContextParameters": {
"name": "camel.component.imap.useGlobalSslContextParameters",
"description": "Enable usage of global SSL context parameters.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.imap.username": {
"name": "camel.component.imap.username",
"description": "The username for login. See also setAuthenticator(MailAuthenticator).",
"priority": "MEDIUM",
"required": "false"
}
}
}