Tracking each piece of mail through the system

2004-03-19 Thread Jerry Malcolm
 I’ve got a situation where some legit mail is being categorized as spam.  I run a few of the default spam blockers that come with James.  But I can’t figure out which one is causing a spam hit.  I’m familiar with all the various logs.  But there doesn’t appear to be a single routing log th

AntiVirus for Windows Server 2003?

2004-04-01 Thread Jerry Malcolm
 Slightly off topic... but I need to get an antivirus package to plug into James via the mailet. Norton's cheapest product that'll run on "Windows Server 2003" is $269 for 5 licenses (which I don't need). I have a single server. Just currently stuck with Server 2003. I found eTrust antivirus fr

"Can't find DNS for domain" when domain does exist

2006-01-25 Thread Jerry Malcolm
I'm getting a bounce when trying to send mail to a valid domain. I get an error in the log that says it can't find the dns entry. The dns entry is clearly there when I do an nslookup. However, I went to dnsreport.com and got the following error when it analyzed the DNS for the domain: =

Maintaining server names list automatically?

2006-01-25 Thread Jerry Malcolm
I host quite a few server names hosted with one James instance. And server names periodically come and go. When I add a new client, I'd really like to have an automated way to add the server name to the list. I realize the brute force way is to write some sort of Perl or Rexx script that parses

Preserving MAIL_IS_SEEN state?

2014-05-18 Thread Jerry Malcolm
I am desperately trying to figure out a way to access a message without having the MAIL_IS_SEEN flag set. I have some background server apps that need to scan folders and do various automated maintenance tasks. I do not want unread mail to be marked as seen just because the utility happened

Thunderbird Compatibility with JAMES 3.0?

2014-06-10 Thread Jerry Malcolm
Has anyone encountered problems using JAMES 3 IMAP with Mozilla Thunderbird client? It appears to work fine with small-medium mailbox repositories. But I have a client that has a large mail account with over 500,000 emails spread across a series of folders, and we are seeing some serious prob

James 3 Multiple Datasources?

2014-07-04 Thread Jerry Malcolm
I need to be able to access a different database from my default James mail db in a couple of matchers and mailets. In james 2, I was able to easily add a 2nd datasource into the tag block in the config file, and simple access the other datasource by name in my matcher/mailets. In James 3, I

ToSenderFolder Mailet Failure (James 3)

2014-07-04 Thread Jerry Malcolm
I tried activating the ToSenderFolder mailet and could not get it to work. I added some debug code and looked through the source, and I see where the problem is. The mailet assumes that the username (user login name / repository name) is the sender's email address. (see code snippit at the bo

Re: ToSenderFolder Mailet Failure (James 3)

2014-07-05 Thread Jerry Malcolm
a bug in the mailet and not a feature request. The mailet should handle by default the situation where the sender email address is NOT the username, and not require my custom hack to make it work. Thanks. Jerry On 7/4/2014 8:30 PM, Jerry Malcolm wrote: I tried activating the ToSenderFolder

Re: Preserving MAIL_IS_SEEN state?

2014-07-05 Thread Jerry Malcolm
lso upload a simple test case that shows this. Eric On 05/18/2014 10:06 PM, Jerry Malcolm wrote: I am desperately trying to figure out a way to access a message without having the MAIL_IS_SEEN flag set. I have some background server apps that need to scan folders and do various automated mainte

James 3 b4 HELO Override Not Working?

2014-10-26 Thread Jerry Malcolm
I have been running James 3 b4 for several months. I was having some outbound mail rejected by gmail and started doing some research. I did an email test using mail-tester.com and got the error message that my HELO did not match the rDNS. It reports: IP: 64.34.163.186 HELO: p2825577 rDNS: m

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
.youtube.com/channel/UChNyi0dlyanLLhp7cA9q5dA or if you prefer a text tutorial, on my blog: http://blog.bonnydoonmedia.com/post.cfm/building-apache-james-from-source On Oct 26, 2014, at 10:44 PM, Jerry Malcolm wrote: I have been running James 3 b4 for several months. I was having some outbou

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
More progress... But now I'm really stumped. I dug into the remoteDelivery mailet source. I did confirm that James is NOT using the smtpserver.xml 'hello' value at all for outbound HELO. It is definitely using the config parms for the remoteDelivery mailet. In the mailet, the outbound HELO

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
Thanks for jumping in and investigating. This has gone from ugly to horrible I think I have found the culprit. I first had to figure out who is providing the class for SMTPTransport. I figured out that the package for SMTPTransport is: org.apache.geronimo.javamail.transport.smtp. So it

Re: James 3 b4 HELO Override Not Working? [unsigned]

2014-10-27 Thread Jerry Malcolm
liche Nachricht ---- Von: Jerry Malcolm Datum: An: James Users List Betreff: Re: James 3 b4 HELO Override Not Working? More progress... But now I'm really stumped. I dug into the remoteDelivery mailet source. I did confirm that James is NOT using the smtpserver.xml 'hello'

Re: James 3 b4 HELO Override Not Working? [unsigned]

2014-10-27 Thread Jerry Malcolm
startup command line? Most java.mail parameters are only parsed on startup by the vm. Ciao. Bernd Ursprüngliche Nachricht ---- Von: Jerry Malcolm Datum: An: James Users List Betreff: Re: James 3 b4 HELO Override Not Working? More progress... But now I'm really

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
ere. A better patch would be to find the upstream code that is calling this method and patch it to send the correct hostname. I am hunting for that location, please let me know if you have any suggestions... On Oct 27, 2014, at 10:25 AM, Jerry Malcolm wrote: Thanks for jumping in and investigatin

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
quot;); } } return localHost; } /** * Explicitly set the local host information. * * @param localHost *The new localHost name. */ public void setLocalHost(String localHost) { this.localHost = localHost; }

