[jira] Created: (JSIEVE-13) How to configure JSieve with JAMES?

2007-01-23 Thread pradeep (JIRA)
How to configure JSieve with JAMES?
---

 Key: JSIEVE-13
 URL: https://issues.apache.org/jira/browse/JSIEVE-13
 Project: jSieve
  Issue Type: Test
 Environment: WindowsXP professional
Reporter: pradeep


Hi,
 I am trying to configure Jsieve with JAMES mail server, but I have no clue how 
to go ahead with this.
Is it like I have to write a mailet and a matcher using JSieve and configure 
these in JAMES config.xml or is there any other way to do it, or do I have 
these already present in JSieve and i just have to configure with JAMES?

Please do help me with a brief explanation.
Highly appreciated if examples are provided with.

Thanks in Advance
Pradeep

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Created: (JSIEVE-14) I am testing JSieve with james but getting error

2007-01-30 Thread Pradeep (JIRA)
I am testing JSieve with james but getting error


 Key: JSIEVE-14
 URL: https://issues.apache.org/jira/browse/JSIEVE-14
 Project: jSieve
  Issue Type: Test
 Environment: windows
Reporter: Pradeep


Hi,
I am testing JSieve with james but getting the following error, I am not sure 
whether this is an bug or error in the sieve script that is available for 
download with JSieve. Could you please check this out.

31/01/07 12:22:17 ERROR spoolmanager: Exception in processor transport
org.apache.jsieve.parser.generated.TokenMgrError: Lexical error at line 5, 
column 9.  Encountered: \ (34), after : 
at 
org.apache.jsieve.parser.generated.SieveParserTokenManager.getNextToken(SieveParserTokenManager.java:703)
at 
org.apache.jsieve.parser.generated.SieveParser.jj_ntk(SieveParser.java:567)
at 
org.apache.jsieve.parser.generated.SieveParser.string(SieveParser.java:372)
at 
org.apache.jsieve.parser.generated.SieveParser.string_list(SieveParser.java:408)
at 
org.apache.jsieve.parser.generated.SieveParser.argument(SieveParser.java:246)
at 
org.apache.jsieve.parser.generated.SieveParser.arguments(SieveParser.java:192)
at 
org.apache.jsieve.parser.generated.SieveParser.command(SieveParser.java:103)
at 
org.apache.jsieve.parser.generated.SieveParser.commands(SieveParser.java:72)
at 
org.apache.jsieve.parser.generated.SieveParser.start(SieveParser.java:20)
at org.apache.jsieve.SieveFactory.parse(SieveFactory.java:103)
at 
org.apache.jsieve.samples.james.JSieve.computeStartNode(JSieve.java:321)
at 
org.apache.jsieve.samples.james.JSieve.updateStartNode(JSieve.java:357)
at org.apache.jsieve.samples.james.JSieve.getStartNode(JSieve.java:286)
at org.apache.jsieve.samples.james.JSieve.evaluate(JSieve.java:232)
at org.apache.jsieve.samples.james.JSieve.service(JSieve.java:126)
at 
org.apache.james.transport.LinearProcessor.service(LinearProcessor.java:422)
at 
org.apache.james.transport.JamesSpoolManager.process(JamesSpoolManager.java:403)
at 
org.apache.james.transport.JamesSpoolManager.run(JamesSpoolManager.java:307)
at java.lang.Thread.run(Thread.java:534)
31/01/07 12:22:17 ERROR spoolmanager: An error occurred processing 
Mail1170226316839-0 through transport
31/01/07 12:22:17 ERROR spoolmanager: Result was error

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Updated: (JSIEVE-14) I am testing JSieve with james but getting error

