Re: qmail IMAP SSL

2000-07-30 Thread Robin S. Socha

* qmail  [EMAIL PROTECTED] writes:
 On Thu, Jul 27, 2000 at 07:50:09PM -0700, Jacob Scott wrote:

 I would be interested as well. I can help with IMAP SSL if you need
 it.
 I would be interested in a bit of help with IMAP and perhaps SSL also

I set up courier IMAP under OpenBSD yesterday. It was a matter of
minutes, really.

 You obviously have good reasons for installing SSL other wise you
 would have not done so.  I would much appreciate to know how important
 SSL is.

That depends on what you think about sending your love letters via
postcard. In short: if you feel confident using telnet instead of ssh,
you will not need TLS.

 I intend to install Courier IMAP with sqwebmail for a webmail server.

I'm running this for my company. Excellent stuff.

 I would also like to know the ports that I am required to keep open in
 our firewall for IMAP to work

grep imap /etc/services
-- 
Robin S. Socha http://socha.net/



RE: Qmail-Imap-Maildir

2000-05-16 Thread Tim Hunter

Courier-imap works great for me and is the only imap daemon to work with any
reliability.

I highly doubt that the imap package that comes with Mandrake works with
/Maildir/ probably just works with /var/spool/mail/$USER


-Original Message-
From: FabriceK [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 5:58 PM
To: [EMAIL PROTECTED]
Subject: Qmail-Imap-Maildir


I have installed souce of imap : courier-imap-0.32 from inter7.com but it
doesn't work good

Then I installed the imap-4.7 package from the Mandrake 7.02
(I also tryed the imap package (version:4.5-3mdir4)
I prefer use package than source.

I create Maildir with the command : maildirmake   /home/USER/Maildir/
(with the good permission)
for the client.
When I configure a client (Outlook Express, Netscape 4.7),  the
synchronisation is OK between server and client.  I can send messages ...
But:  my problems are:
I have nothing in the recept-box (or Inbox?) of the client.
Or : where do the messages go on the server?

(Do I use the good package, source ??)

this is my /etc/inetd.conf:imap  steam  tcp  nowait
root /usr/sbin/tcpd imapd
this is my /etc/services:imap2  143/tcp imap
  imap2  143/udp imap


Note: I have used the UCSPI source for the tcpserver before with pop3.   And
all was OK . Do I delete  an old program  ??




Re: Qmail IMAP AND Pop3 recomendations

2000-04-25 Thread Scott Gifford

"Peter Janett" [EMAIL PROTECTED] writes:

 It's all working OK, but now I need to be able to access the accounts via
 IMAP.  I have been looking into Courier-IMAP, but if possible, I'd like the
 IMAP server to use the same checkpasswd I'm using for POP3 access.

I solved this problem with a hack.  I wrote a script to run before
checkpassword and clean up what imaplogin sends to it, then another
program to clean up what checkpassword does and set up the environment
how imapd expects it.

I start up tcpserver like this.  The interesting lines are the
preimap.pl, checkpassword, and postimap.pl lines.  I also use
POP-style bulletins, which is the qmail-popbull line; you may not need
it in your environment.

( nohup supervise /var/supervise/qmail/imap.143 \
tcpserver -R -c 100 -v \
-u 400 -g 400 \
0 143 \
${exec_prefix}/sbin/imaplogin \
/usr/tools/src/imaptest/preimap.pl \
/var/qmail/bin/checkpassword \
/usr/tools/src/imaptest/postimap.pl \
/var/qmail/bin/qmail-popbull /var/qmail/bulletins \
${exec_prefix}/bin/imapd Maildir  )

preimap.pl and postimap.pl are as follows:

--preimap.pl-
#!/usr/local/bin/perl

use POSIX;

open(AUTHIN,"=3");
@lines=AUTHIN;
close(AUTHIN);

($fdR,$fdW) = POSIX::pipe()
  or die "Couldn't create pipe: $!\n";

defined($pid=fork())
  or die "Couldn't fork: $!\n";

if (!$pid)
{
  # Child
  POSIX::dup2(3,$fdR);
  POSIX::close($fdW);
  exec(@ARGV);
  die "Couldn't exec: $!\n";
}

open(AUTHOUT,"=$fdW")
  or die "Couldn't open fd #$fdW as AUTHOUT: $!\n";

# Ignore first two
shift(@lines); shift(@lines);
grep(s/\n/\0/,@lines);
print AUTHOUT @lines, "Y123456\0";
close(AUTHOUT);

#exit(0);
-


-postimap.pl-
#!/usr/local/bin/perl

delete $ENV{AUTHUSER};
$ENV{AUTHADDR}="test\@test";
$ENV{AUTHFULLNAME}="";
delete $ENV{AUTHEXPIRE};
$ENV{AUTHENTICATED}="yes";

exec(@ARGV)
  or print "exec failed!: $!\n";
-



Re: qmail-imap, cyrus imap, qmail

2000-02-09 Thread Dave Sill

[EMAIL PROTECTED] wrote:

Someone tracked this one down and confirmed it to be a bug in Netscape
Messenger's IMAP client.

And the "fix" is to wait for Time/Warner/CNN/AOL/Netscape to release a 
working Messenger, and get all 50 million users to install it, rather
than accommodating the bug in the handful of courier-imap servers?

Sometimes "right" is wrong. I don't know if this is one of those
times, but it seems likely.

Another possible imap solution is David Harris' patches to the UW IMAP 
daemon. See:

  http://Web.InfoAve.Net/~dsill/lwq.html#imap-maildir

-Dave



RE: qmail-imap, cyrus imap, qmail

2000-02-09 Thread Mullen, Patrick

 Cyrus format is probably higher performance)

Hm.  Good enough.  My mail concern is really that of I
have everything set up based around maildirs right now.

 It will of course exist happily with qmail; it's just a 
 matter of using
 the right invocation of 'deliver' in .qmail-default.

Could you expand upon this please?  Is there a global
.qmail-default somewhere, or would each user have to
have this?  Isn't .qmail-default only for addresses
in the form user-something, where the -something isn't
already handled by a specific .qmail- file?

Here is my real problem.  This is what I have right
now.  I want to keep this while expanding on to Cyrus
(if that seems the best choice).

Mail arrives.  If it is of the form user-something,
my perl script is called.  My perl script determines
if it needs to do anything special with the mail, and
if not, it hands it off to maildrop for delivery into
my Maildir.  Of course, maildrop could do further
filtering but that's not something I'm doing right now.

How can I get something similar to the above to work
using Cyrus?  For the curious, my perl script takes
certain emails and stuffs it into a database.
Otherwise, it is treated as a normal email.


Thanks,

~Patrick



Re: qmail-imap, cyrus imap, qmail

2000-02-09 Thread Mitja Sarp

On Wed, Feb 09, 2000 at 08:58:07AM -0500, Dave Sill wrote:
 [EMAIL PROTECTED] wrote:
 
 Someone tracked this one down and confirmed it to be a bug in Netscape
 Messenger's IMAP client.
 
 And the "fix" is to wait for Time/Warner/CNN/AOL/Netscape to release a 
 working Messenger, and get all 50 million users to install it, rather
 than accommodating the bug in the handful of courier-imap servers?
 
 Sometimes "right" is wrong. I don't know if this is one of those
 times, but it seems likely.
 

I have to agree here, I understand it might be painful but a -DNETSCAPE_BUG
switch might make the life better for us that are planning to use Courier
for production/public environments.

/Mitja



RE: qmail-imap, cyrus imap, qmail

2000-02-09 Thread Greg Owen


  It will of course exist happily with qmail; it's just a 
  matter of using the right invocation of 'deliver' in
  .qmail-default.
 
 Could you expand upon this please?  Is there a global
 .qmail-default somewhere, or would each user have to
 have this?  Isn't .qmail-default only for addresses
 in the form user-something, where the -something isn't
 already handled by a specific .qmail- file?

Ah, sorry, you're right.  I meant defaultdelivery, not
.qmail-default.  (I use some pretty funky setups on some of my relays and
get confused as to which I'm referring to).  Of course, you can put the
right line in defaultdelivery, in ~user/.qmail, in ~alias/.qmail-user, in
~alias/.qmail-default, etc. etc. etc.

So, for example, I have a machine that runs qmail and cyrus.  In the
/var/qmail/rc, the qmail-start invocation is:

qmail-start '|preline -f /usr/cyrus/bin/deliver -e -a $USER -- $USER' \ 
splogger qmail

The '|preline -f /usr/cyrus' portion is the "defaultdelivery"
recipe, and it says, "Pass the message onto cyrus's Deliver program after
stripping the 'From ' line which would cause Deliver to puke."

So, if I understand what you're saying below, all you'd need to do
is modify your perl script to call a similar cyrus/bin/deliver line instead
of maildrop.

 Here is my real problem.  This is what I have right
 now.  I want to keep this while expanding on to Cyrus
 (if that seems the best choice).

Just remember, if it ain't broke, don't fix it.  I like cyrus a lot,
but you need to evaluate if your load is causing any problems, and then if
this sort of switch is the best fix.

 Mail arrives.  If it is of the form user-something,
 my perl script is called.  My perl script determines
 if it needs to do anything special with the mail, and
 if not, it hands it off to maildrop for delivery into
 my Maildir.  Of course, maildrop could do further
 filtering but that's not something I'm doing right now.
 
 How can I get something similar to the above to work
 using Cyrus?  For the curious, my perl script takes
 certain emails and stuffs it into a database.
 Otherwise, it is treated as a normal email.

There are some caveats about regular users using 'deliver' to put
mail in their mailboxes.  IIRC, it should be wrapped so that they can't
abuse it to get around mailbox quotas.  Then again, if not using quotas,
then it isn't a problem...  The cyrus documentation goes into these issues
better than I can remember.

-- 
gowen -- Greg Owen -- [EMAIL PROTECTED]



Re: qmail-imap, cyrus imap, qmail

2000-02-09 Thread Sam

Dave Sill writes:

 [EMAIL PROTECTED] wrote:
 
 Someone tracked this one down and confirmed it to be a bug in Netscape
 Messenger's IMAP client.
 
 And the "fix" is to wait for Time/Warner/CNN/AOL/Netscape to release a 
 working Messenger, and get all 50 million users to install it, rather
 than accommodating the bug in the handful of courier-imap servers?

And tolerating sheer incompetence, and lack of due diligence, on the part
of commercial software vendors is how we got into this situation in the
first place.

I've already given both Messenger and Outlook Express enough slack when it
could be reasonably argued that there is a difference of opinion as to what
IMAP4rev1 is actually saying, which I consider to be the worst written RFC
I have ever read - but that's another story.

However, when there's a failure in implementing a rather clear and
unambiguous portion of the protocol, working around that particular problem
is going to get the lowest priority.

I'll fix Netscape's bugs when I have the time for it.  But for now, I have
better things to do.

Until then, and I hate to say it, people should use Outlook Express's IMAP
client.

-- 
Sam



Re: qmail-imap, cyrus imap, qmail

2000-02-08 Thread Russell Nelson

Mullen, Patrick writes:
  Has any work been done on qmail-imap since 0.02, dated 12 March 1999
  at ftp://ftp.qmail.org/imap/  ?  I applied the patch (for qmail-1.02) to
  qmail-1.03.  It applied cleanly, largely because what the patch really
  did was create two new .c files and modify the Makefile.  It seems
  to work, but like the documentation says, that seems to be about it.

Yup, that's about it.

  If qmail-imap is dead, what other options are there?  I've used
  Courier IMAP, which supports Maildirs, but it chokes with Netscape
  quite often.

I believe that fixing Courier IMAP is the best option.

  The ideal solution, I think, would be qmail-imapd because it uses
  checkpassword, which I've patched for selective relaying, as
  well as its native support for maildir.  It's also pretty cool that
  qmail-imapd implemented as a bunch of perl files.  ;)

I'm glad you like it, but unless you pick up the cross, nobody's
working on it.

-- 
-russ nelson [EMAIL PROTECTED]  http://russnelson.com
Crynwr sells support for free software  | PGPok | "Ask not what your country
521 Pleasant Valley Rd. | +1 315 268 1925 voice | can force other people to
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | do for you..."  -Perry M.



Re: qmail-imap, cyrus imap, qmail

2000-02-08 Thread Greg Owen

If qmail-imap is dead, what other options are there?  I've used
Courier IMAP, which supports Maildirs, but it chokes with Netscape
quite often.  I installed and have used cyrus imapd, but I cannot
find anything anywhere on how to make it use Maildirs, or even
make it coexist with qmail effectively.


Cyrus uses its own mailbox format, period.  You won't get it to use
Maildirs.  (Of course, unless you feel you truly need direct file access to
the mailbox or must run over NFS, Cyrus format is probably higher
performance)

It will of course exist happily with qmail; it's just a matter of using
the right invocation of 'deliver' in .qmail-default.

-- greg



Re: QMail-IMAP + LDAP in large corporate setting

1999-12-01 Thread martin

Charles,

This is not a difficult thing to do into place.  Presuming that your
buff HP9000 is going to be your central server, you can then run all of
your virus-scan software, spam checking, and  mail log analysis on this
machine.

Then you only allow SMTP connections on your 2 leaf nodes from 'buff'
(and your client networks) and all mail for mycompany.com can be MX'd to
'buff'.  Buff then uses forward (or a pile of .qmail files) to send the
messages to the appropriate leaf node, or deliver it to cyrus (IMAP) or
imapd.

As far as the qmail-ldap integration, I'm afraid others will have to
answer that question

Good luck!

-Martin

On  1 Dec, Charles Leeds wrote:
  : We are running into problems with a deployment of Netscape Directory and
  : Messaging on HP-UX and are looking at alternatives.
  : 
  : Can QMail handle this scenario?
  : 
  : 2000+ users for the domain mycompany.com
  : 
  : 500 of those users will need their mail stored on 2 qmail servers at branch
  : sites (250 users per)
  : 1500 of the users will be on a very buff HP 9000
  : All 2000 users must have the same domain name mycompany.com
  : ([EMAIL PROTECTED] might be on the corporate HQ server while
  : [EMAIL PROTECTED] might be on a branch site server.  Branch sites and HQ
  : tied together using leased T1's and form a WAN (non-internet addresses)
  : 
  : All mail will be stored in IMAP format on those 3 servers.  LDAP
  : authentication with no local accounts on mail servers.  Verification of user
  : before sending mail (authenticated smtp?).  Works with Netscape 4.5+ client.
  : (I've heard Outlook Express works badly with IMAP servers other than
  : Microsoft's, is this true?)
  : 
  : Has anyone deployed and kind of Netscape/Outlook Express + Qmail-IMAP +
  : Qmail-LDAP setup with success?  How well do these play together?
  : 
  : Any information would be helpful.  We already use QMail for a relay and have
  : fairly good c and Unix expertise inhouse.
  : 
  : Thanks,
  : Fox
  : [EMAIL PROTECTED]
  : 
  : 
  : 
  : 

-- 
Martin A. Brown --- SecurePipe Communications --- [EMAIL PROTECTED]



Re: Qmail, IMAP, and Maildir

1999-06-16 Thread Anonymous

On Tue, 15 Jun 1999, John Gonzalez/netMDC admin wrote:

JGnaOn Tue, 15 Jun 1999, Christian Wiese wrote:
JGnaQ: What do you use to enable Maildir support for your IMAP server, and which
JGnaIMAP server do you use ?
JGna
JGnaWe dont support IMAP, but there are IMAP servers out that do support
JGnamaildir (cyrus)

I believe that cyrus supports its own black box format, which can be fed by
qmail.

JGnaQ: Do you have a location of Qmail-IMAP-HOWTO (or something else, explaining the
JGnaconfiguration) ?
JGna
JGnaNo, but from what i understand, the cyrus instructions are pretty straight
JGnaforward. The only complaint i've heard is having to add your users to the
JGnacyrus software as well as the local system. (keep in mind i've never used
JGnathe cyrus imap server)

Permission and groups are key.  Also, I've found it necessary to stick a
wrapper around cyrus' deliver agent that will grok its exit codes into
something that qmail can deal with.

-- 
--Matt Schnierle
--mgs at stargate dot net
--Stargate Industries, LLC
--#include std/disclaimer.h
--"It's not that simple."



Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

Hi John,

sorry for disturbing you, but I followed your discussion about Qmail+ IMAP
+ Maildir.
First, I've succesfully installed my Qmail server with POP3 and Maildir support, but
I want to offer my intranet users a web based email system, that should be
integraded in our web based information system.
So ... I want to use imp as web frontend, but it requires an IMAP server.

Q: What do you use to enable Maildir support for your IMAP server, and which
IMAP server do you use ?

Q: Do you have a location of Qmail-IMAP-HOWTO (or something else, explaining the
configuration) ?


Thank you very much

best regards

christian


John Gonzalez/netMDC admin wrote:

 We use the vmailmgrd package with russ/djb's maildir/qmail-pop3d and have
 had no problems. Works beautifully, and you dont have to have an account
 for the user on the box either.




Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

On Tue, 15 Jun 1999, Christian Wiese wrote:
Q: What do you use to enable Maildir support for your IMAP server, and which
IMAP server do you use ?

We dont support IMAP, but there are IMAP servers out that do support
maildir (cyrus)

Q: Do you have a location of Qmail-IMAP-HOWTO (or something else, explaining the
configuration) ?

No, but from what i understand, the cyrus instructions are pretty straight
forward. The only complaint i've heard is having to add your users to the
cyrus software as well as the local system. (keep in mind i've never used
the cyrus imap server)

  ___   _  __   _  
__  /___ ___    /__  John Gonzalez/Net.Tech
__  __ \ __ \  __/_  __ `__ \/ __  /_  ___/ MDC Computers/netMDC!
_  / / / `__/ /_  / / / / / / /_/ / / /__ (505)437-7600/fax-437-3052
/_/ /_/\___/\__/ /_/ /_/ /_/\__,_/  \___/ http://www.netmdc.com
[-[system info]---]
  1:40pm  up 130 days, 20:43,  3 users,  load average: 0.52, 0.20, 0.12



Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

On Tue, Jun 15, 1999 at 01:44:50PM -0600, John Gonzalez/netMDC admin wrote:
 On Tue, 15 Jun 1999, Christian Wiese wrote:
 Q: What do you use to enable Maildir support for your IMAP server, and which
 IMAP server do you use ?
 
 We dont support IMAP, but there are IMAP servers out that do support
 maildir (cyrus)

Since when is that? Cyrus has his own mailbox format IIRC.

   1:40pm  up 130 days, 20:43,  3 users,  load average: 0.52, 0.20, 0.12

Not bad!

My gateway [which is also a workstation for the girls :)] :
  9:51pm  up 122 days,  6:25,  7 users,  load average: 0.76, 0.68, 0.62

Greetz, Peter
-- 
| 'He broke my heart,|  Peter van Dijk |
 I broke his neck'   | [EMAIL PROTECTED] |
   nognikz - As the sun  |Hardbeat@ircnet - #cistron/#linux.nl |
 | Hardbeat@undernet - #groningen/#kinkfm/#vdh |



Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

On Tue, 15 Jun 1999, Peter van Dijk wrote:
 We dont support IMAP, but there are IMAP servers out that do support
 maildir (cyrus)

Since when is that? Cyrus has his own mailbox format IIRC.

then i stand corrected =)

I just knew that alot of people running maildir use cyrus for imap, is
this not the case?

Not bad!

My gateway [which is also a workstation for the girls :)] :
  9:51pm  up 122 days,  6:25,  7 users,  load average: 0.76, 0.68, 0.62

