So, I've tried it on my local system. Built ant and maven from source. And somehow it passed james-mailbox-hbase but failed on

[INFO] Apache James :: Standard Mailets ................... FAILURE

with an really obvious Exception:

Failed tests:
ReplaceContentTest.serviceShouldSetContenTypeWhenInitialized:233 expected:<...text/plain; charset=[UTF-8]"> but was:<...text/plain; charset=[Cp1252]">
StripAttachmentTest.serviceShouldDecodeFilenameAndSaveAttachmentInAFolderWhenPatternMatchAndDecodeFilenameTrue:285
File:
 
<C:\Users\ADMINI~1\AppData\Local\Temp\junit8916146027951247636\e_Pubblicita_e_vietata_Milano90523736908600192594134.tmp>
read with charset <windows-1252> does not have the expected content:
line:<1>, expected:<#¤ãàé> but was:<#¤ãà é>
StripAttachmentTest.serviceShouldDecodeHeaderFilenames:360 expected:<"#[¤ãàé]"> but was:<"#[¤ãà é]">
StripAttachmentTest.serviceShouldSaveAttachmentInAFolderWhenNotPatternDoesntMatch:239
File:
 
<C:\Users\ADMINI~1\AppData\Local\Temp\junit7700176292492928972\temp_filname3732721383057383459.tmp>
read with charset <windows-1252> does not have the expected content:
line:<1>, expected:<#¤ãàé> but was:<#¤ãà é>
StripAttachmentTest.serviceShouldSaveAttachmentInAFolderWhenPatternMatch:159
File:
 
<C:\Users\ADMINI~1\AppData\Local\Temp\junit900947425775180299\_107263403574838685673.tmp>
read with charset <windows-1252> does not have the expected content:
line:<1>, expected:<#¤ãàé> but was:<#¤ãà é>
StripAttachmentTest.serviceShouldSaveFilenameAttachmentAndFileContentInCustomAttribute:324 expected:<"#[¤ãàé]"> but was:<"#[¤ãà é]">

So it's not compatible with cmd.exe (wich uses windows-charset based on location settings). So I guess if you try to compile it on Windows (Why the hell would anyone try such silly things?) you have to use IDEs like Eclipse or Netbeans wich supports UTF8 instead of those windows-codepages.

So, I retried it on my root - same as vm but without docker - and it ran almost through but got killed at

[INFO] Apache James :: Server :: Mailets Integration Testing FAILURE

Result: 3 different system, 3 different failures of the same repo. I guess if I set-up docker on my root (and I see no reason for it to do as it would be required for james only) I might be able to get the current commit successfully build and maybe used. But as I don't know docker it's very likely I would open up some other security holes by mis-config it. So I'll continue to use my docker-free build (there should be a build-option to switch between docker and non-docker - if such is supported by maven) until I'm somehow get forced to re-build the docker commit and somehow set-up docker securely on my root.

So long,

Matt

Am 20.01.2017 um 00:43 schrieb Mathias Rodenberg:
Yea, it's me again, sorry for spamming the list. Somehow I think I'm more the forum/board guy, anyway ...

As I said: it's somehow random.
So just to see if I can get it build when docker and docker-compose is installed I fired up a vm (same environment as root) - and it failed almost random at

[INFO] Apache James :: Mailbox :: HBase ................... FAILURE

Here's the log:

Running org.apache.james.mailbox.hbase.HBaseMailboxManagerTest
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.006 sec <<< FAILURE! - in org.apache.james.mailbox.hbase.HBaseMailboxManagerTest initializationError(org.apache.james.mailbox.hbase.HBaseMailboxManagerTest) Time elapsed: 0.003 sec <<< ERROR! java.lang.NoClassDefFoundError: Could not initialize class org.apache.james.mailbox.hbase.HBaseMailboxSessionMapperFactoryTest

Running org.apache.james.mailbox.hbase.HBaseUtilsTest
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/vm/.m2/repository/org/slf4j/slf4j-simple/1.7.7/slf4j-simple-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/home/vm/.m2/repository/org/slf4j/slf4j-log4j12/1.4.3/slf4j-log4j12-1.4.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.SimpleLoggerFactory]
subscription toPut
flagsToPut
mailboxToPut
getRowKey and UUIDFromRowKey
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.079 sec - in org.apache.james.mailbox.hbase.HBaseUtilsTest

Results :