2007-01-31 Thread Pradeep (JIRA)

 [ 
https://issues.apache.org/jira/browse/JSIEVE-14?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pradeep updated JSIEVE-14:
--


HI, 
  The script as for the RFC3028, I dont find anything wrong with the script as 
of now. Here is the script that I am using currently.

#
# Example Sieve Filter
# Declare any optional features or extension used by the script
#
require ['fileinto', 'reject'];

#
# Reject any large messages (note that the four leading dots get
# stuffed to three)
#
if size :over 1M
{
reject text:
Please do not send me large attachments.
Put your file on a server and send me the URL.
Thank you.
 Fred
.
;
stop;
}
#

# Handle messages from known mailing lists
# Move messages from IETF filter discussion list to filter folder
#
if header :is Sender [EMAIL PROTECTED]
{
fileinto filter;  # move to filter folder
}
#
# Keep all messages to or from people in my company
#
elsif address :domain :is [From, To] example.com
{
keep;   # keep in In folder
}

#
# Try and catch unsolicited email.  If a message is not to me,
# or it contains a subject known to be spam, file it away.
#
elsif anyof (not address :all :contains
   [To, Cc, Bcc] [EMAIL PROTECTED],
 header :matches subject
   [*make*money*fast*, *university*dipl*mas*])
{
# If message header does not contain my address,
# it's from a list.
fileinto spam;   # move to spam folder
}
else
{
# Move all other (non-company) mail to personal
# folder.
fileinto personal;
}

Please let me know once you check this script.

Thanks
Pradeep

 I am testing JSieve with james but getting error
 

 Key: JSIEVE-14
 URL: https://issues.apache.org/jira/browse/JSIEVE-14
 Project: jSieve
  Issue Type: Test
 Environment: windows
Reporter: Pradeep

 Hi,
 I am testing JSieve with james but getting the following error, I am not sure 
 whether this is an bug or error in the sieve script that is available for 
 download with JSieve. Could you please check this out.
 31/01/07 12:22:17 ERROR spoolmanager: Exception in processor transport
 org.apache.jsieve.parser.generated.TokenMgrError: Lexical error at line 5, 
 column 9.  Encountered: \ (34), after : 
   at 
 org.apache.jsieve.parser.generated.SieveParserTokenManager.getNextToken(SieveParserTokenManager.java:703)
   at 
 org.apache.jsieve.parser.generated.SieveParser.jj_ntk(SieveParser.java:567)
   at 
 org.apache.jsieve.parser.generated.SieveParser.string(SieveParser.java:372)
   at 
 org.apache.jsieve.parser.generated.SieveParser.string_list(SieveParser.java:408)
   at 
 org.apache.jsieve.parser.generated.SieveParser.argument(SieveParser.java:246)
   at 
 org.apache.jsieve.parser.generated.SieveParser.arguments(SieveParser.java:192)
   at 
 org.apache.jsieve.parser.generated.SieveParser.command(SieveParser.java:103)
   at 
 org.apache.jsieve.parser.generated.SieveParser.commands(SieveParser.java:72)
   at 
 org.apache.jsieve.parser.generated.SieveParser.start(SieveParser.java:20)
   at org.apache.jsieve.SieveFactory.parse(SieveFactory.java:103)
   at 
 org.apache.jsieve.samples.james.JSieve.computeStartNode(JSieve.java:321)
   at 
 org.apache.jsieve.samples.james.JSieve.updateStartNode(JSieve.java:357)
   at org.apache.jsieve.samples.james.JSieve.getStartNode(JSieve.java:286)
   at org.apache.jsieve.samples.james.JSieve.evaluate(JSieve.java:232)
   at org.apache.jsieve.samples.james.JSieve.service(JSieve.java:126)
   at 
 org.apache.james.transport.LinearProcessor.service(LinearProcessor.java:422)
   at 
 org.apache.james.transport.JamesSpoolManager.process(JamesSpoolManager.java:403)
   at 
 org.apache.james.transport.JamesSpoolManager.run(JamesSpoolManager.java:307)
   at java.lang.Thread.run(Thread.java:534)
 31/01/07 12:22:17 ERROR spoolmanager: An error occurred processing 
 Mail1170226316839-0 through transport
 31/01/07 12:22:17 ERROR spoolmanager: Result was error

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Created: (JAMES-773) java.lang.NoClassDefFoundError: org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory

2007-02-01 Thread Pradeep (JIRA)
java.lang.NoClassDefFoundError: 
org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory


 Key: JAMES-773
 URL: https://issues.apache.org/jira/browse/JAMES-773
 Project: James
  Issue Type: Test
Affects Versions: 2.3.0
 Environment: windows
Reporter: Pradeep
Priority: Blocker


Hi,
 while trying to start JAMES along with some additional jars, the following 
error is occured. Could anyone please let me know the solution to overcome this 
problem.



Using JAVA_HOME:  C:\j2sdk1.4.2_03

Phoenix 4.2

There was an uncaught exception:
-
--- Message ---
org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory
--- Stack Trace ---
java.lang.NoClassDefFoundError: 
org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at 
org.apache.avalon.phoenix.tools.verifier.SarVerifier.loadClass(SarVerifier.java:207)
at 
org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifyBlockType(SarVerifier.java:182)
at 
org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifyBlocksType(SarVerifier.java:165)
at 
org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifySar(SarVerifier.java:144)
at 
org.apache.avalon.phoenix.components.deployer.DefaultDeployer.deploy(DefaultDeployer.java:349)
at 
org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:542)
at 
org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:535)
at 
org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFiles(DefaultEmbeddor.java:520)
at 
org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployDefaultApplications(DefaultEmbeddor.java
:509)
at 
org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.execute(DefaultEmbeddor.java:268)
at org.apache.avalon.phoenix.frontends.CLIMain.run(CLIMain.java:198)
at org.apache.avalon.phoenix.frontends.CLIMain.execute(CLIMain.java:184)
at org.apache.avalon.phoenix.frontends.CLIMain.main(CLIMain.java:145)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.avalon.phoenix.launcher.Main.startup(Main.java:128)
at org.apache.avalon.phoenix.launcher.Main.main(Main.java:83)

