Re: WebMail

2001-01-10 Thread Patrick Boutilier

Peter,

IMP is what we use (http://www.horde.org). As for authentication IMP
authenticates against the IMAP server. It is up to the IMAP server what
kind of authentication it does.

Peter Erickson wrote:

> Okay I finally got Cyrus Imap up and working and am looking at adding
> WebMail. I know that I have a couple of options, but I am looking for
> some recommmendations on which is the best. I already have Apache
> installed along with php 4.0.3 and I am lookin for something that is
> able to authenticate via the sasldb instead of a mySQL etc. approach?
> Any feedback very helpful. Thanks.




Re: Messages randomly being marked as unread?

2001-01-10 Thread Alain Turbide

I've seen this happen when the MUA is Outlook Express and the Synchronize
option is set to "All messages" or "New Messages only".  Outlooks
synchronization is buggy.   The messages are definitively marked as read on
the server..(confirmed using a different mail agent).  It's the MUA's local
cache that is wrong.

Alain Turbide

- Original Message -
From: "Marc G. Fournier" <[EMAIL PROTECTED]>
To: "Jeremy Beker" <[EMAIL PROTECTED]>
Cc: "Cyrus List (E-mail)" <[EMAIL PROTECTED]>; "Bill Cox"
<[EMAIL PROTECTED]>
Sent: Wednesday, January 10, 2001 3:12 PM
Subject: Re: Messages randomly being marked as unread?


>
> stupid question, but could this be the MUA vs Cyrus?  What mailer are they
> using?  all the same?  how about operating system for the server itself?
>
> On Wed, 10 Jan 2001, Jeremy Beker wrote:
>
> > Hello Again,
> >
> > My users are still having the problem of messages randomly being
marked
> > as unread (this is with 2.0.9).  Can someone please tell me what the
status
> > of having this fixed is (or what information I can give to help it get
> > fixed)?
> > Thanks.
> >
> > -Jeremy
> >
> > --
> > Jeremy Beker, Technical Manager
> > Research & Development, 3-G International
> > S/MIME Cert: http://employees.3gi.com/~jbeker/
> > Condensing fact from the vapor of nuance.
> >
> >
> >
>
> Marc G. Fournier [EMAIL PROTECTED]
> Senior Systems AdministratorAcadia University
>
>   "These are my opinions, which are not necessarily shared by my employer"
>
>




Re: Messages randomly being marked as unread?

2001-01-10 Thread Marc G. Fournier


stupid question, but could this be the MUA vs Cyrus?  What mailer are they
using?  all the same?  how about operating system for the server itself?

On Wed, 10 Jan 2001, Jeremy Beker wrote:

> Hello Again,
>
> My users are still having the problem of messages randomly being marked
> as unread (this is with 2.0.9).  Can someone please tell me what the status
> of having this fixed is (or what information I can give to help it get
> fixed)?
> Thanks.
>
> -Jeremy
>
> --
> Jeremy Beker, Technical Manager
> Research & Development, 3-G International
> S/MIME Cert: http://employees.3gi.com/~jbeker/
> Condensing fact from the vapor of nuance.
>
>
>

Marc G. Fournier [EMAIL PROTECTED]
Senior Systems AdministratorAcadia University

  "These are my opinions, which are not necessarily shared by my employer"




WebMail

2001-01-10 Thread Peter Erickson

Okay I finally got Cyrus Imap up and working and am looking at adding
WebMail. I know that I have a couple of options, but I am looking for
some recommmendations on which is the best. I already have Apache
installed along with php 4.0.3 and I am lookin for something that is
able to authenticate via the sasldb instead of a mySQL etc. approach?
Any feedback very helpful. Thanks.




Messages randomly being marked as unread?

2001-01-10 Thread Jeremy Beker

Hello Again,

My users are still having the problem of messages randomly being marked
as unread (this is with 2.0.9).  Can someone please tell me what the status
of having this fixed is (or what information I can give to help it get
fixed)?
Thanks.

-Jeremy

-- 
Jeremy Beker, Technical Manager
Research & Development, 3-G International
S/MIME Cert: http://employees.3gi.com/~jbeker/
Condensing fact from the vapor of nuance.





Re: Connection reset when using TLS (Mulberry 2.0.5 and Cyrus1.6.22)

2001-01-10 Thread Ken Murchison



Cyrus Daboo wrote:
> 
> --On Wednesday, January 10, 2001 10:51 AM -0500 Jerry Kendall
> <[EMAIL PROTECTED]> wrote:
> 
> > When I try to access using TLS I am having some dificulty.
> > My imapd.log file when I connect using Mulbery from Cyrusoft.com:
> > =
> > Jan 10 11:01:46 gw imapd[1916]: starttls: TLSv1 with cipher DES-CBC3-SHA
> > (168/168 bits) no authentication
> > Jan 10 11:01:52 gw imapd[1916]: PROTERR: Connection reset by peer
> > =
> 
> Hi Jerry,
> Looking at your imtest log shows that there is a server problem:
> the CAPABILITY command being issued after STARTTLS is being rejected by the
> server. This will cause Mulberry to display an error and shut down its
> connection.
> 
> I did a test with Mulberry from here against the server address listed in
> the log and saw the same problem.
> 
> I'm not sure why the server is refusing CAPABILITY after STARTTLS - it
> really shouldn't as clients are required to re-issue CAPABILITY after
> STARTTLS to make sure they have a legitimate set of authenticators and
> other capability items listed after the secure connection has been created.
> 
> Hopefully one of the server experts on this list can explain what is
> causing this and how to fix it.

Not that I consider myself an expert, but this is a bug in 1.6.22.  The
server should be upgraded to 1.6.24 or higher, OR apply the following
patch:

*** imapd.c 2000/01/06 22:42:23 1.198
--- imapd.c 2000/05/13 03:54:40 1.198.2.1
***
*** 1017,1023 
continue;
}
cmd_starttls(tag.s);  
! 
} else if (!imapd_userid) {
goto nologin;
}
--- 1017,1023 
continue;
}
cmd_starttls(tag.s);  
!   continue;
} else if (!imapd_userid) {
goto nologin;
}