Greetz, Peter

  ___   _  __   _  
__  /___ ___    /__  John Gonzalez/Net.Tech
__  __ \ __ \  __/_  __ `__ \/ __  /_  ___/ MDC Computers/netMDC!
_  / / / `__/ /_  / / / / / / /_/ / / /__ (505)437-7600/fax-437-3052
/_/ /_/\___/\__/ /_/ /_/ /_/\__,_/  \___/ http://www.netmdc.com
[-[system info]---]
  1:55pm  up 130 days, 20:58,  3 users,  load average: 0.03, 0.12, 0.10



Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

Peter van Dijk writes:
  On Tue, Jun 15, 1999 at 01:44:50PM -0600, John Gonzalez/netMDC admin wrote:
 1:40pm  up 130 days, 20:43,  3 users,  load average: 0.52, 0.20, 0.12
  
  My gateway [which is also a workstation for the girls :)] :
9:51pm  up 122 days,  6:25,  7 users,  load average: 0.76, 0.68, 0.62

  4:08pm  up 222 days, 13 min,  1 user,  load average: 0.08, 0.14, 0.15

And the only reason it's that low is because I had to move it down one
floor at my ISP, and didn't want to have to balance the UPS on top of it.
For an extra added bonus:

qmails   30733  0.0  0.2   972   180  ?  S  Apr 28  64:11 qmail-send 

