Re: [courier-users] Re: maildir folder name with encode like .bUuL1Q- , how decode and encode?

2002-05-22 Thread forehead

yes, I got to see the perl module , it use latin1 to encode it and it's different from 
OutlookExpress and Becky. The two clients can correctly create and echo the folder 
name .

here is the perl module's method. it's worked and not compatibly with OE and Bercky, 
Can anybody save me ?

sub imap_utf7_decode {
my ($s) = @_;

# Algorithm
# On remplace , par / dans les BASE 64 (, entre  et -)
# On remplace les , non suivi d'un - par +
# On remplace les - par 
$s =~ s/([^,\-]*),([^,\-]*)\-/$1\/$2\-/g;
$s =~ s/(?!\-)/\+/g;
$s =~ s/\-//g;

return Unicode::String::utf7($s)-latin1;
}

sub imap_utf7_encode {
my ($s) = @_;

$s = Unicode::String::latin1($s)-utf7;

$s =~ s/\+([^\/\-]*)\/([^\/\-]*)\-/\+$1,$2\-/g;
$s =~ s//\-/g;
$s =~ s/\+([^+\-]+)?\-/$1\-/g;

return $s;
}


- Original Message - 
From: Sam Varshavchik [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 22, 2002 12:09 PM
Subject: [courier-users] Re: maildir folder name with encode like .bUuL1Q- , how 
decode and encode?


forehead writes: 


 you see, '²âÊÔ' encoded by imapd server to be : 'bUuL1Q-'

The IMAP server does not encode folder names.  The folder name is encoded by 
the IMAP client. 

 but the perl module encoded that to be 'ALIA4gDKANQ-' 
 
 so , what's wrong with that? :-(

Verify that both Perl, and your application, use the same character set for 
encoding folder names into modified-utf7. 

-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

èžÙ¢²Ëa{m4Ù*kŠ{O
)¦Xœjبœ7¯zZ)z»¢wÞ­éÜx ºËvçoœ¶¬Uè²m§ÿÝz÷(žÊkŠ{irÇ(›ö§ø§uì\~g(º¸ž®ë®ÉšŠX§‚X¬µÊ.®'«ºÇ«²X¬¶Ë(º·~Šàzw­R{.nÇ+‰·¡¶Úlÿùb²Û,¢êÜyú+éÞ·ùb²Û?–+-ŠwèýÊ.®'«ºÇ«


Re: [courier-users] Request for inclusion to sendmail-wrapper

2002-05-22 Thread Gordon Messmer

The attached patch (one line) should fix that.  The only other thing
needed for mailman compatibility (I think) is to use
--with-mailgroup=mail in the courier.spec file.

Symlinking /etc/aliases to somewhere else isn't going to work right...
It'll cause package conflicts, which alternatives is trying to avoid. 
In any case, I don't believe postfix does this, and mailman should work
with that package.

On Thu, 2002-05-16 at 03:06, Ian Ward wrote:
 I just installed the redhat rpm for mailman on my RedHat 7.2 Server
 It failed on the dependancy for /usr/bin/newaliases
 
 I created the following links and files...
 
 ln -s /usr/lib/courier/sbin/makealiases  /usr/bin/newaliases
 touch /etc/courier/aliases/sendmail-aliases
 ln s /etc/courier/aliases/sendmail-aliases  /etc/aliases
 
 perhaps these should be included in the sendmail-wrapper rpm?



--- courier-0.38.1.20020509/courier.spec.in Tue May 21 22:20:12 2002
+++ courier-0.38.1.20020509.msg/courier.spec.in Tue May 21 22:22:50 2002
 -59,6 +59,7 
 %if %alternatives
 Requires(post): chkconfig
 Requires(postun): chkconfig
+Provides: /usr/sbin/sendmail /usr/bin/mailq /usr/bin/rmail /usr/bin/newaliases
 %endif
 
 %package pop3d



[courier-users] Re:Newbie: Perlfilter

2002-05-22 Thread Devan Govender (Ion)

Hi, 
Could someone please tell me how do I activate perlfilters, 
I have a copy of virusfilter.pl from groups.
I have created a file call perlfilter and put the file path and name in
there , but still does not work..

Please Help 

Devan

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Couriervirusfilter

2002-05-22 Thread Devan Govender (Ion)

Hi, 

I have downloaded and installed Couriervirusfilter, 
but it does not work, what am I doing wrong ...
Followed Install file.

Please Help 

Devan

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] IMAP body[X.HEADERS] and body[X.MIME] with message/rfc822 attachments

2002-05-22 Thread Brian Kelly

Hi,
I'm seeing a difference in implementation between Courier IMAP and both
UW IMAP (or whatever it is that RedHat ships with 7.1, it looks and smells
like UW IMAP) and Microsoft Exchange IMAP when it comes to retrieving the
MIME headers from an attachment of type message/rfc822. Courier retrieves
the MIME header from the header of the attached message, but the other two
retrieve the attachment headers. For example, the following message
(in between # lines for clarity).

##
Message-ID: [EMAIL PROTECTED]
Date: Wed, 22 May 2002 08:36:26 +0100
From: Me [EMAIL PROTECTED]
MIME-Version: 1.0
To: You [EMAIL PROTECTED]
Subject: Re: Hi
Content-Type: multipart/mixed;
 boundary=12345

This is a multi-part message in MIME format.
--12345
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi
-- 
[EMAIL PROTECTED]

--12345
Content-Type: message/rfc822
Content-Disposition: inline

Message-ID: [EMAIL PROTECTED]
Date: Tue, 21 May 2002 17:54:14 +0100
From: You [EMAIL PROTECTED]
MIME-Version: 1.0
To: Me [EMAIL PROTECTED]
Subject:Hi
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi
-- 
[EMAIL PROTECTED]

--12345--
##

I added this message to a folder on Courier, UW and Exchange using
IMAP. I then fetched body[2.mime] and body[2.header] from the message
on each IMAP server. Here's the output from each IMAP server:

Courier
#
a1 fetch * body[2.mime]
* 3 FETCH (BODY[2.MIME] {98}
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

)
* 3 FETCH (FLAGS (\Seen \Recent))
a1 OK FETCH completed.
a1 fetch * body[2.header]
* 3 FETCH (BODY[2.HEADER] {225}
Message-ID: [EMAIL PROTECTED]
Date: Tue, 21 May 2002 17:54:14 +0100
From: You [EMAIL PROTECTED]
MIME-Version: 1.0
To: Me [EMAIL PROTECTED]
Subject:Hi
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

)
a1 OK FETCH completed.
#

  UW
#
a1 fetch * body[2.mime]
* 3 FETCH (BODY[2.MIME] {61}
Content-Type: message/rfc822
Content-Disposition: inline

)
* 3 FETCH (FLAGS (\Recent \Seen))
a1 OK FETCH completed
a1 fetch * body[2.header]
* 3 FETCH (BODY[2.HEADER] {225}
Message-ID: [EMAIL PROTECTED]
Date: Tue, 21 May 2002 17:54:14 +0100
From: You [EMAIL PROTECTED]
MIME-Version: 1.0
To: Me [EMAIL PROTECTED]
Subject:Hi
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

)
a1 OK FETCH completed
#

   Exchange
#
a1 fetch * body[2.mime]
* 2 FETCH (BODY[2.MIME] {32}
Content-Type: message/rfc822

 FLAGS (\Seen \Recent))
a1 OK FETCH completed.
a1 fetch * body[2.header]
* 2 FETCH (BODY[2.HEADER] {175}
Message-ID: [EMAIL PROTECTED]
From: You [EMAIL PROTECTED]
To: Me [EMAIL PROTECTED]
Subject: Hi
Date: Tue, 21 May 2002 17:54:14 +0100
MIME-Version: 1.0
Content-Type: text/plain

)
a1 OK FETCH completed.
#

As you can see 2.mime gets the mime attachment header with UW and with
Exchange but using Courier it retrieves the mime header fields within
the RFC822 message header within the attachment.

Who's right?

Brian
-- 
[EMAIL PROTECTED]

This e-mail and any attachment is for authorised use by the intended recipient(s) 
only.  It may contain proprietary material, confidential information and/or be subject 
to legal privilege.  It should not be copied, disclosed to, retained or used by, any 
other party.  If you are not an intended recipient then please promptly delete this 
e-mail and any attachment and all copies and inform the sender.  Thank you.

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Problem with Courier / Authvchkpw

2002-05-22 Thread Dominique Leuenberger

Hi everybody

I got some strange problem here...

Just set up QMAil / VPOPMail / Courier-IMAP.. 
Accounts are stored by VPOPMail in a MySQL Database.

Everything works fine for about 30 minutes and then, no user can
authenticate anymore...
stopping and restarting authdaemond.plain helps to fix it for another 30
minutes..

are there some knows problems to this configuration?

Any help would be appreciated

Dominique Leuenberger
Leiter der Informatikdienste

Gewerblich Industrielle
Berufsschule Bern
Lorrainestrasse 5b
3013 Bern

Telefon:  +41 (031) 335 93 12
Fax:  +41 (031) 335 93 16
E-Mail:   [EMAIL PROTECTED]
Web:  http://www.gibb.ch 

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Problem with Courier / Authvchkpw

2002-05-22 Thread Roland Schneider

--Dominique Leuenberger wrote on 22.05.2002 11:23 +0200:

 I got some strange problem here...
 
 Just set up QMAil / VPOPMail / Courier-IMAP.. 
 Accounts are stored by VPOPMail in a MySQL Database.
 
 Everything works fine for about 30 minutes and then, no user can
 authenticate anymore...
 stopping and restarting authdaemond.plain helps to fix it for another 30
 minutes..
 
 are there some knows problems to this configuration?

There are some reports about vchkpw, and they are usually
better placed on the vchkpw-list.

Building courier without authmysql, authdaemon or vchkpw
usually helps.
 
 Any help would be appreciated

Since you have the users already in mySQL you dont need vchkpw
for courier at all, check ot the MYSQL_SELECT_CLAUSE which is
able to authenticate against any table-layout.

Roland


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] info about large scale deployments of courier-imap

2002-05-22 Thread Ramesh Kumar

Hi All,

I'm facing a weird problem with courier-imap. (posted my problem on Mon,
29 Apr 2002, subject  loads on courier-imap server are high). 
We are planning to use courier-imap as our IMAP server. Our loads could
go as high as 1000 connections at a given time with 200 connections
(in/out) per minute.
Would someone please provide me with some info about large scale
deployments of courier-imap. I'd like to know whether they have faced
similar problems and if so what are the workarounds they come up
with(tweaking the code or nfs/os tuning, what loads are they handling
etc). 

Thank you in advance
TTRamesh



GET INTERNET ACCESS FROM JUNO!
Juno offers FREE or PREMIUM Internet access for less!
Join Juno today!  For your FREE software, visit:
http://dl.www.juno.com/get/web/.

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] courier performance?

2002-05-22 Thread Webcop Dude


Hello, I would like to receive some information on courier performance in very 
large scale e-mail systems. Postfix (as MTA) + courier for imap/pop3.

Any performance issues with over 200,000 users and over 100 concurrent 
connections? Not to mention top hardware, top SAN over fiber etc hardware.

thank you



---
This message contains no viruses. 
Guaranteed by Kaspersky Anti-Virus.
www.antivirus.lv


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: IMAP body[X.HEADERS] and body[X.MIME] with message/rfc822 attachments

2002-05-22 Thread Sam Varshavchik

Brian Kelly writes: 


 I added this message to a folder on Courier, UW and Exchange using
 IMAP. I then fetched body[2.mime] and body[2.header] from the message
 on each IMAP server. Here's the output from each IMAP server: 
 
 Courier
 #
 a1 fetch * body[2.mime]
 * 3 FETCH (BODY[2.MIME] {98}
 MIME-Version: 1.0
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit 
 
 )

This will be fixed in the next release. 

-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: Problem with Courier / Authvchkpw

2002-05-22 Thread Sam Varshavchik

Dominique Leuenberger writes: 

 Hi everybody 
 
 I got some strange problem here... 
 
 Just set up QMAil / VPOPMail / Courier-IMAP.. 
 Accounts are stored by VPOPMail in a MySQL Database. 
 
 Everything works fine for about 30 minutes and then, no user can
 authenticate anymore...

Recent versions of the vpopmail library have been flaky.  The vpopmail 
mailing list is down the hall, last door on your right. 

-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] smtpaccess and 513 Relaying denied.

2002-05-22 Thread Nat Sakimura
I have subsequently tried the webadmin and white listed 
the 127.0.0.1 (removing the entry from smtpaccess/default) , 
it still does not work. 

Please give me a hint!

Nat

--- Original Message ---
From:Nat Sakimura [EMAIL PROTECTED]
To:[EMAIL PROTECTED]
Date:Wed, 22 May 2002 11:54:23 +0900 

Hello.

I am encountering 513 Relaying denied. error for the RAV antivirus 
that I
installed recently. It wants to send out some report to rav but it is
getting 513 Relaying denied.

As I understand, if I list localhost in smtpaccess files and do
makesmtpaccess, it should relay any mail from the localhost, so I 
should not
be getting the above error. When I tried to do a relay over a telnet 
session
as follows, I do get 513 Relaying denied.

[root@www /root]# telnet localhost smtp
Trying 127.0.0.1...
Connected to localhost (127.0.0.1).
Escape character is '^]'.
220 www.gosoudan.com ESMTP
HELO gosoudan.com
250-www.gosoudan.com Ok.
250-AUTH LOGIN CRAM-MD5
250-AUTH=LOGIN CRAM-MD5 X-NETSCAPE-HAS-BUGS
250-STARTTLS
250-XVERP=Courier
250-XEXDATA
250-XSECURITY=NONE,STARTTLS
250-PIPELINING
250-8BITMIME
250-SIZE
250 DSN
MAIL FROM:[EMAIL PROTECTED]
250 Ok.
RCPT TO:[EMAIL PROTECTED]
513 Relaying denied.

maillog at the time looks like as follows:

May 22 11:43:08 www courieresmtpd: started,ip=[:::127.0.0.1]
May 22 11:43:45 www courieresmtpd:
error,relay=:::127.0.0.1,from=root@gosou
dan.com,to=[EMAIL PROTECTED]: 513 Relaying denied.

Followings are the smtpaccess configurations:

[root@www smtpaccess]# ls -l /etc/courier/smtpaccess
total 12
-rw-r--r--1 courier  courier   806 May 22 11:11 default
-rw-r--r--1 root root  191 May 22 11:37 gosoudan
-rw-rw-r--1 courier  courier   173 May 10 09:01 webadmin

[root@www smtpaccess]# cat default
# Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
# distribution information.
#
# Default access policies for courieresmtpd
#
# By default, enable relaying for localhost.

127.0.0.1   allow,RELAYCLIENT

# Also, enable relaying for 10.0.0.0/8 and 192.168.0.0/16

10  allow,RELAYCLIENT
192.168 allow,RELAYCLIENT

[root@www smtpaccess]# cat gosoudan
211.10.15.199   allow,RELAYCLIENT
211.10.20.225   allow,RELAYCLIENT

Actual log for the rav is as follows:

May 22 11:03:01 www courieresmtpd:
error,relay=:::211.10.20.225,from=[EMAIL PROTECTED],to=ravma
ils@ra
vantivirus.com: 513 Relaying denied.
May 22 11:03:17 www ravmd[3855]: WARNING: Cannot send a warning e-
mail.

Any help is much appreciated.

Nat Sakimura





___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-
users


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] courier performance?