-- 
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: Connection reset when using TLS (Mulberry 2.0.5 and Cyrus1.6.22)

2001-01-10 Thread Cyrus Daboo

--On Wednesday, January 10, 2001 10:51 AM -0500 Jerry Kendall 
<[EMAIL PROTECTED]> wrote:

> When I try to access using TLS I am having some dificulty.
> My imapd.log file when I connect using Mulbery from Cyrusoft.com:
> =
> Jan 10 11:01:46 gw imapd[1916]: starttls: TLSv1 with cipher DES-CBC3-SHA
> (168/168 bits) no authentication
> Jan 10 11:01:52 gw imapd[1916]: PROTERR: Connection reset by peer
> =

Hi Jerry,
Looking at your imtest log shows that there is a server problem:
the CAPABILITY command being issued after STARTTLS is being rejected by the 
server. This will cause Mulberry to display an error and shut down its 
connection.

I did a test with Mulberry from here against the server address listed in 
the log and saw the same problem.

I'm not sure why the server is refusing CAPABILITY after STARTTLS - it 
really shouldn't as clients are required to re-issue CAPABILITY after 
STARTTLS to make sure they have a legitimate set of authenticators and 
other capability items listed after the secure connection has been created.

Hopefully one of the server experts on this list can explain what is 
causing this and how to fix it.

-- 
Cyrus Daboo



Re: sieve: fileinto and keep

2001-01-10 Thread Cyrus Daboo

--On Wednesday, January 10, 2001 4:13 PM +0100 Walter Steiner 
<[EMAIL PROTECTED]> wrote:

> elsif envelope :localpart :is "to" "ws+test" {
> fileinto "INBOX.test";
> keep;
> }
>
> (-- end of script --)
>
> Messages addressed to ws+test are saved into INBOX.test
> but there is no copy in my INBOX as expected.
>
> lmtpd[21763]: [ID 538540 local6.info] dupelim: eliminated duplicate
> message to user.ws.test id 
>
> "to user user.ws.test" - nothing to do with the missing copy in INBOX?
>
> anyhow, how to keep a copy in inbox and in a special folder?
> (procmail c flag)

In the absence of sieve, the address 'ws+test' will naturally result in the 
message being delivering into INBOX.test, assuming all the permissions for 
'plus' delivery are setup correctly. The keep action in sieve is simply 
doing the same thing and duplicate suppression kicks in (as indicated by 
the lmtpd message). What you should probably do is:

elsif envelope :localpart :is "to" "ws+test" {
fileinto "INBOX";
keep;
}

That will force delivery to INBOX (fileinto) and also result in a copy in 
INBOX.test (keep).

-- 
Cyrus Daboo



Connection reset when using TLS (Mulberry 2.0.5 and Cyrus 1.6.22)

2001-01-10 Thread Jerry Kendall




Hi there.

I am running IMAP 1.6.22 of FreeBSD 4.2 with SASL 1.5.24_3.

I can access EVERYTHING ok when I use imap(port 143) non-encrypted.

My imapd.conf file:

configdirectory: /usr/local/etc/imap
partition-default: /var/spool/imap
admins: root
defaultacl: anyone none

