Re: svn commit: r990364 [2/5] - in /james/imap/trunk: ./ decode/ decode/src/ message/ message/src/main/java/org/apache/james/imap/decode/ message/src/main/java/org/apache/james/imap/decode/base/ messa

2010-08-31 Thread Eric Charles
Hi Norman, Should be good now. Tks to have checked. Eric On 30/08/2010 18:20, Norman Maurer wrote: Hi Eric, these changes seems to mess up with how svn should be used.. maybe its the stupid eclipse plugin who knows ;) Could you revert the changes and better use svn cp so we don't loose all

Re: svn commit: r991150 - in /james/server/trunk/fetchmail/src/main/java/org/apache/james/fetchmail: FetchMail.java FetchScheduler.java MessageProcessor.java ParsedConfiguration.java

2010-08-31 Thread Eric Charles
Oops, org.apache.commons.configuration.Configuration was explicitly declared in the code, but autoimported because of javadoc (eclipse coder needs concentration :) Correction is committed. Tks again for the review, Eric On 31/08/2010 14:34, Norman Maurer wrote: Was the import of

What's in a store?

2010-09-05 Thread Eric Charles
Hi All, The store project has the mappers and imports some classes of mailbox (mailboxmanager,...), so 'store depends on mailbox'. To access some mailbox/subscription, you need to use the maibox project (example: imap-processor depends on mailbox, and imapProcessor bean is injected with

Re: What's in a store?

2010-09-05 Thread Eric Charles
Hi Norman, pop3server has store in its pom, but does not really need it. I will carefully test before commit the changes. JPAUser is accessed in JPAUsersRepository (instanciated via the LocalUsers repository) while JPAMailbox is managed in JPAMailboMapper is accessed via JPAMailboxMapper.

Re: What's in a store?

2010-09-06 Thread Eric Charles
OK, we've done a picture of the current situation. I would like to pick an simple example as strong requirement to unify the store/repository (whatever then name is) API across all projects. In spoolmanager.xml, we define respositoryPath such as db://maildb/spam. These repositoryPath are used

Re: svn commit: r995669 - in /james/server/trunk: spring-deployment/src/main/config/james/ spring-deployment/src/main/config/james/META-INF/ user-function/ user-function/src/main/java/org/apache/james

2010-09-10 Thread Eric Charles
Hi Norman, Yep, I missed the destinationURL: will remove it. I had the JPADomain to model package as todo for today. Will also do JPAUser move :) Tks for caring, Eric On 10/09/2010 07:40, Norman wrote: Hi Eric, good work :) Just two minor corrections / questions .. Am 10.09.2010 06:57,

Re: [OT] Video posts

2010-09-14 Thread Eric Charles
Hi Robert, You brought so much light in my lonely developer day :) and yes, there's room for video on ml, why not, and also on web site. Would love to have james explained on coming 3 website (example: http://www.youtube.com/watch?v=LabCylbapuM) Tks, Eric On 14/09/2010 13:51, Robert

Re: Strange warnings about query parameters

2010-09-14 Thread Eric Charles
Hi, We also have these warning messages in apache james trunk project (in unit test and in spring container). The Query works just fine. 8923 WARN [main] openjpa.Runtime - Supplied user parameters [domain, user] do not match expected parameters [] for the prepared query PreparedQuery:

Re: Strange warnings about query parameters

2010-09-14 Thread Eric Charles
Hi Pinaki, We have OpenJPA 2.0.0 from maven. version id: openjpa-2.0.0-r422266:935683 Apache svn revision: 422266:935683 So we don't have yet change you committed in 986744. We will certainly get rid of the warning message at the next openjpa release. And many tks for your quick answer.

Re: Strange warnings about query parameters

2010-09-15 Thread Eric Charles
Hi Pinaki, We upgraded our trunk to use OpenJPA 2.0.1 (r989424 r986744 you talked about). We still have the same warning message. Tks, Eric On 14/09/2010 22:08, Eric Charles wrote: Hi Pinaki, We have OpenJPA 2.0.0 from maven. version id: openjpa-2.0.0-r422266:935683 Apache svn revision

Re: Strange warnings about query parameters

2010-09-16 Thread Eric Charles
release. Regards, -mike On Wed, Sep 15, 2010 at 4:20 AM, Eric Charlese...@apache.org wrote: Hi Pinaki, We upgraded our trunk to use OpenJPA 2.0.1 (r989424 r986744 you talked about). We still have the same warning message. Tks, Eric On 14/09/2010 22:08, Eric Charles wrote: Hi Pinaki

Re: svn commit: r998106 - in /james/server/trunk: core-function/src/main/java/org/apache/james/domain/JPADomainList.java user-function/src/main/java/org/apache/james/vut/JPAVirtualUserTable.java

