On Fri, 2005-11-11 at 16:38 +1100, grant beattie wrote:
this is needed to make the pop3_reuse_xuidl option work in 1.0alpha4.
Committed to CVS finally.
I am using maildir and I noticed that for each message which doesn't have an indexed X-UIDL header, the entire message is read from disk. as this is reading only headers, it is probably reasonable to stop reading at the end of the headers.
I don't think it reads the message body because of that?
If message size isn't yet in cache file, the body needs to be read to get the correct size with CR+LF linefeeds.
it would also be neat if dovecot could be configured to only try reading X-UIDL headers from messages if the mailbox indexes don't exist, since I guess it would be common to want to preserve existing X-UIDLs but not bother for new messages (perhaps some mtime comparison, or something).
opinions? I haven't looked at the source enough yet to be able to do this, but these two optimizations would vastly reduce the amount of disk IO as a result of using this option.
Well, I originally thought the setting would only be used with mboxes since it's mostly for backwards compatibility, and with mboxes reading X-UIDL always is much cheaper. What maildir pop3 servers exist that don't use the filename or IMAP UIDs in some way for the UIDL?
Actually since the message size needs to be read anyway (unless you can get it to be written as W=1234 in maildir file), the X-UIDL lookup shouldn't cost anything since it's written to cache file immediately. Except I'm not sure if Dovecot's caching code currently is smart enough to save the X-UIDL header while saving message sizes..