Re: qmail-pop3d

2001-08-12 Thread Greg White

On Mon, Aug 13, 2001 at 11:42:25AM -0400, qmail wrote:
> After I test the qmail-smtpd and qmail-send is ok,it seems to me ok.
> I try to install qmail-pop3d and start this service.
> I add the run script in /var/qmail/supervise/qmail-pop3d
> I use the method to test the checkpasswd program, the response is ok.
> #!/bin/sh
> exec /usr/local/bin/softlimit -m 200 /usr/local/bin/tcpserver -v -R
> -H -l 0 0 110 /var/qmail/bin/qmail-popup sbs01.helka.com.hk
> /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1
> 
> but I find a process:
> root  8461  0.0  0.0 00 ?Z11:17   0:00
> [supervise  
> is it ok?
> I can't check the pop3 with email client.
> 
> anything that I should install after enable qmail-pop3d?

I have two questions for you:

1. What is the output of 'svstat /service/*' ?
2. Is it just linewrap issues, or is 'run' really multilined without
escape characters like that?

-- 
Greg White



Re: qmail-pop3d inbox messages limit

2001-08-08 Thread Alberto Alonso

Peter van Dijk wrote:
> 
> On Wed, Aug 08, 2001 at 08:22:14AM -0500, Alberto Alonso wrote:
> > I have noticed that if a user has more than about 5500 messages
> > in their inbox the server dies with the following error:
> >
> > -ERR unable to scan $HOME/Maildir
> >
> > I look at qmail-pop3d.c but couldn't see anything that would
> > explain this.
> >
> > Any thoughts?
> 
> It ran out of memory, probably. The fix is in the archive.
> 
> Greetz, Peter
> --
> Against Free Sex!   http://www.dataloss.nl/Megahard_en.html

Thanks, that did it. I keep forgetting that with qmail we
use the softlimit for memory.

Alberto Alonso

Marlabs Inc. http://www.marlabs.com
Hosting Services http://hosting.marlabs.com



Re: qmail-pop3d inbox messages limit

2001-08-08 Thread Peter van Dijk

On Wed, Aug 08, 2001 at 08:22:14AM -0500, Alberto Alonso wrote:
> I have noticed that if a user has more than about 5500 messages
> in their inbox the server dies with the following error:
> 
> -ERR unable to scan $HOME/Maildir
> 
> I look at qmail-pop3d.c but couldn't see anything that would
> explain this.
> 
> Any thoughts?

It ran out of memory, probably. The fix is in the archive.

Greetz, Peter
-- 
Against Free Sex!   http://www.dataloss.nl/Megahard_en.html



Re: qmail-pop3d and /var/spool/mail

2001-08-05 Thread Peter van Dijk

On Sun, Aug 05, 2001 at 02:28:39PM +0200, Severin Olloz wrote:
> I want to migrate my sendmail-server to qmail.
> 
> I have to decide to use /var/spool/mail with |/usr/sbin/qmail-procmail to 
> store the mails on the server.

mbox or Maildir format? Both are perfectly possible in /var/spool/mail
(we currently do Maildir in /var/spool/mail as well).

If mbox: qmail-pop3d can't do it. If Maildir: get a checkpassword
module that understands /var/spool/mail. I don't know if any are
readily available.

Greetz, Peter
-- 
Against Free Sex!   http://www.dataloss.nl/Megahard_en.html



Re: qmail-pop3d and /var/spool/mail

2001-08-05 Thread Henning Brauer

On Sun, Aug 05, 2001 at 02:28:39PM +0200, Severin Olloz wrote:
> I have to decide to use /var/spool/mail with |/usr/sbin/qmail-procmail to 
> store the mails on the server.
> But the qmail-pop3-server doesn't work. 

qmail-pop3d does not support any mail storage format asifr from Maildir.
Either switch to maildir (you won't regret it) or use another pop3d.

-- 
* Henning Brauer, [EMAIL PROTECTED], http://www.bsws.de *
* Roedingsmarkt 14, 20459 Hamburg, Germany   *
Unix is very simple, but it takes a genius to understand the simplicity.
(Dennis Ritchie)



Re: qmail-pop3d and /var/spool/mail

2001-08-05 Thread Lukas Beeler

At 14:28 05.08.2001 +0200, Severin Olloz wrote:
>Any ideas?
qmail-pop3d supports only maildir spools.
use gnu-pop3d, qpopper or similar to pop your vms


-- 
--/-/-- Lukas Beeler  [EMAIL PROTECTED] ---\-\--
   \ \  My HomePage: http://www.projectdream.org>  / /




Re: qmail-pop3d

2001-07-26 Thread Joel Aasma

hi again
darn! it almost worked fine :/
The only thing is that when i do a /etc/init.d/qmail stop , pop3 is'nt
stopped.

here is my /etc/init.d/qmail script:
#!/bin/sh

# For Red Hat chkconfig
# chkconfig: - 30 80
# description: the qmail MTA

PATH=/var/qmail/bin:/bin:/usr/bin:/usr/local/bin:/usr/local/sbin
export PATH

QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`

case "$1" in
  start)
echo "Starting qmail"
if svok /service/qmail-send ; then
  svc -u /service/qmail-send
else
  echo qmail-send service not running
fi
if svok /service/qmail-smtpd ; then
  svc -u /service/qmail-smtpd
else
  echo qmail-smtpd service not running
fi
if svok /service/qmail-pop3d ; then
  svc -u /service/qmail-pop3d
else
  echo qmail-pop3d service not running
fi
if [ -d /var/lock/subsys ]; then
  touch /var/lock/subsys/qmail
fi
;;
  stop)
echo "Stopping qmail..."
echo "  qmail-smtpd"
svc -d /service/qmail-smtpd
echo "  qmail-send"
svc -d /service/qmail-send
echo "  qmail-pop3d"
svc -d /service/qmail-pop3d
if [ -f /var/lock/subsys/qmail ]; then
  rm /var/lock/subsys/qmail
fi
;;
  stat)
svstat /service/qmail-send
svstat /service/qmail-send/log
svstat /service/qmail-smtpd
svstat /service/qmail-smtpd/log
svstat /service/qmail-pop3d
svstat /service/qmail-pop3d/log
qmail-qstat
;;
  doqueue|alrm|flush)
echo "Sending ALRM signal to qmail-send."
svc -a /service/qmail-send
;;
  queue)
qmail-qstat
qmail-qread
;;
  reload|hup)
echo "Sending HUP signal to qmail-send."
svc -h /service/qmail-send
;;
  pause)
echo "Pausing qmail-send"
svc -p /service/qmail-send
echo "Pausing qmail-smtpd"
svc -p /service/qmail-smtpd
echo "Pausing qmail-pop3d"
svc -p /service/qmail-pop3d
;;
  cont)
echo "Continuing qmail-send"
svc -c /service/qmail-send
echo "Continuing qmail-smtpd"
svc -c /service/qmail-smtpd
echo "Continuing qmail-pop3d"
svc -c /service/qmail-pop3d
;;
  restart)
echo "Restarting qmail:"
echo "* Stopping qmail-smtpd."
svc -d /service/qmail-smtpd
echo "* Stopping qmail-pop3d."
svc -d /service/qmail-pop3d
echo "* Sending qmail-send SIGTERM and restarting."
svc -t /service/qmail-send
echo "* Restarting qmail-smtpd."
svc -u /service/qmail-smtpd
echo "* Restartng qmail-pop3d."
;;
  cdb)
tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp
chmod 644 /etc/tcp.smtp.cdb
echo "Reloaded /etc/tcp.smtp."
;;
  help)
cat <


Re: qmail-pop3d

2001-07-26 Thread Joel Aasma

worked fine!
thanks alot!
Regards
Joel
- Original Message -
From: "Per-fredrik Pollnow (EPK)" <[EMAIL PROTECTED]>
To: "'Joel Aasma'" <[EMAIL PROTECTED]>
Cc: "Qmail Mailing list (E-mail)" <[EMAIL PROTECTED]>
Sent: Thursday, July 26, 2001 12:55 PM
Subject: RE: qmail-pop3d


> Hi,
>
> It looks like you are trying to use the
/var/qmail/supervise/qmail-smtpd/run script ? tray this instead.
>
> #!/bin/sh
> exec /usr/local/bin/softlimit -m 200 \
> /usr/local/bin/tcpserver -v -R -H -l 0 0 110
/var/qmail/bin/qmail-popup \
> homer.rixtele.com /usr/local/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 2>&1
>
>
> -Original Message-
> From: Joel Aasma [mailto:[EMAIL PROTECTED]]
> Sent: den 26 juli 2001 09:55
> To: [EMAIL PROTECTED]
> Subject: qmail-pop3d
>
>
> Hi!
> I have a little problem with qmail-pop3d...I've been trying to set
> qmail-pop3d to work with supervise. Everything else works fine but
> qmail-pop3d.
>
> when i try to telnet:
>  Trying 127.0.0.1...
> Connected to homer.rixtele.com.
> Escape character is '^]'.
> Connection closed by foreign host.
>
> This is my /var/qmail/supervise/qmail-pop3d/run script:
> #!/bin/sh
> QMAILDUID=`/usr/bin/id -u qmaild`
> NOFILESGID=`/usr/bin/id -g qmaild`
> MAXPOP3=`cat /var/qmail/control/pop3concurrencyincoming`
> exec /usr/local/bin/softlimit -m 200 \
> /usr/local/bin/tcpserver -v -R -H -l 0 -c "$MAXPOP3" -u "$QMAILDUID" -g
> "$NOFILESGID" 0 pop3 \
> /var/qmail/bin/qmail-popup homer.rixtele.com \
> /usr/local/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 2>&1
>
> What could possible be wrong?
>
> Joel




RE: qmail-pop3d

2001-07-26 Thread Per-fredrik Pollnow (EPK)

Hi,

It looks like you are trying to use the /var/qmail/supervise/qmail-smtpd/run script ? 
tray this instead.

#!/bin/sh
exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 0 110 /var/qmail/bin/qmail-popup \
homer.rixtele.com /usr/local/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d 
Maildir 2>&1


-Original Message-
From: Joel Aasma [mailto:[EMAIL PROTECTED]]
Sent: den 26 juli 2001 09:55
To: [EMAIL PROTECTED]
Subject: qmail-pop3d


Hi!
I have a little problem with qmail-pop3d...I've been trying to set
qmail-pop3d to work with supervise. Everything else works fine but
qmail-pop3d.

when i try to telnet:
 Trying 127.0.0.1...
Connected to homer.rixtele.com.
Escape character is '^]'.
Connection closed by foreign host.

This is my /var/qmail/supervise/qmail-pop3d/run script:
#!/bin/sh
QMAILDUID=`/usr/bin/id -u qmaild`
NOFILESGID=`/usr/bin/id -g qmaild`
MAXPOP3=`cat /var/qmail/control/pop3concurrencyincoming`
exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 -c "$MAXPOP3" -u "$QMAILDUID" -g
"$NOFILESGID" 0 pop3 \
/var/qmail/bin/qmail-popup homer.rixtele.com \
/usr/local/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 2>&1

What could possible be wrong?

Joel



Re: qmail-pop3d

2001-07-26 Thread Dushyanth Harinath

did u follow lifewithqmail.org ..there must be something wrong in the start
up script of qmail-pop3d

regards
dushyanth

> Hi
> They does'nt say anything, /var/log/qmail/qmail-pop3d/current is
> empty...
> 
> - Original Message - 
> From: "Dushyanth Harinath" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, July 26, 2001 11:05 AM
> Subject: Re: qmail-pop3d
> 
> 
>> what does the logs say..
>> 
>> 
>> > 
>> > when i try to telnet:
>> > Trying 127.0.0.1...
>> > Connected to homer.rixtele.com.
>> > Escape character is '^]'.
>> > Connection closed by foreign host.
>> 
>> 
>> -- 
>> Dushyanth Harinath
>> Archean Infotech Limited
>> Ph No:091-040-3228666,6570704,3228674
>> http://www.archeanit.com
>> 
>> 
>> 
>> -
>> This email was sent using SquirrelMail.
>>"Webmail for nuts!"
>> http://squirrelmail.org/
>> 


-- 
Dushyanth Harinath
Archean Infotech Limited
Ph No:091-040-3228666,6570704,3228674
http://www.archeanit.com



-
This email was sent using SquirrelMail.
   "Webmail for nuts!"
http://squirrelmail.org/





Re: qmail-pop3d

2001-07-26 Thread Joel Aasma

Hi
They does'nt say anything, /var/log/qmail/qmail-pop3d/current is empty...

- Original Message - 
From: "Dushyanth Harinath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 26, 2001 11:05 AM
Subject: Re: qmail-pop3d


> what does the logs say..
> 
> 
> > 
> > when i try to telnet:
> > Trying 127.0.0.1...
> > Connected to homer.rixtele.com.
> > Escape character is '^]'.
> > Connection closed by foreign host.
> 
> 
> -- 
> Dushyanth Harinath
> Archean Infotech Limited
> Ph No:091-040-3228666,6570704,3228674
> http://www.archeanit.com
> 
> 
> 
> -
> This email was sent using SquirrelMail.
>"Webmail for nuts!"
> http://squirrelmail.org/
> 




Re: qmail-pop3d

2001-07-26 Thread Dushyanth Harinath

what does the logs say..


> 
> when i try to telnet:
> Trying 127.0.0.1...
> Connected to homer.rixtele.com.
> Escape character is '^]'.
> Connection closed by foreign host.


-- 
Dushyanth Harinath
Archean Infotech Limited
Ph No:091-040-3228666,6570704,3228674
http://www.archeanit.com



-
This email was sent using SquirrelMail.
   "Webmail for nuts!"
http://squirrelmail.org/





Re: qmail-pop3d || tcpserver (sometimes timing out?)

2001-07-25 Thread Kman

> rc.qmail:  /usr/local/bin/tcpserver -R -H 0 110
/var/qmail/bin/qmail-popup mail /bin/checkpassword
/var/qmail/bin/qmail-pop3d


Try using tcpserver -l -R -H ...

It might help.

-Kittiwat




Re: qmail-pop3d hanging email retrieval

2001-07-06 Thread Brian Lane

On Fri, Jul 06, 2001 at 09:34:39PM -0600, Charles Cazabon wrote:
> Brian Lane <[EMAIL PROTECTED]> wrote:
> > 
> >   In summary, I am having problems with emails getting stuck when fetched
> > from qmail-pop3d. They are almost always attached MS Word documents. They
> > aren't necessarily long, I've got 32k messages that do it and 1M messages.
> > 
> >   I'm running on kernel 2.0.39, qmail 1.03, daemontools 0.70, ucspi-tcp 0.88
> > and a slightly modified checkpassword to handle pop accounts in my virtual
> > domains. This system has been in place since 1999 and has always had an
> > occasional problem but recently I am getting 1 or 2 messages a week that are
> > sticking.
> 
> I assume you mean Linux kernel 2.0.39?  What patches?  What vendor's kernel?
> Or did you compile from a Linus tarball?

  Sorry, Linux 2.0.39 on what used to be a RH 5.2 system but has been
heavily upgraded over the years. The kernel itself is from an un-patched
tarball.

> 
> >   I have 2 different cases where this happens. The first is when my home
> > system, using fetchmail, is downloading messages. If the home machine's
> > MTU/MRU is set to 1500 or 1480 the messages in question will hang. If I
> > change the MRU to 576 then they pass through. I don't know if any messages
> > hang using 576, but I haven't seen any.
> 
> This smells strongly of a kernel TCP/IP bug.  qmail-pop3d knows nothing of
> packets or MTU -- it just sees a couple of fds.  Linux has had a couple of real
> bad bugs like this in the past; a long-standing one wasn't fixed until very
> recently in 2.2.19.  You could be running into this bug.

  I'm afraid that its something like that. I was hoping my upgrade to 2.0.39
would fix any odd kernel bugs. I've been avoiding a complete upgrade because
it means a total system rebuild and I really hate doing that. It looks like
a rebuild is probably in the future, unless anyone has a better suggestion.

  Thanks,

  Brian

-- 
Brian C. Lane - Linux Programmer/Consultant/Writer www.brianlane.com
  www.nexuscomputing.com
Liberty & Privacy 'zine Editor   www.libertynews.org

In every country and in every age, the priest has been hostile to
liberty. He is always in alliance with the despot, abetting his abuses
in return for protection to his own.
-- Thomas Jefferson, 1814



Re: qmail-pop3d hanging email retrieval

2001-07-06 Thread Charles Cazabon

Brian Lane <[EMAIL PROTECTED]> wrote:
> 
>   In summary, I am having problems with emails getting stuck when fetched
> from qmail-pop3d. They are almost always attached MS Word documents. They
> aren't necessarily long, I've got 32k messages that do it and 1M messages.
> 
>   I'm running on kernel 2.0.39, qmail 1.03, daemontools 0.70, ucspi-tcp 0.88
> and a slightly modified checkpassword to handle pop accounts in my virtual
> domains. This system has been in place since 1999 and has always had an
> occasional problem but recently I am getting 1 or 2 messages a week that are
> sticking.

I assume you mean Linux kernel 2.0.39?  What patches?  What vendor's kernel?
Or did you compile from a Linus tarball?

>   I have 2 different cases where this happens. The first is when my home
> system, using fetchmail, is downloading messages. If the home machine's
> MTU/MRU is set to 1500 or 1480 the messages in question will hang. If I
> change the MRU to 576 then they pass through. I don't know if any messages
> hang using 576, but I haven't seen any.

This smells strongly of a kernel TCP/IP bug.  qmail-pop3d knows nothing of
packets or MTU -- it just sees a couple of fds.  Linux has had a couple of real
bad bugs like this in the past; a long-standing one wasn't fixed until very
recently in 2.2.19.  You could be running into this bug.

>   I've only found a few references to similar problems when searching and no
> solutions. Someone else must have run into this before!

Linux 2.0.3x (where x > 6) doesn't get tested nearly as widely as older or
newer versions.  Is there any reason you can't upgrade this system to 2.2.19
or better?

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
---



Re: qmail pop3d startup

2001-07-03 Thread David Dahl
Title: Re: qmail pop3d startup


i am a moron!

i am talking to myself...


from the qmail list archives==



Mike Jackson wrote:

>Hi,
> Box is Mandrake 8.0 final, kernel 2.4.3-20mdk. I get the
following
>error when trying to compile daemontools. It also happened to me
on a
>Redhat 7.1 box. I think it's something gcc version 2.96
2731
>related. Somebody please help me patch this file so it will
compile.

Mr. Jackson - this apparently affects Linux 2.4.x kernels.  The
fix
(also applicable to a similar error when compiling the clockspeed
package) is to change  on line 2 of the problem file
to
.

Hope this helps. -d


- --
David Talkington
http://www.spotnet.org





i think my problem is that i did not
install daemontools...

whoops...

so when i try to make daemontools:

[root@mckenna daemontools-0.70]# make
./compile tai64nlocal.c
tai64nlocal.c: In function `main':
tai64nlocal.c:54: warning: assignment makes pointer from integer
without a cast
tai64nlocal.c:55: dereferencing pointer to incomplete type
tai64nlocal.c:56: dereferencing pointer to incomplete type
tai64nlocal.c:57: dereferencing pointer to incomplete type
tai64nlocal.c:58: dereferencing pointer to incomplete type
tai64nlocal.c:59: dereferencing pointer to incomplete type
tai64nlocal.c:60: dereferencing pointer to incomplete type
make: *** [tai64nlocal.o] Error 1

should i nuke this install?

if so how do i?

david
--
Hello all:

I followed LWQ's directions for setting up qmail-pop3d:

it wont start up and i get this in my messages log:


Jul  3 10:37:44 mckenna qmail: Starting qmail: done
Jul  3 10:37:44 mckenna qmail: qmail-pop3d service not
running
Jul  3 10:37:44 mckenna qmail: /etc/rc3.d/S80qmail: svok: command
not found
Jul  3 10:37:44 mckenna rc: Starting qmail:  succeeded
Ju


==end of log==


here are the directions for adding to the qmail startup script:

(btw: i have zero shell-scripting experience)

7. Add the following to qmailctl's "start" section:
if svok /service/qmail*pop3d ; then
svc *u /service/qmail*pop3d
else
echo qmail*pop3d service not running
fi

i am stumped... did i spell something
wrong?


TIA,

david



--


-- 




Re: qmail pop3d startup

2001-07-03 Thread Paul Farber

I got the same thing... it *probibly* a header problem (not sure...
looked
good to me).

just comment out the lines and recompile... its not a critical program.
Just edit the tai64nlocal.c and put a double hash '//' (no quotes) on the
lines listed and it will compile install.



-- 
Paul Farber
Farber Technology
[EMAIL PROTECTED]
Ph  570-628-5303
Fax 570-628-5545

On Wed, 4 Jul 2001, David Dahl wrote:

> i think my problem is that i did not install daemontools...
>
> whoops...
>
> so when i try to make daemontools:
>
> [root@mckenna daemontools-0.70]# make
> ./compile tai64nlocal.c
> tai64nlocal.c: In function `main':
> tai64nlocal.c:54: warning: assignment makes pointer from integer without a cast
> tai64nlocal.c:55: dereferencing pointer to incomplete type
> tai64nlocal.c:56: dereferencing pointer to incomplete type
> tai64nlocal.c:57: dereferencing pointer to incomplete type
> tai64nlocal.c:58: dereferencing pointer to incomplete type
> tai64nlocal.c:59: dereferencing pointer to incomplete type
> tai64nlocal.c:60: dereferencing pointer to incomplete type
> make: *** [tai64nlocal.o] Error 1
>
> should i nuke this install?
>
> if so how do i?
>
> david
>
>
> >--
> >Hello all:
> >
> >I followed LWQ's directions for setting up qmail-pop3d:
> >
> >it wont start up and i get this in my messages log:
> >
> >
> >Jul  3 10:37:44 mckenna qmail: Starting qmail: done
> >Jul  3 10:37:44 mckenna qmail: qmail-pop3d service not running
> >Jul  3 10:37:44 mckenna qmail: /etc/rc3.d/S80qmail: svok: command not found
> >Jul  3 10:37:44 mckenna rc: Starting qmail:  succeeded
> >Ju
> >
> >
> >==end of log==
> >
> >
> >here are the directions for adding to the qmail startup script:
> >
> >(btw: i have zero shell-scripting experience)
> >
> >7. Add the following to qmailctl's "start" section:
> >if svok /service/qmail*pop3d ; then
> >svc *u /service/qmail*pop3d
> >else
> >echo qmail*pop3d service not running
> >fi
> >
> >i am stumped... did i spell something wrong?
> >
> >
> >TIA,
> >
> >david
>
>
>




Re: qmail pop3d startup

2001-07-03 Thread David Dahl

i think my problem is that i did not install daemontools...

whoops...

so when i try to make daemontools:

[root@mckenna daemontools-0.70]# make
./compile tai64nlocal.c
tai64nlocal.c: In function `main':
tai64nlocal.c:54: warning: assignment makes pointer from integer without a cast
tai64nlocal.c:55: dereferencing pointer to incomplete type
tai64nlocal.c:56: dereferencing pointer to incomplete type
tai64nlocal.c:57: dereferencing pointer to incomplete type
tai64nlocal.c:58: dereferencing pointer to incomplete type
tai64nlocal.c:59: dereferencing pointer to incomplete type
tai64nlocal.c:60: dereferencing pointer to incomplete type
make: *** [tai64nlocal.o] Error 1

should i nuke this install?

if so how do i?

david


>--
>Hello all:
>
>I followed LWQ's directions for setting up qmail-pop3d:
>
>it wont start up and i get this in my messages log:
>
>
>Jul  3 10:37:44 mckenna qmail: Starting qmail: done
>Jul  3 10:37:44 mckenna qmail: qmail-pop3d service not running
>Jul  3 10:37:44 mckenna qmail: /etc/rc3.d/S80qmail: svok: command not found
>Jul  3 10:37:44 mckenna rc: Starting qmail:  succeeded
>Ju
>
>
>==end of log==
>
>
>here are the directions for adding to the qmail startup script:
>
>(btw: i have zero shell-scripting experience)
>
>7. Add the following to qmailctl's "start" section:
>if svok /service/qmail*pop3d ; then
>svc *u /service/qmail*pop3d
>else
>echo qmail*pop3d service not running
>fi
>
>i am stumped... did i spell something wrong?
>
>
>TIA,
>
>david


-- 



Re: qmail-pop3d - thanks

2001-05-31 Thread Charles Cazabon

Deen <[EMAIL PROTECTED]> wrote:
> 
> I found a doc written by Paul Gregg title "Single-UID based POP3 box 
> HOWTO". (I don't remember the URL coz' I got a hard copy).
> 
> Has anyone successfully implemented his HOWTO yet ? There are things 
> that I do not understand in his HOWTO.

Various people have implemented single-UID POP3/IMAP virtual domains for
qmail.  vmailmgr does this.  I'm not sure if that's quite what you mean.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d - thanks

2001-05-31 Thread Jörgen Persson

On Thu, May 31, 2001 at 08:11:19AM -, Deen wrote:
> Hi Arjen van Drie, J=F6rgen_Perss
> 
> Thanks to both of you. I have used the tcpserver instead. However, I 
> am still not satisfied. (no offence to both of you).
> 
> Last time, when I was using sendmail, I used aliases as forwarding, 
> so that I do not have to create home dir for each pop users.

Forwarding mail has nothing to do with pop3d nor with tcpserver. Anyway, 
there are many ways to forward mail under qmail. Take a look at
fastforward[1], it might be what you are looking for.

Jörgen

[1] http://cr.yp.to/fastforward.html



Re: qmail-pop3d - thanks

2001-05-31 Thread Deen

Thank you Arjen van Drie & J=F6rgen_Perss.

I have successfully access the pop3 under tcpserver. I don't know 
much about tcpserver tough.





Re: qmail-pop3d - thanks

2001-05-31 Thread Deen

Thank you Arjen van Drie & J=F6rgen_Perss.

I have successfully access the pop3 under tcpserver. I don't know 
much about tcpserver tough.





Re: qmail-pop3d - thanks

2001-05-31 Thread Deen

Thank you Arjen van Drie & J=F6rgen_Perss.

I have successfully access the pop3 under tcpserver. I don't know 
much about tcpserver tough.





Re: qmail-pop3d - thanks

2001-05-31 Thread Deen

Hi Arjen van Drie, J=F6rgen_Perss

Thanks to both of you. I have used the tcpserver instead. However, I 
am still not satisfied. (no offence to both of you).

Last time, when I was using sendmail, I used aliases as forwarding, 
so that I do not have to create home dir for each pop users.

I found a doc written by Paul Gregg title "Single-UID based POP3 box 
HOWTO". (I don't remember the URL coz' I got a hard copy).

Has anyone successfully implemented his HOWTO yet ? There are things 
that I do not understand in his HOWTO.




Re: qmail-pop3d

2001-05-30 Thread Jörgen Persson

On Thu, May 31, 2001 at 06:19:22AM -, Deen wrote:
> Hi.
> 
> I am new in qmail. Can anyone help me ?
> 
> Problem: I could not access my email dir using Outlook Express (OE) 
> via pop3 port. (110)
> 
> I have installed and configured qmail smtpd successfully. I (or 
> anyone else) can send and received e-mail locally and remotely. No 
> problemo. I run qmail under tcpserver.
> 
> I also tried to run its /var/qmail/bin/qmail-pop3d using xinetd. 
> Below is my configuration:-

tcpserver is a replacement for inetd, xinetd & CO. Which means you
shouldn't run both tcpserver and xinetd. Choose one of them and things
will probably work much better -- I recommend tcpserver.

Jörgen



Re: qmail-pop3d

2001-05-30 Thread Arjen van Drie

On Thu, May 31, 2001 at 06:19:22AM -, Deen wrote:
>Hi.
>
>I am new in qmail. Can anyone help me ?
>

> 12 server  = /usr/local/bin/tcpserver 0 
>110 \
> 13 /var/qmail/bin/qmail-popup mail.domainname> \
> 14 /bin/checkpassword /var/qmail/bin/qmail-pop3d 
>Maildir &
> 15 log_on_success  += USERID
> 16 log_on_failure  += USERID
> 17 }
>


Here you start one tcpwrapper (tcpserver) by another. No can do that!
Use tcpserver _or_ xinetd. Not both.


-- 

Grtz, 

Arjen.




Re: qmail-pop3d advice ( migrate to vpopmail ? )

2001-05-22 Thread Charles Cazabon

Renato <[EMAIL PROTECTED]> wrote:
> 
> Hi all,

Don't post a new question by replying to an existing thread.  This messes up
the threading in our MUAs and in the list archives.

As for your problem:  it's the absolute #1 most frequently asked question.
It's in the FAQs, it's in the list archives hundreds of times, and its even in
one mailing list member's .sig.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d and /var/spool/mail or NO /HOME/$USER

2001-05-22 Thread Charles Cazabon

Charles Olds <[EMAIL PROTECTED]> wrote:
> My goal is:
> Install qmail to work with virtual users. (i.e. No account in
> /etc/passwd.  No /home/user.  Mail delivered to /var/spool/mail.)

You're limiting your options here by insisting on mbox format and
/var/spool/mail.  Much of the better software intended to be used with qmail
uses Maildir format, and storage outside of /var/spool/mail .

> I have downloaded and installed qmail, tcpserver, qmailadmin, etc..
> Everything looks good and runs except qmail-pop3d does not work with
> virtual users.  When trying to retrieve mail I get the message "No
> /HOME/$USER directory...
> 
> Please recommend a POP3 server that will work with qmail and allow mail
> to be retrieved from /var/spool/mail.

I'd personally recommend vmailmgr for virtual domain setups.  However, it does
necessitate Maildir storage (well, mostly) and at least one system account per
virtual domain.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d and /var/spool/mail or NO /HOME/$USER

2001-05-19 Thread Dean Staff

On 20 May 2001, at 20:44, Charles Olds wrote:

>[...] 
> Please recommend a POP3 server that will work with qmail and allow
> mail to be retrieved from /var/spool/mail.
> 

Try qpopper.
http://www.eudora.com/qpopper/

It's actually mentioned in 'Life with qmail" .

Dean

> 



Dean Staff
Protus IP Solutions
210 - 2379 Holly Lane
Ottawa, ON K1V 7P2 Canada
613-733- ex 546 Fax 613-248-4553
e-mail: [EMAIL PROTECTED] Web: http://www.protus.com




Re: qmail-pop3d and /var/spool/mail or NO /HOME/$USER

2001-05-19 Thread Tim Hunter

I can certainly understand not using /etc/passwd but Why not maildirs??
I would really recommend vpopmail or v ?

qmail-pop3d only is used for Maildirs (not the virtual user problem)

other poppers are availible, check the qmail page.

- Original Message -
From: "Charles Olds" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, May 20, 2001 8:44 AM
Subject: qmail-pop3d and /var/spool/mail or NO /HOME/$USER


> My goal is:
> Install qmail to work with virtual users. (i.e. No account in
> /etc/passwd.  No /home/user.  Mail delivered to /var/spool/mail.)
>
> I have downloaded and installed qmail, tcpserver, qmailadmin, etc..
> Everything looks good and runs except qmail-pop3d does not work with
> virtual users.  When trying to retrieve mail I get the message "No
> /HOME/$USER directory...
>
> Please recommend a POP3 server that will work with qmail and allow mail
> to be retrieved from /var/spool/mail.
>
> Many thanks in advance.
>
> Charles Olds
>
>




RE: qmail-pop3d not working?

2001-04-27 Thread Steven Katz

I don't have qmail-pop3d/log/run, but I do have 
/var/qmail/supervise/qmail-pop3d/run (with permissions: -rwxr-xr-x).

It looks like:

#!/bin/sh
exec /usr/local/bin/softlimit -m 200 \
  /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup \
idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1

I also have /var/log/qmail/pop3d, which is empty, as you might've guessed.

The output of running 'qmail-pop3d/run' manually is:
tcpserver: fatal: unable to bind: address already used


-Original Message-
From: Mark Delany <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 10:29 AM
To: [EMAIL PROTECTED]
Subject: Re: qmail-pop3d not working?


The zero seconds for qmail-pop3d/log is your problem. The logging
output of qmail-pop3d is ultimately filling up the pipe buffer and
then wedging since the pipe is never drained by qmail-pop3d/log.

The zero seconds is telling you that qmail-pop3d/log is repeatedly
being started and is exiting immediately. You need to work out why
that is.

1. Is qmail-pop3d/log/run executable?
2. What does it have in it exactly? Is the script correct?
3. What happens if you run it manually - what output do you get?


Regards.



On Fri, Apr 27, 2001 at 10:23:56AM -0700, Steven Katz wrote:
> Thanks, Rick. I did 'cd /var/qmail/supervise; svstat * */log' (while 
> pop was working) and got:
> 
> qmail-pop3d: up (pid 598) 1420 seconds
> qmail-send: up (pid 594) 1420 seconds
> qmail-smtpd: up (pid 595) 1420 seconds
> qmail-pop3d/log: up (pid 28975) 0 seconds
> qmail-send/log: up (pid 596) 1420 seconds
> qmail-smtpd/log: up (pid 599) 1420 seconds
> 
> Then I did it again (when pop stopped working) and got:
> 
> qmail-pop3d: up (pid 598) 1678 seconds
> qmail-send: up (pid 594) 1678 seconds
> qmail-smtpd: up (pid 595) 1678 seconds
> qmail-pop3d/log: up (pid 26225) 0 seconds
> qmail-send/log: up (pid 596) 1678 seconds
> qmail-smtpd/log: up (pid 599) 1678 seconds
> 
> Although qmail-pop3d/log stayed at 0 seconds, qmail-pop3d keeps 
> increasing, even after it stops working. 
> 
> However, doing 'ps auxw | grep pop3' while pop is working (up to 15 
> minutes after rebooting) gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> But doing it again when pop stops working gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> root  4454  0.0  0.6  1344  516 ?S09:17   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> There does seem to be a connection to the second instance of tcpserver. 
> How can I find why and where the second tcpserver instance is being 
> initiated?
> 
> Thanks again, everyone.
> 
> Steven
> 
> 
> -Original Message-
> From: Rick Updegrove <[EMAIL PROTECTED]>
> Sent: Wednesday, April 25, 2001 10:22 AM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> Charles Cazabon  said,
> > You have two tcpserver instances, both trying to bind to the same 
> > interface(s) and port.  At least one of those _has_ to be failing, 
> > and it should be showing up in your logs.
> 
> Steve said,
> >>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
> >> gives me:
> 
> I use this to check for status on supervised processes.
> 
> bash-2.04# cd /var/qmail/supervise; svstat * */log
> 
> qmail-pop3d: up (pid 658) 178697 seconds
> qmail-send: up (pid 9480) 178696 seconds
> qmail-smtpd: up (pid 3846) 178697 seconds
> qmail-pop3d/log: up (pid 11946) 178697 seconds
> qmail-send/log: up (pid 7901) 178697 seconds
> qmail-smtpd/log: up (pid 13335) 178697 seconds
> 
> When you supervise, and one of the "seconds" columns stays at 0 
> seconds, you definitely have a problem.  After you reboot, or better 
> yet, when your pop stops working, try that and see what happens.
> 
> Also, do not start pop3d from the command line if you are starting it 
> in your boot scripts, even if pop3 is not working properly.
> 
> Hope that helped
> 
> Rick Up
> 
> 




RE: qmail-pop3d not working?

2001-04-27 Thread Steven Katz

POP instantly started working once I fixed the perms! Thanks!

Steven


-Original Message-
From: Steven Katz <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 11:08 AM
To: [EMAIL PROTECTED]
Subject: RE: qmail-pop3d not working?


Sorry, I do have /var/qmail/supervise/qmail-pop3d/log/run (with 
permissions: -rw-rw-r--). I'll fix that and see what happens.

It looks like:

#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t \
  /var/log/qmail/pop3d

Steven


-Original Message-
From: Mark Delany <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 10:29 AM
To: [EMAIL PROTECTED]
Subject: Re: qmail-pop3d not working?


The zero seconds for qmail-pop3d/log is your problem. The logging
output of qmail-pop3d is ultimately filling up the pipe buffer and
then wedging since the pipe is never drained by qmail-pop3d/log.

The zero seconds is telling you that qmail-pop3d/log is repeatedly
being started and is exiting immediately. You need to work out why
that is.

1. Is qmail-pop3d/log/run executable?
2. What does it have in it exactly? Is the script correct?
3. What happens if you run it manually - what output do you get?


Regards.



On Fri, Apr 27, 2001 at 10:23:56AM -0700, Steven Katz wrote:
> Thanks, Rick. I did 'cd /var/qmail/supervise; svstat * */log' (while 
> pop was working) and got:
> 
> qmail-pop3d: up (pid 598) 1420 seconds
> qmail-send: up (pid 594) 1420 seconds
> qmail-smtpd: up (pid 595) 1420 seconds
> qmail-pop3d/log: up (pid 28975) 0 seconds
> qmail-send/log: up (pid 596) 1420 seconds
> qmail-smtpd/log: up (pid 599) 1420 seconds
> 
> Then I did it again (when pop stopped working) and got:
> 
> qmail-pop3d: up (pid 598) 1678 seconds
> qmail-send: up (pid 594) 1678 seconds
> qmail-smtpd: up (pid 595) 1678 seconds
> qmail-pop3d/log: up (pid 26225) 0 seconds
> qmail-send/log: up (pid 596) 1678 seconds
> qmail-smtpd/log: up (pid 599) 1678 seconds
> 
> Although qmail-pop3d/log stayed at 0 seconds, qmail-pop3d keeps 
> increasing, even after it stops working. 
> 
> However, doing 'ps auxw | grep pop3' while pop is working (up to 15 
> minutes after rebooting) gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> But doing it again when pop stops working gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> root  4454  0.0  0.6  1344  516 ?S09:17   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> There does seem to be a connection to the second instance of tcpserver. 
> How can I find why and where the second tcpserver instance is being 
> initiated?
> 
> Thanks again, everyone.
> 
> Steven
> 
> 
> -Original Message-
> From: Rick Updegrove <[EMAIL PROTECTED]>
> Sent: Wednesday, April 25, 2001 10:22 AM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> Charles Cazabon  said,
> > You have two tcpserver instances, both trying to bind to the same 
> > interface(s) and port.  At least one of those _has_ to be failing, 
> > and it should be showing up in your logs.
> 
> Steve said,
> >>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
> >> gives me:
> 
> I use this to check for status on supervised processes.
> 
> bash-2.04# cd /var/qmail/supervise; svstat * */log
> 
> qmail-pop3d: up (pid 658) 178697 seconds
> qmail-send: up (pid 9480) 178696 seconds
> qmail-smtpd: up (pid 3846) 178697 seconds
> qmail-pop3d/log: up (pid 11946) 178697 seconds
> qmail-send/log: up (pid 7901) 178697 seconds
> qmail-smtpd/log: up (pid 13335) 178697 seconds
> 
> When you supervise, and one of the "seconds" columns stays at 0 
> seconds, you definitely have a problem.  After you reboot, or better 
> yet, when your pop stops working, try that and see what happens.
> 
> Also, do not start pop3d from the command line if you are starting it 
> in your boot scripts, even if pop3 is not working properly.
> 
> Hope that helped
> 
> Rick Up
> 
> 




RE: qmail-pop3d not working?

2001-04-27 Thread Steven Katz

Sorry, I do have /var/qmail/supervise/qmail-pop3d/log/run (with 
permissions: -rw-rw-r--). I'll fix that and see what happens.

It looks like:

#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t \
  /var/log/qmail/pop3d

Steven


-Original Message-
From: Steven Katz <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 10:24 AM
To: [EMAIL PROTECTED]
Subject: RE: qmail-pop3d not working?


Thanks, Rick. I did 'cd /var/qmail/supervise; svstat * */log' (while 
pop was working) and got:

qmail-pop3d: up (pid 598) 1420 seconds
qmail-send: up (pid 594) 1420 seconds
qmail-smtpd: up (pid 595) 1420 seconds
qmail-pop3d/log: up (pid 28975) 0 seconds
qmail-send/log: up (pid 596) 1420 seconds
qmail-smtpd/log: up (pid 599) 1420 seconds

Then I did it again (when pop stopped working) and got:

qmail-pop3d: up (pid 598) 1678 seconds
qmail-send: up (pid 594) 1678 seconds
qmail-smtpd: up (pid 595) 1678 seconds
qmail-pop3d/log: up (pid 26225) 0 seconds
qmail-send/log: up (pid 596) 1678 seconds
qmail-smtpd/log: up (pid 599) 1678 seconds

Although qmail-pop3d/log stayed at 0 seconds, qmail-pop3d keeps 
increasing, even after it stops working. 

However, doing 'ps auxw | grep pop3' while pop is working (up to 15 
minutes after rebooting) gives me:

root   591  0.0  0.4  1272  344 ?S09:06   0:00 
supervise qmail-pop3d
root   596  0.0  0.6  1344  512 ?S09:06   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma

But doing it again when pop stops working gives me:

root   591  0.0  0.4  1272  344 ?S09:06   0:00 
supervise qmail-pop3d
root   596  0.0  0.6  1344  512 ?S09:06   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
root  4454  0.0  0.6  1344  516 ?S09:17   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma

There does seem to be a connection to the second instance of tcpserver. 
How can I find why and where the second tcpserver instance is being 
initiated?

Thanks again, everyone.

Steven


-Original Message-
From: Rick Updegrove <[EMAIL PROTECTED]>
Sent: Wednesday, April 25, 2001 10:22 AM
To: [EMAIL PROTECTED]
Subject: Re: qmail-pop3d not working?


Charles Cazabon  said,
> You have two tcpserver instances, both trying to bind to the same 
> interface(s) and port.  At least one of those _has_ to be failing, 
> and it should be showing up in your logs.

Steve said,
>>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
>> gives me:

I use this to check for status on supervised processes.

bash-2.04# cd /var/qmail/supervise; svstat * */log

qmail-pop3d: up (pid 658) 178697 seconds
qmail-send: up (pid 9480) 178696 seconds
qmail-smtpd: up (pid 3846) 178697 seconds
qmail-pop3d/log: up (pid 11946) 178697 seconds
qmail-send/log: up (pid 7901) 178697 seconds
qmail-smtpd/log: up (pid 13335) 178697 seconds

When you supervise, and one of the "seconds" columns stays at 0 
seconds, you definitely have a problem.  After you reboot, or better 
yet, when your pop stops working, try that and see what happens.

Also, do not start pop3d from the command line if you are starting it 
in your boot scripts, even if pop3 is not working properly.

Hope that helped

Rick Up





Re: qmail-pop3d not working?

2001-04-27 Thread Mark Delany

The zero seconds for qmail-pop3d/log is your problem. The logging
output of qmail-pop3d is ultimately filling up the pipe buffer and
then wedging since the pipe is never drained by qmail-pop3d/log.

The zero seconds is telling you that qmail-pop3d/log is repeatedly
being started and is exiting immediately. You need to work out why
that is.

1. Is qmail-pop3d/log/run executable?
2. What does it have in it exactly? Is the script correct?
3. What happens if you run it manually - what output do you get?


Regards.




On Fri, Apr 27, 2001 at 10:23:56AM -0700, Steven Katz wrote:
> Thanks, Rick. I did 'cd /var/qmail/supervise; svstat * */log' (while 
> pop was working) and got:
> 
> qmail-pop3d: up (pid 598) 1420 seconds
> qmail-send: up (pid 594) 1420 seconds
> qmail-smtpd: up (pid 595) 1420 seconds
> qmail-pop3d/log: up (pid 28975) 0 seconds
> qmail-send/log: up (pid 596) 1420 seconds
> qmail-smtpd/log: up (pid 599) 1420 seconds
> 
> Then I did it again (when pop stopped working) and got:
> 
> qmail-pop3d: up (pid 598) 1678 seconds
> qmail-send: up (pid 594) 1678 seconds
> qmail-smtpd: up (pid 595) 1678 seconds
> qmail-pop3d/log: up (pid 26225) 0 seconds
> qmail-send/log: up (pid 596) 1678 seconds
> qmail-smtpd/log: up (pid 599) 1678 seconds
> 
> Although qmail-pop3d/log stayed at 0 seconds, qmail-pop3d keeps 
> increasing, even after it stops working. 
> 
> However, doing 'ps auxw | grep pop3' while pop is working (up to 15 
> minutes after rebooting) gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> But doing it again when pop stops working gives me:
> 
> root   591  0.0  0.4  1272  344 ?S09:06   0:00 
> supervise qmail-pop3d
> root   596  0.0  0.6  1344  512 ?S09:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> root  4454  0.0  0.6  1344  516 ?S09:17   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> 
> There does seem to be a connection to the second instance of tcpserver. 
> How can I find why and where the second tcpserver instance is being 
> initiated?
> 
> Thanks again, everyone.
> 
> Steven
> 
> 
> -Original Message-
> From: Rick Updegrove <[EMAIL PROTECTED]>
> Sent: Wednesday, April 25, 2001 10:22 AM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> Charles Cazabon  said,
> > You have two tcpserver instances, both trying to bind to the same 
> > interface(s) and port.  At least one of those _has_ to be failing, 
> > and it should be showing up in your logs.
> 
> Steve said,
> >>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
> >> gives me:
> 
> I use this to check for status on supervised processes.
> 
> bash-2.04# cd /var/qmail/supervise; svstat * */log
> 
> qmail-pop3d: up (pid 658) 178697 seconds
> qmail-send: up (pid 9480) 178696 seconds
> qmail-smtpd: up (pid 3846) 178697 seconds
> qmail-pop3d/log: up (pid 11946) 178697 seconds
> qmail-send/log: up (pid 7901) 178697 seconds
> qmail-smtpd/log: up (pid 13335) 178697 seconds
> 
> When you supervise, and one of the "seconds" columns stays at 0 
> seconds, you definitely have a problem.  After you reboot, or better 
> yet, when your pop stops working, try that and see what happens.
> 
> Also, do not start pop3d from the command line if you are starting it 
> in your boot scripts, even if pop3 is not working properly.
> 
> Hope that helped
> 
> Rick Up
> 
> 



RE: qmail-pop3d not working?

2001-04-27 Thread Steven Katz

Thanks, Rick. I did 'cd /var/qmail/supervise; svstat * */log' (while 
pop was working) and got:

qmail-pop3d: up (pid 598) 1420 seconds
qmail-send: up (pid 594) 1420 seconds
qmail-smtpd: up (pid 595) 1420 seconds
qmail-pop3d/log: up (pid 28975) 0 seconds
qmail-send/log: up (pid 596) 1420 seconds
qmail-smtpd/log: up (pid 599) 1420 seconds

Then I did it again (when pop stopped working) and got:

qmail-pop3d: up (pid 598) 1678 seconds
qmail-send: up (pid 594) 1678 seconds
qmail-smtpd: up (pid 595) 1678 seconds
qmail-pop3d/log: up (pid 26225) 0 seconds
qmail-send/log: up (pid 596) 1678 seconds
qmail-smtpd/log: up (pid 599) 1678 seconds

Although qmail-pop3d/log stayed at 0 seconds, qmail-pop3d keeps 
increasing, even after it stops working. 

However, doing 'ps auxw | grep pop3' while pop is working (up to 15 
minutes after rebooting) gives me:

root   591  0.0  0.4  1272  344 ?S09:06   0:00 
supervise qmail-pop3d
root   596  0.0  0.6  1344  512 ?S09:06   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma

But doing it again when pop stops working gives me:

root   591  0.0  0.4  1272  344 ?S09:06   0:00 
supervise qmail-pop3d
root   596  0.0  0.6  1344  512 ?S09:06   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
root  4454  0.0  0.6  1344  516 ?S09:17   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma

There does seem to be a connection to the second instance of tcpserver. 
How can I find why and where the second tcpserver instance is being 
initiated?

Thanks again, everyone.

Steven


-Original Message-
From: Rick Updegrove <[EMAIL PROTECTED]>
Sent: Wednesday, April 25, 2001 10:22 AM
To: [EMAIL PROTECTED]
Subject: Re: qmail-pop3d not working?


Charles Cazabon  said,
> You have two tcpserver instances, both trying to bind to the same 
> interface(s) and port.  At least one of those _has_ to be failing, 
> and it should be showing up in your logs.

Steve said,
>>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
>> gives me:

I use this to check for status on supervised processes.

bash-2.04# cd /var/qmail/supervise; svstat * */log

qmail-pop3d: up (pid 658) 178697 seconds
qmail-send: up (pid 9480) 178696 seconds
qmail-smtpd: up (pid 3846) 178697 seconds
qmail-pop3d/log: up (pid 11946) 178697 seconds
qmail-send/log: up (pid 7901) 178697 seconds
qmail-smtpd/log: up (pid 13335) 178697 seconds

When you supervise, and one of the "seconds" columns stays at 0 
seconds, you definitely have a problem.  After you reboot, or better 
yet, when your pop stops working, try that and see what happens.

Also, do not start pop3d from the command line if you are starting it 
in your boot scripts, even if pop3 is not working properly.

Hope that helped

Rick Up





Re: qmail-pop3d not working?

2001-04-24 Thread Rick Updegrove

Charles Cazabon  said,
> You have two tcpserver instances, both trying to bind to the same interface(s)
> and port.  At least one of those _has_ to be failing, and it should be showing
> up in your logs.

Steve said,
>>At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run'
>> gives me:

I use this to check for status on supervised processes.

bash-2.04# cd /var/qmail/supervise; svstat * */log

qmail-pop3d: up (pid 658) 178697 seconds
qmail-send: up (pid 9480) 178696 seconds
qmail-smtpd: up (pid 3846) 178697 seconds
qmail-pop3d/log: up (pid 11946) 178697 seconds
qmail-send/log: up (pid 7901) 178697 seconds
qmail-smtpd/log: up (pid 13335) 178697 seconds

When you supervise, and one of the "seconds" columns stays at 0 seconds, you 
definitely have a
problem.  After you reboot, or better yet, when your pop stops working, try that and 
see what
happens.

Also, do not start pop3d from the command line if you are starting it in your boot 
scripts, even if
pop3 is not working properly.

Hope that helped

Rick Up




Re: qmail-pop3d not handling enough messages

2001-04-24 Thread Uwe Ohse

On Tue, Apr 24, 2001 at 01:44:32PM +, Thomas Ackermann wrote:

> i've gat a qmail-system with vpopmail, using the qmail-pop3d as popper.
> my problem is, that the number of messages in my cur grew up to 23240
> and now i cant get them anymore, the pop3d gives out an error like cant
> change to $Home/Maildir..

You mean "-ERR unable to scan $HOME/Maildir", right?

Oh, well. It's been a year, so i might just repeat it completely. See
below.

I don't remember getting feedback whether the suggested change to
prioq.c really made a difference.

"the adjust your resource limit" is done with softlimit, if you
use daemontools.

Regards, Uwe

Date: Tue, 28 Mar 2000 18:20:01 +
From: Uwe Ohse <[EMAIL PROTECTED]>
To: Gary Richardson <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: Re: qmail-pop3 problems with 'large' accounts
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
In-Reply-To: <[EMAIL PROTECTED]>; from 
[EMAIL PROTECTED] on Tue, Mar 28, 2000 at 09:25:26AM -0800

On Tue, Mar 28, 2000 at 09:25:26AM -0800, Gary Richardson wrote:

>   I'm having problems with a pop user checking their. There are around
> 12000 emails in their MailDir directory and I get the following error when I
> try to download them:
>
> -ERR unable to scan $HOME/Maildir
> Connection closed by foreign host.

out of memory. qmail-pop3d needs space for 12000 filenames, with maybe
30 characters each (depending on the length of the hostname part of
the file name), plus 5 ("new/\0"), plus another 8 bytes for meta
information, accounting for about 50 bytes of memory, plus
whatever your C library needs, plus whatever the kernel needs.

Unfortunately qmail-pop3d suffers from memory fragmentation, so
the actual memory usage is somewhat higher.

You might get a far better behaviour if you change the number 100 in the
line
GEN_ALLOC_readyplus(prioq,struct prioq_elt,p,len,a,i,n,x,100,prioq_readyplus)
in prioq.c to, say, 5000, and recompile qmail-pop3d, and install that
and only that - the change will eat 5000*8 bytes in qmail-send.

Or: Adjust your resource limits.

Or: clean up your mail dir. pop3 wasn't designed to deal with that
number of messages anyway (as wasn't maildir).

Regards, Uwe



Re: qmail-pop3d not working?

2001-04-24 Thread Charles Cazabon

Steven Katz <[EMAIL PROTECTED]> wrote:
> Does anyone have any idea why pop would stop delivering 15 minutes 
> after rebooting?

It sounds odd.  I can't think of a reason offhand which would cause this.
However, something else odd struck me:

> > Doing 'ps auxw | grep pop3' gives me:
[...]
> > /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> > root 10162  0.0  0.6  1344  516 ?SN   08:24   0:00 
> > /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> > root 31977  0.0  0.7  1556  616 pts/0S08:38   0:00 

You have two tcpserver instances, both trying to bind to the same interface(s)
and port.  At least one of those _has_ to be failing, and it should be showing
up in your logs.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



RE: qmail-pop3d not working?

2001-04-24 Thread Steven Katz

Does anyone have any idea why pop would stop delivering 15 minutes 
after rebooting? I've provided my findings below.

Thanks again for any help you may provide. You're a great list!

Steven


> -Original Message-
> From: Steven Katz <[EMAIL PROTECTED]>
> Sent: Monday, April 23, 2001 10:19 AM
> To: [EMAIL PROTECTED]
> Subject: RE: qmail-pop3d not working?
> 
> 
> It seems to be only pop that stops working after 15 minutes, as 
> messages are piling up in the Maildirs. My mail client reports:
> 
> A timeout occurred while communicating with the server. (Account: 
> '[EMAIL PROTECTED]', POP3 Server: 'mail.idma.com', Error Number: 
> 0x800ccc19).
> 
> At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run' 
> gives me: 
> 
> tcpserver: fatal: unable to bind: address already used
> 
> My /qmail-pop3d/run file looks like:
> 
> #!/bin/sh
> exec /usr/local/bin/softlimit -m 200 \
>   /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup \
> idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1
> 
> Doing 'ps auxw | grep pop3' gives me:
> 
> root   593  0.0  0.4  1272  344 ?SN   08:06   0:00 
> supervise qmail-pop3d
> root   601  0.0  0.6  1344  512 ?SN   08:06   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> root 10162  0.0  0.6  1344  516 ?SN   08:24   0:00 
> /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
> root 31977  0.0  0.7  1556  616 pts/0S08:38   0:00 
> grep pop3
> 
> Doing 'cd /var/qmail/supervise && svstat qmail-smtpd' gives me:
> 
> qmail-smtpd: up (pid 596) 1962 seconds
> 
> Doing 'ls -l ~/* | grep Maildir --after-context=4' gives me:
> 
> /home/steven/Maildir:
> total 16
> drwxrwxr-x2 steven   steven   4096 Apr 21 23:22 cur
> drwxrwxr-x2 steven   steven   8192 Apr 23 08:36 new
> drwxrwxr-x2 steven   steven   4096 Apr 23 08:36 tmp
> 
> 
> > -Original Message-
> > From: Steven Katz <[EMAIL PROTECTED]>
> > Sent: Monday, April 23, 2001 9:32 AM
> > To: [EMAIL PROTECTED]
> > Subject: RE: qmail-pop3d not working?
> > 
> > 
> > Uh oh-- I may have celebrated too soon. For some reason, I can send 
> > but can't receive 15 minutes after rebooting. Does that sound familiar 
> > to anyone?
> > 
> > Steven
> > 
> 
> 



RE: qmail-pop3d not working?

2001-04-23 Thread Steven Katz

It seems to be only pop that stops working after 15 minutes, as 
messages are piling up in the Maildirs. My mail client reports:

A timeout occurred while communicating with the server. (Account: 
'[EMAIL PROTECTED]', POP3 Server: 'mail.idma.com', Error Number: 
0x800ccc19).

At which point, doing 'sh -x /var/qmail/supervise/qmail-pop3d/run' 
gives me: 

tcpserver: fatal: unable to bind: address already used

My /qmail-pop3d/run file looks like:

#!/bin/sh
exec /usr/local/bin/softlimit -m 200 \
  /usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup \
idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1

Doing 'ps auxw | grep pop3' gives me:

root   593  0.0  0.4  1272  344 ?SN   08:06   0:00 
supervise qmail-pop3d
root   601  0.0  0.6  1344  512 ?SN   08:06   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
root 10162  0.0  0.6  1344  516 ?SN   08:24   0:00 
/usr/local/bin/tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup idma
root 31977  0.0  0.7  1556  616 pts/0S08:38   0:00 
grep pop3

Doing 'cd /var/qmail/supervise && svstat qmail-smtpd' gives me:

qmail-smtpd: up (pid 596) 1962 seconds

Doing 'ls -l ~/* | grep Maildir --after-context=4' gives me:

/home/steven/Maildir:
total 16
drwxrwxr-x2 steven   steven   4096 Apr 21 23:22 cur
drwxrwxr-x2 steven   steven   8192 Apr 23 08:36 new
drwxrwxr-x2 steven   steven   4096 Apr 23 08:36 tmp


> -Original Message-
> From: Steven Katz <[EMAIL PROTECTED]>
> Sent: Monday, April 23, 2001 9:32 AM
> To: [EMAIL PROTECTED]
> Subject: RE: qmail-pop3d not working?
> 
> 
> Uh oh-- I may have celebrated too soon. For some reason, I can send 
> but can't receive 15 minutes after rebooting. Does that sound familiar 
> to anyone?
> 
> Steven
> 




RE: qmail-pop3d not working?

2001-04-23 Thread Steven Katz

Uh oh-- I may have celebrated too soon. For some reason, I can send 
but can't receive 15 minutes after rebooting. Does that sound familiar 
to anyone?

Steven


> -Original Message-
> From: Brett Randall <[EMAIL PROTECTED]>
> Sent: Monday, April 23, 2001 3:08 AM
> To: Steven Katz
> Cc: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> Just type:
> 
> # rpm -e --nodeps exim
> 
> And be happy! You don't need it...
> 
> >>>>> "Steven" == Steven Katz <[EMAIL PROTECTED]> writes:
> 
> > Sure enough, Exim is running, but I didn't realize this would cause 
> > problems. When I try to remove it, I get the following:
> 
> > # rpm -e exim
> > error: removing these packages would break dependencies:
> > smtpdaemon is needed by fetchmail-5.5.0-2
> > smtpdaemon is needed by mutt-1.2.5i-8.
> 
> > I understand mutt is recommended for Maildirs. Does this mean I'll be 
> > unable to use it?
> 
> > Steven
> 
> 
> >> -Original Message-
> >> From: Rick Updegrove <[EMAIL PROTECTED]>
> >> Sent: Monday, April 23, 2001 1:21 AM
> >> To: Steven Katz; [EMAIL PROTECTED]
> >> Subject: Re: qmail-pop3d not working?
> >> 
> >> 
> >> From: "Steven Katz" <[EMAIL PROTECTED]>
> >> 
> >> >The message could not be sent because one of the recipients was
> >> >rejected by the server. Server Response: '550 relaying to
> >> ><[EMAIL PROTECTED]> prohibited by administrator'. (Account:
> >> >'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number:
> >> >0x800ccc79).
> >> 
> >> I am not an expert, but I don't think that is qmail talking 
> >> because I have caused every possible
> >> error every step of the way, so check for yourself.  I think you 
> >> are running Exim An Internet mailer
> >> for Unix systems. http://www.exim.org
> >> 
> >> [root@ns2 /root]# telnet 208.25.75.162 25
> >> Trying 208.25.75.162...
> >> Connected to 208.25.75.162.
> >> Escape character is '^]'.
> >> 220 shasta.idma.com ESMTP Exim 3.13 #1 Mon, 23 Apr 2001 00:08:04 -0700
> >> 
> >> Hope that helped
> >> 
> >> Rick Up
> >> 
> >> 
> >> 
> >> 
> 
> -- 
> "Hardware, n.: The parts of a computer system that can be kicked."
> 
> - The Devil's Dictionary to Computer Studies 
> 



Re: qmail-pop3d not working?

2001-04-23 Thread Dave Sill

"Mark Delany" <[EMAIL PROTECTED]> wrote:

>You might want to feed this back to the faqts people. Let's others
>benefit from what you've learnt.

It's fixed.

-Dave



Re: qmail-pop3d not working?

2001-04-23 Thread Michael T. Babcock

> 4. Oh, and you haven't told us whether you followed instructions
>exactly when setting up qmail-pop3d/run. Do the instructions really
>say to use POP3 in uppercase?

The page he referenced at
http://www.faqts.com/knowledge_base/view.phtml/aid/8225/fid/223 does indeed
have POP3 in uppercase.  Dave Sill may wish to update that with a comment or
two.




Re: qmail-pop3d not working?

2001-04-23 Thread Michael T. Babcock

On some systems, it can be helpful to do a "grep -i pop /etc/services" to
find out what the nomenclature is as well.

FYI (to the original poster), that POP3 you misspelt (un*x is usually case
sensitive) is just looked up in a file like /etc/services and the port
substituted in.

- Original Message -

> It means change the "POP3" to "pop3" and try the command again. If you
> get the same error, try "pop-3". If none of those work, substitute "110"
> instead. It's not necessary to include the quotes.





RE: qmail-pop3d not working?

2001-04-23 Thread Steven Katz

You're right, I removed it and I am happy! Note to archive 
archeologists: Running Exim and qmail simultaneously will cause 
intermittent problems. There's my contribution to the time capsule. 

Thanks again, everyone.

Steven


> -Original Message-
> From: Brett Randall <[EMAIL PROTECTED]>
> Sent: Monday, April 23, 2001 3:08 AM
> To: Steven Katz
> Cc: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> Just type:
> 
> # rpm -e --nodeps exim
> 
> And be happy! You don't need it...
> 
> >>>>> "Steven" == Steven Katz <[EMAIL PROTECTED]> writes:
> 
> > Sure enough, Exim is running, but I didn't realize this would cause 
> > problems. When I try to remove it, I get the following:
> 
> > # rpm -e exim
> > error: removing these packages would break dependencies:
> > smtpdaemon is needed by fetchmail-5.5.0-2
> > smtpdaemon is needed by mutt-1.2.5i-8.
> 
> > I understand mutt is recommended for Maildirs. Does this mean I'll be 
> > unable to use it?
> 
> > Steven
> 
> 
> >> -Original Message-
> >> From: Rick Updegrove <[EMAIL PROTECTED]>
> >> Sent: Monday, April 23, 2001 1:21 AM
> >> To: Steven Katz; [EMAIL PROTECTED]
> >> Subject: Re: qmail-pop3d not working?
> >> 
> >> 
> >> From: "Steven Katz" <[EMAIL PROTECTED]>
> >> 
> >> >The message could not be sent because one of the recipients was
> >> >rejected by the server. Server Response: '550 relaying to
> >> ><[EMAIL PROTECTED]> prohibited by administrator'. (Account:
> >> >'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number:
> >> >0x800ccc79).
> >> 
> >> I am not an expert, but I don't think that is qmail talking 
> >> because I have caused every possible
> >> error every step of the way, so check for yourself.  I think you 
> >> are running Exim An Internet mailer
> >> for Unix systems. http://www.exim.org
> >> 
> >> [root@ns2 /root]# telnet 208.25.75.162 25
> >> Trying 208.25.75.162...
> >> Connected to 208.25.75.162.
> >> Escape character is '^]'.
> >> 220 shasta.idma.com ESMTP Exim 3.13 #1 Mon, 23 Apr 2001 00:08:04 -0700
> >> 
> >> Hope that helped
> >> 
> >> Rick Up
> >> 
> >> 
> >> 
> >> 
> 
> -- 
> "Hardware, n.: The parts of a computer system that can be kicked."
> 
> - The Devil's Dictionary to Computer Studies 
> 