2010-09-17 Thread Eric Charles
So true. Missing my bed... Tks, Eric On 17/09/2010 15:11, Norman wrote: Hi Eric, calling commit() in the finally block a bad idea. It would get executed even on a Exception.. Bye Norman Am 17.09.2010 14:59, schrieb e...@apache.org: Author: eric Date: Fri Sep 17 12:59:24 2010 New

Re: Spool/Queue refactoring

2010-09-17 Thread Eric Charles
+1 much more readable and extensible. About the long transactions, the downsize is there is more risk to loose some mail in case of abrupt failure of the process for example. DeQueing/EnQueing at each mail process allowed to rely on the spool for mail queue persistence between each process.

Re: Spool/Queue refactoring

2010-09-17 Thread Eric Charles
Yes for Exceptions. Sorry, I was not precise enough. I was talking of java process crash (jvm crash, kill -9,...). If the mail is longer out-of-the-queue, there are more chance that the crash (if any) occurs during that period. (I suppose that the queue is responsible to restore its content,

Re: Spool/Queue refactoring

2010-09-18 Thread Eric Charles
OK. Apart those activemq exceptions in log that will be soon fixed, new spool is working fine on my side. Many tks for this new architecture enhancement :) Eric On 18/09/2010 08:07, Norman Maurer wrote: Yeah thats how transactions should work.. BTW if some of you notice this exception:

Re: What's in a store?

2010-09-20 Thread Eric Charles
no Repository notion). I think we should also extract the 2.3 classes/interfaces, and place them in the correct mailbox projects (also create new mailbox projects for example apache-james-mailbox-file that will contain FileMailRepository,..). WDYT? Eric On 6/09/2010 08:24, Eric Charles wrote: OK

Re: What's in a store?

2010-09-20 Thread Eric Charles
(also create new mailbox projects for example apache-james-mailbox-file that will contain FileMailRepository,..). +1 WDYT? Eric On 6/09/2010 08:24, Eric Charles wrote: OK, we've done a picture of the current situation. I would like to pick an simple example as strong requirement to unify

Re: svn commit: r999491 - in /james: imap/trunk/file/ imap/trunk/jdbc/ imap/trunk/parent/ server/trunk/ server/trunk/core-function/ server/trunk/pop3server/ server/trunk/remotemanager/ server/trunk/sp

2010-09-21 Thread Eric Charles
Hi Norman, I introduced dependency to core-function if mailbox-file and mailbox-jdbc by error. It is now removed. However, mailbox (now in imap tree) dependency to core-api is there, and sounds logic. Tks, Eric On 21/09/2010 18:45, Norman Maurer wrote: Why does this touch the imap tree?

Re: svn commit: r999491 - in /james: imap/trunk/file/ imap/trunk/jdbc/ imap/trunk/parent/ server/trunk/ server/trunk/core-function/ server/trunk/pop3server/ server/trunk/remotemanager/ server/trunk/sp

2010-09-21 Thread Eric Charles
Hi Stephano, Yes, I saw it like a temporary situation evolving with 'mailrepository' (2.3) and 'mailbox' (3.0) grouped into a 'mailstore' umbrella, just like there are other umbrellas' ('server', 'imap',...). In any case, it was planned to create this umbrella for all 3.0 mailbox projects.

Re: svn commit: r999491 - in /james: imap/trunk/file/ imap/trunk/jdbc/ imap/trunk/parent/ server/trunk/ server/trunk/core-function/ server/trunk/pop3server/ server/trunk/remotemanager/ server/trunk/sp

2010-09-22 Thread Eric Charles
Hi, mailrepository classes and projects are now back in server. It's now cleaner with own api, library, impl projects and no dependency of imap to server :) Would be nice to review commits and give feedback. Many Tks in advance To help, I have uploaded a little diagram I maintain with the

SpoolRepository usage

2010-09-22 Thread Eric Charles
Hi, SpoolRepository interface is still referenced in: - Retry mailet - SpoolManagement interface (not really used, except in a test) - InMemorySpoolRepository (mock spool for MockMailServer) - TesterMailetConfig I don't have the impression it is really needed for the real spool processing.

Re: [jira] Created: (JAMES-1049) Upgrade to activemq 5.4.1

2010-09-22 Thread Eric Charles
+1 log file is bigger and bigger :) On 22/09/2010 18:43, Norman Maurer (JIRA) wrote: Upgrade to activemq 5.4.1 - Key: JAMES-1049 URL: https://issues.apache.org/jira/browse/JAMES-1049 Project: JAMES Server

Re: svn commit: r1001703 - in /james/server/trunk: ./ common-util/ common-util/src/main/java/org/apache/james/api/ common-util/src/main/java/org/apache/james/api/dnsservice/ common-util/src/main/java/

2010-09-27 Thread Eric Charles
Yep, (I had difficulties to get the 5.4.1 from the mvn mirrors). Will commit the fix. Eric On 27/09/2010 14:27, Norman Maurer wrote: Prolly a mistake but you changed the version of activemq to 5.4.0 +activemq.version5.4.0/activemq.version Bye, Norman 2010/9/27e...@apache.org: Author: eric