Tests in error:
HBaseMailboxManagerTest.initializationError » NoClassDefFound Could not initia... HBaseMailboxSessionMapperFactoryTest.testCreateMailboxMapper » NoClassDefFound HBaseMailboxSessionMapperFactoryTest.testCreateMessageMapper » NoClassDefFound HBaseMailboxSessionMapperFactoryTest.testCreateSubscriptionMapper » NoClassDefFound HBaseMailboxSessionMapperFactoryTest.testGetModSeqProvider » NoClassDefFound C... HBaseMailboxSessionMapperFactoryTest.testGetUidProvider » ExceptionInInitializer HBaseMailboxMapperTest.testMailboxMapperScenario » ExceptionInInitializer HBaseMailboxMessageMapperTest.testMessageMapperScenario » ExceptionInInitializer HBaseUidAndModSeqProviderTest.testHighestModSeq » NoClassDefFound Could not in...
  HBaseUidAndModSeqProviderTest.testLastUid » ExceptionInInitializer
HBaseUidAndModSeqProviderTest.testNextModSeq » NoClassDefFound Could not initi... HBaseUidAndModSeqProviderTest.testNextUid » NoClassDefFound Could not initiali... HBaseSubscriptionMapperTest.testDelete » NoClassDefFound Could not initialize ... HBaseSubscriptionMapperTest.testFindMailboxSubscriptionForUser » NoClassDefFound HBaseSubscriptionMapperTest.testFindSubscriptionsForUser » NoClassDefFound Cou...
  HBaseSubscriptionMapperTest.testSave » ExceptionInInitializer

Tests run: 32, Failures: 0, Errors: 16, Skipped: 0

So I just retried it - but at least this time it failed on the same step.
So just to be sure - clean wipe and another retry - same result.

Ok, so what ever is wrong here - the only difference are the additional packages noted as requirement. Same system - and different result on 2nd retry to reproduce last error - and something different just because it's (almost) same system running in a VM? Either it's something native so closely hardware dependent it really differes on such a low level java isn't supposed to be there - or I'm too stupid to simply compile some java source.

So, any source of "nightly builds" of current git repo?

Matt

Am 19.01.2017 um 23:01 schrieb Mathias Rodenberg:
Hello Benoit,

thanks for your reply.

Here is my current build environment running on my root:

OS: OpenSuSE Tumbleweed (based on 13.2 OVH)
JDK: OpenJDK 8u111 x64
git: 2.11.0
maven: 3.3.9
repo: git://git.apache.org/james-project.git
cloned on 18.01.17 ~ 19:30 GMT+1 / re-cloned 19.01.17 ~ 19:30 GMT+1
command: mvn clean package -Pwith-assembly

Yesterday, as I wrote my mail, the build stuck somewhere on cassandra (can't remember wich - but I guess it was the first line where cassandra is noted as it failed pretty fast). I tried it again today to replicate the error I got and it ran through almost to the end and failed somewhere on mailet (strange - if a build fails it should fail on the same point on a 2nd try). So I cleared my local cache (removed .m2 and james-project) and re-cloned the current commit. Kept failing on the same point:

>...
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.972 sec - in org.apache.james.transport.mailets.StripAttachmentTest

Results :

Tests in error:
AmqpForwardAttachmentTest.<init>:87 » IllegalState Could not find a valid Dock...

Tests run: 9, Failures: 0, Errors: 1, Skipped: 0
>...
[INFO] Apache James :: Server :: Mailets Integration Testing FAILURE [ 49.600 s]
>...
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test (default-test) on project james-server-mailets-integration-testing: There are test failures.
[ERROR]
[ERROR] Please refer to /home/cryptearth/james-project/server/mailet/integration-testing/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]

This is the log output:
cryptearth@root1:~/james-project> cat server/mailet/integration-testing/target/surefire-reports/org.apache.james.transport.mailets.AmqpForwardAttachmentTest.txt -------------------------------------------------------------------------------
Test set: org.apache.james.transport.mailets.AmqpForwardAttachmentTest
------------------------------------------------------------------------------- Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 10.79 sec <<< FAILURE! - in org.apache.james.transport.mailets.AmqpForwardAttachmentTest stripAttachmentShouldPutAttachmentsInMailAttributeWhenConfiguredForIt(org.apache.james.transport.mailets.AmqpForwardAttachmentTest) Time elapsed: 0.022 sec <<< ERROR! java.lang.IllegalStateException: Could not find a valid Docker environment. Please see logs and check configuration at org.apache.james.transport.mailets.AmqpForwardAttachmentTest.<init>(AmqpForwardAttachmentTest.java:87)

Well, as I'm reading the Exception, no, I don't have a Docker-environment set-up, but as I built my pack (24.11.16) it wasn't required and I got built it successfull. As the Exception states "valid Docker environment" I guess it's not as simple as just installing docker via package manager but you have to set it up running for the test to succeed, or to get to current built up and running.

That's it for now from my side. Hope I could provide any help.


As always, greetings from Germany,

Matt

Am 19.01.2017 um 03:09 schrieb Benoit Tellier:
Hello Matt, Hello Christian,

Every time we merge a pull request, we have a working build (both
compilation and unit tests) as our CI run against GitHub pull requests.
So your issues are not expected.