2002-05-22 Thread Theodore Knab

I can only answer part of your question.

Currently, we have 451 active users in Courier, this number will grow to 
2000+ in August. If this number were to be 200,000 users. I would would 
have to beef up the server (to our current Netfinity Server I would add 4-8 
CPUS, 32G RAM, 1 TB Journaled Filesystem, then replace the current 6 T1's 
with a big OC3 pipe). If you have to create a cluster, I don't know how you 
would begin with that. As for the client, probability is against you. Many 
users will be using the infamous OE. You will need to compile Courier IMAP 
for broken clients. Administratively, since you are using Postfix you may 
have difficulty using quotas. I am also using Postfix and rather than using 
the virtual quota patch, I am scripting filesystem quotas. Wieste, the 
postfix developer, recommends kernel level quotas over any application 
type. Quotas management of 200,000 users will be fun at the least.

Theodore Knab
-
System Engineer
x7419
-



--On Wednesday, May 22, 2002 13:56:13 +0300 Webcop Dude [EMAIL PROTECTED] 
wrote:


 Hello, I would like to receive some information on courier performance in
 very  large scale e-mail systems. Postfix (as MTA) + courier for
 imap/pop3.

 Any performance issues with over 200,000 users and over 100 concurrent
 connections? Not to mention top hardware, top SAN over fiber etc hardware.

 thank you



 ---
 This message contains no viruses.
 Guaranteed by Kaspersky Anti-Virus.
 www.antivirus.lv


 ___

 Don't miss the 2002 Sprint PCS Application Developer's Conference
 August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users