Re: What's in a store?

2010-09-30 Thread Eric Charles
spam mail in the spam folder of the user's mailbox, I will propose a custom mailet. Tks, Eric On 20/09/2010 18:14, Eric Charles wrote: Hi Norman, So moving and simplifying some Store hierarchy makes sense. Now, the important question is the alignment, or not, of the Store with Mailbox

Re: svn commit: r1005005 - in /james/server/trunk: mailetcontainer-camel/src/main/java/org/apache/james/mailetcontainer/camel/ spoolmanager/src/main/java/org/apache/james/transport/ spring-deployment/

2010-10-07 Thread Eric Charles
small detail: ../data could be ../var/activemq-data to have all datas in var dir. Tks, Eric On 6/10/2010 14:15, nor...@apache.org wrote: Author: norman Date: Wed Oct 6 12:15:05 2010 New Revision: 1005005 URL: http://svn.apache.org/viewvc?rev=1005005view=rev Log: * Use amq: namespace to

Re: svn commit: r1005067 - in /james/server/trunk: queue-activemq/src/main/java/org/apache/james/queue/activemq/ActiveMQMailQueue.java spring-deployment/src/main/config/james/spring-beans.xml

2010-10-07 Thread Eric Charles
MAIL_PRORITY header could be named X-Priority (X- namespace being reserved for non-standard headers). Additional values could be foreseen: Highest Priority High Priority Normal (default if not defined) Low Priority Lowest Priority I don't know if we have to use low or high numbers for high

Re: Spring migration

2010-10-08 Thread Eric Charles
Hi, James 3 will be soon release and runs on Spring. You can check it out from http://svn.apache.org/repos/asf/james/server/trunk/. Just compile it with mvn package and use it (dist zip is in spring-deployement/target). There some open JIRA for 3.0-M1 on

ActiveMQ the cause?

2010-10-10 Thread Eric Charles
Hi, I have on James 3 (trunk of 2 week ago) my INBOX with 10 subfolders, some of these subfolders having more than 10.000 mails. I mainly use a PC, so the IMAP sync is done regulary along the day. I also have another PC I synchronize once a week. During the IMAP sync of that PC, I selected

Re: ActiveMQ the cause?

2010-10-10 Thread Eric Charles
and see if bug 1 is not resolved. Bug 4 may be resolved with 5.4.1 and latest commits for the james stop procedure. Tks, Eric On 10/10/2010 18:31, Eric Charles wrote: Hi, I have on James 3 (trunk of 2 week ago) my INBOX with 10 subfolders, some of these subfolders having more than 10.000

Re: ActiveMQ the cause?

2010-10-10 Thread Eric Charles
I didn't take a dump of james process (should have done that...). James stopped with 'james stop' (no kill -9). Yes, we need to decide what to do with amq store. Tks, Eric On 10/10/2010 08:03 PM, Norman Maurer wrote: Hi Eric, comments inside.. 2010/10/10 Eric Charlese...@apache.org: Hi, I

Re: ActiveMQ the cause?

2010-10-11 Thread Eric Charles
we are still with Bug 1 (Bug 2 and 3 should be resolved if 1 is resolved) for IMAP, fetching simultaneously some folders. Bug 4 is for amq. Tks, Eric On 10/10/2010 20:03, Eric Charles wrote: I tried to resync thunderbird without clicking on any folder. Still the same behaviour : downloading

Re: ActiveMQ the cause?

2010-10-11 Thread Eric Charles
simultaneously some folders. Bug 4 is for amq. Tks, Eric On 10/10/2010 20:03, Eric Charles wrote: I tried to resync thunderbird without clicking on any folder. Still the same behaviour : downloading xxx on yyy, www on zzz,... Wireshark tells me more: I never saw such red/black lines in the tcp

Re: ActiveMQ the cause?

2010-10-12 Thread Eric Charles
simultaneously some folders. Bug 4 is for amq. Tks, Eric On 10/10/2010 20:03, Eric Charles wrote: I tried to resync thunderbird without clicking on any folder. Still the same behaviour : downloading xxx on yyy, www on zzz,... Wireshark tells me more: I never saw such red/black lines in the tcp

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-12 Thread Eric Charles
'/'indexing'... However, if I quietly click on 'Get Mail' folder per folder, it's ok. I think we are still with Bug 1 (Bug 2 and 3 should be resolved if 1 is resolved) for IMAP, fetching simultaneously some folders. Bug 4 is for amq. Tks, Eric On 10/10/2010 20:03, Eric Charles wrote: I tried

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-12 Thread Eric Charles
- read raw mail instead of raw content - to have added value, streaming from store to socket via listener goes with store raw mail. On 12/10/2010 10:10, Eric Charles wrote: Hi Norman, Yes, IteratorMessageResult getMessages(MessageRange set, ...) is really the place where we have to act