Re: qmail-pop3d not working?

2001-04-23 Thread Brett Randall

Just type:

# rpm -e --nodeps exim

And be happy! You don't need it...

>>>>> "Steven" == Steven Katz <[EMAIL PROTECTED]> writes:

> Sure enough, Exim is running, but I didn't realize this would cause 
> problems. When I try to remove it, I get the following:

> # rpm -e exim
> error: removing these packages would break dependencies:
> smtpdaemon is needed by fetchmail-5.5.0-2
> smtpdaemon is needed by mutt-1.2.5i-8.

> I understand mutt is recommended for Maildirs. Does this mean I'll be 
> unable to use it?

> Steven


>> -Original Message-
>> From: Rick Updegrove <[EMAIL PROTECTED]>
>> Sent: Monday, April 23, 2001 1:21 AM
>> To: Steven Katz; [EMAIL PROTECTED]
>> Subject: Re: qmail-pop3d not working?
>> 
>> 
>> From: "Steven Katz" <[EMAIL PROTECTED]>
>> 
>> >The message could not be sent because one of the recipients was
>> >rejected by the server. Server Response: '550 relaying to
>> ><[EMAIL PROTECTED]> prohibited by administrator'. (Account:
>> >'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number:
>> >0x800ccc79).
>> 
>> I am not an expert, but I don't think that is qmail talking 
>> because I have caused every possible
>> error every step of the way, so check for yourself.  I think you 
>> are running Exim An Internet mailer
>> for Unix systems. http://www.exim.org
>> 
>> [root@ns2 /root]# telnet 208.25.75.162 25
>> Trying 208.25.75.162...
>> Connected to 208.25.75.162.
>> Escape character is '^]'.
>> 220 shasta.idma.com ESMTP Exim 3.13 #1 Mon, 23 Apr 2001 00:08:04 -0700
>> 
>> Hope that helped
>> 
>> Rick Up
>> 
>> 
>> 
>> 