Re: James 3 b4 HELO Override Not Working?

2014-10-27 Thread Jerry Malcolm
On to the next problem. Jerry On 10/27/2014 2:00 PM, Jerry Malcolm wrote: The mailet only sees 'transport' which is cast to generic "javax.mail.Transport". The localhost methods and connection methods are all part of the geronimo impl. You'll need to cast the tr

jDKIM Signature is invalid

2014-10-27 Thread Jerry Malcolm
With the HELO problem finally resolved and behind me, I'm on to the next issue that mail-tester.com is yelling at me about. It say my DKIM signature is invalid. I have tried replacing the public/private keys in my DNS and in the mailet config. I've tried different syntax options for the DNS

Re: jDKIM Signature is invalid

2014-10-28 Thread Jerry Malcolm
ivating me to add DKIM. On Oct 27, 2014, at 3:30 PM, Jerry Malcolm wrote: With the HELO problem finally resolved and behind me, I'm on to the next issue that mail-tester.com is yelling at me about. It say my DKIM signature is invalid. I have tried replacing the public/private keys i

Converting BATV address to regular email address?

2014-11-30 Thread Jerry Malcolm
I received an email through my JAMES server from an address "prvs=aakjadsfjasd=u...@domain.com". This my first experience with Bounce Address Tag Validation format for email addresses. As you might suspect, my mailets that do things based on the sender's email address all crashed and burned

Thunderbird Losing UIDs in Folders

2015-03-03 Thread Jerry Malcolm
I use JAMES 3 b5 with a relatively large mail IMAP database (>500K mail items) across several accounts. Most of my clients are using Thunderbird. The problem I'm seeing may very likely be a Thunderbird problem. But I'm just curious what might be going on. Once every few days, I'll go to one

Re: Thunderbird Losing UIDs in Folders

2015-03-03 Thread Jerry Malcolm
015, 10:21 -0600 schrieb Jerry Malcolm: I use JAMES 3 b5 with a relatively large mail IMAP database (>500K mail items) across several accounts. Most of my clients are using Thunderbird. The problem I'm seeing may very likely be a Thunderbird problem. But I'm just curious what might

Tracking Mail After Folder Moves

2015-03-13 Thread Jerry Malcolm
This is somewhat an IMAP question. But also a JAMES implementation question. My client has a massive amount of mail that must be kept and accessed. They use Thunderbird and Outlook to do the normal mail handling stuff. No problems at all on the client side. But on the back end, I need to s

Re: Tracking Mail After Folder Moves

2015-03-13 Thread Jerry Malcolm
erge it with other James releases. ( Or get it accepted in the project ? ). Hope it helps, Benoit Le 13/03/2015 16:50, Jerry Malcolm a écrit : This is somewhat an IMAP question. But also a JAMES implementation question. My client has a massive amount of mail that must be kept and accessed. T

Re: Tracking Mail After Folder Moves

