Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: cusco on March 05, 2013, 01:44:51 PM

Title: IMAP SEARCH (server side)
Post by: cusco on March 05, 2013, 01:44:51 PM
Hi,

I am using dovecot as IMAP server, and have enabled Full Text Search plugin.

Using a bash script

{
(
echo 'a1 login [email protected] password'
echo 'a1 list "" "*"'
echo 'a1 select INBOX'

echo 'a1 SEARCH text Bet-at.eu';

echo 'a1 logout'
)|openssl s_client -connect localhost:993
}


in 18734 e-mails it takes less than 1 second to find 3 uid's with string Bet-at.eu

How can I make roundcube use this text search when I select 'Entire Message' from the search box?


Title: Re: IMAP SEARCH (server side)
Post by: cusco on April 15, 2013, 01:47:16 PM
Anyone ?