Last time I send mail to this list informing that
I need to patch James to make it work with SAPDB.
Well after learning more about SAPDB I am able to
make James store mail in SAPDB without patching
James.
I am wrong in writing create table statement for SAPDB.
The right statement is :
CREATE TABLE ${table} (
message_name varchar (200) NOT NULL,
repository_name varchar (200) NOT NULL,
message_state varchar (30) NOT NULL ,
error_message varchar (200) NULL ,
sender varchar (200) NULL ,
recipients long NOT NULL ,
remote_host varchar (100) NOT NULL ,
remote_addr varchar (20) NOT NULL ,
message_body long byte NOT NULL ,
last_updated date NOT NULL,
PRIMARY KEY (message_name, repository_name)
)
If you specify a long column without byte the long column
reject setBytes and getBytes with byte long column get
along fine with James.
By the way James CVS code is more stable and faster than
James version you can download from the web site.
I think it will be wise to release a new version of James from
the CVS code.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]