2015-03-16 Thread Jerry Malcolm
ments will not change once they are inserted. Using Solr would also give you the benefits of sophisticated searching while still allowing you to store the full text of each email. On Mar 13, 2015, at 2:08 PM, Jerry Malcolm wrote: Benoit, Thanks for the info. Kinda what I was suspectin

Re: James:: Move Succesfully Processed Email to a separte directory

2015-03-27 Thread Jerry Malcolm
There is a ToFolder mailet provided by James (I'm on James 3b5...). Unfortunately, it is not easily subclassable to set the target folder. But I just cloned the entire mailet from the James source, renamed it, and customized it. You can then add whatever logic you need and define the folder t

Re: AW: Tracking Mail After Folder Moves [unsigned]

2015-03-28 Thread Jerry Malcolm
val I move the mails to a new folder (after reading). But a good indexing solution implemented in James would be nice, too. ;-) Greetings Bernd -Ursprüngliche Nachricht- Von: Jerry Malcolm [mailto:techst...@malcolms.com] Gesendet: Freitag, 13. März 2015 22:08 An: server-user@james.apache.org Betr

Gmail-style "All Mail" folder?

2015-08-27 Thread Jerry Malcolm
Is there any capability built into James to support a virtual "All Mail" folder like Gmail offers? Gmail reports the "All Mail" folder to IMAP client as just another folder. But Gmail rolls up the contents of all folders into this one virtual folder. I have some massive business accounts wit

Re: Problem with sending email to Yahoo, MSN, Hotmail and AOL accounts

2015-09-24 Thread Jerry Malcolm
Hi, Marc, I have had many problems with gmail, yahoo, hotmail, etc bouncing my emails. To say they are picky is an understatement. If there is ANY problem with the structure of your email and/or your email setup, domain, dns, server IP address, and a bunch of other things , they are going t

Blowing up the tmp folder

2016-03-31 Thread Jerry Malcolm
I have been researching why it is taking over a half hour for mysql to start up each time I have to reboot my server. One post on a forum said to check c:\Windows\temp. Apparently, if it gets a bunch of files in it, then mysql startup slows to a crawl. Ok... I checked that temp folder. Fou

SpamAssassin Flow

2016-08-12 Thread Jerry Malcolm
I just discovered my SpamAssassin flow is not working correctly. The more I researched it, the more I can't figure out what is correct (James 3). In the sample conf, there is the for SpamAssassin. But there are no matchers after it to check the X-Spam-Status header and route it based on thre

Re: SpamAssassin Flow

2016-08-13 Thread Jerry Malcolm
eshold, the header X-Spam-Flag will be added with the value of YES" I think you can then use a simple HasHeader. I hope it helps. Regards, Benoit Tellier Le 13/08/2016 à 00:43, Jerry Malcolm a écrit : I just discovered my SpamAssassin flow is not working correctly. The more I resear

Training SpamAssassin with JAMES

2016-08-14 Thread Jerry Malcolm
I am using JAMES with a mySQL mail repository. I would like to be able to train the Bayesian component of SpamAssassin using sa-learn or some equivalent. All the documentation I can find on sa-learn assumes MBox format files for the folders containing spam/ham. To this point I can't find an

Re: Training SpamAssassin with JAMES

2016-08-18 Thread Jerry Malcolm
. Is ANYBODY using SpamAssassin with JAMES? On 8/14/2016 5:40 PM, Jerry Malcolm wrote: I am using JAMES with a mySQL mail repository. I would like to be able to train the Bayesian component of SpamAssassin using sa-learn or some equivalent. All the documentation I can find on sa-learn assume

JAMES website?

2016-09-25 Thread Jerry Malcolm
Is the JAMES website getting some work done? I get a 404 on http://james.apache.org/ - To unsubscribe, e-mail: server-user-unsubscr...@james.apache.org For additional commands, e-mail: server-user-h...@james.apache.org

Re: JAMES website?

2016-09-25 Thread Jerry Malcolm
8 PM, Ioan Eugen Stan wrote: I just read an email from Eric Charles. He moved the website to gitpubsub and was working on publishing it. Maybe this is the reason? On 25.09.2016 19:39, Jerry Malcolm wrote: Is the JAMES website getting some work done? I get a 404 on http://james.

Re: JAMES website?