___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Delivery problem

2002-05-22 Thread Lukas Vesely

Hi all,
does anybody know why can't one courier server send mail to other server
with courier ?(the other server progs accept this mail :-/ )

Thanks
Lukas


May 12 16:11:56 fdlid courieresmtp:
id=1B26.3CEBA72C.11BA,from=#@[],addr=[EMAIL PROTECTED]: 517
Syntax error.
May 12 16:11:56 fdlid courieresmtp:
id=1B26.3CEBA72C.11BA,from=#@[],addr=[EMAIL PROTECTED],status:
failure


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: Delivery problem

2002-05-22 Thread Sam Varshavchik

Lukas Vesely writes: 

 Hi all,
 does anybody know why can't one courier server send mail to other server
 with courier ?(the other server progs accept this mail :-/ ) 
 
 Thanks
 Lukas 
 
 
 May 12 16:11:56 fdlid courieresmtp:
 id=1B26.3CEBA72C.11BA,from=#@[],addr=[EMAIL PROTECTED]: 517
 Syntax error.

Because it's designed this way.  This is a double-bounce, and double-bounces 
should never leave the originating server. 

-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] courier performance?

2002-05-22 Thread dreamwvr

On Wed, May 22, 2002 at 09:37:55AM -0400, Theodore Knab wrote:
 I can only answer part of your question.
 
 the virtual quota patch, I am scripting filesystem quotas. Wieste, the 
 postfix developer, recommends kernel level quotas over any application 
 type. Quotas management of 200,000 users will be fun at the least.