Could you provide us the maven command you issue, the git project you
are trying to build, your JDK version, maven version, as well as the
error, and the exact failing maven project ?

Best regards,

Benoit

Le 19/01/2017 à 00:42, cryptearth a écrit :
Well, unfortunately I wasn't able to compile the current commit either. It fails on cassandra. As I said: wait a day or two for the next commit, re-clone the repo and try it again. It should work on at least one of the next 5 - 10 commits to get a working one. If you want I can do the compilation for you and can provide the built package, but be aware I would only deliever it as is w/o taking any responsebility for issues you might encounter when using the package compiled by me.

If I can get a working build (I don't have the package I built myself handy) I can provide you with a link (would be send directly to you instead of the list).

Greetings from Germany,

Matt

---- Christian Fischer schrieb ----

Hey there,

I tried to build the current beta6 but i did not have sucess....
I do not know how to do it correctly (building it), and since Google
delived me nothing useful (maybe i am searching with wrong arguments ....), i would like to ask you, if you have something like an instruction for me ??

Thanks




2017-01-03 5:50 GMT+01:00 Mathias Rodenberg <cryptea...@cryptearth.de>:

Hey Christian,

your log shows not only a fatal Exception regarding the Sieve class, but also some other serious Exceptions that some configs or classes are corrupt or missing. As this is beta5 - I'm guessing you just downloaded the binary files and tried to run them. Sadly, James3 isn't able to run out-of-the-box that easy and require some tweaking with the tounge at the right angle. I would recommend you to clone current beta6 git repo and built it from source. On a Linux system this is very easy by simply installing maven, git and java-devel packages, this should be easy on a Windows system too. Be aware: the current james-repo is an active development repo, so it's possible to clone a commit wich can't be build (happend to my several times). If so - just wait a day or two and re-clone the newest commit again - it then should be compileable (or repeat if needed until you get a clean
build).
After unpacking the fresh build there are only template configs, but some
of them need to be activated for James to successfully start up. The
startup sequence will tell you wich config-file can't be loaded - simply switch to config-dir, enable the needed config, and re-try until james successfully completely starts up for the first time. You then should be able to access it remotely with the james-cli config-tool to add your domain and users. For security reasons the first config you should alter before enabling it is smtpserver.xml: on line 91 switch the <authRequired> tag to "true" to prevent your mail-server being an open relay to the world.
All the other settings should be fine as long as you need them to be
secific values.

Hope it helps,
oh, and a happy new year to all subscribers

yours,

Matt


Am 01.01.2017 um 22:43 schrieb Christian Fischer:

Hey there,
i have some errors while starting James ...
I hope somebody can help me.

Thanks in advantage !

INFO  22:41:18,520 |
org.apache.james.container.spring.context.JamesServerApplicationContext |
Refreshing
org.apache.james.container.spring.context.JamesServerApplica
tionContext@31a5c39e:
startup date [Sun Jan 01 22:41:18 CET 2017]; root of context hierarchy
DEBUG 22:41:24,319 |
org.apache.james.container.spring.context.JamesServerApplicationContext |
Bean factory for
org.apache.james.container.spring.context.JamesServerApplica
tionContext@31a5c39e:
org.springframework.beans.factory.support.DefaultListableBea
nFactory@54d1608f:
defining beans
[org.springframework.context.annotation.internalConfiguratio
nAnnotationProcessor,org.springframework.context.annotation.
internalAutowiredAnnotationProcessor,org.springframework.con
text.annotation.internalRequiredAnnotationProcessor,org.
springframework.context.annotation.internalCommonAnnotationProcessor,org.
springframework.context.annotation.internalPersistence
AnnotationProcessor,org.springframework.context.
annotation.CommonAnnotationBeanPostProcessor#0,org.
springframework.orm.jpa.support.PersistenceAnnotationB
eanPostProcessor#0,org.apache.james.container.spring.
lifecycle.LogEnabledBeanPostProcessor#0,logprovider,org.
apache.james.container.spring.bean.factorypostprocessor.Conf
igurationBeanFactoryPostProcessor#0,org.apache.james.contain
er.spring.lifecycle.ConfigurableBeanPostProcessor#0,
configurationprovider,mailrepositorystore,mailetloader,
matcherloader,protocolhandlerloader,org.apache.james.
container.spring.bean.factorypostprocessor.FileSyste
mBeanFactoryPostProcessor#0,filesystem,sieveparser,configu
rationmanager,authenticator,mailqueuefactory,broker,amqConne
ctionFactory,blobTransferPolicy,jmsConnectionFactory,jmsTran
sactionManager,mailprocessor,mailetcontext,mailspooler,
agent,template,consumerTemplate,jamesCamelContext:beanPostPr
ocessor,jamesCamelContext,dnsservice,fetchmail,smtpserver,lmtpserver,
pop3server,imapserver,imapProcessor,imapDecoderFacto
ry,imapDecoder,imapEncoderFactory,imapEncoder,
managesieveserver,org.apache.james.container.spring.bean.fa
ctorypostprocessor.IndexerConfigurationBeanFactoryPostProces
sor#0,messageParser,org.apache.james.container.spring.
bean.factorypostprocessor.MailboxConfigurationBeanFactoryPos
tProcessor#0,locker,jvm-locker,no-locker,org.springframework
.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#1,
jpa-mailboxmanager,jpa-messageIdFactory,jpa-subscript
ionManager,jpa-sessionMapperFactory,jpa-uidProvider,jpa-modS
eqProvider,org.springframework.beans.factory.config.Property
PlaceholderConfigurer#0,datasource,entityManagerFactor
y,vendorAdapter,jpa-mailbox-id-deserializer,org.springfram
ework.beans.factory.config.PropertyPlaceholderConfigurer#1,
maildir-mailboxmanager,maildir-messageIdFactory,maildir-
subscriptionManager,maildir-sessionMapperFactory,maildirSt
ore,maildir-mailbox-id-deserializer,memory-mailboxMan
ager,memory-messageIdFactory,memory-subscriptionManager,
memory-sessionMapperFactory,memory-mailbox-id-deserializer,mailboxcopier,
aclResolver,groupMembershipResolver,org.apache.james.
container.spring.bean.factorypostprocessor.QuotaBean
FactoryPostProcessor#0,defaultQuotaRootResolver,curre
ntQuotaCalculator,inMemoryCurrentQuotaManager,noMaxQuotaMana
ger,fixedMaxQuotaManager,inMemoryMaxQuotaManager,noQuotaMana
ger,storeQuotaManager,noQuotaUpdater,eventQuotaUpdater,
quota,org.apache.james.container.spring.bean.
factorypostprocessor.EventsConfigurationBeanFactoryPostProce
ssor#0,org.springframework.beans.factory.config.PropertyP
laceholderConfigurer#2,default-delegating-listener,br
oadcast-delegating-listener,registered-delegating-listener,
mailbox-path-register,json-event-serializer,message-pack-
event-serializer,event-converter,mailbox-converter,
synchronous-event-delivery,asynchronous-event-delivery,
mixed-event-delivery,mailboxmanagerresolver,org.springframew
ork.beans.factory.config.PropertyPlaceholderConfigurer#3,
org.springframework.beans.factory.config.PropertyPlaceholder
Configurer#4,mbeanserver,serverConnector,registry,restr
ictedRmiSocketFactory,exporter,reindexer-impl,fake-reindexer
,usersrepositorymanagement,recipientrewritetablemanagement,
domainlistmanagement,mailboxmanagermanagementbean,mailboxcop
iermanagement,quotamanagermanagement,reindexermanagement,sie
vemanagerbean];
root of factory hierarchy
log4j:WARN No appenders could be found for logger
(org.apache.commons.configuration.ConfigurationUtils).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for
more info.
INFO  22:41:25,512 |
org.apache.james.container.spring.context.JamesServerApplicationContext |
Bean 'logprovider' of type [class
org.apache.james.container.spring.lifecycle.LogProviderImpl] is not
eligible for getting processed by all BeanPostProcessors (for example: not
eligible for auto-proxying)
DEBUG 22:41:25,562 |
org.apache.james.container.spring.context.JamesServerApplicationContext | Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@5d5a51b1]
DEBUG 22:41:25,574 |
org.apache.james.container.spring.context.JamesServerApplicationContext |
Unable to locate ApplicationEventMulticaster with name
'applicationEventMulticaster': using default
[org.springframework.context.event.SimpleApplicationEventMul
ticaster@3b42121d
]
37  James  WARN   [main] openjpa.Runtime - An error occurred while
registering a ClassTransformer with PersistenceUnitInfo: name 'James',
root
URL [file:/home/mail/james3.5/james-server-app-3.0.0-beta5/conf]. The
error
has been consumed. To see it, set your openjpa.Runtime log level to TRACE.
Load-time class transformation will not be available.
INFO 22:41:26,244 | james.mailrepositorystore | JamesMailStore init... INFO 22:41:26,265 | james.mailrepositorystore | Registering Repository instance of class org.apache.james.mailrepository.file.FileMailRepository
to handle file protocol requests for repositories with key file
DEBUG 22:41:26,437 | james.dnsservice | DNSService init...
INFO  22:41:26,439 | james.dnsservice | DNS Server is: 8.8.8.8
INFO  22:41:26,440 | james.dnsservice | DNS Server is: 8.8.4.4
INFO 22:41:26,480 | james.dnsservice | Registered cache, resolver and
search paths as DNSJava defaults
DEBUG 22:41:26,481 | james.dnsservice | DNSService ...init end
INFO  22:41:26,492 | james.domainlist | Set autodetect to: true
INFO  22:41:26,493 | james.domainlist | Set autodetectIP to: true
363  James  INFO   [main] openjpa.Runtime - Starting OpenJPA 2.2.1
429 James INFO [main] openjpa.jdbc.JDBC - Using dictionary class
"org.apache.openjpa.jdbc.sql.DerbyDictionary".
1506  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
1801  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
1841  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
1856  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
1879  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
1907  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
2088  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
2103  James  INFO   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
3166  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
WARN 22:41:29,958 | org.apache.activemq.broker.BrokerService | Store
limit
is 102400 mb, whilst the data directory:
/home/mail/james3.5/james-server-app-3.0.0-beta5/bin/../var/
store/activemq/brokers/james
only has 18188 mb of usable space
ERROR 22:41:29,961 | org.apache.activemq.broker.BrokerService | Temporary
Store limit is 51200 mb, whilst the temporary data directory:
/home/mail/james3.5/james-server-app-3.0.0-beta5/bin/../var/
store/activemq/brokers/james/tmp_storage
only has 18188 mb of usable space
4572  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4582  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4662  James  INFO   [main] openjpa.Runtime - The Entity
"org.apache.james.mailbox.jpa.mail.model.openjpa.JPAMailboxMessage" was
enhanced at level "2", but the current level of enhancement is
"1,300,381".
4662 James INFO [main] openjpa.Runtime - A down level Entity was detected and logged. Please enable RUNTIME trace to see all down level
Entities.
4669  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4699  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4785  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4817  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4849  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
4980  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
5034  James  WARN   [main] openjpa.MetaData - The class
"org.apache.james.mailbox.jpa.mail.model.JPAMailboxAnnotation" listed in the openjpa.MetaDataFactory configuration property could not be loaded by
sun.misc.Launcher$AppClassLoader@764c12b6; ignoring.
DEBUG 22:41:31,750 | james.domainlist | No domain found
javax.persistence.NoResultException: Query "SELECT domain FROM
JamesDomain
domain WHERE domain.name=:name" selected no result, but expected unique
result.
          at