2016-09-25 Thread Jerry Malcolm
I understand how spf works. I need the javadoc to the jspf classes so I can program to them. On 9/25/2016 1:20 PM, Luuk wrote: On 25-09-16 19:52, Jerry Malcolm wrote: Thanks for the info. I'm curious, though, why the need to take the old site down before having the new site up.

Ramifications of Deleting 'var' in James 3?

2016-12-27 Thread Jerry Malcolm
I've been on James 3 for nearly 3 years. It's a rare occurrence, but there have been a few times that the var 'store' has become corrupted. Basically, JAMES siezes up, and nothing will get it going again. I have found in these situations (basically through trial and error) that deleting the

Moving Archived Messages Out of Database

2017-03-25 Thread Jerry Malcolm
I have a client who has some folders with 150,000+ messages in them. When he accesses these folders via Thunderbird or other clients, James gets swamped with returning the message list and slows down responding to all my other clients. Most of these messages are old and could be archived. Bu

Re: Moving Archived Messages Out of Database

2017-03-27 Thread Jerry Malcolm
I'm using MySQL. I'd love to get better performance on large folders. However, I'd prefer to make clients move old archive folders completely off the server and store locally (the way POP3 does). Since IMAP doesn't support doing that directly, I'm looking for suggestions on how to move hund

OOM on Specific Emails

2017-04-21 Thread Jerry Malcolm
I have James R3B5. It's been working fine for over 2 years. But in the last few months I randomly start getting repeated OutOfMemory exceptions. The only fix I've found is to delete the var folder and reboot. The OOM entry in the log is always preceded by an error related to one particular

Re: OOM on Specific Emails

2017-04-25 Thread Jerry Malcolm
You might want to position a "SizeGreaterThan" matcher to defend against this. Hope this helps, Thanks for the report, Benoit Le 22/04/2017 à 05:27, Jerry Malcolm a écrit : I have James R3B5. It's been working fine for over 2 years. But in the last few months I random

Re: OOM on Specific Emails

2017-04-26 Thread Jerry Malcolm
killing it and hopefully figure out the characteristic that is causing the OOM and simply kill it before the OOM can even occur. But that's phase 2 Just want to stop the infinite loop first. On 4/25/2017 11:39 AM, Jerry Malcolm wrote: Benoit, Thanks so much for the informa

Meaning of "Got : ##" in IMapServer log?

2017-04-27 Thread Jerry Malcolm
Some of my users are getting timeouts periodically in Thunderbird and other mail clients when trying to access their mail folders. I enabled DEBUG on IMAP (James R3B5). I'm seeing sessions lasting several minutes with an ongoing "tag" count. I have a pretty good grasp of the IMAP API and hav

Re: Training SpamAssassin with JAMES

2017-07-06 Thread Jerry Malcolm
er into a file system MBOX folder? I 'guess' I could copy a db folder into a file system folder, then run sa-learn on it, then erase it. Sounds like duct tape and baling wire... But I HAVE to do SOMETHING. Please give me some advice. Thanks. Jerry On 8/18/2016 2:20 PM, Jerry Malc

james_mail_userflag not being managed

2017-10-08 Thread Jerry Malcolm
I'm running r3b5.  I have a reasonably large repository with ~1M mail records.  I just noticed that the james_mail_userflag table has 1.2 BILLION records... approximately 1000 records for each email record.  I do use user flags a lot.  But I would expect a max of one user flag record for each e

Re: Forwarding Mailet

2017-11-02 Thread Jerry Malcolm
If you host both domains on the same server, you can add records to the JAMES_Recipient_Rewrite table.  Also, there is a Resend mailet that you can use to send to outside domains.  Depending on you specific requirements you might need to write a subclass of it to customize it to your needs.

Java Update Disaster

2018-04-28 Thread Jerry Malcolm
James has been working for months untouched.=C2=A0 This morning I needed to= =20 reboot the server for other reasons.=C2=A0 When it came back, James would n= ot=20 start.=C2=A0 It was giving me errors saying camel xml file had syntax error= s=20 and couldn't parse, etc.=C2=A0 This really blindside

Multiple Databases?

2018-05-08 Thread Jerry Malcolm
I realize this is a completely off-the-wall question... but has there been any discussion about breaking the JAMES db into multiple databases?  I have a bunch of clients, each with a bunch of accounts.  And they all want to archive all of their mail and be able to access it through the same mai

Re: New user, so far so good .. just one problem.

