Displaying 6 results from an estimated 6 matches for "i_stream_grow_buff".
Did you mean:
i_stream_grow_buffer
2012 Apr 30
2
Dovecot/doveadm crash
Having a problem with a mailbox. I've been trying to rebuild - but
doveadm force-resync crashes. This is mdbox with sis.
doveadm purge -u dmiller at amfes.com
doveadm(dmiller at amfes.com): Panic: file istream.c: line 466
(i_stream_grow_buffer): assertion failed: (stream->max_buffer_size > 0)
doveadm(dmiller at amfes.com): Error: Raw backtrace:
/usr/local/lib/dovecot/libdovecot.so.0(+0x4167a) [0x7fb73465467a] ->
/usr/local/lib/dovecot/libdovecot.so.0(default_fatal_handler+0x32)
[0x7fb734654762] -> /usr/local/lib/dovecot/...
2010 Aug 31
0
istream_read like zlib, but without zlib
...>skip > 0) {
/* don't try to keep anything cached if we don't
have a seek mark. */
i_stream_compress(stream);
}
if (stream->max_buffer_size == 0 ||
stream->buffer_size < stream->max_buffer_size)
i_stream_grow_buffer(stream, CHUNK_SIZE);
if (stream->pos == stream->buffer_size) {
if (stream->skip > 0) {
/* lose our buffer cache */
i_stream_compress(stream);
}
if (stream->pos == stream->buffer_size)
r...
2014 Sep 05
0
lmtp memory usage problem - Fatal: pool_system_realloc(268435456): Out of memory
.../dovecot/libdovecot.so.0(+0x682a0) [0x7fe327e632a0] -> /usr/lib64/dovecot/libd
ovecot.so.0(+0x6837e) [0x7fe327e6337e] -> /usr/lib64/dovecot/libdovecot.so.0(i_error+0) [0x7fe327e1dbf8] -> /usr/lib64/dovecot/libdovecot.so.0(+0x7d6a3) [0x7fe327e786a3] ->
/usr/lib64/dovecot/libdovecot.so.0(i_stream_grow_buffer+0x8f) [0x7fe327e6c4cf] -> /usr/lib64/dovecot/libdovecot.so.0(i_stream_try_alloc+0x82) [0x7fe327e6c592] -> /usr/lib6
4/dovecot/libdovecot.so.0(+0x73b9b) [0x7fe327e6eb9b] -> /usr/lib64/dovecot/libdovecot.so.0(+0x73c36) [0x7fe327e6ec36] -> /usr/lib64/dovecot/libdovecot.so.0(i_stream_read...
2005 Jun 15
6
Compressed maildir
Greetings,
I noticed a while back someone posted a patch/plugin that allowed Dovecot to
use compressed mbox files. I'm now wondering how far that would put us from
having compressed maildir? I have a server with more CPU than disk space, and
while I can buy more HDD space, my backup solution doesn't make that practical.
It seems to me that when looking for a message file, if it
2010 Oct 07
0
dovecot-1.2.12 core
...#0 0x0000000800df74a9 in realloc () from /lib/libc.so.7
No symbol table info available.
#1 0x0000000000416f1b in pool_system_realloc (pool=Variable "pool" is not available.
) at mempool-system.c:109
__PRETTY_FUNCTION__ = "pool_system_realloc"
#2 0x00000000004141f3 in i_stream_grow_buffer (stream=0x8012f08a0, bytes=Variable "bytes" is not available.
) at istream.c:416
old_size = 0
#3 0x00000000004142e5 in i_stream_get_buffer_space (stream=0x8012f08a0, wanted_size=Variable "wanted_size" is not available.
) at istream.c:432
__PRETTY_FUNCTION__ =...
2008 Dec 10
2
assert with zlib and (maybe) fts
Hi,
I compressed a folder with the following script:
...
for i in *.*.*; do
file $i | grep bzip2 >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Compress: $i"
cat "$i" | bzip2 -9 > ../tmp/$i
if [ $? -eq 0 ]; then
mv ../tmp/$i $i
fi
else