Quotas works just fine on postfix with Courier-Imap just use 
the Courier-Imap quotas it works just fine. That is of your doing a 
large virtual based setup. However you most likely want a diff setup
for your database. Anyone actually doing this with postgresql and 
postfix + Courier-Imap? Well hope this helped a little.

Best Regards,
[EMAIL PROTECTED]



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] courier performance?

2002-05-22 Thread Nat Sakimura

I am planning to SpecMail courier in the near future.
That kind of figure may help you.

Has anyone done SPECMail on courier before?

Nat

- Original Message -
From: Webcop Dude [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 22, 2002 7:56 PM
Subject: [courier-users] courier performance?



 Hello, I would like to receive some information on courier performance in
very
 large scale e-mail systems. Postfix (as MTA) + courier for imap/pop3.

 Any performance issues with over 200,000 users and over 100 concurrent
 connections? Not to mention top hardware, top SAN over fiber etc hardware.

 thank you



 ---
 This message contains no viruses.
 Guaranteed by Kaspersky Anti-Virus.
 www.antivirus.lv


 ___

 Don't miss the 2002 Sprint PCS Application Developer's Conference
 August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] s_connect() failed

2002-05-22 Thread Saxon Jones

I get the following entries in my log a lot.

May 22 10:17:34 bernie courierd: [ID 599878 mail.crit] authdaemon:
s_connect() failed: Connection timed out
May 22 10:21:52 bernie submit: [ID 599878 mail.crit] authdaemon: s_connect()
failed: Connection timed out