-- 
"Hardware, n.: The parts of a computer system that can be kicked."

- The Devil's Dictionary to Computer Studies 



RE: qmail-pop3d not working?

2001-04-23 Thread Steven Katz

Sure enough, Exim is running, but I didn't realize this would cause 
problems. When I try to remove it, I get the following:

# rpm -e exim
error: removing these packages would break dependencies:
smtpdaemon is needed by fetchmail-5.5.0-2
smtpdaemon is needed by mutt-1.2.5i-8.

I understand mutt is recommended for Maildirs. Does this mean I'll be 
unable to use it?

Steven


> -Original Message-
> From: Rick Updegrove <[EMAIL PROTECTED]>
> Sent: Monday, April 23, 2001 1:21 AM
> To: Steven Katz; [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> From: "Steven Katz" <[EMAIL PROTECTED]>
> 
> >The message could not be sent because one of the recipients was
> >rejected by the server. Server Response: '550 relaying to
> ><[EMAIL PROTECTED]> prohibited by administrator'. (Account:
> >'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number:
> >0x800ccc79).
> 
> I am not an expert, but I don't think that is qmail talking 
> because I have caused every possible
> error every step of the way, so check for yourself.  I think you 
> are running Exim An Internet mailer
> for Unix systems. http://www.exim.org
> 
> [root@ns2 /root]# telnet 208.25.75.162 25
> Trying 208.25.75.162...
> Connected to 208.25.75.162.
> Escape character is '^]'.
> 220 shasta.idma.com ESMTP Exim 3.13 #1 Mon, 23 Apr 2001 00:08:04 -0700
> 
> Hope that helped
> 
> Rick Up
> 
> 
> 
> 



