Displaying 3 results from an estimated 3 matches for "hashdir".
2005 Jan 19
1
PROPOSAL: --link-hash-dest, additional linking of files to their HASH values
...umber of
files into each directory. The code to generate the hash directory name is
parameterized though, and could easily generate 1-4 layers.
static char hex_char[16] = "0123456789abcdef";
int prefixdirs = 2;
...
int digestlength;
digestlength = MD4_DIGEST_LENGTH;
...
const char *hashdir
...
hashdirlen = strlen(hashdir);
hashpath = malloc(hashdirlen+digestlength*3+1);
strcpy(hashpath,hashdir);
hashpath[hashdirlen]='/';
for (i=0;i<prefixdirs;i++) {
hashpath[hashdirlen+i*3+1] = hex_char[md[i] >> 4];
hashpath[hashdirlen+i*3+2] = hex_char[md[i] &...
2008 Feb 07
1
Doubt on adding support for new mailbox format
Hi!
I'm starting to read and play with dovecot since a month ago.
But my mailboxes' format is hashdir, which has been implemented here by
my team. Here:
http://wiki.dovecot.org/MailboxFormat
I've noticed that
"Adding support for new formats for Dovecot isn't very difficult,
although it can be time consuming. Dovecot exposes a nice and simple API
which needs to be implemented"...
2009 May 07
3
Degeneration of CPU Performance
Hello everybody!
We have a interesting issue about dovecot behavior here. First, the
scenario:
We have 2 server running with the same load, one with our old pop3
solution (out of date) and other with Dovecot. We realized that dovecot
are comsuming more CPU, and this consumption is growing day by day. When
we starts dovecot, it runs between 40%-45% of CPU consumption and our
old