2018-12-27 Thread Jerry Malcolm
Gmail can be harsh... Any little thing wrong, and they chunk your mail.   Just a suggestion if you haven't already done so, go to http://www.mail-tester.com/ and then send an email to the address they give you.  They'll grade your email.  I've found if you don't get a 10 out of 10, you'll have

Blacklist site started flagging everything as spam this morning

2019-01-02 Thread Jerry Malcolm
I am running 3.0b5.  Everything has been running pretty much without a hitch for a couple of years now.  Around 5:30 this morning (11:30GMT) all inbound mail started being flagged as spam.  After digging through the logs and my conf files, I finally isolated it to the njabl.org site.  It was fl

Windows Service Problem

2019-08-02 Thread Jerry Malcolm
I have had James v3B5 running for several years on a WinServer16 box.  In the last couple of weeks, the service has failed to start.  I can open a command prompt and run James with the 'run' bat file from there without any problem.  I've tried rebooting.  I uninstalled the service and reinstall

Re: James with AWS SES mail receiving

2019-08-05 Thread Jerry Malcolm
I'm looking at moving off of my dedicated server to AWS, which means moving JAMES.  Interesting concepts in this thread below from a year or so ago about using SES.  But all I want to do is get JAMES up and running in an AWS EC2 with an RDS with as little rip up and effort as possible.   Assumi

Re: James with AWS SES mail receiving

2019-08-20 Thread Jerry Malcolm
to go. Am I missing something? Cheers, Benoit On 05/08/2019 23:24, Jerry Malcolm wrote: I'm looking at moving off of my dedicated server to AWS, which means moving JAMES.  Interesting concepts in this thread below from a year or so ago about using SES.  But all I want to do is get JAMES up an

"Getting Started" with JAMES using Docker

2019-08-28 Thread Jerry Malcolm
I was preparing to do a trial run at getting James up and running on an AWS EC2 instance.  I went to the James home page and saw there is a 1-line command to download and install it.  However, to use that one line there is apparently an assumption of a full understanding of Docker and a pre-exi

Re: "Getting Started" with JAMES using Docker

2019-08-29 Thread Jerry Malcolm
dated documentation, but I suggest that you try either with latest tag (so the command would be docker run -p "25:25" -p "143:143" linagora/james-jpa-sample) or if you really have some reasons for 3.3.X then I would try with docker run -p "25:25" -p "143:143"

Re: "Getting Started" with JAMES using Docker

2019-08-29 Thread Jerry Malcolm
with latest tag (so the command would be docker run -p "25:25" -p "143:143" linagora/james-jpa-sample) or if you really have some reasons for 3.3.X then I would try with docker run -p "25:25" -p "143:143" linagora/james-jpa-sample:3.3.X Let's try that a

Re: "Getting Started" with JAMES using Docker

2019-08-31 Thread Jerry Malcolm
with such a proposal? Thanks again for your feedback, it's really helpful. Best regards, Benoit On 30/08/2019 11:40, Jerry Malcolm wrote: Hi, Aleksanda, I really appreciate your information.  I believe that someone realized the image wasn't there and quietly got it posted overni

Building James 3.3.0 in Eclipse

2019-08-31 Thread Jerry Malcolm
I'm trying to build the latest stable James 3.3.0 in Eclipse. -- The link to the 3.3.0 source zip on the downloads page is dead (https://www.apache.org/dyn/closer.lua/james/server/3.3.0/james-server-sources-3.3.0.zip) -- I figured out the correct link: http://mirrors.gigenet.com/apache/james/

Re: Building James 3.3.0 in Eclipse

2019-08-31 Thread Jerry Malcolm
Correction... the build instructions page link should be: https://james.apache.org/server/3/dev-build.html On 8/31/2019 4:52 PM, Jerry Malcolm wrote: I'm trying to build the latest stable James 3.3.0 in Eclipse. -- The link to the 3.3.0 source zip on the downloads page is dead (

Re: Building James 3.3.0 in Eclipse

2019-08-31 Thread Jerry Malcolm
Something else I just found... the link to a tutorial at http://blog.bonnydoonmedia.com/post.cfm/walkthrough-tutorials-compiling-apache-james-v3-with-eclipse in the Eclipse build section is dead.  No DNS entry. On 8/31/2019 4:54 PM, Jerry Malcolm wrote: Correction... the build instructions

Re: Building James 3.3.0 in Eclipse