Re: qmail-pop3d not working?

2001-04-23 Thread Brett Randall

> "Steven" == Steven Katz <[EMAIL PROTECTED]> writes:

>The message could not be sent because one of the recipients was 
>rejected by the server. Server Response: '550 relaying to 
><[EMAIL PROTECTED]> prohibited by administrator'. (Account: 
>'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number: 
>0x800ccc79).

This error isn't a qmail one. (Try `cd ~/qmail-1.03 && grep
"prohibited by administrator" *'). In fact, the word `administrator'
would appear to display evidence of a lowly MS Winblowz machine
somewhere running an SMTP server, and your DNS settings are directing
mail to that server rather than your nice, shiny, spanking brand new
one. Try pinging mail.idma.com and see what mail server you are REALLY
getting (and maybe try deleting any other mail servers that you
previously had running on your *nix box).

B.
-- 
"I had a fortune cookie the other day and it said: 'Outlook not so
good'. I said: 'Sure, but Microsoft ships it anyway'."



Re: qmail-pop3d not working?

2001-04-23 Thread Rick Updegrove

From: "Steven Katz" <[EMAIL PROTECTED]>

>The message could not be sent because one of the recipients was
>rejected by the server. Server Response: '550 relaying to
><[EMAIL PROTECTED]> prohibited by administrator'. (Account:
>'[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number:
>0x800ccc79).