org.apache.openjpa.persistence.QueryImpl.getSingleResult(
QueryImpl.java:332)
          at
org.apache.james.domainlist.jpa.JPADomainList.containsDomain
Internal(JPADomainList.java:159)
          at
org.apache.james.domainlist.jpa.JPADomainList.containsDomain
(JPADomainList.java:92)
          at
org.apache.james.mailetcontainer.impl.JamesMailetContext.
configure(JamesMailetContext.java:473)
          at
org.apache.james.container.spring.lifecycle.ConfigurableBean
PostProcessor.executeLifecycleMethodBeforeInit(ConfigurableB
eanPostProcessor.java:44)
          at
org.apache.james.container.spring.lifecycle.ConfigurableBean
PostProcessor.executeLifecycleMethodBeforeInit(ConfigurableB
eanPostProcessor.java:28)
          at
org.apache.james.container.spring.lifecycle.AbstractLifecycl
eBeanPostProcessor.postProcessBeforeInitialization(AbstractL
ifecycleBeanPostProcessor.java:59)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.applyBeanPostProcessorsBeforeInitialization
(AbstractAutowireCapableBeanFactory.java:396)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.initializeBean(AbstractAutowir
eCapableBeanFactory.java:1507)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:521)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.findAutowireCandidates(DefaultListableBeanFactory.java:921)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.doResolveDependency(DefaultListableBeanFactory.java:864)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.resolveDependency(DefaultListableBeanFactory.java:779)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.autowireByType(AbstractAutowir
eCapableBeanFactory.java:1226)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.populateBean(AbstractAutowireCapableBeanFac
tory.java:1133)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:519)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
          at