It takes serious email for qmail-send to work up that many cpu seconds!

-- 
-russ nelson [EMAIL PROTECTED]  http://crynwr.com/~nelson
Crynwr supports Open Source(tm) Software| PGPok | Government schools are so
521 Pleasant Valley Rd. | +1 315 268 1925 voice | bad that any rank amateur
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | can outdo them. Homeschool!



Re: Qmail, IMAP, and Maildir

1999-06-15 Thread Anonymous

On 15 Jun 1999, Russell Nelson wrote:

   And the only reason it's that low is because I had to move it down one
   floor at my ISP, and didn't want to have to balance the UPS on top of it.
   For an extra added bonus:
   
   qmails   30733  0.0  0.2   972   180  ?  S  Apr 28  64:11 qmail-send 
   
   It takes serious email for qmail-send to work up that many cpu seconds!

OK, it is childish, but I have to:

qmails  24255  0.0  0.2   796  624  ??  I  1Oct98 1744:56.71 qmail-send

This particular instance is doing delivery #14774584 as I write.

(I have several more just like it)

:-)

-- Jeff   
   



RE: Qmail, IMAP, and Maildir

1999-06-01 Thread RaTao von J

I love cyrus!

I never had a problem with it. works very weel with qmail. I'd suggest these two
.
folder management works fine (because you never get to use Mailbox or /Maildir, 
you get cyrus mailboxes). with some scripting you'll get a 110% solution :)
...and you don't have to create unix account's if you don't want to.

