Aaron Stone wrote:
> I need to read through the kmail code to see what it's angry about.
> Please file a bug; I'll have time next week to work on it.
>
> My guess is that KMail is expecting a precise sort of Cyrus response,
> and I'm giving them something draft-rfc-compliant, but different.
>
> This definitely isn't a showstopper issue right now.
>
> Aaron
Solution is very simple :)
I wrote simple perl script, that emulate dbmail-timsieved and done some
experiments
Now dbmail-timsieved do this:
C: GETSCRIPT "main"
S: {size+}
S: ...script....
S: OK
But, it must replay so:
C: GETSCRIPT "main"
S: {size}
S: ...script....
S: OK
without "+" (plus) in script size...
When I changed line 673 of timsieve.c from:
"{%u+}\r\n",
to
"{%u}\r\n",
kmail can get script to change it!!!
BUT!
When I try to upload script, it's failed:
kmail: HAVESPACE "main" 316
server: NO "Command not implemented."
So, HAVESPACE capability must be implemented.
--
Oleg Lapshin