3.0-M1 default configuration

2010-10-14 Thread Eric Charles
Hi All, We are preparing the 3.0-M1 release and need to define the default configuration. Currently, when you download James 3 snapshot, you have virtualHosting: disabled mailbox: jpa user: jpa virtualuser: jpa domainlist: xml ValidRcptHandler handler: enabled jmx: disabled remote delivery:

Re: svn commit: r1022235 - in /james/server/trunk: mailetcontainer-api/src/main/java/org/apache/james/mailetcontainer/ mailetcontainer-camel/src/main/java/org/apache/james/mailetcontainer/camel/ maile

2010-10-14 Thread Eric Charles
Hi, I tried to manage James via JMX and that's really great. Tks again for this rich feature :) The mbeanserver spring bean is injected in CamelMailProcessorList,... but is commented by default in spring-beans.xml To start James, you need to uncomment the jmx section. if we provide james

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-14 Thread Eric Charles
ways to enhance the FETCH performance (full streaming solution for example). Tks, Eric On 12/10/2010 10:27, Eric Charles wrote: - read raw mail instead of raw content - to have added value, streaming from store to socket via listener goes with store raw mail. On 12/10/2010 10:10, Eric

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-14 Thread Eric Charles
:10, schrieb Eric Charles: Hi Norman, I tested with the patch you sent me off-ml, and it rebuilding index on a large index goes 10 ways faster :) I still didn't succeed to get the oom synchronizing. Do you think we could have this patch in the coming imap 0.2-M1 release? For later releases, we

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-14 Thread Eric Charles
of the Map which holds the MailboxPath ? Just to get an idea if we need to improve it. Bye, Norman Am 14.10.2010 13:35, schrieb Eric Charles: Hi Norman, Yes, it solved oom atm. I was not able to reproduce it while fetching mails from 2 clients. However, I saw very fast fetching at start, slowing

Re: [VOTE] Release of protocols-1.2-M1

2010-10-15 Thread Eric Charles
[x] +1 Looks good, please release Eric On 15/10/2010 07:16, Norman wrote: Hi there, we are currently doing the last steps to get ready for cut the first milestone of JAMES server. For doing so we need a new release of protocols. So I prepared one and staged it fro review.. So here we

Re: IMAP Fetch OOM [WAS: Re: ActiveMQ the cause?]

2010-10-15 Thread Eric Charles
selected) were the cause, and now they are removed (content set to null). Just before upcoming imap 0.2-M1 : that's really good news!! ;) Tks, Eric On 14/10/2010 14:09, Eric Charles wrote: Total Retained Heap: 341.033.584 where top is OpenJPAMailboxManager: 266.079.320 which references

Re: [VOTE] Release IMAP 0.2-M1

2010-10-16 Thread Eric Charles
[ x ] +1 Looks good, please release Tks, Eric On 15/10/2010 21:23, Norman Maurer wrote: [ x ] +1 Looks good, please release Bye, Norman 2010/10/15 Norman Maurernor...@apache.org: Hi there, we are currently doing the last steps to get ready for cut the first milestone of JAMES server.

Where are logo src (gimp,...)?

2010-10-16 Thread Eric Charles
Hi, While working on website (and thinking to presentation/marketing stufff), I was wondering if someone know where I can find the src of the James logo. There are already a few declinations of this logo: http://james.apache.org/server/images/james-server-logo.gif

Re: Where are logo src (gimp,...)?

2010-10-16 Thread Eric Charles
Hi Stefano, I looked for a place to download Florentine URW Regular font and eventually put it in svn, but it seems that we need to pay for that (20 to 40$, depends where). I have no plan to use it atm, but was just thinking it would be good to have it under the hand, just in case we need it

ApacheJames on Twitter

2010-10-16 Thread Eric Charles
Hi Everyone, You can now follow @ApacheJames on Twitter ... and tweet about it with #ApacheJames hashtag. Enjoy http://twitter.com/ApacheJames, Eric - To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org For

Re: [VOTE] Release IMAP 0.2-M1

2010-10-16 Thread Eric Charles
Hi Stefano, I have rerun the jcr tests, and have got no error on my win7-64bits, jdk 1.6.0_21, mvn 3.0-beta1. Maybe you could open a jira with your surefire-reports files to see what the exception is. Tks, Eric On 16/10/2010 22:09, Stefano Bagnara wrote: 2010/10/15 Norman

Re: Where are logo src (gimp,...)?

2010-10-16 Thread Eric Charles
/bumblebeeonthemoon-font.html I don't know the full implications of licensing arrangements but you are welcome to have/use/[appropriate legal definition] it. Regards, Simon On 16/10/10 13:30, Eric Charles wrote: Hi Stefano, I looked for a place to download Florentine URW Regular font and eventually