-
The log file may contain further details of error.
Please check the configuration files and restart Phoenix.
If the problem persists, contact the Avalon project.  See
http://jakarta.apache.org/avalon for more information.
Shutting down Phoenix.


Thanks 
Pradeep

-- 
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: 

[jira] Commented: (JAMES-773) java.lang.NoClassDefFoundError: org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory

2007-02-05 Thread Pradeep (JIRA)

[ 
https://issues.apache.org/jira/browse/JAMES-773?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12470157
 ] 

Pradeep commented on JAMES-773:
---

Hi,
Thanks for your do concern, there was some problem with the jars that i 
used. I was trying to integrate JSieve with JAMES, and its done.

Thanks 
Pradeep

 java.lang.NoClassDefFoundError: 
 org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory
 

 Key: JAMES-773
 URL: https://issues.apache.org/jira/browse/JAMES-773
 Project: James
  Issue Type: Test
Affects Versions: 2.3.0
 Environment: windows
Reporter: Pradeep
Priority: Blocker

 Hi,
  while trying to start JAMES along with some additional jars, the following 
 error is occured. Could anyone please let me know the solution to overcome 
 this problem.
 Using JAVA_HOME:  C:\j2sdk1.4.2_03
 Phoenix 4.2
 There was an uncaught exception:
 -
 --- Message ---
 org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory
 --- Stack Trace ---
 java.lang.NoClassDefFoundError: 
 org/apache/avalon/cornerstone/services/connection/AbstractHandlerFactory
 at java.lang.ClassLoader.defineClass0(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
 at 
 java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
 at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
 at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
 at java.lang.ClassLoader.defineClass0(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
 at 
 java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
 at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
 at 
 org.apache.avalon.phoenix.tools.verifier.SarVerifier.loadClass(SarVerifier.java:207)
 at 
 org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifyBlockType(SarVerifier.java:182)
 at 
 org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifyBlocksType(SarVerifier.java:165)
 at 
 org.apache.avalon.phoenix.tools.verifier.SarVerifier.verifySar(SarVerifier.java:144)
 at 
 org.apache.avalon.phoenix.components.deployer.DefaultDeployer.deploy(DefaultDeployer.java:349)
 at 
 org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:542)
 at 
 org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:535)
 at 
 org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFiles(DefaultEmbeddor.java:520)
 at 
 org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployDefaultApplications(DefaultEmbeddor.java
 :509)
 at 
 org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.execute(DefaultEmbeddor.java:268)
 at org.apache.avalon.phoenix.frontends.CLIMain.run(CLIMain.java:198)
 at 
 org.apache.avalon.phoenix.frontends.CLIMain.execute(CLIMain.java:184)
 at org.apache.avalon.phoenix.frontends.CLIMain.main(CLIMain.java:145)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:324)
 at org.apache.avalon.phoenix.launcher.Main.startup(Main.java:128)
 at org.apache.avalon.phoenix.launcher.Main.main(Main.java:83)
 -
 The log file may contain further 

