You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by ro...@apache.org on 2019/05/29 08:51:52 UTC

[james-project] branch master updated (aa60bfb -> 153045c)

This is an automated email from the ASF dual-hosted git repository.

rouazana pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git.


    from aa60bfb  JAMES-2777 use junit 5 in server.task project
     new bb7753f  Upgrade Junit plateform version, previous is not compatible with last Eclipse
     new 949c558  JAMES-2779 IMAPMessageReader should disconnect when closed, not launch the IMAP CLOSE command
     new 153045c  Merge remote-tracking branch 'mine/imap-reader-disconnect'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                                 | 2 +-
 .../testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[james-project] 01/03: Upgrade Junit plateform version, previous is not compatible with last Eclipse

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rouazana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit bb7753f1645a26f959a3e165b85cdab2eaa16f02
Author: Raphael Ouazana <ra...@linagora.com>
AuthorDate: Tue May 28 17:51:32 2019 +0200

    Upgrade Junit plateform version, previous is not compatible with last Eclipse
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7100134..edc4a31 100644
--- a/pom.xml
+++ b/pom.xml
@@ -611,7 +611,7 @@
         <dnsjava.version>2.1.8</dnsjava.version>
         <junit.version>4.12</junit.version>
         <junit.jupiter.version>5.2.0</junit.jupiter.version>
-        <junit.plateform.version>1.2.0</junit.plateform.version>
+        <junit.plateform.version>1.4.1</junit.plateform.version>
         <junit.vintage.version>5.2.0</junit.vintage.version>
         <concurrent.version>1.3.4</concurrent.version>
         <xbean-spring.version>4.9</xbean-spring.version>


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[james-project] 03/03: Merge remote-tracking branch 'mine/imap-reader-disconnect'

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rouazana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit 153045cb6affa6b37d6daee8f5b2fb9c6ba25ca0
Merge: bb7753f 949c558
Author: Raphael Ouazana <ra...@linagora.com>
AuthorDate: Wed May 29 10:51:29 2019 +0200

    Merge remote-tracking branch 'mine/imap-reader-disconnect'

 .../testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[james-project] 02/03: JAMES-2779 IMAPMessageReader should disconnect when closed, not launch the IMAP CLOSE command

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rouazana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit 949c558502da13870e3648ccbdcf661330c41b11
Author: Raphael Ouazana <ra...@linagora.com>
AuthorDate: Mon May 27 11:27:20 2019 +0200

    JAMES-2779 IMAPMessageReader should disconnect when closed, not launch the IMAP CLOSE command
---
 .../testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java b/server/testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java
index 9dbe6ee..3edd527 100644
--- a/server/testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java
+++ b/server/testing/src/main/java/org/apache/james/utils/IMAPMessageReader.java
@@ -193,7 +193,7 @@ public class IMAPMessageReader extends ExternalResource implements Closeable, Af
     @Override
     public void close() throws IOException {
         if (imapClient.isConnected()) {
-            imapClient.close();
+            imapClient.disconnect();
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org