Re: A trivial question

2010-10-18 Thread Eric Charles
Hi Pavlos, This temporary page may help you http://people.apache.org/~eric/james/20100926/build_james.html I will post this week new link for james 3 website review. In the meantime, you can always give some feedbacks so we can adapt this doc. Tks, Eric On 18/10/2010 08:02, Pavlos

Re: Where are logo src (gimp,...)?

2010-10-18 Thread Eric Charles
Hi Robert, Will tell if we need some bitmap texts. Tks :) Based on community inputs, we will soon launch a call for a new logo. Tks, Eric On 18/10/2010 10:48, Robert Burrell Donkin wrote: On Sat, Oct 16, 2010 at 1:30 PM, Eric Charlese...@apache.org wrote: Hi Stefano, I looked for a place

Re: About package / module refactoring

2010-10-22 Thread Eric Charles
Hi Norman, ... and tanks for your advises and reviews :) Yes, I also think the modules/packages make it easier to understand/evolve. Eric On 21/10/2010 20:19, Norman Maurer wrote: Hi Eric, I just want to state that you really did a great job with the refactoring so far. It now really looks

Progressive update of the web site

2010-10-23 Thread Eric Charles
Hi All, I updated the menus in james-project to better reflect the current James state. I also created a maven site for protocols based on the confluence site Norman has done. I began to check-in in SVN the generated protocols site (with javadoc,...), but cancelled it due to the many amount

Re: Progressive update of the web site

2010-10-23 Thread Eric Charles
Damn it!! This should have been the one-and-only one http://svn.apache.org/viewvc?view=revisionrevision=1026261 ...and this one should never existed http://svn.apache.org/viewvc?view=revisionrevision=1026263 I still don't understand how I came to let it commit (index and newsarchive files are

Re: Progressive update of the web site

2010-10-23 Thread Eric Charles
Hi Norman, I don't understand how the pages are visible on the net: - early this morning, the index/newsarchive pages were visible with 1026261 (the correct announcement) - this was logic because I updated yesterday. - after a few hours, index and newsarchive were removed, (r1026263 with

Re: Release plan for JAMES Server 3.0

2010-10-23 Thread Eric Charles
Hi Norman, JAMES-1074 must not block M1 release: it does not impact user config,.. .it's only some core discussions :) around API,... that we target for M2. I have updated it to 3.0 version number. It may be worth to already define a 3.0-M2 version in JIRA. Also, not working on repackaging

Re: [PROPOSAL] Remove RemoteManager after M1

2010-10-23 Thread Eric Charles
Hi Norman, Yes, I really like the idea. M1 or M2 ? Eric On 23/10/2010 16:38, Norman Maurer wrote: Hi there, after spend some time on implementing JMX management stuff for JAMES I think we should get rid of RemoteManager and just use JMX for management. To make it more easy to use for normal

Re: [PROPOSAL] Remove RemoteManager after M1

2010-10-23 Thread Eric Charles
Hi Dhrubo, For doc purposes, I took screenshots of jmanage accessing James' jmx. This gives basic functionalites, but there is plenty of room to give a better web application management. There's already an initiative to develop a web management interface (not via jmx, it was not available at

Re: [PROPOSAL] Remove RemoteManager after M1

2010-10-23 Thread Eric Charles
...of course, if you prefer start from scratch a web management from scratch with your favorite mvc framework, go ahead :) As far as I understand, the goal of HUPA is to provide a web interface client-side, not management-side, but I'm not the right person to talk about that and may miss some

Re: [PROPOSAL] Remove RemoteManager after M1

