Displaying 20 results from an estimated 100 matches similar to: "imap killed with signal 6 (including backtrace)"
2008 Jan 07
1
assertion with outlook
i saw two crashes in my syslog with dovecot, and google did not report
any known problems. i have no problems using dovecot, thus bugreport is
just for information.
following information:
ubuntu gutsy gibbon server
amd64
ext3
outlook 2003 & 2007, just retrieving mails. mails have been migrated via
imapsync 2 days before to this server. dovecot is imap-server and LDA.
has been seen with
2013 Oct 24
1
Problems with userdb lookup
Hello,
since few days there are problems with the userdb lookup.
The problem occur if the recipient user is unknown (here test at xtlv.cn)
doveconf -n
# 2.2.6 (f89e645cba90): /etc/dovecot/dovecot.conf
# OS: Linux 3.2.45.stk32 i686 Debian jessie/sid ext3
auth_debug = yes
auth_debug_passwords = yes
auth_mechanisms = digest-md5 cram-md5
auth_username_translation = %Lu
auth_verbose = yes
2010 Aug 10
1
Why p_strdup and other string functions uses loops instead strlen? (dovecot 2.0.rc4)
I did Dovecot profiling on huge e-mail system, and p_strdup was very
high on list.
I do minor change:
p_strdup:
/*
for (len = 0; (str)[len] != '\0'; )
len++;
len++;
*/
len = strlen(str) + 1;
p_strndup:
/*
len = 0;
while (len < max_chars && ((const char *) str)[len] != '\0')
len++;
*/
len = strnlen(str, max_chars);
And after changes strdup drop down on the
2010 Sep 09
1
Virtual mailbox help
Dear All,
I am trying to configure Virtual mailbox but having
issue my squirrelmail is showing following error:-
ERROR: Connection dropped by IMAP server.
Query: LSUB "" "*"
I have also check Thunderbird but having same issue. Please check my
configuration and let me know any issue detected in it, Here is my
configuration:-
# 2.0.0:
2006 Nov 13
1
my_strncasecmp ignores max_chars
my_strncasecmp ignores the length parameter, which breaks all sorts of
things on platforms where the function actually gets used.
Trivial patch attached.
--
Ben Winslow <rain at bluecherry.net>
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: compat.c.diff
URL:
2007 Aug 14
2
namespaces and creation of folders that contain folders...
Hi Timo and all. imap/cmd-create.c contains the following bit of code:
len = strlen(full_mailbox);
if (len == 0 || full_mailbox[len-1] != ns->sep)
directory = FALSE;
else {
/* name ends with hierarchy separator - client is just
informing us that it wants to create children under this
mailbox. */
2018 Jan 24
2
Panic: data stack: Out of memory when allocating bytes
On Wed, Jan 24, 2018 at 18:55:47 +0100, Thomas Robers wrote:
> Am 23.01.2018 um 20:07 schrieb Josef 'Jeff' Sipek:
> > On Tue, Jan 23, 2018 at 14:03:27 -0500, Josef 'Jeff' Sipek wrote:
> > > On Tue, Jan 23, 2018 at 18:21:38 +0100, Thomas Robers wrote:
...
> > > 1. Do you have any idea what the imap process was doing at the time of the
> > >
2019 Oct 18
5
[PATCH libnbd 0/2] api: Add support for AF_VSOCK.
This is a series of patches to libnbd and nbdkit adding AF_VSOCK
support.
On the host side it allows you to start an nbdkit instance which
listens on a virtio-vsock socket:
$ ./nbdkit -fv --vsock memory 1G
...
nbdkit: debug: bound to vsock 2:10809
On the guest side you can then use libnbd to connect to the server:
$ ./run nbdsh -c 'h.connect_vsock(2, 10809)' -c
2018 Jan 23
2
Panic: data stack: Out of memory when allocating bytes
On Tue, Jan 23, 2018 at 14:03:27 -0500, Josef 'Jeff' Sipek wrote:
> On Tue, Jan 23, 2018 at 18:21:38 +0100, Thomas Robers wrote:
> > Hello,
> >
> > I'm using Dovecot 2.3 and sometimes i get this:
> >
> > --- snip ---
> > Jan 23 14:23:13 mail dovecot: imap(bob at tutech.de)<4880><PDqibHFjMvrAqG1n>:
> > Panic: data stack: Out of
2004 Jul 22
1
[PATCH] add LOGIN authentication mechanism
Hello,
attached patch (1.0-test29) adds LOGIN authentication mechanism.
Tested with KMail and seems working.
Please consider applying.
Best regards.
P.S. I also have NTLM authentication working and plan to
submit it RSN.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff
2002 Oct 23
2
vsnprintf()
I think I stumbled upon a bug in the i_snprintf() function. In the case of
vnsprintf() being available, it depends on vnsprintf() returning -1 when the
string was longer than the passed-in limit (or it won't terminate the
string.). But this isn't the C99-standardized behaviour, and newer glibc's
don't do that anymore either, so you can end up with a non-terminated
string. This
2018 Jan 29
1
Panic: data stack: Out of memory when allocating bytes
Any idea what the problem could be? Is there anything more i could do
to encircle the problem? Or perhaps is the information i provided
uncomplete?
Am 25.01.2018 um 16:24 schrieb Thomas Robers:
> Hi,
>
> Am 24.01.2018 um 23:39 schrieb Josef 'Jeff' Sipek:
>> It looks like the binaries are stripped.? There should be a "debug"
>> package
>> you can
2007 Oct 17
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
libswfdec/swfdec_as_strings.c | 4
libswfdec/swfdec_movie.c | 76 +++++
libswfdec/swfdec_movie.h | 19 +
libswfdec/swfdec_text_field.c | 23 +
libswfdec/swfdec_text_field.h | 2
libswfdec/swfdec_text_field_movie.c | 420 ++++++++++++++++++++++++++++---
libswfdec/swfdec_text_field_movie.h | 5
2008 Nov 06
2
Compilation of 1.1.6 fails on HP-UX 11.31
Hi,
$ uname -srv
HP-UX B.11.31 U
$ cc --version
cc: HP C/aC++ B3910B A.06.20 [May 13 2008]
Compilation fails, output of configure and make are given below. The
cause of this is almost certainly that this version of HP-UX does define
the QCMD macro in sys/quota.h (checked in the ifdef line 26
dovecot-1.1.6/src/plugins/quota/quota-fs.h) as well as the dqblk struct,
but the latter with different
2009 Aug 28
2
Crash: imap process, Dovecot 1.2.4, related to ACLs (backtrace included)
Hi,
I started experimenting with ACLs and found I could reliably and reproducibly
crash the IMAP process when trying to create a subfolder of a folder that has
has ACLs set. The folder is called "Sent" with an ACL of "owner lrwstipke". I
wanted to be able to have certain folders the the user cannot delete but where
subfolders can be created freely.
Relevant information
2012 Jul 14
1
[PATCH] Interop problem with Cyrus SASL and GSSAPI
[I sent this a while ago, but it seems not to have made it to the list.
I'm resending it having subscribed first; I apologise if anyone get it
twice.]
I have been trying to get a Postfix mail server using Dovecot SASL to
accept GSSAPI AUTH from another Postfix server using Cyrus SASL, and I
believe I have found a couple of bugs in Dovecot's GSSAPI
implementation.
The first problem is
2007 Dec 04
0
TextAreaWithStatus 1.0 released
TextAreaWithStatus 1.0 has been released
http://code.google.com/p/text-area-with-status/
== Overview ==
This plugin is extending builtin text_area and text_area_tag helpers
with the ability to display chars left up to a specified limit.
Basically it turns this:
<%= f.text_area :description, :onkeyup => "limit_chars(this, 100, $
(''chars_left''))"
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
Hello all,
this patch add APOP authentication mechanism to dovecot 1.0-test23.
Please take a look.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -udrpN -X /usr/share/dontdiff -x Makefile dovecot-1.0-test23.vanilla/src/auth/Makefile.am dovecot-1.0-test23/src/auth/Makefile.am
---
2018 Jan 24
0
Panic: data stack: Out of memory when allocating bytes
Hi,
Am 23.01.2018 um 20:07 schrieb Josef 'Jeff' Sipek:
> On Tue, Jan 23, 2018 at 14:03:27 -0500, Josef 'Jeff' Sipek wrote:
>> On Tue, Jan 23, 2018 at 18:21:38 +0100, Thomas Robers wrote:
>>> Hello,
>>>
>>> I'm using Dovecot 2.3 and sometimes i get this:
>>>
>>> --- snip ---
>>> Jan 23 14:23:13 mail dovecot:
2008 Dec 02
2
my_vsnprintf crash on HP-UX
Hi,
sorry for the double post, I stupidly composed this as a reply to an
earlier mail, which causes it to appear in an older thread. Posting
again so it doesn't get lost in the archives:
dovecot 1.1.7 reliably crashes every time I try to open a mailbox using
IMAP. Error in the logs:
dovecot: Dec 02 23:14:15 Error: setmntent(/etc/mtab) failed: No such
file or directory
dovecot: Dec 02