Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mail-ms-exchange-oauth2/Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ And you should see this output:
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.7.5)
:: Spring Boot :: (v4.1.1)

2022-10-24 19:19:58.705 INFO 2274709 --- [ main] o.a.c.e.mail.oauth2.CamelApplication : Starting CamelApplication
2022-10-24 19:19:58.707 INFO 2274709 --- [ main] o.a.c.e.mail.oauth2.CamelApplication : No active profile set, falling back to 1 default profile: "default"
Expand Down
2 changes: 1 addition & 1 deletion mail-ms-exchange-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
with IMAP protocol and access email data for Office 365 users using OAuth2 authentication</description>

<properties>
<msal4j-version>1.15.1</msal4j-version>
<msal4j-version>1.26.0</msal4j-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<category>Mail</category>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public RouteBuilder routeBuilder(){
@Override
public void configure() throws Exception {
from("imaps://outlook.office365.com:993?" +
"delay="+conf.getPollInterval()+"}&" +
"delay="+conf.getPollInterval()+"&" +
"authenticator=#exchangeAuthenticator&" +
"mail.imaps.auth.mechanisms=XOAUTH2&" +
"debugMode="+conf.isDebug()+"&" +
Expand Down
Loading