Re: [courier-users] SASL help

2008-04-10 Thread Johnny C. Lam
You are asking for help on the wrong list. Please check with the Postfix forums, as your problem lies with Postfix and Cyrus SASL. This forum is devoted to the Courier mail suite. Thanks, -- Johnny C. Lam

[courier-users] Assigning multiple groups to a user?

2008-04-01 Thread Johnny C. Lam
syntax for that? Thanks, -- Johnny C. Lam - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk

Re: [courier-users] Clean way to build without optional components

2008-03-10 Thread Johnny C. Lam
/couriertcpd You can browse the CVS tree without checking it out at: http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/ Cheers, -- Johnny C. Lam - This SF.net email is sponsored by: Microsoft Defy all

Re: [courier-users] authldap - forbid relaying to specific users

2008-02-04 Thread Johnny C. Lam
subject line asks one thing, but your message body asks something else. Thanks, -- Johnny C. Lam - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http

Re: [courier-users] Any problems with X509v3 Extensions?

2008-01-21 Thread Johnny C. Lam
, -- Johnny C. Lam - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01

[courier-users] [PATCH] read/write timeouts for afxiopipestream objects

2007-10-23 Thread Johnny C. Lam
and manages the buffering automatically. The only extra thing I needed was a way to time-out the reads and writes to the file descriptor, which the attached patch provides. Cheers, -- Johnny C. Lam diff -ur afx/afx.h /home/jlam/milter/afx/afx.h --- afx/afx.h Mon Jul 30 00:25:53

Re: [courier-users] Weird messages received

2007-10-19 Thread Johnny C. Lam
these manpages on your system, i.e. man courierfilter man courierperlfilter Cheers, -- Johnny C. Lam - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems

Re: [courier-users] Weird messages received

2007-10-19 Thread Johnny C. Lam
of the envelope (MAIL and RCPT) or do body inspection. Do not try to force message headers to match the envelope -- there is a reason why those are different concepts. Cheers, -- Johnny C. Lam - This SF.net email

[courier-users] [PATCH] courier-authlib configure and compile fixes

2007-10-15 Thread Johnny C. Lam
the declaration to the head of the scope. Cheers, -- Johnny C. Lam $NetBSD$ --- configure.in.orig Sun Oct 14 00:19:54 2007 +++ configure.in @@ -914,7 +914,7 @@ if test -x $COURIERCONFIG then $COURIERCONFIG conftest.out || exit 1 sed -n '/^mail/p' conftest.out

Re: [courier-users] Handling Unknown Addresses

2007-10-10 Thread Johnny C. Lam
need to make sure that those .courier files are readable by that system user. Cheers, -- Johnny C. Lam - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop

Re: [courier-users] Problem with authdaemon 0.60.0 and 0.60.1 on Mac OSX

2007-10-09 Thread Johnny C. Lam
that Mac OS X may have some absurdly high value which may actually be larger than the actual file descriptor table size. Can you try the attached patch? Cheers, -- Johnny C. Lam $NetBSD$ --- liblock/lockdaemon.c.orig Wed Sep 26 02:44:34 2007 +++ liblock/lockdaemon.c @@ -31,10

Re: [courier-users] courier and courier-imap 20071006

2007-10-08 Thread Johnny C. Lam
already taken place. Is this correct? Cheers, -- Johnny C. Lam - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration

Re: [courier-users] how change /msgs and /msgq folders path

2007-09-27 Thread Johnny C. Lam
sergio wrote: Hello Sam, Thursday, September 27, 2007, 1:58:02 PM, you wrote: sergio writes: Hello courier-users, I need change path to msgs and msgq folders,but cant reinstall courier. How can I do this? Replace msgs and msgq with symlinks. But,in log I receive Sep

Re: [courier-users] Only 8 characters of the password required

2007-09-26 Thread Johnny C. Lam
Andreas Grabner wrote: Am Mittwoch, den 26.09.2007, 17:31 +0100 schrieb Lisa Muir: On 9/26/07, Andreas Grabner [EMAIL PROTECTED] wrote: I have just figured out that only the first 8 characters of passwords are significant and the rest is irrelevant. Have i missed some configuration? I think

[courier-users] [PATCH] liblock/lockdaemon.c hardcodes 99 as file descriptor

2007-09-25 Thread Johnny C. Lam
I noticed in liblock/lockdaemon.c that 99 is hardcoded as a file descriptor. I understand that it was important to dup2 the original lockfd to something other than file descriptor 3 which has special meaning for filters using the courierfilter API. I'm guessing that 99 was chosen because it's

[courier-users] [PATCH] avoiding HTML injection on refresh

2006-05-01 Thread Johnny C. Lam
Is the attached patch needed to avoid HTML injection attacks on the sqwebmail CGI? The sqwebmail CGI writes HTTP Refresh headers in two places, but outputs the URL without encoding it. Since HTTP headers are written before the rest of the page is rendered, it seems you could, e.g. invoke the

[courier-users] [PATCH] select() on older systems

2005-08-10 Thread Johnny C. Lam
On some older systems that haven't caught up to SUSv2 and SUSv3, the select(2) system call is declared in sys/time.h instead of sys/select.h. The following patch fixes compiling authpipelib.c on such systems. At the very worst, including sys/time.h on newer systems is only redundant as it must