Bug#352701: dovecot-imapd: closes imap connection

2006-02-17 Thread bd
 On Thu, Feb 16, 2006 at 01:01:43PM +0100,  wrote:
 On Thu, Feb 16, 2006 at 02:11:32PM +0200, Timo Sirainen wrote:
  On Thu, 2006-02-16 at 11:12 +0100, bd wrote:
   this _might_ be a mutt problem, I'am going to test this with etch
 later.
 
  I just fixed a couple of days ago one problem that caused mutt to
 close
  connection and/or crash:
 
  2006-02-13 18:35  Timo Sirainen [EMAIL PROTECTED]
 
  * src/imap/imap-sync.c: Don't notify client about changes in
messages it hasn't yet even been notified about.

 perhaps I can find the time to build a version containing this fix.

 does not seem to work.

 applied this patch:

 [...]

I have seen an TLS error just before the mailbox is closed, sadly I could
not read it completely since it was displayed only for a second or so:

Something about an incomplete package.

The error occures when starting mutt on the machine running dovecot-imapd
and from another machine (that one is testing though).

regards
  bd



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-17 Thread bd
Found somehing in the log files

mail.log:Feb 16 14:50:24 server-244 dovecot: Killed with signal 15
mail.log:Feb 17 13:27:32 server-244 dovecot: Killed with signal 15
mail.log.0:Feb  9 12:13:28 server-244 dovecot: Killed with signal 15

regards
bd
-- 
BOFH excuse #189:

SCSI's too wide.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-17 Thread Timo Sirainen
On Fri, 2006-02-17 at 15:33 +0100, bd wrote:
 Found somehing in the log files
 
 mail.log:Feb 16 14:50:24 server-244 dovecot: Killed with signal 15
 mail.log:Feb 17 13:27:32 server-244 dovecot: Killed with signal 15
 mail.log.0:Feb  9 12:13:28 server-244 dovecot: Killed with signal 15

This simply means that Dovecot was stopped. /etc/init.d/dovecot stop
stops it by sending SIGTERM (signal 15).




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-17 Thread bd
Hi,

I captuted the mutt error message:

tls_socket_read (A TLS packet with unexpected length was received.)

I could not find the signal 15 log message though.

regards
bd
-- 
You have a strong appeal for members of the opposite sex.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-16 Thread bd
Hi,

this _might_ be a mutt problem, I'am going to test this with etch later.

regards
bd
-- 
BOFH excuse #289:

Interference between the keyboard and the chair.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-16 Thread Timo Sirainen
On Thu, 2006-02-16 at 11:12 +0100, bd wrote:
 this _might_ be a mutt problem, I'am going to test this with etch later.

I just fixed a couple of days ago one problem that caused mutt to close
connection and/or crash:

2006-02-13 18:35  Timo Sirainen [EMAIL PROTECTED]

* src/imap/imap-sync.c: Don't notify client about changes in
  messages it hasn't yet even been notified about.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-16 Thread bd
On Thu, Feb 16, 2006 at 02:11:32PM +0200, Timo Sirainen wrote:
 On Thu, 2006-02-16 at 11:12 +0100, bd wrote:
  this _might_ be a mutt problem, I'am going to test this with etch later.
 
 I just fixed a couple of days ago one problem that caused mutt to close
 connection and/or crash:
 
 2006-02-13 18:35  Timo Sirainen [EMAIL PROTECTED]
 
 * src/imap/imap-sync.c: Don't notify client about changes in
   messages it hasn't yet even been notified about.

perhaps I can find the time to build a version containing this fix.

regards
bd
-- 
BOFH excuse #432:

Borg nanites have infested the server


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-16 Thread bd
On Thu, Feb 16, 2006 at 01:01:43PM +0100,  wrote:
 On Thu, Feb 16, 2006 at 02:11:32PM +0200, Timo Sirainen wrote:
  On Thu, 2006-02-16 at 11:12 +0100, bd wrote:
   this _might_ be a mutt problem, I'am going to test this with etch later.
  
  I just fixed a couple of days ago one problem that caused mutt to close
  connection and/or crash:
  
  2006-02-13 18:35  Timo Sirainen [EMAIL PROTECTED]
  
  * src/imap/imap-sync.c: Don't notify client about changes in
messages it hasn't yet even been notified about.
 
 perhaps I can find the time to build a version containing this fix.

does not seem to work.

applied this patch:

--- ./dovecot-1.0.beta2/src/imap/imap-sync.c2006-01-14 19:16:05.0 
+0100
+++ ./dovecot/src/imap/imap-sync.c  2006-02-13 19:35:39.0 +0100
@@ -113,6 +113,14 @@
}
}

+   if (ctx-sync_rec.seq2  ctx-messages_count) {
+   /* don't send change notifications of messages we
+  haven't even announced to client yet */
+   if (ctx-sync_rec.seq1  ctx-messages_count)
+   continue;
+   ctx-sync_rec.seq2 = ctx-messages_count;
+   }
+
switch (ctx-sync_rec.type) {
case MAILBOX_SYNC_TYPE_FLAGS:
case MAILBOX_SYNC_TYPE_KEYWORDS:

-- 
A few hours grace before the madness begins again.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#352701: dovecot-imapd: closes imap connection

2006-02-13 Thread Stefan Völkel
Package: dovecot-imapd
Version: 1.0.beta2-1
Severity: important

Hello,

imapd keeps on closing the conection to my MUA (mutt). The MUA is
started on the same machinve running dovecot.

I am using imaps, not imap though.

I have not found any error message in my logs.

regards
bd

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages dovecot-imapd depends on:
ii  dovecot-common   1.0.beta2-1 secure mail server that supports m
ii  libc62.3.5-13GNU C Library: Shared libraries an
ii  libssl0.9.8  0.9.8a-7SSL shared libraries

dovecot-imapd recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]