This started happening when I pulled the fourth CPU from the system as it
was causing problems.  Strangely it didn't happen before I ever put the
fourth CPU in so I figure it's also related to some configuration changes I
must have made.

Any ideas?


Saxon Jones

Technical Infrastructure Admin,
Interbaun Communications
Suite 200,
18404 Stony Plain Road
Edmonton, AB
T5S 2M8

mailto:[EMAIL PROTECTED]
http://www.interbaun.com/
(780) 447-8282, ext. 369



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: s_connect() failed

2002-05-22 Thread Sam Varshavchik

Saxon Jones writes: 

 I get the following entries in my log a lot. 
 
 May 22 10:17:34 bernie courierd: [ID 599878 mail.crit] authdaemon:
 s_connect() failed: Connection timed out
 May 22 10:21:52 bernie submit: [ID 599878 mail.crit] authdaemon: s_connect()
 failed: Connection timed out 
 
 This started happening when I pulled the fourth CPU from the system as it
 was causing problems.  Strangely it didn't happen before I ever put the
 fourth CPU in so I figure it's also related to some configuration changes I
 must have made. 
 
 Any ideas?

Check your system load.  The configured number of authdaemon processes are 
unable to keep up with the authentication requests.  You probably need that 
fourth CPU, with your current system load. 

If you have plenty of ram you may simply increase the number of authdaemon 
processes. 


-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Blocking reverse dns peaces

2002-05-22 Thread Marcus Felipe Pereira

Hi,

  I´m trying to configure bofh for block peaces of reverse DNS like
NNN.dsl.provider.net.
  How can I do that?

Marcus



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] postmasters @ hosteddomains

2002-05-22 Thread Marcus Felipe Pereira

Hi,

  is that a way to configura uniq postmaster account for all hosteddomains?

  putting the postmaster entry on the an alias file dos not work for
hosteddomains. Is that right?

Marcus


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Courier as relay

2002-05-22 Thread Steve Shockley

I currently have an Exchange 5.5 box doing SMTP mail at my company.  I'm
planning to put a Courier box in front of it, for spam filtering:

Internet -- Courier -- Exchange

I think I've got that part down, by adding domain.com: exchange.domain.com
to esmtproutes.  However, I'd like to integrate Mail::SpamAssassin, like so:

Internet -- Courier -- SpamAssassin -- Courier -- Exchange

In other words, Courier receives a message, runs it through SpamAssassin,
then forwards it to Exchange.

Unfortunately, all the documentation I've seen for SpamAssassin discusses
how to deliver mail to a local mailbox.  Is there a good way to handle this?
I found perfilter-example.pl, but I also found a message in the archive that
stated that you couldn't modify a message using this.





___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] postmasters @ hosteddomains

2002-05-22 Thread Michael Carmack

On Wed, May 22, 2002 at 03:42:43PM -0300, Marcus Felipe Pereira wrote:
 
   is that a way to configura uniq postmaster account for all hosteddomains?

Just create a user named 'postmaster' for each domain. Treat it like 
any other user, and manipulate incoming mail via the .courier file if 
necessary.

m.



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] courier performance?

2002-05-22 Thread Theodore Knab

 Quotas works just fine on postfix with Courier-Imap just use
 the Courier-Imap quotas it works just fine. That is of your doing a
 large virtual based setup. However you most likely want a diff setup
 for your database. Anyone actually doing this with postgresql and
 postfix + Courier-Imap? Well hope this helped a little.

How did you enable Courier IMAP quotas?

I am using LDAP for auth but Courier quotas are not working.

What is missing am I setting these right ?

qoutas are stored for 20M of space with 8000 messages in LDAP as:
  mailquota: 2000S, 8000C

qoutas are recived on IMAP as specified in the /etc/courier/authldaprc file
LDAP_MAILDIRQUOTA   mailquota