2019-08-31 Thread Jerry Malcolm
after 3.3.0 was finalizedbecause the government finally approved 3.3.0 for use (ironically, they had been insisting that 3.0.4beta was safe to use in production and I outright refused to put that in place). Sent from my iPhone On Aug 31, 2019, at 6:02 PM, Jerry Malcolm wrote: Something else I

Re: Building James 3.3.0 in Eclipse

2019-09-02 Thread Jerry Malcolm
9-09-01 06:16, Jerry Malcolm a écrit : Thanks for the info, Garry.  But I'm still confused.  Are you saying that it is no longer possible to build from the source on Eclipse?  I realize the team may be pushing docker.  But there are still non-docker binaries that got built someway.  I just w

Re: Building James 3.3.0 in Eclipse

2019-09-02 Thread Jerry Malcolm
all of these change that I really have an 'official' 3.3.x James. Suggestions?  Where did I stray from the correct path?  I'm beginning to feel like I belong in the class with the slow kids On 9/2/2019 6:04 PM, Jerry Malcolm wrote: On 9/2/2019 2:55 AM, Raphael OUAZANA

Re: Building James 3.3.0 in Eclipse

2019-09-04 Thread Jerry Malcolm
Any help on this would be appreciated.  I'm dead in the water now on this. Thx. Jerry On 9/2/2019 10:40 PM, Jerry Malcolm wrote: Raphael, Thanks for the guidance.  I'm closer now.  But still not there. After a full day of trial and error on this, I settled on the following steps:

3.0.0 on Linux

2019-09-07 Thread Jerry Malcolm
I'm still waiting and hoping somebody can please explain why I can't build 3.3.0 on Eclipse.  (See my other thread).  But I'm on a deadline.  My windows server is going away soon and I HAVE to get a mail solution onto AWS.  (ANYBODY?? PLEASE HELP!) So in meantime, plan-B is to copy my current

Re: 3.0.0 on Linux

2019-09-08 Thread Jerry Malcolm
, it never made it out of Beta stage. 3.3.0 works and is stable, so unless you have some reason to use an older version, you should consider updating. Sent from my iPhone On Sep 8, 2019, at 12:07 AM, Jerry Malcolm wrote: I'm still waiting and hoping somebody can please explain why I can&

Re: 3.0.0 on Linux

2019-09-09 Thread Jerry Malcolm
on, and that is why I signed up on this list. What is the issue with 3.3.0? What is the error you are getting? On Sun, Sep 8, 2019 at 2:20 PM Jerry Malcolm wrote: Hi Garry, You missed my point. I've been trying to get help on building 3.3.0 for over a week with no response (see my long

Re: 3.0.0 on Linux

2019-09-09 Thread Jerry Malcolm
xplain what's happening. On 9/9/2019 11:38 AM, Jerry Malcolm wrote: Garry, I'm all for taking the shortest route to the latest code.  Here is my full saga from a previous post: 1) On a clean eclipse workspace, File-->Import-->Git --- I selected "clone URI" and

AdministratorId Documentation

2019-09-12 Thread Jerry Malcolm
Since it appears I'm not going to be able to build James 3.3.0 in the foreseeable future, I'm now moving to plan d, e, f, or whatever... .I've lost count. My goal now is to assess my possibilities of using James 3.3.0 binaries as-is and discarding the functionality I had hoped to re-add to 3.3

30b5 to 3.3.0 Database Changes?

2019-09-12 Thread Jerry Malcolm
Quick question... does 3.3.0 do any upward migration of an existing database that burns bridges for accessing it by 3.0.beta5?  In other words, if I start up 3.3.0 using my existing database and I find problems, can I successfully revert back to using beta5?  Or does 3.3.0 do irreversible modif

Re: AdministratorId Documentation

2019-09-12 Thread Jerry Malcolm
IntelliJ, and I encounter no issue. To be able to compile, I use maven 3.6.2 with JDK 11. Best regards, Benoit Tellier On 13/09/2019 09:53, Jerry Malcolm wrote: Since it appears I'm not going to be able to build James 3.3.0 in the foreseeable future, I'm now moving to plan d, e, f, or

Intercepting delivery success/fail

2019-09-12 Thread Jerry Malcolm
Another mod I had made to v3b5 was to intercept the final result of success/fail of delivery.  I have a requirement to externally log the "mail was successfully transferred to " message and also after all of the retries are exhausted, the final 'fail' message. Back in v3b5 I cloned the Remote

