Re: How using IMAP with qmail??

2001-01-05 Thread Dave Sill

Ould [EMAIL PROTECTED] wrote:

I want to use IMAP in a simple manner as I use actually
pop3. 

Huh? You're currently using POP3 but want to switch to IMAP?

I'm using strictly LWQ method of installation.

No you're not. The snippet you posted from your qmail script is
seriously bastardized.

All work
fine, except that I need now to use IMAP with pop3 and
don't know how made this. IMAP is already installed on my
machine.

IMAP doesn't work with POP3, they're completely independent
protocols.

-Dave



Re: How using IMAP with qmail??

2001-01-05 Thread Mark Delany

On Fri, Jan 05, 2001 at 10:04:29AM -0500, Dave Sill wrote:

Dave? Dave. Is that you Dave?

 -Dave

It is you! Howdy.


Regards.




Re: How using IMAP with qmail??

2001-01-05 Thread Ould

Hello, I have the same problem or question. 

Can you help on what to do exactly for using IMAP instead
of POP3 or BOTH?

Thanks

--- Mark Delany [EMAIL PROTECTED] a écrit :  On Fri,
Jan 05, 2001 at 10:04:29AM -0500, Dave Sill
 wrote:
 
 Dave? Dave. Is that you Dave?
 
  -Dave
 
 It is you! Howdy.
 
 
 Regards.
 


__
Do You Yahoo!?
Yahoo! Photos - Share your holiday photos online!
http://photos.yahoo.com/



Re: How using IMAP with qmail??

2001-01-05 Thread Ould


--- Dave Sill [EMAIL PROTECTED] a écrit :  Ould
[EMAIL PROTECTED] wrote:

 Huh? You're currently using POP3 but want to switch to
 IMAP?

Oui...s'il vous plait! I wont to use now IMAP instead of
POP3 or using both (I want to let this choice to the end
client, but want to setup the two possiblity on my server).

 No you're not. The snippet you posted from your qmail
 script is
 seriously bastardized.

Yes I'm using exactly LWQ, the only things I added to 
/etc/rc.d/init.d/qmail script are :

/usr/local/bin/tcpserver -v -u 501 -g 500 0 smtpd
/var/qmail/bin/qmail-smtpd \
21 | /var/qmail/bin/splogger smtpd 3 
echo $!  /var/lock/subsys/qmail-smtpd
/usr/local/bin/tcpserver 0 pop-3 /var/qmail/bin/qmail-popup
mymachine.mydomaine \
/bin/checkpassword  /var/qmail/bin/qmail-pop3d 
Maildir 
echo $!  /var/lock/subsys/qmail-pop3d

in the start part, and those of stop one. But, it is
mentionned elsewere in the LWQ DOC to add these lines.
Maybe also that I don't need to add these lines here, and
in this case I don't understand quite. So, I need your
helps (aigain ;), in order to fixe this correctly.


 IMAP doesn't work with POP3, they're completely
 independent
 protocols.