2010-10-23 Thread Eric Charles
Oops, it would be M2 (because it's after M1) Eric On 23/10/2010 17:04, Eric Charles wrote: Hi Norman, Yes, I really like the idea. M1 or M2 ? Eric On 23/10/2010 16:38, Norman Maurer wrote: Hi there, after spend some time on implementing JMX management stuff for JAMES I think we should get

Web site update 20101025

2010-10-25 Thread Eric Charles
Hi, The following web sites have been updated: - http://james.apache.org/protocols/ - http://james.apache.org/imap/ - http://james.apache.org/mailbox/ Can you review them? : content, typos,... (before shooting me for my broken-english, reply with the corrections so I can inject them, and

Re: Web site update 20101025

2010-10-26 Thread Eric Charles
Hi Dhrubo, Tks for the review. This is link to another sub website that still needs be soon deployed. I will also deploy other pages. Tks, Eric On 26/10/2010 04:55, Dhrubo wrote: Found a broken link http://james.apache.org/server/head/concept_smtp_hooks.html Kind Regards... Dhrubo On Mon,

James 2.x web site

2010-10-26 Thread Eric Charles
Hi, The left menu of http://james.apache.org/server/index.html has now: Development 3.0 Candidate 2.3.2 Server 2.3.1 Server 2.3.0 Server 2.2.0 Archive If you click for example on Candidate 2.3.2, you're going to http://james.apache.org/server/2.3.2/index.html, and you

Re: James 2.x web site

2010-10-27 Thread Eric Charles
Hi All, - Server V2 and Server V3 sounds really good. I will also create new directories to contains those sites so the menu of other sites are still valid when going from 3M1 to 3M2 to 3beta1,... server3 will represent the current v3 and other web subsites menus will point to it. - Sure,

Re: [VOTE] Release JAMES Server 3.0-M1

2010-10-27 Thread Eric Charles
[x] +1 Yes please release Yeah, Eric On 26/10/2010 18:26, Norman Maurer wrote: Hi all, I'm very happy to start a VOTE for the first milestone of the upcomming major version of JAMES Server (3.0). This milestone include tones of improvements,features and bugfixes. I think one of the most

Re: [VOTE] Release JAMES Server 3.0-M1

2010-10-27 Thread Eric Charles
Hi All, I note the topics to be discussed around doc and packaging: - Default conf, maybe more than one depending on user profile (small server,...) and techno (file mailserver, database mailserver,...) - Custom conf : how can users easily change the confs - Migration: the MIGRATE.txt should

Re: James 2.x web site

2010-10-27 Thread Eric Charles
+1 http://people.apache.org/builds/james/nightly/ links to https://repository.apache.org/content/groups/snapshots/org/apache/james/james-server-container-spring/3.0-M2-SNAPSHOT/ The menu will not contain the link to the correct snapshot artifact (ant will not contain the link to hudsonn, I

Re: James 2.x web site

2010-10-27 Thread Eric Charles
On 26/10/2010 13:10, Stefano Bagnara wrote: (snipped) If ok with this, there is 3 actions: - Republish 2.3.2: I tried to build the site, but it fails to download the needed dependency. I will retry from another internet connection. ok. Maybe 2.3 needs maven 2 because maven 3 deprecated/removed

Web Site update 20101028

2010-10-28 Thread Eric Charles
Hi Everybody, It would be great if you could review the following: http://james.apache.org - Home: less bullet, vertical layout, mention of hupa project - Releases: mention of maven repos for missing projects http://james.apache.org/server/ - Home: less bullet, vertical layout, feature matrix

Re: [jira] Commented: (JAMES-1074) Align packages hierarchy of the services

2010-10-28 Thread Eric Charles
Versions: 3.0-M1 Reporter: Eric Charles Assignee: Eric Charles Fix For: 3.0-M1 We need to align package service hierarchy to have stable api, uniformity and osgi-deployable. For example, the proposed hierarchy for a mail service is: org.apache.james.mail.api

Re: Web Site update 20101028

2010-10-28 Thread Eric Charles
in the Documentation section is dead. I cannot really find an easy way to download James server. We should have a very prominent link that encourages people to try James 3. Regards Tim Am Donnerstag, den 28.10.2010, 08:30 +0200 schrieb Eric Charles: Hi Everybody, It would be great if you could review

Re: Web Site update 20101028

2010-10-28 Thread Eric Charles
Tks for your feedbacks Norman. Should be updated for this weekend. Eric On 28/10/2010 09:10, Norman Maurer wrote: Hi Eric, I really like the outcome so far. You did a really good job. A few comments: http://james.apache.org/server/index.html * LMTP should get linked to the RFC

Re: Web Site update 20101028

2010-10-28 Thread Eric Charles
Hi Israel, I take it :) Many tks, Eric On 28/10/2010 10:27, Israel Tsadok wrote: Tiny correction: under server/3/dev_build.html - replace spring-deployment -- container-spring Israel - To unsubscribe, e-mail:

Re: Web Site update 20101028

2010-10-28 Thread Eric Charles
Eric Charles: Hi Everybody, It would be great if you could review the following: http://james.apache.org - Home: less bullet, vertical layout, mention of hupa project - Releases: mention of maven repos for missing projects http://james.apache.org/server/ - Home: less bullet, vertical layout

Re: Getting messages as conversation in IMAP

2010-10-28 Thread Eric Charles
Hi there, From my newly twitter followers, i guess @rajivderas is looking a way to improve http://code.google.com/p/gmail4j/ I have by default thread-view activated in thunderbird, but a server-side equivalent would have been nice. But from easy extend processors, I finally think it wouldn't

Re: Where are logo src (gimp,...)?

2010-10-29 Thread Eric Charles
legal definition] it. Regards, Simon On 16/10/10 13:30, Eric Charles wrote: Hi Stefano, I looked for a place to download Florentine URW Regular font and eventually put it in svn, but it seems that we need to pay for that (20 to 40$, depends where). I have no plan to use it atm

Re: James 2.x web site

