Class MailboxReaderFactoryImpl
java.lang.Object
ch.tocco.nice2.messaging.mail.impl.MailboxReaderFactoryImpl
- All Implemented Interfaces:
MailboxReaderFactory
-
Nested Class Summary
Nested classes/interfaces inherited from interface ch.tocco.nice2.messaging.mail.api.MailboxReaderFactory
MailboxReaderFactory.Mode -
Constructor Summary
ConstructorsConstructorDescriptionMailboxReaderFactoryImpl(org.slf4j.Logger log, SessionFactory sessionFactory) -
Method Summary
Modifier and TypeMethodDescriptioncreateDirectoryReader(Path directory, @Nullable String pattern) Create a mailbox reader that reads in emails in a local directory.Creates a reader for messages in a folder which is specified by theurlargument.Creates a mail reader, that goes through all messages of the folder specified by theurlargument and all its subfolders.voidsetAdvancedAuth(boolean advancedAuth) voidsetAuthenticationScope(String authenticationScope) voidsetClientId(String clientId) voidsetClientSecret(String clientSecret) voidsetTokenEndpoint(String tokenEndpoint)
-
Constructor Details
-
MailboxReaderFactoryImpl
-
-
Method Details
-
setAdvancedAuth
@Value("${email.auth.advancedAuth}") public void setAdvancedAuth(boolean advancedAuth) -
setTokenEndpoint
-
setClientId
-
setClientSecret
-
setAuthenticationScope
@Value("${email.auth.oauth.authenticationScope}") public void setAuthenticationScope(String authenticationScope) -
createMailFolderReader
public MailboxReader createMailFolderReader(String url, MailboxReaderFactory.Mode mode) throws MailException Description copied from interface:MailboxReaderFactoryCreates a reader for messages in a folder which is specified by theurlargument. Theurlmust contain all information to connect to the mailbox. By default the protocols pop3 and imap are supported. For example, aurlmight look like this:imap://your.name%40gmail.com:password@imap.gmail.com:143/INBOXNote, that the url must be x-www-form-urlencoded.- Specified by:
createMailFolderReaderin interfaceMailboxReaderFactory- Parameters:
url- the url to one folder inside a mail boxmode- the mode used to open the folder- Returns:
- a reader for messages in the specified folder
- Throws:
MailException
-
createNestedMailFolderReader
public MailboxReader createNestedMailFolderReader(String url, MailboxReaderFactory.Mode mode) throws MailException Description copied from interface:MailboxReaderFactoryCreates a mail reader, that goes through all messages of the folder specified by theurlargument and all its subfolders. Theurlmust contain all information to connect to the mailbox. By default the protocols pop3 and imap are supported. For example, aurlmight look like this:imap://your.name%40gmail.com:password@imap.gmail.com:143/INBOXNote, that the url must be x-www-form-urlencoded.- Specified by:
createNestedMailFolderReaderin interfaceMailboxReaderFactory- Throws:
MailException
-
createDirectoryReader
Description copied from interface:MailboxReaderFactoryCreate a mailbox reader that reads in emails in a local directory. If a `pattern` is specified, the filename (without path) is glob-matched against it and only those that pass are read. It may be for example '*.eml' to only read files with eml extension.- Specified by:
createDirectoryReaderin interfaceMailboxReaderFactory
-