3 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Bug introduced in mai...
FromSent OnAttachments
Tuomo SoiniJun 23, 2003 10:30 am 
Joel BaxterJun 23, 2003 5:17 pm 
Tuomo SoiniJun 25, 2003 1:36 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [maildropl] Bug introduced in maildrop-1.5.3Actions...
From:Tuomo Soini (ti@foobar.fi)
Date:Jun 25, 2003 1:36:49 am
List:net.sourceforge.lists.courier-maildrop

If maildrop-1.5.3 is compiled with ldap support and there is no /etc/maildropldap.config file, maildrop will get SIGSEGV.

Yep. Easy enough to fix tho. Here's a change I made to my build of maildrop a while back... the first block of code in find_in_ldap (maildrop/main.C):

// Look for the config ldapcfg = (mdldapconfig*)get_ldap_config(MAILDROPLDAPCONFIG); if ( ldapcfg ) { if ( !(ldapcfg->hostname && ldapcfg->basedn) ) return 0; } else { return 0; }

Thanks. That did the trick. Now it works as it should.