2010-10-29 Thread Eric Charles
I just rebuilt 2.3.2 web site (with mvn3 and bago repo commented in pom.xml). Will redeploy with new skin this weekend. Tks, Eric On 26/10/2010 13:10, Stefano Bagnara wrote: 2010/10/26 Eric Charlese...@apache.org: I would like to propose a new menu Sever 3.0 Server 2.3.2 Archive

Re: [OT] Video posts

2010-10-31 Thread Eric Charles
Hi Robert, I took the freedom to display one of your video on http://james.apache.org/ (fourth tab Video). Tell me if you don't like it, and I will remove it. Tks, Eric On 14/09/2010 15:49, Eric Charles wrote: Hi Robert, You brought so much light in my lonely developer day :) and yes

Re: svn commit: r1029389 - /james/server/trunk/src/site/xdoc/index.xml

2010-11-01 Thread Eric Charles
Hi Stefano, I was too lazy to hack the css to remove those little external.png that are added but the james maven css (sometimes, it's like css-hell). For now, window.location does the job. I will retry to make it proper later on. Tks, Eric On 31/10/2010 20:01, Stefano Bagnara wrote: +a

Re: svn commit: r1029824 - in /james/server/trunk: container-spring/pom.xml pom.xml

2010-11-02 Thread Eric Charles
Wil the extra properties be also set when james start (not only run.sh) ? Tks, Eric On 1/11/2010 21:30, nor...@apache.org wrote: Author: norman Date: Mon Nov 1 20:30:36 2010 New Revision: 1029824 URL: http://svn.apache.org/viewvc?rev=1029824view=rev Log: Add system property for copy

Re: About default security and windows (JMX)

2010-11-02 Thread Eric Charles
Hi, I don't know if java or windows is to blame for the jmx.password stuff, but if we leave it as now, users will blame james... I'm with Stefano on the need to have a working james without changing anything. The idea was to replace the remotemanager with a command line tool ('james

Re: [ANNOUNCE] James Server 3.0-M1 released

2010-11-02 Thread Eric Charles
Also on the apache blog https://blogs.apache.org/james/entry/apache_james_3_0_m1 and on twitter http://twitter.com/#!/planetapache/status/29508597543 http://twitter.com/#!/ApacheJames/status/29509232526 tks, Eric On 1/11/2010 07:05, Norman Maurer wrote: The Java Apache Mail Enterprise Server

Re: About default security and windows (JMX)

2010-11-02 Thread Eric Charles
On 2/11/2010 22:11, Stefano Bagnara wrote: 2010/11/2 Eric Charlese...@apache.org: I see for now 3 options: [...] 2.- Enable jmx wide-open (no username/pwd) - not really secured for a professional solution Is it possible to enable it wide-open but only bound to localhost/127.0.0.1 ?

Re: About default security and windows (JMX)

2010-11-03 Thread Eric Charles
Hi Israel, I don't know wmi nor cscript. Is it supported on all windows ? Do you think it can implement what is described on http://download.oracle.com/javase/1.5.0/docs/guide/management/security-windows.html ? If you have time to contribute something, we will be happy to integrate in

Re: [VOTE] Release JAMES Server 3.0-M2

2010-11-07 Thread Eric Charles
[x] +1 Yes please release Eric PS: The james-server-3.0-M2-source-release... artifacts are not present in the release. On 6/11/2010 19:59, Norman Maurer wrote: Hi all, its time to start a VOTE for the second milestone of the upcomming major version of JAMES Server (3.0). I know its not

Re: [VOTE] Release JAMES Server 3.0-M2

2010-11-09 Thread Eric Charles
Hi Stefano, We mainly test the incoming SMTP and consultation (POP/IMAP) traffics, but not much the outgoing/relaying SMTP. I saw there were much changes on the activemq policy,... just before M2 trying to deal with amq downgrades (still waiting on bugs fixes for 5.4.2 ). I also talked with

Re: [VOTE AGAIN] James Server 3.0-M2

2010-11-11 Thread Eric Charles
[ x ] +1 Yes please release Tks, Eric On 10/11/2010 20:49, Norman Maurer wrote: Hi all, after fixing a major bug with leaking files on windows I want to start the VOTE for M2 again. Here are the artifacts for review: https://repository.apache.org/content/repositories/orgapachejames-056/ So

Re: [VOTE AGAIN] James Server 3.0-M2

2010-11-11 Thread Eric Charles
Tks Norman leak-killer Maurer :) (it also does not leak anymore on my windows 7) Eric On 10/11/2010 20:49, Norman Maurer wrote: Hi all, after fixing a major bug with leaking files on windows I want to start the VOTE for M2 again. Here are the artifacts for review:

Re: [ANNOUNCE] James Server 3.0-M2 released

2010-11-15 Thread Eric Charles
Also on https://blogs.apache.org/james/entry/apache_james_3_0_m2 Eric On 15/11/2010 10:15, Norman Maurer wrote: The Java Apache Mail Enterprise Server (a.k.a. Apache James) Project is happy to announce the release of version 3.0-M2 (Milestone 2) of the Apache James server. This is the second

Re: Where are logo src (gimp,...)?

2010-11-15 Thread Eric Charles
://www.linotype.com/487329/bumblebeeonthemoon-font.html I don't know the full implications of licensing arrangements but you are welcome to have/use/[appropriate legal definition] it. Regards, Simon On 16/10/10 13:30, Eric Charles wrote: Hi Stefano, I looked for a place to download Florentine URW

Re: [ANNOUNCE] James Server 3.0-M2 released

2010-11-15 Thread Eric Charles
... and here http://twitter.com/#!/planetapache/status/4122281479507968 Eric On 15/11/2010 10:58, Eric Charles wrote: Also on https://blogs.apache.org/james/entry/apache_james_3_0_m2 Eric On 15/11/2010 10:15, Norman Maurer wrote: The Java Apache Mail Enterprise Server (a.k.a. Apache James

Fwd: [ANNOUNCE] POP3 broken in James Server 3.0-M2

2010-11-17 Thread Eric Charles
:36:12 +0100 From: Eric Charles e...@apache.org To: James Users List server-u...@james.apache.org Hi, It has been reported on https://issues.apache.org/jira/browse/JAMES-1136 that POP3 is broken in the Milestone 2 release of James 3. You can use IMAP4 without any problem. This is now

Re: [DISCUSS] Run James on james-testing.de

2010-11-18 Thread Eric Charles
Hi, The ideal would be to have windows and linux (virtual) server with jdk 1.5 and enough memory (2GB?). I don't know if apache or Bernd's infra can offer this. I was also thinking to benchmarks (james/windows vs james/linux, james vs other mails servers, james maildir vs james jpa,...), so

Re: [DISCUSS] Run James on james-testing.de

2010-11-22 Thread Eric Charles
Hi Bernd, That sound really great! If OK to everyone, I could setup something to automate the tests based on postage. Do you plan to send ssh account to james committers? Take your time, there's really no emergency, I'm full busy for now. Tks, Eric On 19/11/2010 12:04, Bernd Fondermann

Re: [DISCUSS] Run James on james-testing.de

2010-11-22 Thread Eric Charles
Oops, didn't read your last paragraph... Did you plan to setup and deploy your self? (just to know) Tks, Eric On 22/11/2010 10:51, Eric Charles wrote: Hi Bernd, That sound really great! If OK to everyone, I could setup something to automate the tests based on postage. Do you plan to send

Re: [VOTE] Release protocols 1.2

2010-11-27 Thread Eric Charles
I'm running the trunk (with protocols proposed for 1.2) since a few hours on linux and SMTP (in), IMAP4 and POP3 are ok so far on (can't test smtp relay on my env). I will wait one more day to monitor log, tmp file, queues, mem,... before giving my +1 Tks, Eric On 27/11/2010 20:25, Norman

