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 "Johnny Sørensen (JIRA)" <ji...@apache.org> on 2010/03/02 08:23:27 UTC

[jira] Created: (HUPA-67) Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)

Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)
------------------------------------------------------------------------------------------

                 Key: HUPA-67
                 URL: https://issues.apache.org/jira/browse/HUPA-67
             Project: JAMES Hupa
          Issue Type: Bug
          Components: server
    Affects Versions: 0.1
         Environment: Windows xp
            Reporter: Johnny Sørensen
            Assignee: Norman Maurer


== Solution == (see attached patch: add-appengine-api-1.0-sdk.patch)
Add dependency to /pom.xml:
            <dependency>
                <groupId>com.google.appengine</groupId>
                <artifactId>appengine-api-1.0-sdk</artifactId>
                <version>1.2.0</version>
            </dependency>
and, to /server/pom.xml:
            <dependency>
                <groupId>com.google.appengine</groupId>
                <artifactId>appengine-api-1.0-sdk</artifactId>
            </dependency>

== Problem ==
I run: mvn install
And got these errors:
------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[29,18] package javax.cache does not exist

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[30,18] package javax.cache does not exist

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[35,48] package com.google.appengine.api.memcache.stdimpl does not exist

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,10] cannot find symbol
symbol  : class Cache
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,24] cannot find symbol
symbol  : variable CacheManager
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,10] cannot find symbol
symbol  : class Cache
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,24] cannot find symbol
symbol  : variable CacheManager
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,10] cannot find symbol
symbol  : class Cache
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[192,16] cannot find symbol
symbol: variable GCacheFactory
            put(GCacheFactory.EXPIRATION_DELTA, 3600); 

C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,24] cannot find symbol
symbol  : variable CacheManager
location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem

----------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (HUPA-67) Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)

Posted by "Johnny Sørensen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HUPA-67?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Johnny Sørensen updated HUPA-67:
--------------------------------

    Attachment: add-appengine-api-1.0-sdk.patch

> Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)
> ------------------------------------------------------------------------------------------
>
>                 Key: HUPA-67
>                 URL: https://issues.apache.org/jira/browse/HUPA-67
>             Project: JAMES Hupa
>          Issue Type: Bug
>          Components: server
>    Affects Versions: 0.1
>         Environment: Windows xp
>            Reporter: Johnny Sørensen
>            Assignee: Norman Maurer
>         Attachments: add-appengine-api-1.0-sdk.patch
>
>
> == Solution == (see attached patch: add-appengine-api-1.0-sdk.patch)
> Add dependency to /pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>                 <version>1.2.0</version>
>             </dependency>
> and, to /server/pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>             </dependency>
> == Problem ==
> I run: mvn install
> And got these errors:
> ------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Compilation failure
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[29,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[30,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[35,48] package com.google.appengine.api.memcache.stdimpl does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[192,16] cannot find symbol
> symbol: variable GCacheFactory
>             put(GCacheFactory.EXPIRATION_DELTA, 3600); 
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> ----------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Assigned: (HUPA-67) Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)

Posted by "Manuel Carrasco Moñino (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HUPA-67?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Manuel Carrasco Moñino reassigned HUPA-67:
------------------------------------------

    Assignee: Manuel Carrasco Moñino  (was: Norman Maurer)

> Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)
> ------------------------------------------------------------------------------------------
>
>                 Key: HUPA-67
>                 URL: https://issues.apache.org/jira/browse/HUPA-67
>             Project: JAMES Hupa
>          Issue Type: Bug
>          Components: server
>    Affects Versions: 0.1
>         Environment: Windows xp
>            Reporter: Johnny Sørensen
>            Assignee: Manuel Carrasco Moñino
>         Attachments: add-appengine-api-1.0-sdk.patch
>
>
> == Solution == (see attached patch: add-appengine-api-1.0-sdk.patch)
> Add dependency to /pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>                 <version>1.2.0</version>
>             </dependency>
> and, to /server/pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>             </dependency>
> == Problem ==
> I run: mvn install
> And got these errors:
> ------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Compilation failure
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[29,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[30,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[35,48] package com.google.appengine.api.memcache.stdimpl does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[192,16] cannot find symbol
> symbol: variable GCacheFactory
>             put(GCacheFactory.EXPIRATION_DELTA, 3600); 
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> ----------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Resolved: (HUPA-67) Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)

Posted by "Johnny Sørensen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HUPA-67?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Johnny Sørensen resolved HUPA-67.
---------------------------------

    Resolution: Not A Problem

I am sorry, after deleting .m2\repository\gwtupload everything was ok.


> Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)
> ------------------------------------------------------------------------------------------
>
>                 Key: HUPA-67
>                 URL: https://issues.apache.org/jira/browse/HUPA-67
>             Project: JAMES Hupa
>          Issue Type: Bug
>          Components: server
>    Affects Versions: 0.1
>         Environment: Windows xp
>            Reporter: Johnny Sørensen
>            Assignee: Manuel Carrasco Moñino
>         Attachments: add-appengine-api-1.0-sdk.patch
>
>
> == Solution == (see attached patch: add-appengine-api-1.0-sdk.patch)
> Add dependency to /pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>                 <version>1.2.0</version>
>             </dependency>
> and, to /server/pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>             </dependency>
> == Problem ==
> I run: mvn install
> And got these errors:
> ------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Compilation failure
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[29,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[30,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[35,48] package com.google.appengine.api.memcache.stdimpl does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[192,16] cannot find symbol
> symbol: variable GCacheFactory
>             put(GCacheFactory.EXPIRATION_DELTA, 3600); 
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> ----------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Commented: (HUPA-67) Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)

Posted by "Manuel Carrasco Moñino (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HUPA-67?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840372#action_12840372 ] 

Manuel Carrasco Moñino commented on HUPA-67:
--------------------------------------------

This error doesn't happen to me neither in windows nor linux.
Could you remove the folder C:\java\.m2\repository\gwtupload, and send the full output of 'mvn clean package'



> Syntax error in gwtupload-0.5.6.jar due to missing dependency to appengine-api-1.0-sdk (?)
> ------------------------------------------------------------------------------------------
>
>                 Key: HUPA-67
>                 URL: https://issues.apache.org/jira/browse/HUPA-67
>             Project: JAMES Hupa
>          Issue Type: Bug
>          Components: server
>    Affects Versions: 0.1
>         Environment: Windows xp
>            Reporter: Johnny Sørensen
>            Assignee: Manuel Carrasco Moñino
>         Attachments: add-appengine-api-1.0-sdk.patch
>
>
> == Solution == (see attached patch: add-appengine-api-1.0-sdk.patch)
> Add dependency to /pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>                 <version>1.2.0</version>
>             </dependency>
> and, to /server/pom.xml:
>             <dependency>
>                 <groupId>com.google.appengine</groupId>
>                 <artifactId>appengine-api-1.0-sdk</artifactId>
>             </dependency>
> == Problem ==
> I run: mvn install
> And got these errors:
> ------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Compilation failure
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[29,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[30,18] package javax.cache does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[35,48] package com.google.appengine.api.memcache.stdimpl does not exist
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[122,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[140,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,10] cannot find symbol
> symbol  : class Cache
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[192,16] cannot find symbol
> symbol: variable GCacheFactory
>             put(GCacheFactory.EXPIRATION_DELTA, 3600); 
> C:\java\.m2\repository\gwtupload\gwtupload\0.5.6\gwtupload-0.5.6.jar(gwtupload/server/appengine/MemCacheFileItemFactory.java):[191,24] cannot find symbol
> symbol  : variable CacheManager
> location: class gwtupload.server.appengine.MemCacheFileItemFactory.CacheableFileItem
> ----------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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