Roundcube Community Forum

 

replied messages gets deleted

Started by kimusan, October 10, 2006, 12:16:39 PM

Previous topic - Next topic

kimusan

when I reply to a message in latest svn (360) the message you reply to gets deleted/removed

uxbod


toxygen

not here.
can you check your logs/errors file and /var/log/mail ?
A right is not what someone gives you; it's what no one can take from you.
                -- Ramsey Clark

PChott

Macs are for those who don't want to know why their computer works.
Linux is for those who want to know why their computer works.
DOS is for those who want to know why their computer doesn't work.
Windows is for those who don't want to know why their computer doesn't work.

flosoft


PChott

I think that is something in LOG:

[30-Oct-2006 17:26:26 +0100] DB Error: DB Error: unknown error Query: DELETE FROM messages WHERE user_id='3' AND  cache_key='INBOX.msg' AND  idx>=FALSE [nativecode=ERROR: operator does not exist: integer >= boolean HINT: No operator matches the given name and argument type(s). You may need to add explicit type casts.] in /home/data/trunk/roundcubemail/program/include/rcube_db.inc on line 501

And there is no msg on server. This is realy BIG bug!
Macs are for those who don't want to know why their computer works.
Linux is for those who want to know why their computer works.
DOS is for those who want to know why their computer doesn't work.
Windows is for those who don't want to know why their computer doesn't work.

toxygen

what database you have? (type, version...)
A right is not what someone gives you; it's what no one can take from you.
                -- Ramsey Clark

PChott

postgresql-8.1              8.1.5-1

But i didnt' find what deletes message on server. That just deletes message in database.
Macs are for those who don't want to know why their computer works.
Linux is for those who want to know why their computer works.
DOS is for those who want to know why their computer doesn't work.
Windows is for those who don't want to know why their computer doesn't work.

toxygen

this seems to be a bug in roundcube
A right is not what someone gives you; it's what no one can take from you.
                -- Ramsey Clark

PChott

Macs are for those who don't want to know why their computer works.
Linux is for those who want to know why their computer works.
DOS is for those who want to know why their computer doesn't work.
Windows is for those who don't want to know why their computer doesn't work.

diego

idx>=FALSE
..that's interesting..I don't know but.. idx have the type INT(11)...
can mysql get the value "FALSE" from an INT field?

in the postgres.initial.sql:
idx integer DEFAULT 0 NOT NULL,
in the mysql.initial.sql:
`idx` int(11) unsigned NOT NULL default '0',
Maybe is here the problem...that bug happen only with a postgree database.