May 22 14:30:43 moe2 slapd[21482]: SRCH ou=mailuser,dc=mycoll,dc=edu 2 0
May 22 14:30:43 moe2 slapd[21482]: 0 0 0
May 22 14:30:43 moe2 slapd[21482]: filter: ([EMAIL PROTECTED])
May 22 14:30:43 moe2 slapd[21482]: attrs:
May 22 14:30:43 moe2 slapd[21482]:  homeDirectory
May 22 14:30:43 moe2 slapd[21482]:  cn
May 22 14:30:43 moe2 slapd[21482]:  userPassword
May 22 14:30:43 moe2 slapd[21482]:  mail
May 22 14:30:43 moe2 slapd[21482]:  mailquota here it is
May 22 14:30:43 moe2 slapd[21482]:
May 22 14:30:44 moe2 slapd[21392]: connection_get(15)

/etc/courier/imapd is

AUTHMODULES=authdaemon

AUTHMODULES_ORIG=authdaemon

IMAP_CAPABILITY=IMAP4rev1 CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT 
THREAD=REFERENCES SORT
IMAP_CAPABILITY_ORIG=IMAP4rev1 CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT 
THREAD=REFERENCES SORT AUTH=CRAM-MD5 AUTH=CRAM-SHA1 IDLE




Theodore Knab
-
System Engineer
x7419
-


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] (no subject)

2002-05-22 Thread LAURENT MPETI KABILA


REQUEST FOR URGENT BUSINESS ASSISTANCE
--
I stumbled into your contact by stroke of luck after a
long search for an honest and trust worthy person who
could handle issue with high confidentiality.
I was so dilghted when i got your contact and i
decided
to contact you  and solicite for your kind assistance.
i hope you will let this issue to remain confidential
even
if you are not interested because of my status.

I am Laurent Mpeti Kabila (Jnr) the second son of
Late President LAURENT DESIRE KABILA the immediate
Past president of the DEMOCRATIC REPUBLIC OF CONGO in
Africa who was murdered by his opposition through his
personal
bodyguards in his bedroom on Tuesday 16th January,
2001.
I have the privilege of being mandated by my father,s
colleagues to seek your immediate and urgent
co-operation
to receive into your bank account the sum of US $25m.
(twenty-five million Dollars) and some thousands
carats
of Diamond. This money and treasures was lodged in a
vault with a
security firm in Europe and South-Africa.

SOURCES OF DIAMONDS AND FUND
In August 2000, my father as a defence minister and
president has a meeting with his cabinet and armychief
about the
defence budget for 2000 to 2001 which was US $700m.
so he directed one of his best friend. Frederic Kibasa
Maliba
who was a minister of mines and a political party
leader known
as the Union Sacree de,opposition radicale et ses
allies (USORAL)
to buy arms with US $200m on 5th January 2001; for him
to finalize
the arms deal,my father was murdered. f.K. Maliba
(FKM) and I have
decided to keep the money with a foreigner after which
he will use
it to contest for the political election. Inspite of
all this we
have resolved to present you or your company for the
firm to pay
it into your nominated account the above sum and
diamonds.
This transaction should be finalized within seven (7)
working
days and for your co-operation and partnership, we
have unanimously
agreed that you will be entitled to 5.5% of the money
when successfully
receive it in your account. The nature of your
business is not relevant to
the successful execution of this transaction what we
require is your
total co-operation and commitment to ensure
100%risk-free transaction at
both ends and to protect the persons involved in this
transaction  strict
confidence and utmost secrecy is required even after
the uccessful conclusion
of this transaction. If this proposal is acceptable to
you, kindly provide me
with your personal telephone and fax through my E-mail
box for immediate
commencement of the transaction. I count on your
honour to keep my
secret, SECRET.

Looking forward for your urgent reply

Thanks.
Best Regards

MPETI L. KABILA (Jnr)







___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Courier configuration

2002-05-22 Thread Bill

to all,

does anyone have a fast, easy configuration procedure for courier.  i want
to install all mail modules (pop3, imap, and webmail)?

thanks,

bill


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Blocking reverse dns peaces

2002-05-22 Thread Andrew Newton

I don't think that can be done out of the box.  Atleast, I don't see it
anywhere, but I could be mistaken.

However, if you are willing to recompile your system, perhaps changing
references from RFC1035_TYPE_A to RFC1035_TYPE_PTR in tcpd/tcpd.c
docheckblocklist() might do the trick.  It looks like it would cause
-block on couriertcpd (use BLACKLISTS in etc/esmtpd) to do reverse
lookups.  Of course, I haven't done this.  I just deduced it from about
2 minutes of looking at the code, so take adequate precautions.

-andy

Marcus Felipe Pereira wrote:
 
 Hi,
 
   I´m trying to configure bofh for block peaces of reverse DNS like
 NNN.dsl.provider.net.
   How can I do that?
 
 Marcus


smime.p7s
Description: S/MIME Cryptographic Signature


[courier-users] Mailfilter Question: filtering mail with external program

2002-05-22 Thread Christopher Miles
Title: Mailfilter Question: filtering mail with external program



Hello,

Im trying to filter all incoming mail by sending it through SpamAssassin. This is part of my two part plan to cut down on spam and eliminate viruses. The first part is to tag the spam with SpamAssassin and then to check for viruses with Blackhole and Sophos.