[jira] [Updated] (JAMES-3981) Getting ClosedChannelException during James-server-jpa-guice v3.3.0

2024-02-07 Thread Pradeep (Jira)


 [ 
https://issues.apache.org/jira/browse/JAMES-3981?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pradeep updated JAMES-3981:
---
Description: 
Hi,

Getting ClosedChannelException during James-server-jpa-guice v3.3.0  start up 
and  "Connection closed for" continuously. Java11 is used. Kindly suggest how 
to fix this issue. 


java.nio.channels.ClosedChannelException: null
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.discard(ChunkedWriteHandler.java:168)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.flush(ChunkedWriteHandler.java:192)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:121)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
        at 
org.jboss.netty.handler.execution.ExecutionHandler.handleDownstream(ExecutionHandler.java:176)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
        at org.jboss.netty.channel.Channels.write(Channels.java:704)
        at org.jboss.netty.channel.Channels.write(Channels.java:671)
        at 
org.jboss.netty.channel.AbstractChannel.write(AbstractChannel.java:347)
        at 
org.apache.james.protocols.netty.NettyProtocolTransport.writeToClient(NettyProtocolTransport.java:104)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponseToClient(AbstractProtocolTransport.java:145)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponse(AbstractProtocolTransport.java:64)
        at 
org.apache.james.protocols.netty.BasicChannelUpstreamHandler.channelConnected(BasicChannelUpstreamHandler.java:111)
        at 
org.apache.james.smtpserver.netty.SMTPChannelUpstreamHandler.channelConnected(SMTPChannelUpstreamHandler.java:54)
        at 
org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:100)

 

  was:
Hi,

Getting ClosedChannelException during James-server-jpa-guice v3.3.0  start up 
and  "Connection closed for" continuously. Java11 is used. Kindly suggest how 
to fix this issue. 

 

0:38:18.175 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - SMTP Service 
handler connection timeout is: 360
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - SMTP Service 
connection backlog is: 200
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractProtocolAsyncServer - This SMTP server 
requires authentication.
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractProtocolAsyncServer - No maximum 
message size is enforced for this server.
10:38:18.307 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:18.655 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:18.710 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:19.389 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection 
established from 169.73.162.80
10:38:19.395 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection closed 
for 169.73.162.80
10:38:19.397 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Unable to process 
request
java.nio.channels.ClosedChannelException: null
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.discard(ChunkedWriteHandler.java:168)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.flush(ChunkedWriteHandler.java:192)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:121)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
        at 
org.jboss.netty.handler.execution.ExecutionHandler.handleDownstream(ExecutionHandler.java:176)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
        at org.jboss.netty.channel.Channels.write(Channels.java:704)
        at org.jboss.netty.channel.Channels.write(Channels.java:671)
        at 
org.jboss.netty.channel.AbstractChannel.write(AbstractChannel.java:347)
        at 
org.apache.james.protocols.netty.NettyProtocolTransport.writeToClient(NettyProtocolTransport.java:104)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponseToClient(AbstractProtocolTransport.java:145)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponse(AbstractProtocolTransport.java:64)
        at 

[jira] [Created] (JAMES-3983) Admin help required in JIRA