I'm sorry I want to say: "I want to use qamil with imap 
and not IMAP with POP3 :-(.

__
Do You Yahoo!?
Yahoo! Photos - Share your holiday photos online!
http://photos.yahoo.com/



Re: How using IMAP with qmail??

2001-01-05 Thread Dave Sill

Ould [EMAIL PROTECTED] wrote:

Oui...s'il vous plait! I wont to use now IMAP instead of
POP3 or using both (I want to let this choice to the end
client, but want to setup the two possiblity on my server).

As long as both servers (POP3 and IMAP) use the same mailboxes (format 
and location), you can use them interchangably. If you're using
qmail-pop3d, then courier-imap would be a good, compatible IMAP
server.

Yes I'm using exactly LWQ, the only things I added to 
/etc/rc.d/init.d/qmail script are :

/usr/local/bin/tcpserver -v -u 501 -g 500 0 smtpd
/var/qmail/bin/qmail-smtpd \
21 | /var/qmail/bin/splogger smtpd 3 
echo $!  /var/lock/subsys/qmail-smtpd
/usr/local/bin/tcpserver 0 pop-3 /var/qmail/bin/qmail-popup
mymachine.mydomaine \
/bin/checkpassword  /var/qmail/bin/qmail-pop3d 
Maildir 
echo $!  /var/lock/subsys/qmail-pop3d

in the start part, and those of stop one. But, it is
mentionned elsewere in the LWQ DOC to add these lines.

No. LWQ uses /var/qmail/supervise/qmail-smtpd/run to start the SMTP
service. And if you're adding POP3 service to an LWQ installation, the 
*right* thing to do is set up a /var/qmail/supervise/qmail-pop3d
hierarchy based closely on the qmail-smtpd hierarchy--although LWQ
doesn't currently tell you how to do this.

And LWQ doesn't use splogger for any logging.

To add IMAP service to an LWQ installation, install the IMAP server
according to its instructions. You could try to LWQify the IMAP
installation, but it's not necessary--and not recommended if you're
likely to botch your LWQ in the process.

-Dave



Re: How using IMAP with qmail??

2001-01-05 Thread Ould

 As long as both servers (POP3 and IMAP) use the same
 mailboxes (format 
 and location), you can use them interchangably. If you're
 using
 qmail-pop3d, then courier-imap would be a good,
 compatible IMAP
 server.

Actually, I'm using Maildir format on the Lan server. On
the Relay I dont have any users (it only receive/sent mails
from/to Lan server where user Maildir's lie.
 
 No. LWQ uses /var/qmail/supervise/qmail-smtpd/run to
 start the SMTP
 service. 

OK, I'm a bad student. That is I'm wrong by putting the
smtp, pop add-ons in the qmail script!!
But, I'm using also /var/qmail/supervise/qmail-smtpd/run
file, it contains :
#! /bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -p -x /etc/tcp.smtp.cdb -c
"$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 smtp
/usr/local/bin/rblsmtpd \
 /var/qmail/bin/qmail-smtpd 21

But if I withdrow the add-ons in the qmail script, I must
add the lines related to pop3 in the above script or what
to do?

 And if you're adding POP3 service to an LWQ
 installation, the 
 *right* thing to do is set up a
 /var/qmail/supervise/
 hierarchy based closely on the qmail-smtpd
 hierarchy--although LWQ
 doesn't currently tell you how to do this.

I'm adding pop3 service only in the qmail script as
mentionned in the precedent post.
There is no qmail-pop3d service in my
/var/qmail/supervise/, actually it contains only qmail-send
and qmail-smtpd directories generated through the
installtion.
Can you telling when LWQ will add this? Can you giving me
already some idea to configure correctly my LWQ?
Also, under my actual configuration how I can include IMAP
service?

 And LWQ doesn't use splogger for any logging.

Yeah, I had some doubt about this since qmail logs some
things like "@4" in /var/log/qmail and in
/var/log/qmail/smtpd in addition to "current" file. 

 To add IMAP service to an LWQ installation, install the
 IMAP server
 according to its instructions. You could try to LWQify
 the IMAP
 installation, but it's not necessary--and not recommended
 if you're
 likely to botch your LWQ in the process.

What to do in this case? I need only to use my actual
installation to allow users to use webmail IMP/Horde (in
preference) from my web site on the Relay.


I'm looking for your help to fixe these subject.

Mille MERCI Dave.

__
Do You Yahoo!?
Yahoo! Photos - Share your holiday photos online!
http://photos.yahoo.com/



RE: How using IMAP with qmail??

2001-01-05 Thread Alexander Jernejcic

hi,

Ould wrote:
...snip...
 I'm sorry I want to say: "I want to use qamil with imap 
 and not IMAP with POP3 :-(.
...snip...

on www.qmail.org you will find the following line:
"Sam Varshavchik wrote a Maildir-only IMAP server
called Courier IMAP."
pointing to: http://www.inter7.com/courierimap/

hope that helps
:) alexander