org.springframework.context.support.AbstractApplicationConte
xt.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
          at
org.springframework.context.support.AbstractApplicationConte
xt.refresh(AbstractApplicationContext.java:479)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:139)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:93)
          at
org.apache.james.container.spring.context.JamesServerApplica
tionContext.<init>(JamesServerApplicationContext.java:40)
          at
org.apache.james.app.spring.JamesAppSpringMain.init(JamesApp
SpringMain.java:61)
          at
org.apache.james.app.spring.JamesAppSpringMain.main(JamesApp
SpringMain.java:42)
WARN  22:41:31,773 | james.mailetcontext | The specified postmaster
address
( postmaster@localhost ) is not a local address.  This is not
necessarily a
problem, but it does mean that emails addressed to the postmaster will be
routed to another server.  For some configurations this may cause
problems.
INFO 22:41:32,092 | james.mailprocessor | Matcher All instantiated.
INFO  22:41:32,147 | james.mailprocessor | Mailet PostmasterAlias
instantiated.
INFO  22:41:32,160 | james.mailprocessor | Matcher RelayLimit=30
instantiated.
INFO 22:41:32,170 | james.mailprocessor | Mailet Null instantiated.
INFO  22:41:32,316 | james.mailprocessor | Matcher RecipientIs=
sievemana...@james.linagora.com instantiated.
INFO  22:41:32,348 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO  22:41:32,362 | james.mailprocessor | Matcher
HasMailAttribute=spamChecked instantiated.
INFO  22:41:32,370 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO 22:41:32,372 | james.mailprocessor | Matcher All instantiated.
INFO  22:41:32,411 | james.mailprocessor | Mailet SetMailAttribute
instantiated.
INFO 22:41:32,421 | james.mailprocessor | Matcher SMTPAuthSuccessful
instantiated.
INFO  22:41:32,427 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO 22:41:32,448 | james.mailprocessor | Matcher InSpammerBlacklist=
query.bondedsender.org. instantiated.
INFO  22:41:32,450 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO 22:41:32,456 | james.mailprocessor | Matcher InSpammerBlacklist=
dnsbl.njabl.org. instantiated.
INFO  22:41:32,458 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO 22:41:32,458 | james.mailprocessor | Matcher All instantiated.
INFO  22:41:32,460 | james.mailprocessor | Mailet ToProcessor
instantiated.
INFO 22:41:33,515 | james.mailprocessor | Matcher All instantiated. INFO 22:41:33,559 | james.mailprocessor | Mailet Bounce instantiated. INFO 22:41:33,560 | james.mailprocessor | Matcher All instantiated. DEBUG 22:41:33,573 | james.mailrepositorystore | obtained repository: org.apache.james.mailrepository.file.FileMailRepository to handle: file
with key file
DEBUG 22:41:33,606 | james.mailrepositorystore |
FileMailRepository.destinationURL: file://var/mail/error/
INFO  22:41:33,611 | james.mailrepositorystore | Init
org.apache.james.repository.file.FilePersistentObjectRepository Store
INFO  22:41:33,624 | james.mailrepositorystore |
org.apache.james.repository.file.FilePersistentObjectRepository opened in
../var/mail/error
INFO  22:41:33,626 | james.mailrepositorystore | Init
org.apache.james.repository.file.FilePersistentStreamRepository Store
INFO  22:41:33,627 | james.mailrepositorystore |
org.apache.james.repository.file.FilePersistentStreamRepository opened in
../var/mail/error
DEBUG 22:41:33,629 | james.mailrepositorystore |
org.apache.james.mailrepository.file.FileMailRepository created in
file://var/mail/error/
INFO  22:41:33,630 | james.mailrepositorystore | Init
org.apache.james.repository.file.FilePersistentObjectRepository Store
INFO  22:41:33,630 | james.mailrepositorystore |
org.apache.james.repository.file.FilePersistentObjectRepository opened in
../var/mail/error
INFO  22:41:33,630 | james.mailrepositorystore | Init
org.apache.james.repository.file.FilePersistentStreamRepository Store
INFO  22:41:33,632 | james.mailrepositorystore |
org.apache.james.repository.file.FilePersistentStreamRepository opened in
../var/mail/error
DEBUG 22:41:33,633 | james.mailrepositorystore |
org.apache.james.mailrepository.file.FileMailRepository created in
file://var/mail/error/
INFO  22:41:33,635 | james.mailrepositorystore | added repository:
file://var/mail/error/->org.apache.james.mailrepository.file
.FileMailRepository
INFO  22:41:33,635 | james.mailprocessor | Mailet ToRepository
instantiated.
INFO 22:41:33,746 | james.mailprocessor | Matcher SMTPAuthSuccessful
instantiated.
INFO  22:41:33,756 | james.mailprocessor | Mailet SetMimeHeader
instantiated.
INFO  22:41:33,757 | james.mailprocessor | Matcher
HasMailAttribute=org.apache.james.SMIMECheckSignature instantiated.
INFO  22:41:33,759 | james.mailprocessor | Mailet SetMimeHeader
instantiated.
INFO 22:41:33,762 | james.mailprocessor | Matcher All instantiated. INFO 22:41:33,800 | james.mailprocessor | Mailet RecipientRewriteTable
instantiated.
INFO  22:41:33,811 | james.mailprocessor | Matcher RecipientIsLocal
instantiated.
ERROR 22:41:33,818 | james.mailprocessor | Unable to init mailet Sieve:
org.apache.mailet.MailetException: Could not load mailet (Sieve);
    nested exception is:
          java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