2024-02-07 Thread Pradeep (Jira)
Pradeep created JAMES-3983:
--

 Summary: Admin help required in JIRA
 Key: JAMES-3983
 URL: https://issues.apache.org/jira/browse/JAMES-3983
 Project: James Server
  Issue Type: Bug
  Components: James Core
Reporter: Pradeep


Can you please delete description history in: JAMES-3981. I do not have 
permission to do so. If history cannot be deleted, then pls delete his Jira 
completely. IP information need to be removed from everywhere in description 
and history. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Updated] (JAMES-3983) Admin help required in JIRA

2024-02-07 Thread Pradeep (Jira)


 [ 
https://issues.apache.org/jira/browse/JAMES-3983?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pradeep updated JAMES-3983:
---
Description: Can you please delete description history in: JAMES-3981. I do 
not have permission to do so. If history cannot be deleted, then pls delete the 
Jira completely. IP information need to be removed from everywhere in 
description and history.   (was: Can you please delete description history in: 
JAMES-3981. I do not have permission to do so. If history cannot be deleted, 
then pls delete his Jira completely. IP information need to be removed from 
everywhere in description and history. )

> Admin help required in JIRA
> ---
>
> Key: JAMES-3983
> URL: https://issues.apache.org/jira/browse/JAMES-3983
> Project: James Server
>  Issue Type: Bug
>  Components: James Core
>Reporter: Pradeep
>Priority: Major
>
> Can you please delete description history in: JAMES-3981. I do not have 
> permission to do so. If history cannot be deleted, then pls delete the Jira 
> completely. IP information need to be removed from everywhere in description 
> and history. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Commented] (JAMES-3983) Admin help required in JIRA

2024-02-07 Thread Pradeep (Jira)


[ 
https://issues.apache.org/jira/browse/JAMES-3983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17815543#comment-17815543
 ] 

Pradeep commented on JAMES-3983:


[~btellier]  can you delete 3981? I even don't see an option to delete that 
JIRA. I am ok with the deletion. 

> Admin help required in JIRA
> ---
>
> Key: JAMES-3983
> URL: https://issues.apache.org/jira/browse/JAMES-3983
> Project: James Server
>  Issue Type: Bug
>  Components: James Core
>Reporter: Pradeep
>Priority: Major
>
> Can you please delete description history in: JAMES-3981. I do not have 
> permission to do so. If history cannot be deleted, then pls delete the Jira 
> completely. IP information need to be removed from everywhere in description 
> and history. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Created] (JAMES-3984) Getting ClosedChannelException during James-server-jpa-guice v3.3.0

2024-02-07 Thread Pradeep (Jira)
Pradeep created JAMES-3984:
--

 Summary: Getting ClosedChannelException during 
James-server-jpa-guice v3.3.0
 Key: JAMES-3984
 URL: https://issues.apache.org/jira/browse/JAMES-3984
 Project: James Server
  Issue Type: Bug
  Components: James Core
Affects Versions: 3.3.0
Reporter: Pradeep


Hi,

Getting ClosedChannelException during James-server-jpa-guice v3.3.0  start up 
and  "Connection closed for" continuously. Java11 is used. Kindly suggest how 
to fix this issue. 


java.nio.channels.ClosedChannelException: null
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.discard(ChunkedWriteHandler.java:168)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.flush(ChunkedWriteHandler.java:192)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:121)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
        at 
org.jboss.netty.handler.execution.ExecutionHandler.handleDownstream(ExecutionHandler.java:176)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
        at org.jboss.netty.channel.Channels.write(Channels.java:704)
        at org.jboss.netty.channel.Channels.write(Channels.java:671)
        at 
org.jboss.netty.channel.AbstractChannel.write(AbstractChannel.java:347)
        at 
org.apache.james.protocols.netty.NettyProtocolTransport.writeToClient(NettyProtocolTransport.java:104)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponseToClient(AbstractProtocolTransport.java:145)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponse(AbstractProtocolTransport.java:64)
        at 
org.apache.james.protocols.netty.BasicChannelUpstreamHandler.channelConnected(BasicChannelUpstreamHandler.java:111)
        at 
