Re: News for SIG11: imapd only crashes when account is configured for subscribed folders.

2001-08-23 Thread Ken Murchison



Levent Gündogdu wrote:
> 
> Thanks. Removing -D did not show this error anymore. Well, obviously
> this only surpresses the output of the error message but not the error
> itself. I'm still getting these:
> 
> Aug 23 16:06:11 server02 pop3d[18391]: pop3s: required OpenSSL options
> not present
> Aug 23 16:06:11 server02 master[18382]: process 18391 exited, signaled
> to death by 11
> Aug 23 16:06:11 server02 imapd[18389]: imaps: required OpenSSL options
> not present
> Aug 23 16:06:11 server02 master[18382]: process 18389 exited, signaled
> to death by 11

These errors are telling you exactly what the problem is.  You haven't
specified the certificate and key files for OpenSSL.  If you plan on
using imaps and pop3s, then you MUST set the correct options. 
Otherwise, remove these entries from cyrus.conf.

Ken
-- 
Kenneth Murchison Oceana Matrix Ltd.
Software Engineer 21 Princeton Place
716-662-8973 x26  Orchard Park, NY 14127
--PGP Public Key--http://www.oceana.com/~ken/ksm.pgp



Re: News for SIG11: imapd only crashes when account is configured for subscribed folders.

2001-08-23 Thread Levent Gündogdu

Thanks. Removing -D did not show this error anymore. Well, obviously 
this only surpresses the output of the error message but not the error 
itself. I'm still getting these:


Aug 23 16:06:11 server02 pop3d[18391]: pop3s: required OpenSSL options 
not present
Aug 23 16:06:11 server02 master[18382]: process 18391 exited, signaled 
to death by 11
Aug 23 16:06:11 server02 imapd[18389]: imaps: required OpenSSL options 
not present
Aug 23 16:06:11 server02 master[18382]: process 18389 exited, signaled 
to death by 11

Thanks a thousand times for any help on this.

Bye,
  Levo.



Cillian Sharkey wrote:

> Levent Gündogdu <[EMAIL PROTECTED]> wrote:
> 
>>Yeah!
>>
>>I don't believe it! I can access my imapd account. All I did was 
>>changing the advanced options in mozilla to get all folders and not only 
>>the subscribed ones. Maybe this will help you find the bug finally.
>>
>>Thanks a lot.
>>
>>Bye,
>>  Levo.
>>
>>P.S. That "unknown option -s" for imapd and pop3d still persists and 
>>causes SIG11, too.
>>
> 
> I noticed this before, but only when I ran master in 'debug' mode (master -D)
> which doesn't close stderr etc. The following patch suppresses the error
> message. This was from 2.0.15 or thereabouts.
> 
> --- master/service.c.orig Fri Jun 15 17:58:53 2001
> +++ master/service.c  Fri Jun 15 15:04:29 2001
> @@ -145,6 +145,7 @@
>  int opt;
>  char *alt_config = NULL;
>  
> +opterr = 0;
>  while ((opt = getopt(argc, argv, "C:")) != EOF) {
>   switch (opt) {
>   case 'C': /* alt config file */
> 
> 






Re: News for SIG11: imapd only crashes when account is configured for subscribed folders.

2001-08-23 Thread Cillian Sharkey

Levent Gündogdu <[EMAIL PROTECTED]> wrote:
> Yeah!
> 
> I don't believe it! I can access my imapd account. All I did was 
> changing the advanced options in mozilla to get all folders and not only 
> the subscribed ones. Maybe this will help you find the bug finally.
> 
> Thanks a lot.
> 
> Bye,
>   Levo.
> 
> P.S. That "unknown option -s" for imapd and pop3d still persists and 
> causes SIG11, too.

I noticed this before, but only when I ran master in 'debug' mode (master -D)
which doesn't close stderr etc. The following patch suppresses the error
message. This was from 2.0.15 or thereabouts.

--- master/service.c.orig   Fri Jun 15 17:58:53 2001
+++ master/service.cFri Jun 15 15:04:29 2001
@@ -145,6 +145,7 @@
 int opt;
 char *alt_config = NULL;
 
+opterr = 0;
 while ((opt = getopt(argc, argv, "C:")) != EOF) {
switch (opt) {
case 'C': /* alt config file */

-- 
Cillian