Re: AdministratorId Documentation

2019-09-12 Thread Jerry Malcolm
I believe I'm just using the basic javax.mail.* that comes with JDK 1.8.   Do I need to move to a later imap implementation package? On 9/12/2019 10:40 PM, Tellier Benoit wrote: Wich library are you using? On 13/09/2019 10:33, Jerry Malcolm wrote: Thanks for the info, Tellier.  I kinda

Re: AdministratorId Documentation

2019-09-13 Thread Jerry Malcolm
it wrote: Wich library are you using? On 13/09/2019 10:33, Jerry Malcolm wrote: Thanks for the info, Tellier.  I kinda lost you on the mpt tests... I was looking for how to change the following code to include an administrator id.  I only have one field in the store.connect() method for a user id

Re: AdministratorId Documentation

2019-09-13 Thread Jerry Malcolm
Ignore my previous question.  I dug further and realized that your auth method is a lower-level replacement for the login method in the commons.net sample.  Still may have other questions... But I think I'm good on this one for now. Thx On 9/13/2019 12:43 PM, Jerry Malcolm wrote: Te

James Database Import

2019-09-14 Thread Jerry Malcolm
This is a bit off-topic... more of a database question... but it IS about the James database.  Hopefully somebody understands the James schema details enough to recognize the errors below and explain why the import is failing.  I posted this in the AWS RDS forum.  But no help there so far I

Re: James Database Import

2019-09-16 Thread Jerry Malcolm
er. Not too mention that ORM is also a tricky piece of software: - OpenJPA do not mention Apache RDS in their examples Do you succeed to run a fresh James install on top of RDS? Best regards, Benoit Tellier On 15/09/2019 10:46, Jerry Malcolm wrote: This is a bit off-topic... more of a database que

Re: James Database Import

2019-09-16 Thread Jerry Malcolm
00:27, Jerry Malcolm wrote: Thanks so much for all of the advice.  I think I've got a resolution. 1) First misassumption... mySQL makes no attempt to order tables based on foreign key dependency.  I just assumed the tables would be ordered correctly (bad habit assuming).  But due to pos

two datasources?

2019-09-16 Thread Jerry Malcolm
A couple of my mailets need to access a different database other than the base james db.  I've got the main db set up in the james-database.properties file.  Currently I'm just hardcoding the database connection to the other db in the mailet.  Just curious if there's a better architected proces

Re: two datasources?

2019-09-16 Thread Jerry Malcolm
generic storage API for them - Rewrite these mailets on top of this storage API - Provide JPA storage for these storage APIs - Bind stuff in Guice/Spring A bit of work, but if you really need it, I would be pleased to provide such guidance. On 17/09/2019 09:39, Jerry Malcolm wrote: A coupl

IMAP Error

2019-09-16 Thread Jerry Malcolm
The fun just keeps happening I was finally able to bring up the new installation of James 3.3.0 with a sandbox copy of my real database.  I created a new test email account in James and configured it in my local Thunderbird instance.  So far, so good. But now every time Thunderbird contacts

Re: IMAP Error

2019-09-16 Thread Jerry Malcolm
e" listed in the openjpa.MetaDataFactory configuration property could not be loaded by sun.misc.Launcher$AppClassLoader@764c12b6; ignoring. On 9/16/2019 10:28 PM, Jerry Malcolm wrote: The fun just keeps happening I was finally able to bring up the new installation of James 3.3.0 with a sa

Re: IMAP Error

2019-09-17 Thread Jerry Malcolm
exact James version? - JDBC mysql driver version? - MySQL version? This would enable us to be testing this locally, see if we can reproduce it with basic setup... Cheers, Benoit On 17/09/2019 10:36, Jerry Malcolm wrote: Something that might be relevant to this problem, but the messages make no

log4j Configuration

2019-09-17 Thread Jerry Malcolm
For the problem du jour when I start JAMES, all of the expected log files get created.  The main log output  goes to the console and to the james-server.log file as expected.  No problem there.  But the remainder of the log files never get touched.  No matter what happens, every file in the

Re: log4j Configuration

2019-09-17 Thread Jerry Malcolm
On Sep 17, 2019, at 4:34 PM, Jerry Malcolm wrote: For the problem du jour when I start JAMES, all of the expected log files get created. The main log output goes to the console and to the james-server.log file as expected. No problem there. But the remainder of the log files never get to