org.apache.james.smtpserver.netty.SMTPChannelUpstreamHandler.channelConnected(SMTPChannelUpstreamHandler.java:54)
        at 
org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:100)

 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Created] (JAMES-3981) Getting ClosedChannelException during James-server-jpa-guice v3.3.0

2024-02-02 Thread Pradeep (Jira)
Pradeep created JAMES-3981:
--

 Summary: Getting ClosedChannelException during 
James-server-jpa-guice v3.3.0
 Key: JAMES-3981
 URL: https://issues.apache.org/jira/browse/JAMES-3981
 Project: James Server
  Issue Type: Bug
  Components: James Core
Affects Versions: 3.3.0
Reporter: Pradeep


Hi,

Getting ClosedChannelException during James-server-jpa-guice v3.3.0  start up 
and  "Connection closed for" continuously. Java11 is used. Kindly suggest how 
to fix this issue. 

 

0:38:18.175 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - SMTP Service 
handler connection timeout is: 360
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - SMTP Service 
connection backlog is: 200
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractProtocolAsyncServer - This SMTP server 
requires authentication.
10:38:18.175 [INFO ] o.a.j.p.l.n.AbstractProtocolAsyncServer - No maximum 
message size is enforced for this server.
10:38:18.307 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:18.655 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:18.710 [INFO ] o.a.j.p.l.n.AbstractConfigurableAsyncServer - Init SMTP 
Service done
10:38:19.389 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection 
established from 169.73.162.80
10:38:19.395 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection closed 
for 169.73.162.80
10:38:19.397 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Unable to process 
request
java.nio.channels.ClosedChannelException: null
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.discard(ChunkedWriteHandler.java:168)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.flush(ChunkedWriteHandler.java:192)
        at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:121)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
        at 
org.jboss.netty.handler.execution.ExecutionHandler.handleDownstream(ExecutionHandler.java:176)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
        at 
org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
        at org.jboss.netty.channel.Channels.write(Channels.java:704)
        at org.jboss.netty.channel.Channels.write(Channels.java:671)
        at 
org.jboss.netty.channel.AbstractChannel.write(AbstractChannel.java:347)
        at 
org.apache.james.protocols.netty.NettyProtocolTransport.writeToClient(NettyProtocolTransport.java:104)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponseToClient(AbstractProtocolTransport.java:145)
        at 
org.apache.james.protocols.api.AbstractProtocolTransport.writeResponse(AbstractProtocolTransport.java:64)
        at 
org.apache.james.protocols.netty.BasicChannelUpstreamHandler.channelConnected(BasicChannelUpstreamHandler.java:111)
        at 
org.apache.james.smtpserver.netty.SMTPChannelUpstreamHandler.channelConnected(SMTPChannelUpstreamHandler.java:54)
        at 
org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:100)

 

10:38:44.421 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection closed 
for SOME_IP
10:38:49.264 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection 
established from SOME_IP
10:38:49.264 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Connection closed 
for SOME_IP
10:38:49.265 [INFO ] o.a.j.p.n.BasicChannelUpstreamHandler - Unable to process 
request



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Commented] (JAMES-3970) How to disable the dependency on JPA persistence module(james-database.properties) for James version 3.8.0

2024-01-21 Thread Pradeep (Jira)


[ 
https://issues.apache.org/jira/browse/JAMES-3970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17809245#comment-17809245
 ] 

Pradeep commented on JAMES-3970:


