Is there a way to list all keywords a mailbox uses? I fetch flags for all messages and then gorup them, but this is a very nasty solution. What's the situation with full text search? Will it ever be implemented? Is it already? Text search on my 0.99.14 is quite slow. Don't understand why no IMAP server wants to implement this feature. Does Dovecot support plugins? Thank you, Sebastjan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://dovecot.org/pipermail/dovecot/attachments/20050714/22926d7c/attachment-0003.html>
Ah, sorry, by second question I meant if you index the body of messages for fast text searching. On 7/14/05, Sebastjan Trepca <trepca at gmail.com> wrote:> > Is there a way to list all keywords a mailbox uses? I fetch flags for all > messages and then gorup them, but this is a very nasty solution. > What's the situation with full text search? Will it ever be implemented? > Is it already? Text search on my 0.99.14 is quite slow. Don't understand > why no IMAP server wants to implement this feature. > Does Dovecot support plugins? > > Thank you, > > Sebastjan >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://dovecot.org/pipermail/dovecot/attachments/20050715/a2a2962c/attachment-0001.html>
On Thu, 2005-07-14 at 19:38 +0200, Sebastjan Trepca wrote:> Is there a way to list all keywords a mailbox uses?They are all printed when opening mailbox: * OK [PERMANENTFLAGS (\Answered \Flagged \Deleted \Seen \Draft foo bar unknown-0 baz asdf dgidjgidjigd unknown-1 unknown-2 unknown-4 unknown-4X lorro \*)] Flags> What's the situation with full text search? Will it ever be > implemented? Is it already? Text search on my 0.99.14 is quite slow. > Don't understand why no IMAP server wants to implement this feature.IMAP spec requires SEARCH command to search for the exact given input, so all normal search indexing solutions won't work. For example if message contains word "abcdefgh", the message must be found when searching for "def" text. The only usable full text search indexing for IMAP that I know of is Cyrus's "squat indexes". I've been thinking of either just using their code directly or to implement my own based on same ideas. Their implementation is pretty annoying though since it requires re-reading the whole mailbox when all you want to do is append one mail to the index. Also it uses somewhat more space than really required. So I'd like to implement my own, but it's not a very high priority currently.> Does Dovecot support plugins?Yes. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://dovecot.org/pipermail/dovecot/attachments/20050722/602df29b/attachment-0001.bin>