| Summary: | Courierlogger coredumps causes courier-imap to fail to respond | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | John O'Brien <john> |
| Component: | Individual Port(s) | Assignee: | Oliver Lehmann <oliver> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
John O'Brien
2004-04-05 16:20:21 UTC
Responsible Changed From-To: freebsd-ports-bugs->oliver Over to maintainer of mail/courier-imap. Hi, I can't reproduce it here with FreeBSD 5.2.1 on alpha and FreeBSD 4.9 on i386. i=0 ; while [ $i -lt 3000 ] ; do i=$(( $i + 1 )) ; (telnet 127.0.0.1 143 &) ; done and still working... How did you compile the port? (What options...) -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ John O'Brien wrote: > Hey.. the build options are below: > > portinstall courier-imap > tweek# cat pkgtools.conf | grep courier > 'mail/courier-imap' => 'WITH_VPOPMAIL=yes', > --------------------------------- > > I don't think that pounding on 127./143 is going to have the same > effect.. It appears to go down when regular users are using it through > either the external IP or squirrelmail accesseing it locally... > There are imapd.core in some of the user's Maildir folders... > Other than that? I can't really explain it.. I've had to go back to a > 2.2.1 source build, as I was having to restart the service every 2 > minutes. > > Anything I can do to help, let me know. Hm... I'm still not able to reproduce it.... $ i=0 ; while [ $i -lt 100 ] ; do i=$(( $i + 1 )) ; ( perl test.pl & ) ; done > lala $ cat test.pl #!/usr/bin/perl use IO::Socket; $Server = "dill"; $Password = "test"; $Login = "test\@salatschuessel.net"; sub action { $imap=$_[0]; $action=$_[1]; print $imap "x ".$action."\n"; do { $responseLine = <$imap>; print "$responseLine"; } until($responseLine =~/^x /); } $imap = new IO::Socket::INET( PeerAddr => $Server, PeerPort => 143 ) || die "Cannot connect to $Server via IMAP\n"; $imap->autoflush(1); $responseLine = <$imap>; print $responseLine; action($imap, "LOGIN $Login $Password"); action($imap, "SELECT INBOX"); action($imap, "LOGOUT"); $ grep connect lala $ each connect succeeds On 4.9 (without VPOPMAIL support) and 5.2.1 (with vpopmail support) Can you debug the .core file with gdb? -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ State Changed From-To: open->feedback Some new informations about that issue? I'm still not able reproducing it here State Changed From-To: feedback->closed Feedback-timeout |