Re: svn commit: r1039673 - /james/server/trunk/container-spring/src/main/config/james/spring-beans.xml

2010-11-27 Thread Eric Charles
Hi Norman, Is it also update in example/spring-beans.xml ? Tks, Eric On 27/11/2010 14:08, nor...@apache.org wrote: Author: norman Date: Sat Nov 27 13:08:48 2010 New Revision: 1039673 URL: http://svn.apache.org/viewvc?rev=1039673view=rev Log: adjust spring config to match current mailbox code

Re: James 3 M2 not creating database tables

2010-11-29 Thread Eric Charles
Hi Eric, Yes, openjpa does not create the tables if you don't request database access (read/write). Simply create a domain or a user to get the tables created. You can still use the telnet way if you are not sure about the JMX parameters For the JMX parameters, could you please open a JIRA

Re: [VOTE] Release protocols 1.2

2010-11-29 Thread Eric Charles
[x] +1 Yes, please release protocols-1.2 works fine with current trunk server. Tks, Eric On 27/11/2010 20:25, Norman Maurer wrote: Hi there, its time again to cut a release for protocols. This release will be included in the upcomming james server release. So please review and cut your

Re: James 3 M2 not creating database tables

2010-11-29 Thread Eric Charles
JIRA opened for tables creation on server startup https://issues.apache.org/jira/browse/JAMES-1142 Tks, Eric On 29/11/2010 10:07, Norman Maurer wrote: Btw, I wonder if this is configurable so openjpa would create tables on startup. So we would fail on bad username/password asap. Bye, Norman

[Discuss] mailbox-store responsibility

2010-11-29 Thread Eric Charles
Hi, The mailbox-store provides base/common logic to all stores. There seems to be a trend to add more shared functions in it, namely: 1.- LastUidTracker replacing the getLastUid() method that was implemented in each store. 2.-MailboxPathLocker used when creating/renaming mailbox. The extra

<    1   2   3   4   5   6   7   8   9   10   >