org.apache.mailet.MailetException: Could not load mailet (Sieve);
    nested exception is:
          java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.loadFailed(AbstractLoaderBeanFa
ctory.java:69)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:54)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:378)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.init(AbstractStateMailetProcessor.java:123)
          at
org.apache.james.mailetcontainer.impl.camel.CamelMailetProce
ssor.init(CamelMailetProcessor.java:109)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.createMailProcessor(CamelCompositeProcessor.java:112)
          at
org.apache.james.mailetcontainer.lib.AbstractStateCompositeP
rocessor.init(AbstractStateCompositeProcessor.java:174)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.init(CamelCompositeProcessor.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
ssorImpl.java:62)
          at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
thodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke(Method.java:498)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleElement.invoke(InitDe
stroyAnnotationBeanPostProcessor.java:344)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleMetadata.invokeInitMe
thods(InitDestroyAnnotationBeanPostProcessor.java:295)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:130)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.applyBeanPostProcessorsBeforeInitialization
(AbstractAutowireCapableBeanFactory.java:396)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.initializeBean(AbstractAutowir
eCapableBeanFactory.java:1507)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:521)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
          at
org.springframework.context.support.AbstractApplicationConte
xt.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
          at
org.springframework.context.support.AbstractApplicationConte
xt.refresh(AbstractApplicationContext.java:479)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:139)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:93)
          at