The Blackhole/Sophos part is working okay, but Im having issues getting maildrop to send the incoming message to SpamAssassin. I have a .mailfilter file in my home directory that contains the following:

xfilter /usr/local/bin/spamassassin -P -c /usr/local/spamassassin/rules

>From the time it takes for the message to be delivered and by looking in the maillog file, Im pretty sure that SpamAssassin is never being invoked. Is there something obvious that Im doing wrong?

Any help would be greatly appreciated.

Thank You,
-- Miles





[courier-users] Re: Blocking reverse dns peaces

2002-05-22 Thread Sam Varshavchik

Marcus Felipe Pereira writes:

 Hi,

   I´m trying to configure bofh for block peaces of reverse DNS like
 NNN.dsl.provider.net.
   How can I do that?

Identify the IP address range in question, and add the IP addresses
to the smtpaccess file.

--
Sam


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: Courier configuration

2002-05-22 Thread Sam Varshavchik

Bill writes: 

 to all, 
 
 does anyone have a fast, easy configuration procedure for courier.  i want
 to install all mail modules (pop3, imap, and webmail)?

Many platforms have pre-compiled and pre-configured binary packages, 
somewhere on the net. 


-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Mailfilter Question: filtering mail withexternal program

2002-05-22 Thread Gordon Messmer

I'd recommend running spamd, and run spamc as the xfilter.  It will be
much faster.

Also, if you have an RPM based system, use the provided package to avoid
problems.


On Wed, 2002-05-22 at 13:34, Christopher Miles wrote:
 maildrop to send the incoming message to SpamAssassin. I have a
 .mailfilter file in my home directory that contains the following:
 
 xfilter /usr/local/bin/spamassassin -P -c
 /usr/local/spamassassin/rules
 
 From the time it takes for the message to be delivered and by looking in the
 maillog file, I¹m pretty sure that SpamAssassin is never being invoked. Is
 there something obvious that I¹m doing wrong?



___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Anyone gotten courier to work on OS X?

2002-05-22 Thread Daniel E. White

I got the latest distro of courier-imap to compile with a few tricks.  I am still 
trying to document them and I have not yet tried to run it.

I will gladly share anything I discover/figure out with the list as it happens.

At 1:46 PM -0700 5/22/02, Giuliano Carlini wrote:
Hi all, I'm trying to build Courier on OS X without much success.

It seems to be an issue with cpp syntax. When configuring waitlib and testing for 
working wait/wait3, configure tries to compile confwait.c and gets an syntax error 
trying preprocess line 44:


#if RETSIGTYPE != void

Thanks,

giuliano


-- 

   Dan White

Sometimes  I  think  the  surest  sign  that  intelligent  life exists
 elsewhere  in the universe is that none of it has tried to contact us.
 Calvin (Bill Watterson)

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Re: Blocking reverse dns peaces

2002-05-22 Thread Andrew Newton

Sam Varshavchik wrote:
 
 Andrew Newton writes:
  However, if you are willing to recompile your system, perhaps changing
  references from RFC1035_TYPE_A to RFC1035_TYPE_PTR in tcpd/tcpd.c
  docheckblocklist() might do the trick.  It looks like it would cause
  -block on couriertcpd (use BLACKLISTS in etc/esmtpd) to do reverse
 
 No.  This is the lookup itself, not what's being looked up.

Doh!

-andy

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Mailfilter Question: filtering mail with externalprogram

2002-05-22 Thread dobos_s

Just for archiving purposes I resend this to the list.
Why isnt the Reply-To field set to the list?

Dobos Sandor
IBCnet Hungary Ltd.



- Forwarded by Sndor Dobos/IBCnet-HU/IBCGroup on 2002.05.23 02:19
-
   

Sndor Dobos   

 To: Christopher Miles 
[EMAIL PROTECTED]
2002.05.23   cc:   

02:14Subject: Re: [courier-users] Mailfilter 
Question: filtering mail with 
 external program(Document link: Sndor Dobos) 

   




Hi!

There will be a problem with this. Couriers filters are not allowed to
modify the content of the emails; at least the globalfilters are not.
But I have done this for 1-2 months before: spamassassin and virus scanner
integrated with a courier globalfilter, with a little modification
in couriers source code.
Check the mail archives of this list, I sent the whole patch and a
description.
I would be happy if somebody test it. I am using it since then without any
problems, but nobody knows...

Dobos Sandor
IBCnet Hungary Ltd.





   
  
Christopher Miles  
  
[EMAIL PROTECTED]   To: Courier Users 
[EMAIL PROTECTED]   
Sent by:   cc: 
  
[EMAIL PROTECTED]Subject: 
[courier-users] Mailfilter Question: filtering mail with 
eforge.net external program
  
   
  
   
  
2002.05.22 22:34   
  
   
  
   
  



Hello,

