/* We store the entire structure in a single entry. */ - vlen = sizeof(msgc->location) + sizeof(msgc->date) + sizeof(msgc->cte) + \ + vlen = (sizeof(msgc->body_start) * 3) + sizeof(msgc->date) + sizeof(msgc->cte) + \ (sizeof(tlen) * 5) + \ sstrlen(msgc->from) + \ sstrlen(msgc->subject) + \
Should we be better off just adding in body_start, msg_start, and body_end
sizeof?
To clarify, do you mean remove caching of the other fields, eg from, subject, etc?