regards,
ratao

On 01-Jun-99 [EMAIL PROTECTED] wrote:
  
 Using RH 6.0, latest Qmail, the Qmail-Imap RPM from qmail.org, and
 a Maildir setup.
  
 I've seen several questions about folder management not working in
 the list, but no resolutions.  My clients create folders that appear in
 their home directories.  These folders are not valid maildir folders
 and can not be used.
  
 Does this set up just not work yet?
  
 Should I use:
  
 Cyrus Imap with Maildir?
  
 Dump Maildir and use Mailbox?

--
E-Mail: RaTao von J [EMAIL PROTECTED] 
Date: 01-Jun-99   Time: 19:01:09
--



RE: Qmail, IMAP, and Maildir

1999-06-01 Thread Anonymous


We use the vmailmgrd package with russ/djb's maildir/qmail-pop3d and have
had no problems. Works beautifully, and you dont have to have an account
for the user on the box either.

On Tue, 1 Jun 1999, RaTao von J wrote:

I love cyrus!

I never had a problem with it. works very weel with qmail. I'd suggest these two
.
folder management works fine (because you never get to use Mailbox or /Maildir, 
you get cyrus mailboxes). with some scripting you'll get a 110% solution :)
...and you don't have to create unix account's if you don't want to.

regards,
ratao

