RE: [vchkpw] Help with smtp after pop?

2003-01-07 Thread Anthony Aveley
No open relay, but users with pop accounts can relay.

I have used Vpopmail 5.3.x with qmail-pop3d and qmail 1.03.

I have done the configuration as per " The qmail handbook" and all users
on the subnet are able to relay as they are included in tcp.smtp .

With searching the knowledge bases and "Life with Qmail" I still have no
answer to this problem.

MS Outlook responds with "server interrupted connection"

Any help would be appreciated

 

-Original Message-
From: David Phillips [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, January 07, 2003 9:33 AM
To: [EMAIL PROTECTED]
Subject: Re: [vchkpw] Help with smtp after pop?

Anthony Aveley writes:
> Users outside of my network are able to relay but not able to access
> their their pop3 accounts?

So you're an open relay?

Please consider writing a message that contains the information we need
to
help you:

http://www.qcc.ca/~charlesc/writings/12-steps-to-qmail-list-bliss.html

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/








[vchkpw] How to log vpopmail outside mail.log

2003-01-07 Thread CoyoteTM



I want to log vpopmail entries into a different 
(vpopmail.log) file in the /var/log dir.
I use Debian. I know this is not really vpopmail 
question, but I hope someone can help me.
 
CoyoteTM


[vchkpw] Looping run file

2003-01-07 Thread Tobias Åman
Hi!

I got a problem with a looping qmail run file on a linux machine it´s
changing pid all the time så how do i kill it for real ?

/Tobias





[vchkpw] run scripts not working that good

2003-01-07 Thread Tobias Åman
Can somone help me to see whats wrong in my run scripts something is not
working that well
although it´s working

#!/bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
LOCAL=`head -1 /var/qmail/control/me`
if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" -o -z "$LOCAL" ];
then
echo QMAILDUID, NOFILESGID, MAXSMTPD, or LOCAL is unset in
echo /var/qmail/supervise/qmail-smtpd/run
exit 1
fi
exec env - PATH="/var/qmail/bin:/usr/local/bin" tcpserver -H -R -x
/etc/tcp.smtp.cdb -c20 -u1004 -g1201 0 smtp /var/qmail/bin/qmail-smtpd 2>&1
> /dev/null &


#!/bin/sh
exec env - PATH="/var/qmail/bin:/usr/local/bin" tcpserver -H -R 0 110
/var/qmail/bin/qmail-popup mail.server.nu /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir &

/Tobias






Re: [vchkpw] Help with smtp after pop?

2003-01-07 Thread David Phillips
Anthony Aveley writes:
> No open relay, but users with pop accounts can relay.

I think you mean "users with POP3 accounts should be able to relay after
authenticating, but cannot".

> I have used Vpopmail 5.3.x with qmail-pop3d and qmail 1.03.
>
> I have done the configuration as per " The qmail handbook" and all
> users on the subnet are able to relay as they are included in
> tcp.smtp .

Are you using the tcp.smtp.cdb from the vpopmail/etc directory?  Your
qmail-smtpd run script should have a parameter similar to the following:

-x/home/vpopmail/etc/tcp.smtp.cdb

You will need to restart the qmail-smtpd service after making this change.
If this does not fix the problem, please provide the following information:

- The complete, un-edited output of qmail-showctl.
- The complete, un-edited run scripts for qmail-smtpd and qmail-pop3d.
- All details about how and where you installed vpopmail.

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/





Re: [vchkpw] Looping run file

2003-01-07 Thread David Phillips
Tobias Åman writes:
> I got a problem with a looping qmail run file on a linux machine it´s
> changing pid all the time så how do i kill it for real ?

svc -d /service/qmail-send (or whatever you named it)

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/





Re: [vchkpw] run scripts not working that good

2003-01-07 Thread David Phillips
Tobias Åman writes:
> Can somone help me to see whats wrong in my run scripts something is
> not working that well
> although it´s working

Obviously, they are not working that well.

We can't read your mind.  Tell us exactly what you mean or we cannot help
you.

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/





[vchkpw] Killing qmail processes

2003-01-07 Thread Tobias Åman
How do i possibly kill these processes

 2320 ?Z  0:00 [qmail-send ]
15840 ?Z  0:00 [run ]

When i kill them thay change pid 

/Tobias




Re: [vchkpw] run scripts not working that good

2003-01-07 Thread David Phillips
Tobias Åman writes:
> What happends is that these run defunct messages appears in the ps
> -ax and also messages in syslog with the text tcpauth looping.
>
> But they work anyway but i can´t stop anything i try to kill
> processes but they don´t stop

You have & at the end of each script.  This is causing them to be
backgrounded by the shell.  supervise thus sees that the process has exited
and restarts it.  Remove the & from the end of each script.

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/





Re: [vchkpw] Roaming users

2003-01-07 Thread Kiril Todorov
On Mon, Jan 06, 2003 at 08:53:24PM +0200, Anthony Aveley wrote:
> I am using FreeBSD 4.7 and have configured vpopmail with
> enable-roaming=y and still roaming (Alternate ISP  Clients) cannot
> authenticate.
probably your tcpserver is pointed at the wrong tcp.smtp, check what you have after 
the -x switch in the run file, most probably it's /etc/tcp.smtp or 
/usr/local/etc/tcp.smtp, while vpopmail's roaming users change ~vpopmail/tcp.smtp, 
either symlink one of the files to the others, or change the -x switch to point to the 
correct one.

Of course, if you had given more info I would've been more specific.
-- 

Kiril Todorov   < -+- > +359 2 9712013
Bulgaria Online < -+- > http://home.online.bg

/* waiting... dreaming... wishing... */




Re: [vchkpw] run scripts not working that good

2003-01-07 Thread David Phillips
Tobias Åman writes:
> The thing is that if i don´t run the & at the end how should i get
> them in the background ?

supervise puts the scripts into the background.  If you aren't running qmail
under daemontools, then reinstall from scratch by following Life with qmail:

http://www.lifewithqmail.org/

--
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/





Re: [vchkpw] Killing qmail processes

2003-01-07 Thread Tobias Åman
Never mind i solved it!

/Tobias
- Original Message -
From: "Tobias Åman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 07, 2003 10:33 AM
Subject: [vchkpw] Killing qmail processes


> How do i possibly kill these processes
>
>  2320 ?Z  0:00 [qmail-send ]
> 15840 ?Z  0:00 [run ]
>
> When i kill them thay change pid
>
> /Tobias





[vchkpw] Filtering with maildrop

2003-01-07 Thread Robin Bowes
Hi,

I'm currently using qmail-1.03 with vpopmail-5.3.9, courier-imap-1.6.0,
and squirrelmail-1.3.3 / Outlook 2000. I have downloaded maildrop-1.5.1,
built the rpm and installed it.

Can anyone with a working filtering setup using maildrop point me at any
resources that might help me get simple filtering setup? All I'm really
interested in at this stage is to automatically filter messages from
mailing lists into folders. I currently do this using squirrelmail's mail
filtering but this is getting pretty slow as it is client-side.

Cheers,

R.
-- 
Robin Bowes | http://robinbowes.com




[vchkpw] autocreate dir errno 13

2003-01-07 Thread Tobias Åman
Im´afraid i have encountered a problem that i can+t solve so i need a little
bit of help.

I have done som changes in my qmail installation so it now more looks at i
sholud and it seems to work better now
although when i pop in to get som mail i get a error that says

vpopmail[29369]: vchkpw: autocreate dir errno 13
/home/vpopmail/domains/mavin.ath.cx/mavin [EMAIL PROTECTED]:

in the maillog and this error do i get in the mail program

There was a problem logging onto your mail server. Your Password was
rejected. Account: 'mail.server.nu', Server: 'mail.server.nu', Protocol:
POP3, Server Response: '-ERR authorization failed', Port: 110, Secure(SSL):
No, Server Error: 0x800CCC90, Error Number: 0x800CCC92

i searched the web and i found a link with a smimilar problem but i don´t
know how to solve it

here´s the link
http://www.mandrakesecure.net/archives/qmail/2002-02/msg00136.html

i have done exactly as it says in the life with qmail

/Tobias





RE: [vchkpw] problems with rbls?

2003-01-07 Thread Tom Walsh
Just so all are aware, SPEWS DNS blew up for some unkown reason.

I believe this effected relays.osirusoft.com and all dsbl.org lists. Neither
of these resolve and the IP addresses do not respond to direct DNS queries.
So something is certainly afoot.

Details are still sketchy, but judging from my MRTG graphs, my SMTP
concurrency started to tick above the daily moving average (~70-80
conccurrent smtp connections up to 512) at approximately 10:00am CST
(GMT -6).

Tom Walsh
Network Administrator
http://www.ala.net/



::-Original Message-
::From: Brendan McAlpine [mailto:[EMAIL PROTECTED]]
::Sent: Monday, January 06, 2003 5:43 PM
::To: [EMAIL PROTECTED]
::Subject: [vchkpw] problems with rbls?
::
::
::Does anyone know if any of the following rbls are slow or
::non-functional?
::
::Starting at about 2PM EST, my smtp concurrency shot through the roof,
::which is usually a sign that one of the rbls i am using isn't working
::properly.  anyone know of any problems with the following rbls:
::
::korea.services.net
::relays.ordb.org
::relays.osirusoft.com
::sbl.spamhaus.org
::spews.relays.osirusoft.com
::
::If nothing is wrong, any reason why my smtp concurrency would shoot up
::to its maximum?  I am watching the smtp log roll by and it doesn't seem
::to be an attack from any one address..
::
::TIA
::
::Brendan
::
::
::






[vchkpw] uid and gid in assign

2003-01-07 Thread Tobias Åman
What uid and gid should be assigned in /var/qmail/user/assign

mine looked like this

+mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx:-::


now i looks like this

+mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx:-::

This happend after i re installed som stuff lika vpopmail and reconfigured
qmail
what is the right one ? how does yours look like ?

/Tobias






[vchkpw] Change password

2003-01-07 Thread zafar rizvi
hi ppl
 Any body have some idea about changepassword with virtual domain user
(vpopmail user).

Bcz i must need a change password script or idea

thanks
zafar





RE: [vchkpw] Change password

2003-01-07 Thread Neo Wee Teck
Try the qmailadmin

http://www.inter7.com/qmailadmin 

wonderful package

-Original Message-
From: zafar rizvi [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 07, 2003 11:15 PM
To: [EMAIL PROTECTED]
Subject: [vchkpw] Change password


hi ppl
 Any body have some idea about changepassword with virtual domain user
(vpopmail user).

Bcz i must need a change password script or idea

thanks
zafar

 




[vchkpw] Qmailadmin Build Problems

2003-01-07 Thread buffalo
On Tue, 7 Jan 2003, Neo Wee Teck wrote:

> Try the qmailadmin
> 
> http://www.inter7.com/qmailadmin 

Greetings,

I've tried to build this with the latest vpopmail, but when I run 
configure, I get the error:



configure: error: No vpopmail etc/lib_deps file. Upgrade to vpopmail-4.9.8 
or above



I'm running vpopmail 5.2.1 and configure it right; there is no such file 
in ~vpopmail/etc.

Any pointers/suggestions would be greatly appreciated...

Thanks,

--Duncan





Re: [vchkpw] How to log vpopmail outside mail.log

2003-01-07 Thread Peter Palmreuther
Hi CoyoteTM,

On Tue, 7 Jan 2003 09:37:17 +0100
"CoyoteTM" <[EMAIL PROTECTED]> wrote:

> I want to log vpopmail entries into a different (vpopmail.log) file in
> the /var/log dir. I use Debian. I know this is not really vpopmail
> question, but I hope someone can help me.

The only way is using "syslog-ng".

Classical syslog can _not_ distinguish between _applications_ logging,
but only between "facilities" (and "priorities") therefore everyting
vpopmail logs with facility "mail" is sent to whatever syslog.conf
defines for "mail.*". In case of priority settings in syslog.conf this
plays it's role too, but any other programs log output with the same
facility and priority is stored into the same log file.

With syslog-ng you are able to store to different log files by making
use of it's text filter capabilities, e.g. by sending lines containing
'vchkpw' to a different file than other messages with facility 'mail'.

HTH 
-- 
Peter





Re: [vchkpw] uid and gid in assign

2003-01-07 Thread Peter Palmreuther
Hi Tobias,

On Tue, 7 Jan 2003 16:00:41 +0100
Tobias Åman <[EMAIL PROTECTED]> wrote:

> What uid and gid should be assigned in /var/qmail/user/assign
> 
> mine looked like this
> 
> +mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx
> :-::
> 
> 
> now i looks like this
> 
> +mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx
> :-::
> 
> This happend after i re installed som stuff lika vpopmail and
> reconfigured qmail
> what is the right one ? how does yours look like ?

I'm really sorry, but I don't see any difference.

Nevertheless: the UID and GID given in there should be the one vpopmail
runs the domains as. In general this are the UID and GID of vpopmail,
unless you gave a different system-user when creating the domain with
'vadddomain'.

A hint could be the output of

ls -lisadn ~vpopmail/domains/mavin.ath.cx

The UID and GID given there should be the one in assign-file.
-- 
Peter




[vchkpw] Vpopmail Installation on Redhat 8.0

2003-01-07 Thread Chris Robinson




Hi
 
I have just downloaded vpopmail and tried to 
compile it.  Pentium 1GHZ SCSI server 2 x 9 GByte drives.  qmail and 
ezmlm are already installed and working.  It gives the following 
errors:
 
make  all-recursivemake[1]: Entering 
directory `/home/ftp/qmail/vpopmail-5.2.1'Making all in cdbmake[2]: 
Entering directory `/home/ftp/qmail/vpopmail-5.2.1/cdb'( cat warn-auto.sh; 
\echo CC=\'`head -1 conf-cc`\'; \echo LD=\'`head -1 conf-ld`\'; \cat 
find-systype.sh; \) | sh > systype/bin/sh: systype: No such file or 
directorymake[2]: *** [systype] Error 1make[2]: Leaving directory 
`/home/ftp/qmail/vpopmail-5.2.1/cdb'make[1]: *** [all-recursive] Error 
1make[1]: Leaving directory `/home/ftp/qmail/vpopmail-5.2.1'make: *** 
[all-recursive-am] Error 2
Can anyone help?
 
Chris and Liz Robinson34 Kingston 
RoadRomfordEssex   RM1 3NBTel: 01708 757516   
Fax: 020 7681 2941Email: [EMAIL PROTECTED]   [EMAIL PROTECTED]
 
BEGIN:VCARD
VERSION:2.1
N:Robinson;Chris
FN:Chris Robinson
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20030107T174045Z
END:VCARD



Re: [vchkpw] Qmailadmin Build Problems

2003-01-07 Thread buffalo
On Tue, 7 Jan 2003, Remo Mattei wrote:

Remo,

> Try the 1.0.6 version

This is the version I downloaded and am having the difficulty with. Any 
other possibilities?

Thanks,

--Duncan





[vchkpw] implications?

2003-01-07 Thread Paul Theodoropoulos
Hey all,

my current config is as follows (5.3.12):

#!/bin/sh
./configure \
--enable-mysql=y \
--enable-incdir=/usr/local/mysql/include \
--enable-libdir=/usr/local/mysql/lib \
--enable-valias=y \
--enable-qmail-ext=n \
--enable-roaming-users=y \
--enable-logging=p \
--enable-logname=vpopmail \
--enable-clear-passwd=y \
--enable-learn-passwords=y \
--enable-defaultquota=2S,1000C

what are the implications for an in-production system if i were to change 
--enable-qmail-ext to y?

reason for asking:

i use qmailadmin "on top" of vpopmail so customers can modify forwarding, 
vacation, etc.. the problem is, i'm working on installing Blackhole spam 
filtering, and that requires instructions in their .qmail. I'd like to 
'offload' the blackhole program instructions to a .qmail-ext for each 
customer, so that qmailadmin can freely modify .qmail without interfering 
with the blackhole program instructions.

or am i misunderstanding the functionality? i've never used qmail 
extensions before, not overtly...

thanks in advance. i've read INSTALL, btw.


Paul Theodoropoulos
http://www.anastrophe.com
http://folding.stanford.edu
The Nicest Misanthrope on the Net 





Re: [vchkpw] Change password

2003-01-07 Thread Ken Jones
On Tuesday 07 January 2003 09:14 am, zafar rizvi wrote:
> hi ppl
>  Any body have some idea about changepassword with virtual domain user
> (vpopmail user).
>
> Bcz i must need a change password script or idea
>
> thanks
> zafar

use vpasswd. It allows you to change the password of
any email account.

Ken Jones





[vchkpw] 5.2.1: Missing etc/lib_deps?

2003-01-07 Thread buffalo
Greetings All,

It seems I have a running vpopmail install, version 5.2.1, that's missing 
a critical piece:

/home/vpopmail/etc/lib_deps

Having done a pretty standard make/build/install, can anyone suggest why 
this might be missing and/or what the fix might be?

vqadmin 1.0.6 and the latest version of sqwebmail fail at their configure
scripts without this file.

TIA,

--Duncan





[vchkpw] Environment variables

2003-01-07 Thread Daniel Corbe
What environment variables get set my vpopmail?




Re: [vchkpw] run scripts not working that good

2003-01-07 Thread Claudio Nieder
Hi,

> exec env - PATH="/var/qmail/bin:/usr/local/bin" tcpserver -H -R -x
> /etc/tcp.smtp.cdb -c20 -u1004 -g1201 0 smtp /var/qmail/bin/qmail-smtpd 2>&1
> > /dev/null &

This should be 

exec ...  -H -R -x \
/etc/tcp ...  2>&1 \
> /dev/null

> exec env - PATH="/var/qmail/bin:/usr/local/bin" tcpserver -H -R 0 110
> /var/qmail/bin/qmail-popup mail.server.nu /home/vpopmail/bin/vchkpw
> /var/qmail/bin/qmail-pop3d Maildir &

same here, the \ at the end of the first two lines is missing.

claudio
-- 
Claudio Nieder, Kanalweg 1, CH-8610 Uster, Tel +41 79 357 6743
yahoo messenger: claudionieder aim: claudionieder icq:42315212
mailto:[EMAIL PROTECTED]http://www.claudio.ch





[vchkpw] Re: 5.2.1: Missing etc/lib_deps?

2003-01-07 Thread buffalo
On Tue, 7 Jan 2003 [EMAIL PROTECTED] wrote:

> It seems I have a running vpopmail install, version 5.2.1, that's missing 
> a critical piece:
> 
> /home/vpopmail/etc/lib_deps
> 
> Having done a pretty standard make/build/install, can anyone suggest why 
> this might be missing and/or what the fix might be?

Answered my own question; it was a matter of rerunning 'configure' in the 
src dir.

Thanks,

--Duncan





[vchkpw] Restricting the amount of mail accounts

2003-01-07 Thread Kent Ritchie
How can I set vpopmail to limit the number of email accounts for a
vdomain? 

-- 
Kent Ritchie
Corlink Communications L.L.C
Customer Service 
1-888-727-4305





Re: [vchkpw] Restricting the amount of mail accounts

2003-01-07 Thread Remo Mattei
Did you read the info there is a file that allows you to set this up and
it's called qmailadmin-limits here is an example


maxpopaccounts: 50
maxaliases: 50
maxforwards: 50
maxautoresponders: 50
maxmailinglists: 5




> From: Kent Ritchie <[EMAIL PROTECTED]>
> Organization: Corlink Communications LLC
> Date: 07 Jan 2003 19:11:47 -0500
> To: [EMAIL PROTECTED]
> Subject: [vchkpw] Restricting the amount of mail accounts
> 
> How can I set vpopmail to limit the number of email accounts for a
> vdomain? 
> 
> -- 
> Kent Ritchie
> Corlink Communications L.L.C
> Customer Service 
> 1-888-727-4305
> 
> 
> 




[vchkpw] welcome message

2003-01-07 Thread Werner
Hi,

Is there a way to set a "welcome" message that is sent when a postmaster
creates an e-mail account?

thanks in advance

Werner





RE: [vchkpw] Change password

2003-01-07 Thread Lists @ Apted Tech.
http://inter7.com/vpopmail/doc/
http://inter7.com/vpopmail/doc/vpasswd.html

please read...

-Original Message-
From: zafar rizvi [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 07, 2003 6:15 AM
To: [EMAIL PROTECTED]
Subject: [vchkpw] Change password


hi ppl
 Any body have some idea about changepassword with virtual domain user
(vpopmail user).

Bcz i must need a change password script or idea

thanks
zafar

 




Re: [vchkpw] uid and gid in assign

2003-01-07 Thread Tobias Åman
Sorry it was me who wrote that mail to fast it should be like this

first it looked like this
 +mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx

 now it looks like this
 +mavin.ath.cx-:mavin.ath.cx:502:502:/home/vpopmail/domains/mavin.ath.cx

502 is the vpopmail useraccount and 89 is vchkpw

This is what i get from the ls -lisadn ~vpopmail/domains/mavin.ath.cx
11141134 drwx--6 502  89   4096 Jan  7 14:30
/home/vpopmail/domains/mavin.ath.cx/

Although i get this one when i added a new domain
35061784 drwx--5 502  502  4096 Jan  7 15:29
/home/vpopmail/domains/star.homeftp.org/

Regards Tobias

- Original Message -
From: "Peter Palmreuther" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 07, 2003 4:48 PM
Subject: Re: [vchkpw] uid and gid in assign


> Hi Tobias,
>
> On Tue, 7 Jan 2003 16:00:41 +0100
> Tobias Åman <[EMAIL PROTECTED]> wrote:
>
> > What uid and gid should be assigned in /var/qmail/user/assign
> >
> > mine looked like this
> >
> > +mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx
> > :-::
> >
> >
> > now i looks like this
> >
> > +mavin.ath.cx-:mavin.ath.cx:89:89:/home/vpopmail/domains/mavin.ath.cx
> > :-::
> >
> > This happend after i re installed som stuff lika vpopmail and
> > reconfigured qmail
> > what is the right one ? how does yours look like ?
>
> I'm really sorry, but I don't see any difference.
>
> Nevertheless: the UID and GID given in there should be the one vpopmail
> runs the domains as. In general this are the UID and GID of vpopmail,
> unless you gave a different system-user when creating the domain with
> 'vadddomain'.
>
> A hint could be the output of
>
> ls -lisadn ~vpopmail/domains/mavin.ath.cx
>
> The UID and GID given there should be the one in assign-file.
> --
> Peter