org.apache.james.container.spring.context.JamesServerApplica
tionContext.<init>(JamesServerApplicationContext.java:40)
          at
org.apache.james.app.spring.JamesAppSpringMain.init(JamesApp
SpringMain.java:61)
          at
org.apache.james.app.spring.JamesAppSpringMain.main(JamesApp
SpringMain.java:42)
Caused by: java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.load(AbstractLoaderBeanFactory.java:45)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:44)
          ... 29 more
ERROR 22:41:33,828 | james.mailprocessor | Caused by nested exception:
java.lang.ClassNotFoundException: org.apache.james.transport.mai
lets.Sieve
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.load(AbstractLoaderBeanFactory.java:45)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:44)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:378)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.init(AbstractStateMailetProcessor.java:123)
          at
org.apache.james.mailetcontainer.impl.camel.CamelMailetProce
ssor.init(CamelMailetProcessor.java:109)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.createMailProcessor(CamelCompositeProcessor.java:112)
          at
org.apache.james.mailetcontainer.lib.AbstractStateCompositeP
rocessor.init(AbstractStateCompositeProcessor.java:174)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.init(CamelCompositeProcessor.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
ssorImpl.java:62)
          at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
thodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke(Method.java:498)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleElement.invoke(InitDe
stroyAnnotationBeanPostProcessor.java:344)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleMetadata.invokeInitMe
thods(InitDestroyAnnotationBeanPostProcessor.java:295)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:130)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.applyBeanPostProcessorsBeforeInitialization
(AbstractAutowireCapableBeanFactory.java:396)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.initializeBean(AbstractAutowir
eCapableBeanFactory.java:1507)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:521)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
          at
org.springframework.context.support.AbstractApplicationConte
xt.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
          at
org.springframework.context.support.AbstractApplicationConte
xt.refresh(AbstractApplicationContext.java:479)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:139)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:93)
          at
org.apache.james.container.spring.context.JamesServerApplica
tionContext.<init>(JamesServerApplicationContext.java:40)
          at
org.apache.james.app.spring.JamesAppSpringMain.init(JamesApp
SpringMain.java:61)
          at
org.apache.james.app.spring.JamesAppSpringMain.main(JamesApp
SpringMain.java:42)
DEBUG 22:41:33,834 | james.mailprocessor | Shutdown matcher
DEBUG 22:41:33,835 | james.mailprocessor | Shutdown mailet SetMimeHeader
Mailet
DEBUG 22:41:33,835 | james.mailprocessor | Shutdown matcher Has Mail
Attribute Matcher
DEBUG 22:41:33,839 | james.mailprocessor | Shutdown mailet SetMimeHeader
Mailet
DEBUG 22:41:33,840 | james.mailprocessor | Shutdown matcher
DEBUG 22:41:33,841 | james.mailprocessor | Shutdown mailet
RecipientRewriteTable Mailet
WARN  22:41:33,842 |
org.apache.james.container.spring.context.JamesServerApplicationContext | Exception encountered during context initialization - cancelling refresh
attempt
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mailprocessor': Invocation of init method failed; nested exception is org.apache.commons.configuration.ConfigurationException:
Unable to init mailet Sieve
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:133)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.applyBeanPostProcessorsBeforeInitialization
(AbstractAutowireCapableBeanFactory.java:396)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.initializeBean(AbstractAutowir
eCapableBeanFactory.java:1507)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:521)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
          at
org.springframework.context.support.AbstractApplicationConte
xt.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
          at
org.springframework.context.support.AbstractApplicationConte
xt.refresh(AbstractApplicationContext.java:479)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:139)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:93)
          at
org.apache.james.container.spring.context.JamesServerApplica
tionContext.<init>(JamesServerApplicationContext.java:40)
          at
org.apache.james.app.spring.JamesAppSpringMain.init(JamesApp
SpringMain.java:61)
          at
