[courier-users] Subfolders of root

2002-06-05 Thread Phil Dibowitz
I'm not sure this is the right place to ask this... I'm currently dealing wih so many new pieces of software, I'm a bit blury on where the lines between them are drawn. Anyway, I have a qmail+vpopmail+qmailadmin+courier-imapd setup. I'm noticing that users cannot create subfolders of root,

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-30 Thread Phil Dibowitz
Michael Carmack wrote: Under bash, cd courier-source-directory make distclean export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/ssl/lib export LD_RUN_PATH=${LD_RUN_PATH}:/usr/local/ssl/lib export C_INCLUDE_PATH=${C_INCLUDE_PATH}:/usr/local/ssl/lib export LDFLAGS=${LDFLAGS}

[courier-users] imap certs and multiple domains

2002-05-30 Thread Phil Dibowitz
One last question for you all and I think I'm ready to take this big guy from testing to production... I'll be hosting about 5 domains from my new qmail+vpopmail+qmailadmin+courier_imapd+imp solution. All seems to work well except that courier uses the same cert for every domain. I was

[courier-users] IMAP over SSL

2002-05-29 Thread Phil Dibowitz
I'm having a bit of trouble with IMAP over SSL. I've created certs using mkimapdcert, and in imapd-ssl config file I've changed: IMAPDSSLSTART=YES IMAPDSTARTTLS=NO When I start courier via /etc/init.d/courier (which is a copy of hte sysv init script provided in the distribution), it is

[courier-users] No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
Sorry for the second email... I have a little better understanding of the problem... I've installed courier-imapd 1.4.6 (on top of qmail and vpopmail). The problem is that ${courier-prefix}/bin/couriertls isn't getting installed. In fact it's not even getting compiled - it's no where in the

Re: [courier-users] Re: IMAP over SSL

2002-05-29 Thread Phil Dibowitz
Sam Varshavchik wrote: Phil Dibowitz writes: My logs give this error: May 29 16:41:18 hostname imapd-ssl: /usr/local/courier-imap/bin/couriertls: No such file or directory May 29 16:41:46 hostname imapd-ssl: /usr/local/courier-imap/bin/couriertls: No such file or directory Any ideas

Re: [courier-users] Re: IMAP over SSL

2002-05-29 Thread Phil Dibowitz
Juha Saarinen wrote: On Wed, 29 May 2002, Phil Dibowitz wrote: You wanna tell me where one aquires couriertls? It's not getting compiled or installed ANYWHERE. You've got a problem with the installation then. # locate couriertls /usr/lib/courier-imap/bin/couriertls # rpm -q

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
Sam Varshavchik wrote: Phil Dibowitz writes: Anyone know why it's not getting installed? It should be part of the courier-imapd distro. Sysinfo: Linux 2.4.18 (Debian, custom kernel) Courier Imapd 1.4.6 Openssl 0.9.6d This is probably just runtime SSL library. To build SSL support

Re: [courier-users] Re: IMAP over SSL

2002-05-29 Thread Phil Dibowitz
Mike Horwath wrote: On Wed, May 29, 2002 at 05:49:58PM -0700, Phil Dibowitz wrote: You wanna tell me where one aquires couriertls? It's not getting compiled or installed ANYWHERE. What OS? Under Solaris I had some issues back in the older code with couriertls being built. Things

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
Sam Varshavchik wrote: As you can see, the coutiertcpd is getting built, and the couriertls man page is there, but couriertls is not getting built. A make in this directory does nothing (returns straight to another prompt) as expected since courier-imapd has been compiled and installed.

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
Sam Varshavchik wrote: Phil Dibowitz writes: Sam, OK, some progress here. It had a proggy that wasn't compiling, so I looked in the Makefile and noticed '-lssl' so I changed that to '-lopenssl' Then I made the same change in Makefile.in, so it would last, then I went to the main root

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
OK, I figured out this symbolic link problem, and fixed it... got past compiling the object file, but now this last little bit: gcc -I./.. -I.. -Wall -g -O2 -o couriertls starttls.o argparse.o libspipe.a ../rfc1035/librfc1035.a ../soxwrap/libsoxwrap.a `cat ../soxwrap/soxlibs.dep` -lssl

Re: [courier-users] Re: No couriertls installed with Courier Imapd

2002-05-29 Thread Phil Dibowitz
Aly Dharshi wrote: Try adding it to LD_LIBRARY_PATH export LD_LIBRARY_PATH=/usr/local/openssl/libs : path to your openssl maybe that will make a diff. Doesn't that only apply to Solaris? I've never had to do that in Linux. But just for the hell of it, I tried it. No go. Thanks for