I am not an expert, but I don't think that is qmail talking because I have caused 
every possible
error every step of the way, so check for yourself.  I think you are running Exim An 
Internet mailer
for Unix systems. http://www.exim.org

[root@ns2 /root]# telnet 208.25.75.162 25
Trying 208.25.75.162...
Connected to 208.25.75.162.
Escape character is '^]'.
220 shasta.idma.com ESMTP Exim 3.13 #1 Mon, 23 Apr 2001 00:08:04 -0700

Hope that helped

Rick Up






RE: qmail-pop3d not working?

2001-04-22 Thread Steven Katz

How strange-- now my mail client is giving me the following error when 
I try to send mail from this account (or send mail to this account 
from somewhere else):

   The message could not be sent because one of the recipients was 
   rejected by the server. Server Response: '550 relaying to 
   <[EMAIL PROTECTED]> prohibited by administrator'. (Account: 
   '[EMAIL PROTECTED]', SMTP Server: 'mail.idma.com', Error Number: 
   0x800ccc79).

I haven't started installing relay-ctrl (smtp after pop auth) yet. 
In fact, as unbelievable as it sounds, I hadn't done anything since I 
was finally able to send and receive after changing POP3 to pop3..

Steven


> -Original Message-
> From: Mark Delany <[EMAIL PROTECTED]>
> Sent: Sunday, April 22, 2001 10:38 PM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> > > Now change "POP3" to "pop3" and run it again. Go on... humor me. It's
> > > only the third time I've told you what your problem is.
> > > 
> > Yes, that did it! Just received 200+ messages. Thanks for all your 
> > help, everyone.
> 
> You might want to feed this back to the faqts people. Let's others
> benefit from what you've learnt.
> 
> 
> Regards.
> 



Re: qmail-pop3d not working?

2001-04-22 Thread Mark Delany

> > Now change "POP3" to "pop3" and run it again. Go on... humor me. It's
> > only the third time I've told you what your problem is.
> > 
> Yes, that did it! Just received 200+ messages. Thanks for all your 
> help, everyone.

You might want to feed this back to the faqts people. Let's others
benefit from what you've learnt.


Regards.



RE: qmail-pop3d not working?

2001-04-22 Thread Steven Katz

Mine says:

pop3 110/tcp pop-3 # POP version 3

The 3rd column is claimed to be an alias, so I guess either would've 
worked.

Steven


> -Original Message-
> From: Rick Updegrove <[EMAIL PROTECTED]>
> Sent: Sunday, April 22, 2001 9:42 PM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> > Now change "POP3" to "pop3" and run it again. Go on... humor me. It's
> 
> And if that doesn't work try pop-3
> 
> or
> type   more /etc/servicesthen scroll to where port 110 is 
> listed - use that exact spelling OR
> make the /etc/services file say POP3
> 
> Mine says:
> 
> pop-3   110/tcp # POP version 3
> pop-3   110/udp
> 
> So I would need the all lowercase pop-3 with the dash
> 
> CaPs CoUnT and so do - (dashes)
> 
> Hope that helped
> 
> Rick Up
> 
> 



RE: qmail-pop3d not working?

2001-04-22 Thread Steven Katz

> -Original Message-
> From: Mark Delany <[EMAIL PROTECTED]>
> Sent: Sunday, April 22, 2001 8:55 PM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> On Sun, Apr 22, 2001 at 08:49:27PM -0700, Steven Katz wrote:
> > > -Original Message-
> > > From: Mark Delany <[EMAIL PROTECTED]>
> > > Sent: Sunday, April 22, 2001 7:23 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: qmail-pop3d not working?
> > >
> > >
> 
> Now change "POP3" to "pop3" and run it again. Go on... humor me. It's
> only the third time I've told you what your problem is.
> 
Yes, that did it! Just received 200+ messages. Thanks for all your 
help, everyone. Now to figure out smpt after pop authentication..

Steven

> 
> Regards.
> 
> 



Re: qmail-pop3d not working?

2001-04-22 Thread Rick Updegrove

> Now change "POP3" to "pop3" and run it again. Go on... humor me. It's

And if that doesn't work try pop-3

or
type   more /etc/servicesthen scroll to where port 110 is listed - use that exact 
spelling OR
make the /etc/services file say POP3

Mine says:

pop-3   110/tcp # POP version 3
pop-3   110/udp

So I would need the all lowercase pop-3 with the dash

CaPs CoUnT and so do - (dashes)

Hope that helped

Rick Up




Re: qmail-pop3d not working?

2001-04-22 Thread Mark Delany

On Sun, Apr 22, 2001 at 08:49:27PM -0700, Steven Katz wrote:
> > -Original Message-
> > From: Mark Delany <[EMAIL PROTECTED]>
> > Sent: Sunday, April 22, 2001 7:23 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: qmail-pop3d not working?
> >
> >
> > > > > exec /usr/local/bin/softlimit -m 200 \
> > > > >   /usr/local/bin/tcpserver -v -R 0 POP3 /var/qmail/bin/qmail-popup \
> > > > > idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d
> > Maildir 2>&1
> >
> > > > 4. Oh, and you haven't told us whether you followed instructions
> > > >exactly when setting up qmail-pop3d/run. Do the instructions really
> > > >say to use POP3 in uppercase?
> > > >
> > > I followed both the LWQ and the above mentioned faqts instructions
> > > exactly, and double checked.
> >
> > Hmm. On FreeBSD, Linux *and* Solaris using "POP3" in uppercase fails,
> > while in lowercase it succeeds. With all due respect to faqts, can I
> > suggest that you try the qmail-pop3/run file with a lowercase "pop3"?
> >
> > Also of course, you can run the service manually, by:
> >
> > # sh -x qmail-po3d/run
> >
> > And show us the output.
> >
> I get:
> tcpserver: fatal: unable to figure out port number for POP3
> 
> I'll bet that's meaningful, but I don't know what it means!

Now change "POP3" to "pop3" and run it again. Go on... humor me. It's
only the third time I've told you what your problem is.


Regards.




Re: qmail-pop3d not working?

2001-04-22 Thread Tim Legant

On Sun, Apr 22, 2001 at 08:49:27PM -0700, Steven Katz wrote:
> > Also of course, you can run the service manually, by:
> >
> > # sh -x qmail-po3d/run
> >
> > And show us the output.
> >
> I get:
> tcpserver: fatal: unable to figure out port number for POP3
> 
> I'll bet that's meaningful, but I don't know what it means!

It means change the "POP3" to "pop3" and try the command again. If you
get the same error, try "pop-3". If none of those work, substitute "110"
instead. It's not necessary to include the quotes.

Tim



RE: qmail-pop3d not working?

2001-04-22 Thread Steven Katz

> -Original Message-
> From: Mark Delany <[EMAIL PROTECTED]>
> Sent: Sunday, April 22, 2001 7:23 PM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
>
>
> > > > exec /usr/local/bin/softlimit -m 200 \
> > > >   /usr/local/bin/tcpserver -v -R 0 POP3 /var/qmail/bin/qmail-popup \
> > > > idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d
> Maildir 2>&1
>
> > > 4. Oh, and you haven't told us whether you followed instructions
> > >exactly when setting up qmail-pop3d/run. Do the instructions really
> > >say to use POP3 in uppercase?
> > >
> > I followed both the LWQ and the above mentioned faqts instructions
> > exactly, and double checked.
>
> Hmm. On FreeBSD, Linux *and* Solaris using "POP3" in uppercase fails,
> while in lowercase it succeeds. With all due respect to faqts, can I
> suggest that you try the qmail-pop3/run file with a lowercase "pop3"?
>
> Also of course, you can run the service manually, by:
>
> # sh -x qmail-po3d/run
>
> And show us the output.
>
I get:
tcpserver: fatal: unable to figure out port number for POP3

I'll bet that's meaningful, but I don't know what it means!

Steven

>
>
> Regards.
>




Re: qmail-pop3d not working?

2001-04-22 Thread Brett Randall

> "Mark" == Mark Delany <[EMAIL PROTECTED]> writes:

> # sh -x qmail-po3d/run

qmail-pop3d even (just in case he takes it literally ;)
-- 
"SOFTWARE, n.: Formal evening attire for female computer analysts."

- The Devil's Dictionary to Computer Studies 



Re: qmail-pop3d not working?

2001-04-22 Thread Brett Randall

> "Steven" == Steven Katz <[EMAIL PROTECTED]> writes:

>> -Original Message-
>> From: Mark Delany <[EMAIL PROTECTED]>



>> You need to give us a *lot* more information than "I'm unable to
>> receive mail..."
>> 
>> For example:
>> 
>> 1. You haven't told us whether the tcpserver in your qmail-pop3d/run
>> is running. Is it?
>> 
> According to ps it is. Is there anything else I can use to verify that 
> it's running properly?

What is the output of `ps auxw | grep pop3'?
What is the output of `cd /var/qmail/supervise && svstat qmail-smtpd'?

>> 2. You haven't told us what happens when you try and connect to the
>> POP port. What does happen?
>> 
> My mail client reports the following:
>   Unable to connect to the server. (Account: '[EMAIL PROTECTED]', POP3 
>   Server: 'mail.idma.com', Error Number: 0x800ccc0e).

Outlook Expectless sucks butt cheek. Telnet to port 110 and do:

USER yourusername
PASS yourpassword

And give us the error message. Then give us `ls -l ~/* | grep Maildir
--after-context=4' when logged in as yourself. Then give us `ls -l
~/.. | grep yourusername'

>> 3. You haven't shown us what gets logged. What is logged?
>> 
> Log files are being created in log/qmail/smtpd, but not in 
> log/qmail/pop3d. Does that provide a good clue?