On 01-Jun-99 [EMAIL PROTECTED] wrote:
  
 Using RH 6.0, latest Qmail, the Qmail-Imap RPM from qmail.org, and
 a Maildir setup.
  
 I've seen several questions about folder management not working in
 the list, but no resolutions.  My clients create folders that appear in
 their home directories.  These folders are not valid maildir folders
 and can not be used.
  
 Does this set up just not work yet?
  
 Should I use:
  
 Cyrus Imap with Maildir?
  
 Dump Maildir and use Mailbox?

--
E-Mail: RaTao von J [EMAIL PROTECTED] 
Date: 01-Jun-99   Time: 19:01:09
--


  ___   _  __   _  
__  /___ ___    /__  John Gonzalez/Net.Tech
__  __ \ __ \  __/_  __ `__ \/ __  /_  ___/ MDC Computers/netMDC!
_  / / / `__/ /_  / / / / / / /_/ / / /__ (505)437-7600/fax-437-3052
/_/ /_/\___/\__/ /_/ /_/ /_/\__,_/  \___/ http://www.netmdc.com
[-[system info]---]
 12:00pm  up 116 days, 19:03,  3 users,  load average: 0.00, 0.03, 0.00



Re: qmail-imap guide

1999-04-28 Thread R. Kaneko

