RE: Mailet API version

2005-04-27 Thread Noel J. Bergman
The base for the Mailet API for the next release (not the POJO release) has been committed. > > What are the proposed/scheduled changes to the MailRepository Possibly to replace it wholesale in the long run. But we'll see. One option would be to see if JavaMail can be leveraged. That is unclea

RE: JDBCVirtualUserTable

2005-04-27 Thread Noel J. Bergman
At a quick glance, your JDBCVirtualUserTable and data-source look OK. Did you manually test that you can access the database using that user and password? Did you create the table as required? --- Noel - To unsubscribe

Re: JDBCVirtualUserTable

2005-04-27 Thread Kelly
Yes I did. org.gjt.mm.mysql.Driver jdbc:mysql://localhost/james_mail?autoReconnect=true 20 I put the mailer under the child is that right? K Noel J. Bergman wrote: Kelly, java.sql.SQLException: Giving up... no connec

RE: JDBCVirtualUserTable

2005-04-27 Thread Noel J. Bergman
Kelly, > java.sql.SQLException: Giving up... no connections available.). Did you setup the database connections for JAMES? --- Noel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

JDBCVirtualUserTable

2005-04-27 Thread Kelly
Does anyone have any sources for learning how to implement JDBCVirtualUserTable? I created a database in MySQL and created a table called 'VirtualUserTable' I added this to the config.xml file: db://maildb/VirtualUserTable When I start JAMES it throws an error as follows: ERROR 2005-04-27

Re: Mailet API version

2005-04-27 Thread Serge Knystautas
On Wed, 27 Apr 2005 19:06:00 +0200 <[EMAIL PROTECTED]> wrote: What are the proposed/scheduled changes to the MailRepository interface? This will largely be driven by a) IMAP development and b) POJO-ification of James. Both are topics for the developer list as they are still up for discussion a

Re: Mailet API version

2005-04-27 Thread apache
> MailRepository has not been added to the mailet API, and > will probably be changed before it would be added. What are the proposed/scheduled changes to the MailRepository interface? I think that 1 thing that should be supported is to be able to retrieve the size of the messages while retriev

Re: Mailet API version

2005-04-27 Thread Serge Knystautas
On Wed, 27 Apr 2005 10:17:13 -0500 (CDT) "Ryan Calder" <[EMAIL PROTECTED]> wrote: Where can I get the Mailet API described by the Javadocs at http://james.apache.org/mailet/ ? Unfortunately, that is for an unreleased version of James. MailRepository has not been added to the mailet API, and wil

Mailet API version

2005-04-27 Thread Ryan Calder
Where can I get the Mailet API described by the Javadocs at http://james.apache.org/mailet/ ? I'm trying to use the MailRepository interface in a mailet, but it doesn't look like the 2.2.0 jars include org.apache.mailet.MailRepository support. Am I missing something? Thanks, Ryan Calder [EMAIL P

Re: [Fwd: Re: new guy needs a little help]

2005-04-27 Thread Jay
Got it working .. thanks for the tips.. removed authorizedaddress and set authrequired true. During all that, I may have changed some of the networks in authorizedaddresses before I removed it. Think I had both on at the same time. I used the mailet.log to track things down. I also have it runnin

Re: [Fwd: Re: new guy needs a little help]

2005-04-27 Thread apache
> ..The mail server responded: Requested action not taken: > relaying denied. ... > > Will work on relay next Look at the authorizedAddress or requireAuth params in the config.xml Stefano - To unsubscribe, e-mail: [EMAIL PROTE

Re: new guy needs a little help

2005-04-27 Thread Jay
Stefano thanks .. as I said, most seems to be working.. I can recieve mail.. but can't send it out. I tried setting smtp authorization to true.. it appears from Thunderbird to be sent.. but it never gets to the desitnation email. Set authorization back off and specified <192.168.1.* , test.com

Re: new guy needs a little help

2005-04-27 Thread apache
> Thanks.. > BTW, I am running WinXP. > for port 25: > > Connecting To xx.xx.xx.xx.. Could not open connection to the > host on port 25: Connect failed. > > And the same for port 110 > > I removed my antivirus sw and turned off xp security .. same results. Try doing the telnet from the same ma

[Fwd: Re: new guy needs a little help]

2005-04-27 Thread Jay
New news.. started with a new config.xml file -- followed the instructions n JamesQuickstart.. worked ok... Started Thunderbird and received the a message I sent via the telnet command. Also from another computer just addressing email as I would expect [EMAIL PROTECTED] .. Tried to send mail fr

Re: new guy needs a little help

2005-04-27 Thread Jay
Thanks.. BTW, I am running WinXP. for port 25: Connecting To xx.xx.xx.xx.. Could not open connection to the host on port 25: Connect failed. And the same for port 110 I removed my antivirus sw and turned off xp security .. same results. Jay [EMAIL PROTECTED] wrote: SMTP debug session: telnet 25

Re: java program to load on James startup

2005-04-27 Thread apache
> i have a java program which gets data from the > database and sends a mail to existing users. This program is > a part of the jar file that am placing in SAR-INF/lib folder. > Currently am invoking this program by a shell script whick > invokes the program through its main method. I

Re: java program to load on James startup

2005-04-27 Thread radjesh
hi, i have a java program which gets data from the database and sends a mail to existing users. This program is a part of the jar file that am placing in SAR-INF/lib folder. Currently am invoking this program by a shell script whick invokes the program through its main method. I cannot

Re: java program to load on James startup

2005-04-27 Thread apache
> Hi, >I have a java program which should be invoked everytime i > start the James server. What program? What are you trying to do? 1) you can change the phoenix.sh script and add any command (either java or not) in the head 2) you can create a phoenix application, create the *.sar file and

Re: new guy needs a little help

2005-04-27 Thread apache
SMTP debug session: telnet 25 < 220 JAMES server ready > EHLO test.com < 250-please to meet you < 250 SIZE > MAIL FROM: <[EMAIL PROTECTED]> < 250 2.1.0 <[EMAIL PROTECTED]>... Sender ok > RCPT TO: <[EMAIL PROTECTED]> < 250 2.1.5 <[EMAIL PROTECTED]>... Recipient ok > DATA < 354 Enter mail, end with

Sorr for such a basic problem, but I've spent a day on this..

2005-04-27 Thread Jay Lowe
I've looked in the archives and can't find enough information. .. new guy at this.. Have james installed and running localhost to localhost. Have the dsn mx pointing to my domain .. mail.hereiam.net .. can't send or receive mail outside the localhost. I've done everything I can find in FAQ and here

java program to load on James startup

2005-04-27 Thread radjesh
Hi, I have a java program which should be invoked everytime i start the James server. Where should i change in config.xml so that the particular java program gets invoked. I dont think there is any particular matcher to do this job. Can anyone help with this Thanks in advance Radjesh