I?m trying to filter all incoming mail by sending it through SpamAssassin.
This is part of my two part plan to cut down on spam and eliminate viruses.
The first part is to tag the spam with SpamAssassin and then to check for
viruses with Blackhole and Sophos.

The Blackhole/Sophos part is working okay, but I?m having issues getting
maildrop to send the incoming message to SpamAssassin. I have a
?.mailfilter? file in my home directory that contains the following:

xfilter /usr/local/bin/spamassassin -P -c
/usr/local/spamassassin/rules

From the time it takes for the message to be delivered and by looking in
the maillog file, I?m pretty sure that SpamAssassin is never being invoked.
Is there something obvious that I?m doing wrong?

Any help would be greatly appreciated.

Thank You,
-- Miles





___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Trouble with authentication

2002-05-22 Thread Dan Mascenik

Hi,

I just installed qmail 1.03 +patches,
vmailmgr-0.96.9, and courier-imap-1.4.3 accoring
to Dan Kuykendall's [EMAIL PROTECTED]
instructions at
http://www.tldp.org/HOWTO/Qmail-VMailMgr-Courier-imap-HOWTO/.
 When I attempt to log in to my IMAP server,
however, I get an authentication failed
message.

I had qmail working without IMAP before, and I
saw that messages were arriving in ./Maildir/new.
 When I added vmailmgr, I created a new user
called mailman to handle virtual email users. 
Now, incoming messages should (I think) go to the
Maildir's under mailman's users directory, but
I don't see them showing up there.

I added the line: .myserver.com:mailman to
qmail's virtualdomains file, and .myserver.com to
rcpthosts.

Is there a step I might have missed?  Is there a
way I can check to see if the authentication is
being handled by the right module(s)?

Any help would be greatly appreciated!

Thanks,

Dan Mascenik



=


__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com

___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: Unix/Linux User Authentication Help

2002-05-22 Thread Sam Varshavchik

Jesse Angell writes: 

 Hello, I just installed the courier imap server. I
 also installed the pop3 for it. I cannot figure out
 how to have it use the linux/unix users for the mail,
 (use the system's users and passwords for usernames
 etc) If this is not possible, How do you add usernames
 to it? I can't find aynthing on how to do this.

http://www.inter7.com/courierimap/FAQ.html#help 


-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Courier-IMAP setup problems

2002-05-22 Thread dougk_ff7

Ok, it looks like I'm in a similar predicament as another user.  I've 
been trying to set up Courier-IMAP, but each time I attempt to telnet to 
port 143, pretty much nothing happens.  The server accepts my 
connection, and I am then instantly disconnected.  Nothing is written to 
syslog.  My Linux distro is Slackware 8.0, with the latest stable 
version of Qmail and Courier-IMAP.  Here is a transcript of a session:
dougk@dougk-ff7:~$ telnet localhost 143
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.
dougk@dougk-ff7:~$
I have attempted to set up the authentication through MySQL (I have set 
up the schema but I can't figure out adding users, I have tried without 
success) and /etc/userdb (tried adding a user here without success), but 
I have found the documentation to be sparse and vague.  Also attempting 
to force another auth method by renaming the authdaemond.mysql did not 
affect this either.  I also have found the new Geocrawler interface to 
be challenging; there isn't a search function.  Even forwarding a 
message that might help me out would be appreciated.
Thank you!
Doug
[EMAIL PROTECTED]


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] QMail Vpopmail Courier-IMAP

2002-05-22 Thread Dean Cogger

Hey guys,

Well I'm new to the list, but I have searched thru the archives before I 
posted.

I'm a tech myself, and I'm setting up a play server basicly, I've got qmail 
going perfectly, and vpopmail going perfectly. My smtp and POP3 are just how 
I want them, but I need to get courier-imap setup as well, I've downloaded 
the source, and it wouldn't compile as nobody due to file restrictions, so I 
just compiled as root (I know the implications, just make it go :). Now the 
problem I'm having is, it authenticates what seems to be fine, I think this 
because if I set a wrong password in Outlook Express it tells me, but if I 
have the right password it basicly just disconnects, Outlook XP gives me the 
descriptive message, Could not connect to server.

I've emailed inter7, they sent me here as I didn't want to pay for someone 
else to set this up for me, I want to understand it myself.

Any help anybody can give me, or if you need more info, just let me know.

Dean.

_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Re: Courier-IMAP setup problems

2002-05-22 Thread Sam Varshavchik

[EMAIL PROTECTED] writes: 

 distro is Slackware 8.0, with the latest stable version of Qmail and 
 Courier-IMAP.  Here is a transcript of a session:
 dougk@dougk-ff7:~$ telnet localhost 143
 Trying 127.0.0.1...
 Connected to localhost.
 Escape character is '^]'.
 Connection closed by foreign host.
 dougk@dougk-ff7:~$

Try recompiling with IPv6 turned off.  See INSTALL. 

-- 
Sam 


___

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users