From: BoLiang [EMAIL PROTECTED]
Subject: qmail-imap guide
Date: Mon, 01 Mar 1999 14:43:02 +0900
Message-Id: [EMAIL PROTECTED]

 Does anyone know any guide document to the qmail-imap-4.5.beta-2

FYI: ftp://ftp.engr.uark.edu/pub/qmail/qmail-imap/

---Ryoji
Help a cow in need! http://www.jwntug.or.jp/rc5/



Re: Qmail, IMAP, POP

1999-04-13 Thread Balazs Nagy

On Sun, 11 Apr 1999, Brad (Senior Systems Administrator - Americanisp, LLC.) wrote:

 I have qmail with pop3 and Maildir's.
 Would like it if we can run IMAP, along with the pop3 and
 smtp.

Use Maildir-powered pine and pine's imapd.
-- 
Regards: Kevin (Balazs)



Re: qmail + IMAP

1999-03-10 Thread Jeff Hayward

On Wed, 10 Mar 1999, Manfred Spraul wrote:

   I know that this is partially off-topic, but does anyone know how
   reliable the Maildir support in qmail-imap (the imap server from UW, the
   Maildir patches from Mattias Larsson) is?
   
I use it in heavy production but I've made fairly extensive changes
to it.  Most of the changes were to use a different scheme for
storing UIDs (stat()-ing each file to obtain the UID is a very heavy
penalty), as well as caching flag updates until a checkpoint call,
also for performance.  I seem to recall fixing some bugs but I
don't honestly know whether they were mine or someone else's. 