[~btellier] : We tried various configuration to disable persistence in v3.8.0 
([*JPA James server* 
https://james.apache.org/download.cgi|https://james.apache.org/download.cgi]) 
but wasn't successful. James while startup always look for JPA persistence 
module(james-database.properties). Also, per your comments is it correct 
understanding that there is no way to disable persistence in v3.8.0?  

If persistence cannot be disabled then what exactly is persisted in 
filestore/db? Is it full email that's persisted (body, attachments etc) or just 
a metadata of email which is persisted? 

> How to disable the dependency on JPA persistence 
> module(james-database.properties) for James version 3.8.0
> --
>
> Key: JAMES-3970
> URL: https://issues.apache.org/jira/browse/JAMES-3970
> Project: James Server
>  Issue Type: Bug
>  Components: James Core
>Affects Versions: 3.8.0
>Reporter: Sachin Nilajkar
>Priority: Blocker
>
> How to disable the dependency on JPA persistence 
> module(james-database.properties) for James version 3.8.0
> We want James 3.8.0 to be just as an email relay without any email 
> persistence in filestore or database. 
> We are looking for an option to disable reference to  
> james-database.properties file during James server startup so that James can 
> be used only as relay server. Kindly suggest if this requirement is possible 
> with James version 3.8.0. 
>  
> We are using Java version :  Java 11.0.18
> Maven version: 3.6.3



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Commented] (JAMES-3970) How to disable the dependency on JPA persistence module(james-database.properties) for James version 3.8.0

2024-01-22 Thread Pradeep (Jira)


[ 
https://issues.apache.org/jira/browse/JAMES-3970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17809450#comment-17809450
 ] 

Pradeep commented on JAMES-3970:


[~btellier]  can you answer my questions below: 

We tried various configuration to disable persistence in v3.8.0 ([*JPA James 
server* 
https://james.apache.org/download.cgi|https://james.apache.org/download.cgi]) 
but wasn't successful. James while startup always look for JPA persistence 
module(james-database.properties). Also, per your comments is it correct 
understanding that there is no way to disable persistence in v3.8.0? 

If persistence cannot be disabled then what exactly is persisted in 
filestore/db? Is it full email that's persisted (body, attachments etc) or just 
a metadata of email which is persisted? 

> How to disable the dependency on JPA persistence 
> module(james-database.properties) for James version 3.8.0
> --
>
> Key: JAMES-3970
> URL: https://issues.apache.org/jira/browse/JAMES-3970
> Project: James Server
>  Issue Type: Bug
>  Components: James Core
>Affects Versions: 3.8.0
>Reporter: Sachin Nilajkar
>Priority: Blocker
>
> How to disable the dependency on JPA persistence 
> module(james-database.properties) for James version 3.8.0
> We want James 3.8.0 to be just as an email relay without any email 
> persistence in filestore or database. 
> We are looking for an option to disable reference to  
> james-database.properties file during James server startup so that James can 
> be used only as relay server. Kindly suggest if this requirement is possible 
> with James version 3.8.0. 
>  
> We are using Java version :  Java 11.0.18
> Maven version: 3.6.3



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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



[jira] [Created] (JAMES-3977) Resiliency questions in James-server-jpa-guice v3.8.0

2024-01-29 Thread Pradeep (Jira)
Pradeep created JAMES-3977:
--

 Summary: Resiliency questions in James-server-jpa-guice v3.8.0 
 Key: JAMES-3977
 URL: https://issues.apache.org/jira/browse/JAMES-3977
 Project: James Server
  Issue Type: Task
  Components: James Core
Affects Versions: 3.8.0
Reporter: Pradeep


Hi,

 

We have setup  James-server-jpa-guice v3.8.0 component to run as SMTP relay 
only server. I have few questions in regards to resiliency, bounceback, 
acknowledgement and failures scenario and need your guidance regarding same. 

Question 1: What is the default acknowledgement mode when James receives an 
email from SMTP server?

Question 2: how does James handle failure scenario when james is unable to 
receive/process emails received from SMTP? How does bounce back works in this 
scenario? Can we route bounce bank emails to dedicated support email address? 
How configuration looks like for it?

Question 3: Is it possible to do clustering of James guice set up for 
High-Availability or redundant processing based on unique identifier (like 
message ID in MIME).

Question 4: does James guarantee that all emails received will have unique mime 
message id even if same email is sent from SMTP to James?

Question 5: If mailet reads and email but while processing throws an exception, 
does James still retain the same email unless it is processed successfully by 
mailet? Please confirm how James behaves in such scenario. 

 

 

 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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