Re: log4j Configuration

2019-09-17 Thread Jerry Malcolm
mailet API (no placeholder for instance), and also killed some "debug" configuration parameters. I believe that your log4j configuration file inherited from beta5 needs to be revisited to adapt these changes. Hope it helps. Benoit On 18/09/2019 09:10, Jerry Malcolm wrote: Not good ne

Re: log4j Configuration

2019-09-17 Thread Jerry Malcolm
/17/2019  21:33   0  usersrepository.log  9/17/2019  21:33   0  virtualusertable.log On 9/17/2019 10:49 PM, Tellier Benoit wrote: I inlined my answers... Regards, On 18/09/2019 10:32, Jerry Malcolm wrote: Thanks for the reply.  But I did not use my old log4j.properties.  I copi

Re: log4j Configuration

2019-09-17 Thread Jerry Malcolm
Benoit wrote: I inlined my answers... Regards, On 18/09/2019 10:32, Jerry Malcolm wrote: Thanks for the reply.  But I did not use my old log4j.properties.  I copied the one from the downloaded 3.3.0 zip file.  Although, it looks almost identical to the beta5 one.  Any chance the wrong one is

Re: log4j Configuration

2019-09-18 Thread Jerry Malcolm
x27;s a log4j.properties change, I just need to know what to change.  I'm dead in the water. On 9/17/2019 11:08 PM, Jerry Malcolm wrote: I added the transport line as you suggested and sent a test email inbound.  The console showed it coming in, as does james-server.log.  But still, th

Re: log4j Configuration

2019-09-19 Thread Jerry Malcolm
don't have the tools. Can somebody in James development please take a few minutes and see if they figure it out?  I'm sure it's probably something trivial as properties file settings.  But without some guidance, I'm shooting in the dark. Help, please? Jerry On 9/18/2019 10:1

LetsEncrypt Certificates Not Trusted

2019-09-25 Thread Jerry Malcolm
Still nothing on making the logs work...  While waiting on that, I'm moving to SSL.  I was not using SSL on beta5.  So this is likely a generic SSL question not specific to 3.3.0.  See the setup and configuration info below.  When I try to create an account in Thunderbird and also in an iPhone,

JMX Access?

2019-09-25 Thread Jerry Malcolm
I figure if I keep asking questions, sooner or later I'm going to hit one that SOMEBODY can help me with  The issues keep backing up.  And my deadline is way too close Is anyone using James 3.3.0?  Yet I'm the only one having these out-of-the-box problems?  This migration has been an ab

Re: JMX Access?

2019-09-25 Thread Jerry Malcolm
this helps and you can meet your deadline now :-) Let me know how it goes. Thanks, Sai On Thu, Sep 26, 2019 at 1:11 AM Jerry Malcolm wrote: I figure if I keep asking questions, sooner or later I'm going to hit one that SOMEBODY can help me with The issues keep backing up. And my d

Re: JMX Access?

2019-09-25 Thread Jerry Malcolm
company) might you be unhappy with the support provided as part of the community. And for your information, yes, we are using James 3.3.0. I will answer your JMX question in an other email. Best regards On 26/09/2019 12:03, Jerry Malcolm wrote: I figure if I keep asking questions, sooner or later I

Re: JMX Access?

2019-09-25 Thread Jerry Malcolm
m/cve/CVE-2017-12628/ for instance. Exposing JMX only to localHost is a mitigation. Could this be the root of your JMX problem? On 26/09/2019 12:03, Jerry Malcolm wrote: [...]> So I decided to use JMX to see if there were any MBeans exposed that might help me figure out why there is no logging.

Re: log4j Configuration

2019-09-26 Thread Jerry Malcolm
work as the test did. Thanks. Jerry On 9/26/2019 2:53 AM, Tellier Benoit wrote: Check https://github.com/linagora/james-project/pull/2718 This should solve your issue. On 20/09/2019 09:18, Jerry Malcolm wrote: Any chance I could get someone to take a look at this problem? There's no way for

3.4.0 AWS S3 Storage

2019-09-27 Thread Jerry Malcolm
I moved to 3.4.0 today with no major hurdles.  I'm thrilled with the announcement about using AWS S3 for blob storage.  This is huge for me.  I figure it'll reduce my 80+gB SQL database by about 95%.  That will help with storage cost as well as migration, backup, and just about everything deali

  1   2   >