I keep meaning to throw it out and start fresh, but haven't ever got
'round tuit.

-- Jeff
   



Re: qmail + IMAP

1999-03-10 Thread Peter van Dijk

On Wed, Mar 10, 1999 at 10:01:51AM -0600, Jeff Hayward wrote:
 On Wed, 10 Mar 1999, Manfred Spraul wrote:
 
I know that this is partially off-topic, but does anyone know how
reliable the Maildir support in qmail-imap (the imap server from UW, the
Maildir patches from Mattias Larsson) is?

 I use it in heavy production but I've made fairly extensive changes
 to it.  Most of the changes were to use a different scheme for
 storing UIDs (stat()-ing each file to obtain the UID is a very heavy
 penalty), as well as caching flag updates until a checkpoint call,
 also for performance.  I seem to recall fixing some bugs but I
 don't honestly know whether they were mine or someone else's. 
 
 I keep meaning to throw it out and start fresh, but haven't ever got
 'round tuit.

Wasn't Russell working on a Maildir-IMAP?

Greetz, Peter.
-- 
.| Peter van Dijk   | mo|VERWEG stoned worden of coden
.| [EMAIL PROTECTED]  | mo|VERWEG dat is de levensvraag
| mo|VERWEG coden of stoned worden
| mo|VERWEG stonend worden En coden
| mo|VERWEG hmm
| mo|VERWEG dan maar stoned worden en slashdot lezen:)



Re: qmail + IMAP

1999-03-10 Thread Russell Nelson

Peter van Dijk writes:
  
  Wasn't Russell working on a Maildir-IMAP?
  

Yup.  A Maildir/checkpassword IMAP.  Got bogged down in the innards of 
IMAP.