tls_CA_path: /usr/local/etc/imap/certs
tls_CA_file: /usr/local/etc/imap/certs/ca-kcis-010109.pem
tls_key_file: /usr/local/etc/imap/certs/kcis-010109.pem
tls_cert_file: /usr/local/etc/imap/certs/kcis-010109.pem
=

When I try to access using TLS I am having some dificulty.
My imapd.log file when I connect using Mulbery from Cyrusoft.com:
=
Jan 10 11:01:46 gw imapd[1916]: starttls: TLSv1 with cipher DES-CBC3-SHA
(168/168 bits) no authentication
Jan 10 11:01:52 gw imapd[1916]: PROTERR: Connection reset by peer
=

But, when I run IMTEST:


imtest -m login -a usernamehere -u usernamehere -t "" -p 993 localhost
C: C01 CAPABILITY
S: * OK gw.kcis.com Cyrus IMAP4 v1.6.22 server ready
S: * CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS
X-NON-HIERARCHICAL-RENAME NO_AT
OMIC_RENAME STARTTLS AUTH=DIGEST-MD5 AUTH=CRAM-MD5 UNSELECT
S: C01 OK Completed
S01 OK Begin TLS negotiation now
verify error:num=18:self signed certificate
TLS connection established: TLSv1 with cipher DES-CBC3-SHA (168/168 bits)
C: C01 CAPABILITY
S: S01 BAD Please login first
S: * CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS
X-NON-HIERARCHICAL-RENAME NO_AT
OMIC_RENAME STARTTLS AUTH=PLAIN AUTH=LOGIN AUTH=DIGEST-MD5 AUTH=CRAM-MD5
UNSELECT
S: C01 OK Completed
Password:
+ go ahead
L01 OK User logged in
Authenticated.
Security strength factor: 0
+ go ahead
L01 OK User logged in
Authenticated.
Security strength factor: 0


So the IMTEST seems OK,
when I look at the imapd.conf log file,

=
Jan 10 10:55:11 gw imapd[1891]: starttls: TLSv1 with cipher DES-CBC3-SHA
(168/168 bits) no authentication
Jan 10 10:56:21 gw imapd[1891]: login: localhost.kcis.com[127.0.0.1]
usernamehere plaintext
=

and this seems OK too.



So, does anyone have any ideas ???
I have considered upgrading to Cyrus 2.0.9 but that is a task better left until
much
safer time. Maybe when we build a new system.



Jerry T. Kendall, CISSP The Canada Life Assurance Company
Security Architect 330 University Avenue
E-Business, Technology ServicesToronto, Ontario, M5G 1R8, CANADA
http://www.CanadaLife.com  Tel: +1.416.597.1440 x5608
[EMAIL PROTECTED]   Fax: +1.416.597.6900







sieve: fileinto and keep

2001-01-10 Thread Walter Steiner

I have a problem with fileinto/keep/duplim

sieve script:

elsif envelope :localpart :is "to" "ws+test" {
fileinto "INBOX.test";
keep;
}

(-- end of script --)

Messages addressed to ws+test are saved into INBOX.test
but there is no copy in my INBOX as expected.

lmtpd[21763]: [ID 538540 local6.info] dupelim: eliminated duplicate message to 
user.ws.test id 

"to user user.ws.test" - nothing to do with the missing copy in INBOX?

anyhow, how to keep a copy in inbox and in a special folder?
(procmail c flag)

cyrus-imapd 2.0.9 Solaris 8

Thanks in advance, ws



Re: mailbox migration

2001-01-10 Thread Ken Murchison



Oguz YILMAZ wrote:
> 
> Does anybody knows tools to migrate berkeley mailboxes to cyrus
> other than the script mbxcvt which is in UW imap-tools?
> mbxcvt needs user passwords. However, I wanna do this job in administrator
> side without need in users.
> 
> Actually I know one: In the book, Managing IMAP (www.ora.com) there are
> some scripts for this job. However I dont have the book. does anybody have
> this scripts (inboxfer, folderxfer)?

ftp://ftp.ora.com/published/oreilly/misc/mimap/examples.tar.gz

-- 
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



mailbox migration

2001-01-10 Thread Oguz YILMAZ

Does anybody knows tools to migrate berkeley mailboxes to cyrus
other than the script mbxcvt which is in UW imap-tools?
mbxcvt needs user passwords. However, I wanna do this job in administrator
side without need in users.

Actually I know one: In the book, Managing IMAP (www.ora.com) there are
some scripts for this job. However I dont have the book. does anybody have
this scripts (inboxfer, folderxfer)?

---
Oguz Yilmaz
System Support Engineer
GANTEK Computer Consultancy
SUN Authorized Reseller
Office: +90 312 446 78 00
Fax:+90 312 446 36 66
E-Mail: [EMAIL PROTECTED]