org.apache.james.app.spring.JamesAppSpringMain.main(JamesApp
SpringMain.java:42)
Caused by: org.apache.commons.configuration.ConfigurationException:
Unable
to init mailet Sieve
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:392)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.init(AbstractStateMailetProcessor.java:123)
          at
org.apache.james.mailetcontainer.impl.camel.CamelMailetProce
ssor.init(CamelMailetProcessor.java:109)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.createMailProcessor(CamelCompositeProcessor.java:112)
          at
org.apache.james.mailetcontainer.lib.AbstractStateCompositeP
rocessor.init(AbstractStateCompositeProcessor.java:174)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.init(CamelCompositeProcessor.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
ssorImpl.java:62)
          at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
thodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke(Method.java:498)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleElement.invoke(InitDe
stroyAnnotationBeanPostProcessor.java:344)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleMetadata.invokeInitMe
thods(InitDestroyAnnotationBeanPostProcessor.java:295)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:130)
          ... 16 more
Caused by: org.apache.mailet.MailetException: Could not load mailet
(Sieve);
    nested exception is:
          java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.loadFailed(AbstractLoaderBeanFa
ctory.java:69)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:54)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:378)
          ... 28 more
Caused by: java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.load(AbstractLoaderBeanFactory.java:45)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:44)
          ... 29 more
Exception in thread "main"
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mailprocessor': Invocation of init method failed; nested exception is org.apache.commons.configuration.ConfigurationException:
Unable to init mailet Sieve
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:133)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.applyBeanPostProcessorsBeforeInitialization
(AbstractAutowireCapableBeanFactory.java:396)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.initializeBean(AbstractAutowir
eCapableBeanFactory.java:1507)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFac
tory.java:521)
          at
org.springframework.beans.factory.support.AbstractAutowireCa
pableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y$1.getObject(AbstractBeanFactory.java:293)
          at
org.springframework.beans.factory.support.DefaultSingletonBe
anRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.doGetBean(AbstractBeanFactory.java:290)
          at
org.springframework.beans.factory.support.AbstractBeanFactor
y.getBean(AbstractBeanFactory.java:191)
          at
org.springframework.beans.factory.support.DefaultListableBea
nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
          at
org.springframework.context.support.AbstractApplicationConte
xt.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
          at
org.springframework.context.support.AbstractApplicationConte
xt.refresh(AbstractApplicationContext.java:479)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:139)
          at
org.springframework.context.support.ClassPathXmlApplicationC
ontext.<init>(ClassPathXmlApplicationContext.java:93)
          at
org.apache.james.container.spring.context.JamesServerApplica
tionContext.<init>(JamesServerApplicationContext.java:40)
          at
org.apache.james.app.spring.JamesAppSpringMain.init(JamesApp
SpringMain.java:61)
          at
org.apache.james.app.spring.JamesAppSpringMain.main(JamesApp
SpringMain.java:42)
Caused by: org.apache.commons.configuration.ConfigurationException:
Unable
to init mailet Sieve
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:392)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.init(AbstractStateMailetProcessor.java:123)
          at
org.apache.james.mailetcontainer.impl.camel.CamelMailetProce
ssor.init(CamelMailetProcessor.java:109)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.createMailProcessor(CamelCompositeProcessor.java:112)
          at
org.apache.james.mailetcontainer.lib.AbstractStateCompositeP
rocessor.init(AbstractStateCompositeProcessor.java:174)
          at
org.apache.james.mailetcontainer.impl.camel.CamelCompositePr
ocessor.init(CamelCompositeProcessor.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
ssorImpl.java:62)
          at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
thodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke(Method.java:498)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleElement.invoke(InitDe
stroyAnnotationBeanPostProcessor.java:344)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor$LifecycleMetadata.invokeInitMe
thods(InitDestroyAnnotationBeanPostProcessor.java:295)
          at
org.springframework.beans.factory.annotation.InitDestroyAnno
tationBeanPostProcessor.postProcessBeforeInitialization(Init
DestroyAnnotationBeanPostProcessor.java:130)
          ... 16 more
Caused by: org.apache.mailet.MailetException: Could not load mailet
(Sieve);
    nested exception is:
          java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.loadFailed(AbstractLoaderBeanFa
ctory.java:69)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:54)
          at
org.apache.james.mailetcontainer.lib.AbstractStateMailetProc
essor.parseConfiguration(AbstractStateMailetProcessor.java:378)
          ... 28 more
Caused by: java.lang.ClassNotFoundException:
org.apache.james.transport.mailets.Sieve
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.AbstractLoaderBeanFactory.load(AbstractLoaderBeanFactory.java:45)
          at
org.apache.james.container.spring.bean.factory.mailetcontain
er.MailetLoaderBeanFactory.getMailet(MailetLoaderBeanFactory.java:44)
          ... 29 more




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


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



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



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



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

Reply via email to