Depends. Is multilog running as part of the sv scripts in
pop3d/log/run? This should appear in `ps auxw | grep pop3'.

>> 4. Oh, and you haven't told us whether you followed instructions
>> exactly when setting up qmail-pop3d/run. Do the instructions really
>> say to use POP3 in uppercase?
>> 
> I followed both the LWQ and the above mentioned faqts instructions 
> exactly, and double checked.
-- 
"Bubble Memory, n.: A derogatory term, usually referring to a person's
intelligence. See also vacuum tube."

- The Devil's Dictionary to Computer Studies



Re: qmail-pop3d not working?

2001-04-22 Thread Mark Delany

> > > exec /usr/local/bin/softlimit -m 200 \
> > >   /usr/local/bin/tcpserver -v -R 0 POP3 /var/qmail/bin/qmail-popup \
> > > idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1

> > 4. Oh, and you haven't told us whether you followed instructions
> >exactly when setting up qmail-pop3d/run. Do the instructions really
> >say to use POP3 in uppercase?
> > 
> I followed both the LWQ and the above mentioned faqts instructions 
> exactly, and double checked.

Hmm. On FreeBSD, Linux *and* Solaris using "POP3" in uppercase fails,
while in lowercase it succeeds. With all due respect to faqts, can I
suggest that you try the qmail-pop3/run file with a lowercase "pop3"?

Also of course, you can run the service manually, by:

# sh -x qmail-po3d/run

And show us the output.



Regards.



RE: qmail-pop3d not working?

2001-04-22 Thread Steven Katz

> -Original Message-
> From: Mark Delany <[EMAIL PROTECTED]>
> Sent: Sunday, April 22, 2001 12:28 PM
> To: [EMAIL PROTECTED]
> Subject: Re: qmail-pop3d not working?
> 
> 
> On Sun, Apr 22, 2001 at 12:08:54PM -0700, Steven Katz wrote:
> > I've installed qmail according to the LWQ instructions, and 
> > qmail-pop3d according to faqts instructions 
> > (http://www.faqts.com/knowledge_base/view.phtml/aid/8225/fid/223).
> > At this point, I'm able to send mail only from the clients listed in 
> > tcp.smtp. However, I'm unable to receive mail at any of the clients 
> > (though I can see messages piling up in the Maildirs). 
> > 
> > My /qmail-pop3d/run file:
> > 
> > #!/bin/sh
> > exec /usr/local/bin/softlimit -m 200 \
> >   /usr/local/bin/tcpserver -v -R 0 POP3 /var/qmail/bin/qmail-popup \
> > idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1
> > 
> > The FQDN (idma.com) is the same name that appears in /control/me, 
> > locals, and rcpthosts. Is it acceptable for this to just be the domain 
> > name, or do I need to include the hostname? Is that 'Maildir' that 
> > follows the invocation of qmail-pop3d supposed to an absolute path?
> > 
> > Thanks for any assistance you can offer.
> 
> You need to give us a *lot* more information than "I'm unable to
> receive mail..."
> 
> For example:
> 
> 1. You haven't told us whether the tcpserver in your qmail-pop3d/run
>is running. Is it?
> 
According to ps it is. Is there anything else I can use to verify that 
it's running properly?

> 2. You haven't told us what happens when you try and connect to the
>POP port. What does happen?
> 
My mail client reports the following:
  Unable to connect to the server. (Account: '[EMAIL PROTECTED]', POP3 
  Server: 'mail.idma.com', Error Number: 0x800ccc0e).

> 3. You haven't shown us what gets logged. What is logged?
> 
Log files are being created in log/qmail/smtpd, but not in 
log/qmail/pop3d. Does that provide a good clue?

> 
> 4. Oh, and you haven't told us whether you followed instructions
>exactly when setting up qmail-pop3d/run. Do the instructions really
>say to use POP3 in uppercase?
> 
I followed both the LWQ and the above mentioned faqts instructions 
exactly, and double checked.

Thanks again.

Steven

> 
> Regards.
> 



Re: qmail-pop3d not working?

2001-04-22 Thread Mark Delany

On Sun, Apr 22, 2001 at 12:08:54PM -0700, Steven Katz wrote:
> I've installed qmail according to the LWQ instructions, and 
> qmail-pop3d according to faqts instructions 
> (http://www.faqts.com/knowledge_base/view.phtml/aid/8225/fid/223).
> At this point, I'm able to send mail only from the clients listed in 
> tcp.smtp. However, I'm unable to receive mail at any of the clients 
> (though I can see messages piling up in the Maildirs). 
> 
> My /qmail-pop3d/run file:
> 
> #!/bin/sh
> exec /usr/local/bin/softlimit -m 200 \
>   /usr/local/bin/tcpserver -v -R 0 POP3 /var/qmail/bin/qmail-popup \
> idma.com /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1
> 
> The FQDN (idma.com) is the same name that appears in /control/me, 
> locals, and rcpthosts. Is it acceptable for this to just be the domain 
> name, or do I need to include the hostname? Is that 'Maildir' that 
> follows the invocation of qmail-pop3d supposed to an absolute path?
> 
> Thanks for any assistance you can offer.

You need to give us a *lot* more information than "I'm unable to
receive mail..."

For example:

1. You haven't told us whether the tcpserver in your qmail-pop3d/run
   is running. Is it?

2. You haven't told us what happens when you try and connect to the
   POP port. What does happen?

3. You haven't shown us what gets logged. What is logged?


4. Oh, and you haven't told us whether you followed instructions
   exactly when setting up qmail-pop3d/run. Do the instructions really
   say to use POP3 in uppercase?


Regards.



Re: qmail-pop3d and supervise

2001-04-14 Thread Rehan Zaidi

The high CPU usage problem went away after I fixed the properties of the
/var/qmail/supervise/qmail-pop3d and qmail-pop3d/log directories.  I hadn't
followed LWQ when I first created them.

Now everything seems to be fine.  And I've learned a lot about qmail in the
last few days. :-)

Time to tackle vmailmgr...

Rehan




Re: qmail-pop3d and supervise

2001-04-14 Thread Rick Updegrove

- Original Message -
From: "Rehan Zaidi" <[EMAIL PROTECTED]>
> to run under supervise...almost.

> /usr/bin/tcpserver -v -R 0 pop-3 /var/qmail/bin/qmail-popup  \
> /usr/local/bin/checkvpw /var/qmail/bin/qmail-pop3d Maildir

I had a hell of a time also - mainly because I did NOT include the word "exec" the 
first couple of
times.

bash-2.04# cat /var/qmail/supervise/qmail-pop3d/run
#!/bin/sh
exec /usr/local/bin/softlimit -m 200 \
tcpserver -v -H -R 0 pop-3 /var/qmail/bin/qmail-popup \
updegrove.net /var/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 2>&1

bash-2.04# ls -la /var/qmail/supervise/qmail-pop3d/run
-rwxr-xr-x  1 root  wheel  189 Apr 10 21:01 /var/qmail/supervise/qmail-pop3d/run

bash-2.04# qmailctl stat (if you followed LWQ you called this script"qmail")
qmail-pop3d: up (pid 24828) 282032 seconds
qmail-send: up (pid 4390) 282032 seconds
qmail-smtpd: up (pid 28329) 282032 seconds
qmail-pop3d/log: up (pid 19750) 282032 seconds
qmail-send/log: up (pid 11681) 282031 seconds
qmail-smtpd/log: up (pid 4835) 282032 seconds

Hope this helps


Rick Up





Re: qmail-pop3d and supervise

2001-04-14 Thread Tim Legant

On Sat, Apr 14, 2001 at 02:48:03PM -0400, Rehan Zaidi wrote:
> Thanks to Mark and David for the quick replies.  The problem was that the
> scripts weren't executable.  I assumed that they didn't need to be because
> SMTP and send seemed to be working fine, and the permissions for those run
> scripts didn't include execution.

Then they didn't run. Most likely what /is/ running is a script you
started manually. See my thoughts on your next question.

> Next question... Supervise is using 95+% of the CPU on the system (RedHat
> 7.0) when qmail is running and 80-90% when it's not.  Is that normal?

No. But if a script for qmail-smtp, for instance, was already running,
then the "run" script's attempt to start tcpserver is failing
continuously and continuously trying to restart. Check your logs -
you'll probably find a message from tcpserver that it can't bind to port
25 because it's already in use.

Tim



Re: qmail-pop3d and supervise

2001-04-14 Thread Rehan Zaidi

Thanks to Mark and David for the quick replies.  The problem was that the
scripts weren't executable.  I assumed that they didn't need to be because
SMTP and send seemed to be working fine, and the permissions for those run
scripts didn't include execution.

Next question... Supervise is using 95+% of the CPU on the system (RedHat
7.0) when qmail is running and 80-90% when it's not.  Is that normal?


Thanks again.
Rehan




Re: qmail-pop3d and supervise

2001-04-14 Thread David Young

> From: "Rehan Zaidi" <[EMAIL PROTECTED]>
> This is the same thing as I have in the /var/qmail/supervise/qmail-pop3d/run
> script...

What if you run the /var/qmail/supervise/qmail-pop3d/run script from the
command line? Maybe there is a syntax error in there? Is there anything in
the logs?

> Also, could I run UW IMAP to provide the POP3 service instead of
> qmail-pop3d?

I *think* so although haven't tried it (only tried IMAP). There is a patch
for UW IMAP that you need to apply to get it to support Maildirs.




Re: qmail-pop3d and supervise

2001-04-14 Thread Mark Delany

On Sat, Apr 14, 2001 at 01:38:03PM -0400, Rehan Zaidi wrote:
> Hi, folks.
> 
> Thanks to the mailing list archives, I've been able to configure qmail-pop3d
> to run under supervise...almost.  I have one remaining problem: I still get
> "Connection refused" when I telnet to port 110.
> 
> These are the processes running on the system:
> $ ps -ax | grep qmail
>   160 ?S  0:00 supervise qmail-send
>   163 ?S  0:29 supervise qmail-smtpd
>   166 ?S  0:32 supervise qmail-pop3d
>   167 ?S  0:00 qmail-send
>   169 ?S  0:00 /usr/local/bin/multilog t s250
> /var/log/qmail/qma
>   657 ?S  0:00 splogger qmail
>   658 ?S  0:00 qmail-lspawn ./Mailbox
>   659 ?S  0:00 qmail-rspawn
>   660 ?S  0:00 qmail-clean

What is the output of:

$ ps -ax | grep tcp


> When I telnet to port 110, I get:
> telnet: Unable to connect to remote host: Connection refused

That tells us that tcpserver probably isn't running which means that
the run script is probably not running or runnable.

> But if I stop the qmail-pop3d and then start it from the command line using
> the following command, I can connect:
> /usr/bin/tcpserver -v -R 0 pop-3 /var/qmail/bin/qmail-popup  \
> /usr/local/bin/checkvpw /var/qmail/bin/qmail-pop3d Maildir
> 
> This is the same thing as I have in the /var/qmail/supervise/qmail-pop3d/run
> script...

Is that script readable, executable?

What is the output of:

$ ls -l /var/qmail/supervise/qmail-pop3d/run

Also, rather then showing us the tcpserver command, much more
instructive would be a cat of the run file, so show us the output of:

$ cat /var/qmail/supervise/qmail-pop3d/run


Regards.



RE: Qmail + pop3d

2001-03-26 Thread Bill Andersen

Keith,

Although the directories MAY be on a separate logial partitions
(I used Red Hat 7's auto partition, so I can't say exactly how
RH7 does it), they are NOT, however, on two physical Hard Drives.
I only have one 3 Meg drive in the machine.  Also, I can copy
the file manually with the "mv" command without the error (?).
The only time I get the error is when I call one of the "elq",
"qail" or "pinq" wrappers.

I agree with you on Mutt.  I think I will just stick with Mutt.
As you said, it is very feature rich - just a little cryptic!

Bill

-Original Message-
From: ennui [mailto:ennui]On Behalf Of Nick (Keith) Fish
Sent: Friday, March 23, 2001 5:39 PM
To: Bill Andersen; Qmail Mailing List
Subject: Re: Qmail + pop3d


Bill Andersen wrote:
> 
> I read the docs and found the nice little wrappers for "elq","pinq" and
> "qail",
> but I always get the following error when it calls the maildir2mbox
> command...
> 
>  maildir2mbox: fatal: unable to move /home/bill/Mailtmp to
> /var/spool/mail/bill:
>  cross-device link
> 
> I'm a Linux newbie, so I just went to POP3 from my PC in order to get my
> mail.
> However, I would really like to run pine.  (I did get Mutt working with
> maildir,
> so I'me not completely locked to my PC!!! Thank goodness)
> 
> I'm sure it's obvious what I have wrong to someone who knows *nix...
> 
> Help anyone?
> 
> Bill

Well, are those directories on separate devices (i.e. two different hard
drives)?  If so (and this is judging from the error message), that's
probably your problem.  Try copying the Maildir over to the var
directory somewhere and then run the maildir2mbox command.

BTW, if I was you, I would just stick with mutt and Maildir.  Maildir is
by far the best format for storing e-mail to date and mutt is an
excellent and featureful MUA, although syntax can be a bitch.  My second
recommendation would be to download the patch to make Pine work with
Maildir.  What you're trying to do, I would call a distant third.

Power to ya, though.

---
Keith
Network Engineer
Triton Technologies, Inc.




Re: Qmail + pop3d

2001-03-23 Thread Nick (Keith) Fish

Bill Andersen wrote:
> 
> I read the docs and found the nice little wrappers for "elq","pinq" and
> "qail",
> but I always get the following error when it calls the maildir2mbox
> command...
> 
>  maildir2mbox: fatal: unable to move /home/bill/Mailtmp to
> /var/spool/mail/bill:
>  cross-device link
> 
> I'm a Linux newbie, so I just went to POP3 from my PC in order to get my
> mail.
> However, I would really like to run pine.  (I did get Mutt working with
> maildir,
> so I'me not completely locked to my PC!!! Thank goodness)
> 
> I'm sure it's obvious what I have wrong to someone who knows *nix...
> 
> Help anyone?
> 
> Bill

Well, are those directories on separate devices (i.e. two different hard
drives)?  If so (and this is judging from the error message), that's
probably your problem.  Try copying the Maildir over to the var
directory somewhere and then run the maildir2mbox command.

BTW, if I was you, I would just stick with mutt and Maildir.  Maildir is
by far the best format for storing e-mail to date and mutt is an
excellent and featureful MUA, although syntax can be a bitch.  My second
recommendation would be to download the patch to make Pine work with
Maildir.  What you're trying to do, I would call a distant third.

Power to ya, though.

---
Keith
Network Engineer
Triton Technologies, Inc.



RE: Qmail + pop3d

2001-03-23 Thread Bill Andersen

I read the docs and found the nice little wrappers for "elq","pinq" and
"qail",
but I always get the following error when it calls the maildir2mbox
command...

 maildir2mbox: fatal: unable to move /home/bill/Mailtmp to
/var/spool/mail/bill:
 cross-device link

I'm a Linux newbie, so I just went to POP3 from my PC in order to get my
mail.
However, I would really like to run pine.  (I did get Mutt working with
maildir,
so I'me not completely locked to my PC!!! Thank goodness)

I'm sure it's obvious what I have wrong to someone who knows *nix...

Help anyone?

Bill

In Reply to:
> Or, is it a hard operation to make the system use Maildir ? How would i
then
> make 'pine' work and all that i mean...

Charles Cazabon wrote:
>No, it's not difficult.  Again, check djb's site and FAQ, and
www.qmail.org.
>RTFM.




Re: Qmail + pop3d

2001-03-23 Thread Charles Cazabon

Aleksander Olsen <[EMAIL PROTECTED]> wrote:
> 
> Qmail is up running, but i dont have any pop3d yet.
> I am using Mailbox instead of Maildir, and im wondering if anyone
> know of any pop3d who can be side by side with qmail pretty nice.. ?

Yes, there's lots.  Check the qmail documentation, www.qmail.org, djb's
site and FAQ, etc.  In other words, RTFM.

> Or, is it a hard operation to make the system use Maildir ? How would i then
> make 'pine' work and all that i mean...

No, it's not difficult.  Again, check djb's site and FAQ, and www.qmail.org.
RTFM.

In future, please do your homework before posting questions to a mailing list.
It wastes the time of everyone on the mailing list, and is considered rude
behaviour.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d bug

2001-03-12 Thread Kris Kelley

John R. Levine wrote:
> > > Pop3d just reports the file sizes, while it's clear
> > > from the RFC that it's supposed to report the wire size of each
message,
> > > i.e., the size using cr/lf as a line terminator, so the sizes it
reports
> > > are too small.

Peter van Dijk replied:
> > Yes. This behaviour is known. Fixing it, however, involves a *huge*
> > performance downgrade of qmail-pop3d.

Scott Gifford pondered:
> A solution I have considered is storing the messages in wire format.
> Especially for POP/IMAP-only clients, seems like it could be a
> medium-sized performance win, since the line-conversion is done only
> once, regardless of how many times the message is downloaded.  If the
> message were kept in wire-format from SMTP through delivery, no line
> conversion would be required at either end, and a larger performance
> gain would be possible.
>
> Has anybody tried this, or anything like it?

Something like that, yes.  My last job involved building custom SMTP and
POP3 servers from scratch.  I stored messages in a quasi-maildir-ish folder
scheme, and left the CRLF linebreaks intact.  Since there were no local
users on this box, there was no need to worry about local MUA's, and
everything ran smoothly.  I would think that it probably wouldn't be too
much trouble to rig an MUA to look for CRLFs, so that it could coexist in
this environment if need be.

---Kris Kelley




Re: qmail-pop3d bug

2001-03-12 Thread Peter van Dijk

On Mon, Mar 12, 2001 at 08:55:47AM -0500, Michael T. Babcock wrote:
> Peter van Dijk wrote:
> 
> > > Not if it's calculated as the file is written to the Maildir.
> >
> > True, but that hurts writing performance.
> 
> Have you tested this?  It doesn't seem that qmail has ever been CPU bound --
> and if the CPU has spare cycles while writing, then counting lines and adding
> bytes for CR/LF won't hurt writing performance at all.

'hurts writing performance' (although you are right :) also means
'increases resource use', in whatever way.

Measuring in wall-clock time, the performance hit is probably negligible
indeed.

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-12 Thread Michael T. Babcock

Peter van Dijk wrote:

> > Not if it's calculated as the file is written to the Maildir.
>
> True, but that hurts writing performance.

Have you tested this?  It doesn't seem that qmail has ever been CPU bound --
and if the CPU has spare cycles while writing, then counting lines and adding
bytes for CR/LF won't hurt writing performance at all.

--
Michael T. Babcock (PGP: 0xBE6C1895)
http://www.fibrespeed.net/~mbabcock/






Re: qmail-pop3d bug

2001-03-12 Thread Vincent Schonau

On Mon, Mar 12, 2001 at 11:03:33AM +, Mark Delany wrote:

> To me that implies that a file in new cannot have an "info" section.

You're right. I didn't think the original point throuhgh.

Regards,


Vince.




Re: qmail-pop3d bug

2001-03-12 Thread Mark Delany

> > A more sensible strategy might be to introduce a new "info" flag (say
> > '3' equals POP wire size) on the filename, eg, a 10,000 byte email has
> > a name something like this:
> > 
> > Maildir/new/980195114.16740.geex:2,RS3,1
> 
> From reading http://cr.yp.to/proto/maildir.html>, it is not clear to me
> that this would be the proper format for such an 'info' extension. I would
> worry that MUAs and other software dealing with maildir (scripts!) would
> expect info semantics in the 2, series to be at the end of the filenames.

Indeed, and given that "info is morally equivalent to the Status field
used by mbox readers" I suspect that the my suggested syntax is beyond
the original intent.

> > Optimally the wire-size is calculated when the mail is written to
> > Maildir/tmp/ and then applied as an "info" flag when the file is moved
> > to Maildir/new/.
> 
> > A possible complication with this approach is that my reading of
> > Maildir infers that "info" can only be set when the file moves from
> > Maildir/new/ to Maildir/cur/.
>  
> No, this is not what that document says. It says
> 
>"When you move a file from new to cur, you have to change it's name [...]"

You stopped quoting before the most important part! Here's the
complete sentence.

"When you move a file from new to cur, you have to change its name
from uniq to uniq:info."

To me that implies that a file in new cannot have an "info" section.

> You *have* to change the name when the file move from new/ to cur/ , but
> there is no specification of other cases; in fact, lots of MUA's will change
> info when the file has been in cur/ for a while: mutt, for example, moves
> the file from new/ to cur/, adds :2, and only modifies that to be 2,S after
> the user has read the message (it is no longer 'N'ew).

Right, but that's my point. To specify another case.


Regards.




Re: qmail-pop3d bug

2001-03-12 Thread Vincent Schonau

On Sun, Mar 11, 2001 at 07:37:06PM +, Mark Delany wrote:

[...]

> A more sensible strategy might be to introduce a new "info" flag (say
> '3' equals POP wire size) on the filename, eg, a 10,000 byte email has
> a name something like this:
> 
> Maildir/new/980195114.16740.geex:2,RS3,1

>From reading http://cr.yp.to/proto/maildir.html>, it is not clear to me
that this would be the proper format for such an 'info' extension. I would
worry that MUAs and other software dealing with maildir (scripts!) would
expect info semantics in the 2, series to be at the end of the filenames.

> Optimally the wire-size is calculated when the mail is written to
> Maildir/tmp/ and then applied as an "info" flag when the file is moved
> to Maildir/new/.

> A possible complication with this approach is that my reading of
> Maildir infers that "info" can only be set when the file moves from
> Maildir/new/ to Maildir/cur/.
 
No, this is not what that document says. It says

   "When you move a file from new to cur, you have to change it's name [...]"

You *have* to change the name when the file move from new/ to cur/ , but
there is no specification of other cases; in fact, lots of MUA's will change
info when the file has been in cur/ for a while: mutt, for example, moves
the file from new/ to cur/, adds :2, and only modifies that to be 2,S after
the user has read the message (it is no longer 'N'ew).


Vince.








Re: qmail-pop3d bug

2001-03-11 Thread Mark Delany

On Sun, Mar 11, 2001 at 06:05:47PM -0500, John R. Levine wrote:
> >Putting the linecount in there makes more sense. Some MUAs might be happy
> >about that, and it still allows easy calculation of wiresize (add
> >number of lines to physical size). More info, less bytes :)
> >
> >> Optimally the wire-size is calculated when the mail is written to
> >> Maildir/tmp/ and then applied as an "info" flag when the file is moved
> >> to Maildir/new/.
> >
> >Yes. Mind the performance penalty tho.
> 
> Not a bad idea.

Agreed. Line count is probably a more useful number as the other
values can be derived. I retract my POPsize suggestion in favour of
line count.

> The performance penalty would be tiny, reading buffers
> that are about to be written out won't cause an extra page fault.

I also agree that it's an acceptable CP cost to scan a buffer just
prior to writing. CP is cheap and plentiful on most qmail systems.

> >> A possible complication with this approach is that my reading of
> >> Maildir infers that "info" can only be set when the file moves from
> >> Maildir/new/ to Maildir/cur/.
> >
> >That's what the spec says, indeed. A delivery process is not supposed
> >to know anything, so :info is not needed in new/.
> 
> Gee, we find that even Dan isn't infallible.  In retrospect, there's all
> sorts of hints that the delivery process could leave.

Yep. And it probably wouldn't be too hard to change the standard
though I note that, eg, mutt totally ignores any existing "info"
values. But I'm willing to bet that they will change code if they see
a good reason and they will be especially interested in a change that
lets them know line count without scanning.


Regards.



Re: qmail-pop3d bug

2001-03-11 Thread Peter van Dijk

On Sun, Mar 11, 2001 at 06:05:47PM -0500, John R. Levine wrote:
[snip]
> >Yes. Mind the performance penalty tho.
> 
> Not a bad idea.  The performance penalty would be tiny, reading buffers
> that are about to be written out won't cause an extra page fault.

True.

> >> A possible complication with this approach is that my reading of
> >> Maildir infers that "info" can only be set when the file moves from
> >> Maildir/new/ to Maildir/cur/.
> >
> >That's what the spec says, indeed. A delivery process is not supposed
> >to know anything, so :info is not needed in new/.
> 
> Gee, we find that even Dan isn't infallible.  In retrospect, there's all
> sorts of hints that the delivery process could leave.

The spec is not 100% specific everywhere. And indeed, hints can be put
in lots of places :)

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-11 Thread John R. Levine

>Putting the linecount in there makes more sense. Some MUAs might be happy
>about that, and it still allows easy calculation of wiresize (add
>number of lines to physical size). More info, less bytes :)
>
>> Optimally the wire-size is calculated when the mail is written to
>> Maildir/tmp/ and then applied as an "info" flag when the file is moved
>> to Maildir/new/.
>
>Yes. Mind the performance penalty tho.

Not a bad idea.  The performance penalty would be tiny, reading buffers
that are about to be written out won't cause an extra page fault.

>> A possible complication with this approach is that my reading of
>> Maildir infers that "info" can only be set when the file moves from
>> Maildir/new/ to Maildir/cur/.
>
>That's what the spec says, indeed. A delivery process is not supposed
>to know anything, so :info is not needed in new/.

Gee, we find that even Dan isn't infallible.  In retrospect, there's all
sorts of hints that the delivery process could leave.

-- 
John R. Levine, IECC, POB 727, Trumansburg NY 14886 +1 607 387 6869
[EMAIL PROTECTED], Village Trustee and Sewer Commissioner, http://iecc.com/johnl, 
Member, Provisional board, Coalition Against Unsolicited Commercial E-mail



Re: qmail-pop3d bug

2001-03-11 Thread Peter van Dijk

On Sun, Mar 11, 2001 at 07:37:06PM +, Mark Delany wrote:
[snip]
> > I use courier-imap, and its POP daemon does get the sizes right,
> > presumably by reading the files and adding the number of \n characters.
> 
> A more sensible strategy might be to introduce a new "info" flag (say
> '3' equals POP wire size) on the filename, eg, a 10,000 byte email has
> a name something like this:
> 
> Maildir/new/980195114.16740.geex:2,RS3,1

Putting the linecount in there makes more sense. Some MUAs might be happy
about that, and it still allows easy calculation of wiresize (add
number of lines to physical size). More info, less bytes :)

> Optimally the wire-size is calculated when the mail is written to
> Maildir/tmp/ and then applied as an "info" flag when the file is moved
> to Maildir/new/.

Yes. Mind the performance penalty tho.

> A possible complication with this approach is that my reading of
> Maildir infers that "info" can only be set when the file moves from
> Maildir/new/ to Maildir/cur/.

That's what the spec says, indeed. A delivery process is not supposed
to know anything, so :info is not needed in new/.

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-11 Thread Peter van Dijk

On Sun, Mar 11, 2001 at 07:51:47PM +, Mark Delany wrote:
> > Yes. This behaviour is known. Fixing it, however, involves a *huge*
> > performance downgrade of qmail-pop3d.
> 
> Not if it's calculated as the file is written to the Maildir.

True, but that hurts writing performance.

> > 'Usually, during the AUTHORIZATION state of the POP3 session, the POP3
> > server can calculate the size of each message in octets when it opens
> > the maildrop. . simply counts each occurance of this character in
> > a message as two octets.'
> 
> Typical of those RFCs authors that, consciously or otherwise, used a
> single implementation to guide much of their thinking on protocol
> design. POP3 is not the only standard that suffers as a consequence -
> consider SMTP and DNS?

The implementors had to make a choice. Line format is in fact the
obvious choice for message size. Using server-implementation size is
however not a big deviation.

> We shouldn't have to live with short-sightedness forever.

That's why we have QMTP :)

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-11 Thread Mark Delany

> Yes. This behaviour is known. Fixing it, however, involves a *huge*
> performance downgrade of qmail-pop3d.

Not if it's calculated as the file is written to the Maildir.

> 'Usually, during the AUTHORIZATION state of the POP3 session, the POP3
> server can calculate the size of each message in octets when it opens
> the maildrop. . simply counts each occurance of this character in
> a message as two octets.'

Typical of those RFCs authors that, consciously or otherwise, used a
single implementation to guide much of their thinking on protocol
design. POP3 is not the only standard that suffers as a consequence -
consider SMTP and DNS?

We shouldn't have to live with short-sightedness forever.


Regards.



Re: qmail-pop3d bug

2001-03-11 Thread Mark Delany

On Sat, Mar 10, 2001 at 01:12:13PM -0500, John R Levine wrote:
> The usual mailbox vs. maildir war has flared up on inet-access, and points
> out a bug in qmail-pop3d.  When you do a LIST command, it gives you the
> size of each message.  Pop3d just reports the file sizes, while it's clear
> from the RFC that it's supposed to report the wire size of each message,
> i.e., the size using cr/lf as a line terminator, so the sizes it reports
> are too small.
> 
> I gather nobody's ever reported this as a bug, and I expect that the only
> thing that uses the size is the "don't download bigger than size X" option
> for which it's close enough, but it's still wrong.

If I mis-remember correctly, qpopper may have a similar problem in
that the stated size does not necessarily match the size sent down the
wire. How so?  Because qpopper adds X-UIDL and Status: headers to the
out-going message (perhaps it includes this in the size calc but I
haven't looked at the code in such a long time, or perhaps it only
adds those headers when the mail is re-written).

> I use courier-imap, and its POP daemon does get the sizes right,
> presumably by reading the files and adding the number of \n characters.

A more sensible strategy might be to introduce a new "info" flag (say
'3' equals POP wire size) on the filename, eg, a 10,000 byte email has
a name something like this:

Maildir/new/980195114.16740.geex:2,RS3,1

Optimally the wire-size is calculated when the mail is written to
Maildir/tmp/ and then applied as an "info" flag when the file is moved
to Maildir/new/.

A possible complication with this approach is that my reading of
Maildir infers that "info" can only be set when the file moves from
Maildir/new/ to Maildir/cur/.


Regards.



Re: qmail-pop3d bug

2001-03-11 Thread Peter van Dijk

On Sat, Mar 10, 2001 at 05:47:29PM -0500, Scott Gifford wrote:
> Peter van Dijk <[EMAIL PROTECTED]> writes:
> 
> > On Sat, Mar 10, 2001 at 01:12:13PM -0500, John R Levine wrote:
> > > The usual mailbox vs. maildir war has flared up on inet-access, and points
> > > out a bug in qmail-pop3d.  When you do a LIST command, it gives you the
> > > size of each message.  Pop3d just reports the file sizes, while it's clear
> > > from the RFC that it's supposed to report the wire size of each message,
> > > i.e., the size using cr/lf as a line terminator, so the sizes it reports
> > > are too small.
> > 
> [ ... ]
> > Yes. This behaviour is known. Fixing it, however, involves a *huge*
> > performance downgrade of qmail-pop3d.
> 
> A solution I have considered is storing the messages in wire format.
> Especially for POP/IMAP-only clients, seems like it could be a
> medium-sized performance win, since the line-conversion is done only
> once, regardless of how many times the message is downloaded.  If the
> message were kept in wire-format from SMTP through delivery, no line
> conversion would be required at either end, and a larger performance
> gain would be possible.
> 
> Has anybody tried this, or anything like it?

Have not tried it, but it sounds like it would definitely work.

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-10 Thread Scott Gifford

Peter van Dijk <[EMAIL PROTECTED]> writes:

> On Sat, Mar 10, 2001 at 01:12:13PM -0500, John R Levine wrote:
> > The usual mailbox vs. maildir war has flared up on inet-access, and points
> > out a bug in qmail-pop3d.  When you do a LIST command, it gives you the
> > size of each message.  Pop3d just reports the file sizes, while it's clear
> > from the RFC that it's supposed to report the wire size of each message,
> > i.e., the size using cr/lf as a line terminator, so the sizes it reports
> > are too small.
> 
[ ... ]
> Yes. This behaviour is known. Fixing it, however, involves a *huge*
> performance downgrade of qmail-pop3d.

A solution I have considered is storing the messages in wire format.
Especially for POP/IMAP-only clients, seems like it could be a
medium-sized performance win, since the line-conversion is done only
once, regardless of how many times the message is downloaded.  If the
message were kept in wire-format from SMTP through delivery, no line
conversion would be required at either end, and a larger performance
gain would be possible.

Has anybody tried this, or anything like it?

-ScottG.



Re: qmail-pop3d bug

2001-03-10 Thread Peter van Dijk

On Sat, Mar 10, 2001 at 09:21:46PM +0100, Peter van Dijk wrote:
[snip]
> 'Usually, during the AUTHORIZATION state of the POP3 session, the POP3
> server can calculate the size of each message in octets when it opens
> the maildrop. . simply counts each occurance of this character in
> a message as two octets.'

Note that the lack of counting those extra line-terminators means some
progress bars will proceed slightly past 100% when downloading
messages from qmail-pop3d.

Funny, but not annoying.

Greetz, Peter.



Re: qmail-pop3d bug

2001-03-10 Thread Peter van Dijk

On Sat, Mar 10, 2001 at 01:12:13PM -0500, John R Levine wrote:
> The usual mailbox vs. maildir war has flared up on inet-access, and points
> out a bug in qmail-pop3d.  When you do a LIST command, it gives you the
> size of each message.  Pop3d just reports the file sizes, while it's clear
> from the RFC that it's supposed to report the wire size of each message,
> i.e., the size using cr/lf as a line terminator, so the sizes it reports
> are too small.

Yes, this is known.

> I gather nobody's ever reported this as a bug, and I expect that the only
> thing that uses the size is the "don't download bigger than size X" option
> for which it's close enough, but it's still wrong.
> 
> I use courier-imap, and its POP daemon does get the sizes right,
> presumably by reading the files and adding the number of \n characters.

Yes. This behaviour is known. Fixing it, however, involves a *huge*
performance downgrade of qmail-pop3d.

I have studied the wording in RFC1939 heavily (section 11 "Message
Format" specifically) and I think it is unclear. 

'Usually, during the AUTHORIZATION state of the POP3 session, the POP3
server can calculate the size of each message in octets when it opens
the maildrop. . simply counts each occurance of this character in
a message as two octets.'

The concept is obvious. The design decision made in qmail-pop3d
however, is understandable, and I (as one of a few users who are aware
of this 'bug') can perfectly live with it.

The only other maildir MDA+pop3 implementation that I have played with
is Cistron's. Their Maildir MDA counts the number of lines (it's
passing the message through anyway) and adds a Lines: header. The
pop3d opens each message (something qmail-pop3d doesn't have to do
right now) and reads the headers to find the Lines: line. It then uses
this to calculate the LF->CRLF overhead. This is not as expensive as
counting the number of lines from the pop3d itself, but it does take
away a lot of the performance benefit of Maildir.

Greetz, Peter.



Re: qmail-pop3d problem

2001-03-02 Thread Saso Dundev

I think that you are right. tcpserver is looking for the 
dns name of the remote host. 
Please find attached the tcpserver man page, to see how to 
disable this lookup( only during testing). You should 
install and use a dns server.

Cheers
Sasun



- Îðèãèíàëíî ïèñìî --
Îò: Duncan MacMillan [EMAIL PROTECTED] 
Îòíîñíî: qmail-pop3d problem
Äî : [EMAIL PROTECTED]
Èçïðàòåíî íà: 02.03.2001 09:31:16
--
Hi All,

I have inherited a box that is running Slackware with 
QMail. Qmail is setup
to use tcpserver and rblsmtpd. The box is masquerading an 
internal address
as well.

If I connect to the internal interface (192.168.1) (1st 
ethernet card) via
telnet on port 110 I get an immediate response (OK). If I 
connect to the
external interface (2nd ethernet card) I get a long delay 
(40 sec +) before
I get the OK prompt. If I connect from a machine that is 
one hop away on the
internal network to the 192.168.1 ethernet card I get the 
40 sec + delay).
Once the connection happens the system is very quick. The 
problem I am
having is that some mail clients are timing out when 
connection to the pop
service.

Due to the fact I inherited the box recently I am not 
aware of patch levels
but the versions installed on the box are as follows.

Qmail 1.03
rblsmtpd 0.70
tcpserver 0.84
daemontools 0.70

I think it may be some sort of network lookup that is 
being done but I don't
really know enough about the box to know where to look.

The box is not under resourced at all as it has more 
memory that it needs
and the processors never go over 10%.

Any ideas or pointers at reading material would be 
appreciated.

Cheers
Duncan


--
 
 




Òâîÿòà èíôîðìàöèÿ, òâîèòå èíòåðåñè, ÒÂÎß Ãþâå÷... http://my.gbg.bg





D. J. Bernstein TCP/IP ucspi-tcp 
The tcpserver programtcpserver accepts incoming TCP 
connections. 
Interface tcpserver opts host port prog
opts is a series of getopt-style options. 
host is one argument. port is one argument. 
prog consists of one or more arguments. 
tcpserver waits for connections from TCP clients. For each 
connection, it runs prog, with descriptor 0 reading from the 
network and descriptor 1 writing to the network. It also sets up several environment variables. 
The server's address is given by host and 
port. port may be a name from 
/etc/services or a number; if it is 0, tcpserver will 
choose a free TCP port. host may be 0, allowing 
connections to any local IP address; or a dotted-decimal IP address, allowing 
connections only to that address; or a host name, allowing connections to the 
first IP address for that host. Host names are fed through qualification using 
dns_ip4_qualify. 
tcpserver exits when it receives SIGTERM. 
OptionsGeneral options: 

  -q: Quiet. Do not print error messages. 
  -Q: (Default.) Print error messages. 
  -v: Verbose. Print error messages and status messages. 
Connection options: 

  -c n: Do not handle more than n 
  simultaneous connections. If there are n simultaneous copies 
  of prog running, defer acceptance of a new connection until 
  one copy finishes. n must be a positive integer. Default: 40. 
  -x cdb: Follow the rules compiled into cdb 
  by tcprules. 
  These rules may specify setting environment variables or rejecting connections 
  from bad sources. You can rerun tcprules to change the rules while 
  tcpserver is running. 
  -X: With -x cdb, allow connections even if 
  cdb does not exist. Normally tcpserver will drop the 
  connection if cdb does not exist. 
  -B banner: Write banner to the network 
  immediately after each connection is made. tcpserver writes 
  banner before looking up $TCPREMOTEHOST, before 
  looking up $TCPREMOTEINFO, and before checking cdb. 
  This feature can be used to reduce latency in protocols where the client waits 
  for a greeting from the server. 
  -g gid: Switch group ID to gid after 
  preparing to receive connections. gid must be a positive 
  integer. 
  -u uid: Switch user ID to uid after 
  preparing to receive connections. uid must be a positive 
  integer. 
  -U: Same as -g $GID -u $UID. Typically $GID and 
  $UID are set by envuidgid. 
  -1: After preparing to receive connections, print the local port 
  number to standard output. 
  -b n: Allow a backlog of approximately n 
  TCP SYNs. On some systems, n is silently limited to 5. On 
  systems supporting SYN cookies, the backlog is irrelevant. 
  -o: Leave IP options alone. If the client is sending packets 
  along an IP source route, send packets back along the same route. 
  -O: (Default.) Kill IP options. A client can still use source 
  routing to connect and to send data, but packets will be sent back along the 
  default route. 
  -d: Delay sending data for a fraction of a second whenever the 
  remote host is responding slowly. This is currently the default, b

Re: qmail-pop3d problem

2001-03-02 Thread Charles Cazabon

Duncan MacMillan <[EMAIL PROTECTED]> wrote:
> 
> If I connect to the internal interface (192.168.1) (1st ethernet card) via
> telnet on port 110 I get an immediate response (OK). If I connect to the
> external interface (2nd ethernet card) I get a long delay (40 sec +) before
> I get the OK prompt.

This is just about the most frequently asked question of all.  Read Dan's
FAQ, plus the documentation at www.qmail.org.  Hint:  pay special attention
to the documentation for ucspi-tcp.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d: tcpserver: unable to bind: address in use problem

2001-02-22 Thread Greg White

On Thu, Feb 22, 2001 at 12:28:24PM -0800, [EMAIL PROTECTED] wrote:
> Charles,
> 
>   Thanks for the reply. Well, tcpserver is called in the run file for
> qmail-smtpd and qmail-pop3d. When I make changes to the qmail-pop3d run
> file, the errors do change in syslog - like commenting out the line for
> splogger.
> 
>   OK - I just figured it out!! Seems my rc.qmail script doesn't
> stop/restart qmail-pop3d properly. There were two copies of qmail-pop3d
> running. As soon as I killed the old, incorrect pop3d, the errors went
> away.
> 

Make sure that you're 'exec'ing tcpserver in the run file. Dave Sill,
this might want updating in 'Life with qmail' -- this seems to burn a
lot of people

Bad:

tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup FQDN \
/bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1 \
/var/qmail/bin/splogger pop3d


Good:

exec tcpserver -v -R 0 pop3 /var/qmail/bin/qmail-popup FQDN \
/bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1 \
/var/qmail/bin/splogger pop3d

and then maybe instructions for supervising it properly? If it sounds
like I'm volunteering to write the new docs, I am more than willing... 


-- 
Greg White
Those who make peaceful revolution impossible will make violent
revolution inevitable.
-- John F. Kennedy



RE: qmail-pop3d: tcpserver: unable to bind: address in use problem

2001-02-22 Thread schoon

Charles,

Thanks for the reply. Well, tcpserver is called in the run file for
qmail-smtpd and qmail-pop3d. When I make changes to the qmail-pop3d run
file, the errors do change in syslog - like commenting out the line for
splogger.

OK - I just figured it out!! Seems my rc.qmail script doesn't
stop/restart qmail-pop3d properly. There were two copies of qmail-pop3d
running. As soon as I killed the old, incorrect pop3d, the errors went
away.

>|> Subject tells all.
>
>|Don't rely on it -- please repeat the problem in the body of the message in
>|future.

Sorry, I've been only doing this on the net for about 15 years! I'll
reinclude this information in the bodies of future emails.

Thanks again for the tip!

.mark


>--
>From:  Charles Cazabon[SMTP:[EMAIL PROTECTED]]
>Sent:  Thursday, February 22, 2001 12:00 PM
>To:    [EMAIL PROTECTED]
>Subject:   Re: qmail-pop3d: tcpserver: unable to bind: address in use problem
>
>[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> 
>> Subject tells all.
>
>Don't rely on it -- please repeat the problem in the body of the message in
>future.
>
>> I installed qmail-pop3d using LWQ, and it's working just fine. I've
>>searched
>> the archives hi and lo and have checked inetd.conf, commented out pop3 and
>> HUPed it. Nmap reports nothing on port 110.
>
>Possibly its another instance of tcpserver reporting the error, like the
>one starting qmail itself?
>
>Charles
>-- 
>---
>Charles Cazabon<[EMAIL PROTECTED]>
>GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
>Any opinions expressed are just that -- my opinions.
>---
>



Re: qmail-pop3d: tcpserver: unable to bind: address in use problem

2001-02-22 Thread Charles Cazabon

[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> 
> Subject tells all.

Don't rely on it -- please repeat the problem in the body of the message in
future.

> I installed qmail-pop3d using LWQ, and it's working just fine. I've searched
> the archives hi and lo and have checked inetd.conf, commented out pop3 and
> HUPed it. Nmap reports nothing on port 110.

Possibly its another instance of tcpserver reporting the error, like the
one starting qmail itself?

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



Re: qmail-pop3d and daemontools

2001-02-09 Thread Kris Kelley

Marcus Korte wrote:
> Has anybody included the startup of the pop3d in the qmail startup-skript
> (the one with start, stop, stat...) of LWQ?

I created a new directory under /var/qmail/supervise, called qmail-pop3d.
This directory, and the scripts within, are very similar to
/var/qmail/supervise/qmail-smtpd.  The qmail-pop3d/run script invokes
tcpserver using Dave Sill's pop3d script in LWQ.  The qmail-pop3d/log/run
script invokes multilog which stores its log files in /var/log/qmail/pop3d.
Don't forget to set the sticky bit on /var/qmail/supervise/qmail-pop3d, and
also don't forget to "exec" commands in your scripts (see my last message).

Once I set up these directories, I was finished.  The standard LWQ start-up
script will start and stop qmail-pop3d at the same time as qmail-smtpd and
qmail proper, thanks to the wonder that is svscan.

---Kris Kelley




Re: qmail-pop3d and fetchmail

2001-01-25 Thread Peter van Dijk

On Thu, Jan 25, 2001 at 06:13:06PM +0100, Markus Stumpf wrote:
> On Thu, Jan 25, 2001 at 05:42:56PM +0100, Peter van Dijk wrote:
> > qmail-pop3d sorts messages based on
> > size, so supporting LAST would yield wrong results anyway.
> 
> Hmmm ... are you sure?
> From looking at the code I'd say it's sorted by modification time.

You are right.

I am confused now. I am quite sure there is some Maildir application that
sorts by size.

Must be lack of sleep.

Greetz, Peter.



Re: qmail-pop3d and fetchmail

2001-01-25 Thread Markus Stumpf

On Thu, Jan 25, 2001 at 05:42:56PM +0100, Peter van Dijk wrote:
> qmail-pop3d sorts messages based on
> size, so supporting LAST would yield wrong results anyway.

Hmmm ... are you sure?
>From looking at the code I'd say it's sorted by modification time.

\Maex

-- 
SpaceNet AG| Joseph-Dollinger-Bogen 14 | Fon: +49 (89) 32356-0
Research & Development |   D-80807 Muenchen| Fax: +49 (89) 32356-299
Stress is when you wake up screaming and you realize you haven't fallen
asleep yet.



Re: qmail-pop3d and fetchmail

2001-01-25 Thread Peter van Dijk

On Thu, Jan 25, 2001 at 10:26:33AM -0600, Kris Kelley wrote:
[snip]
> Probably because that other pop3 server allows for the "LAST" POP3 command.
> "LAST" returns the number of the last message downloaded.  Ideally this
> should be enough to determine which messages are new, but only after some
> assumptions that aren't always correct.  The most recent POP3 RFC deprecated
> the "LAST" command, and not all POP3 servers support it.

LAST can only be reliable on a mailserver where message-order is
preserved from session to session. qmail-pop3d sorts messages based on
size, so supporting LAST would yield wrong results anyway.

Greetz, Peter.



Re: qmail-pop3d and fetchmail

2001-01-25 Thread Kris Kelley

This question probably belongs in a fetchmail forum.  Unfortunately, my
recent attempts to subscribe to the fetchmail mailing list have ended in
failure, so you may not have any luck finding a fetchmail forum.

> I was trying to use fetchmail to retrieve messages from a pop3 account
> on a server running qmail-pop3d using tcpserver and vchkpw. It retrieved
> all the messages although I did not specify "--all" flag to fetchmail. I
> tried several time and every time fetchmail retrieves all the messages
> again and again.

Try forcing fetchmail to use message UIDLs, that is, use the "--uidl" flag.
This will enable fetchmail to keep track of what messages it has and hasn't
downloaded using a local list of message IDs.

> I tried fetchmail with another pop3 account on a server running
> sendmail/qpoper and it worked fine, only new messages was retrieved.
> Anybody knows why that happens ?

Probably because that other pop3 server allows for the "LAST" POP3 command.
"LAST" returns the number of the last message downloaded.  Ideally this
should be enough to determine which messages are new, but only after some
assumptions that aren't always correct.  The most recent POP3 RFC deprecated
the "LAST" command, and not all POP3 servers support it.

---Kris Kelley




Re: qmail-pop3d broken LAST command

2001-01-25 Thread Charles Cazabon

Eng. Ramy M. Hassan <[EMAIL PROTECTED]> wrote:
> I noticed that qmail-pop3d always responds with:  < +OK 0 to the pop3
> command LAST.

LAST is a broken design; it requires the server to maintain state information
which really should be stored on the client.

> This behavior makes pop3 clients like fetchmail unable to know which
> messages are new and thus download all the messages.

No.  Your POP3 retriever should just use the UIDL command to get a unique
signature for the message, and keep a list of signatures which it has already
seen.

My own POP3 retriever, getmail, does this.  It works quite happily with
qmail-pop3d and every other POP3 daemon I've tried.  There are a few ancient
POP3 servers out there which don't support UIDL, though.

Charles
-- 
---
Charles Cazabon<[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
---



  1   2   3   >