Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(email connector): implement new email connector, Outbound SMTP, IMAP and POP3, Inbound IMAP #3132

Merged
merged 26 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
608ec48
feat(email connector): first checkpoint on email connector
mathias-vandaele Aug 19, 2024
50e7ebb
feat(email connector): first checkpoint on email connector 2
mathias-vandaele Aug 19, 2024
e62c1a9
feat(email connector): first checkpoint on email connector 3
mathias-vandaele Aug 19, 2024
f8aef94
feat(email connector): first checkpoint on email connector 4
mathias-vandaele Aug 20, 2024
531d50b
feat(email connector): first checkpoint on email connector 5
mathias-vandaele Aug 20, 2024
dfd865b
feat(email connector): first checkpoint on email connector 5
mathias-vandaele Aug 22, 2024
2572bf6
feat(email connector): first checkpoint on email connector 6
mathias-vandaele Aug 23, 2024
8ad463d
feat(email connector): first checkpoint on email connector 7
mathias-vandaele Aug 26, 2024
83240b4
feat(email connector): put everything inside a directory
mathias-vandaele Aug 26, 2024
e6383e2
feat(email connector): checkpoint on email connector 8
mathias-vandaele Aug 27, 2024
4c389b8
feat(email connector): checkpoint on email connector 9
mathias-vandaele Aug 27, 2024
f93dc95
feat(email connector): checkpoint on email connector 10
mathias-vandaele Aug 27, 2024
9acc02f
feat(email connector): checkpoint on email connector 11
mathias-vandaele Aug 28, 2024
e3ab650
feat(email connector): checkpoint on email connector 12
mathias-vandaele Aug 29, 2024
849afc5
feat(email connector): checkpoint on email connector 13
mathias-vandaele Aug 29, 2024
78981c7
feat(email connector): checkpoint on email connector 15
mathias-vandaele Aug 30, 2024
8f2a38e
feat(email connector): checkpoint on email connector 16
mathias-vandaele Aug 30, 2024
82a24af
feat(email connector): remove local application.properties
mathias-vandaele Aug 30, 2024
4aa792b
feat(email connector): tests addition
mathias-vandaele Aug 30, 2024
8dded81
feat(email connector): applies correction after PR reviews
mathias-vandaele Sep 9, 2024
511b044
feat(email connector): applies correction after PR reviews
mathias-vandaele Sep 11, 2024
74385e3
feat(email connector): modify the attachment management
mathias-vandaele Sep 11, 2024
7a418b9
feat(email connector): inbound checkpoint
mathias-vandaele Sep 13, 2024
5b392e1
feat(email connector): inbound inbound refactor and labels refinment
mathias-vandaele Sep 16, 2024
42954e9
feat(email connector): inbound inbound refactor and labels refinment 2
mathias-vandaele Sep 16, 2024
d57798c
feat(email connector): inbound inbound refactor and labels refinment 3
mathias-vandaele Sep 16, 2024
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
4 changes: 4 additions & 0 deletions bundle/default-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
<groupId>io.camunda.connector</groupId>
<artifactId>connector-aws-sagemaker</artifactId>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-email</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
5 changes: 5 additions & 0 deletions bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@
<artifactId>connector-aws-sagemaker</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-email</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Loading
Loading