[vchkpw] Problem with autorespond

2006-01-19 Thread Mario Beltran

Hello everybody

First sorry if this is out of topic and my bad English.

I have an email box. It is an CentOS  with qmail (installed in life with 
qmail)  vpopmail-5.4.9, autorespond-2.0.2, ezmlm-0.53-idx-0.41, 
qmailadmin-1.2.3


Yesterday  I began to see this message in my qmail log


@400043cfb6760c9e1464 delivery 1701738: success: 
AUTORESPOND:[EMAIL PROTECTED]/did_0+0+1/
@400043cfb7b020281bec delivery 1702202: success: 
AUTORESPOND:[EMAIL PROTECTED]/did_0+0+1/
@400043cfb8161d58042c delivery 1702370: success: 
AUTORESPOND:__Stopping_on_mail_from_[]./did_0+0+1/
@400043cfb82e3507bcac delivery 1702393: success: 
AUTORESPOND:[EMAIL PROTECTED]/did_0+0+1/



But the autorespond email nerver comes to the sender this is with remote 
and local users and the original email from sender is delivered too.


What shoud i do for solve this problem?

Any suggestions?

Thanks in advance and best regards

Mario






[vchkpw] compiling vpopmail 5.4.13 on Solaris 7

2006-01-19 Thread Jeremy Kister

looks like vpopmail is looking for an err.h

make[2]: Leaving directory 
`/export/home/src/sparc-sun-solaris2.7/vpopmail-5.4.13/cdb'
make[2]: Entering directory 
`/export/home/src/sparc-sun-solaris2.7/vpopmail-5.4.13'
gcc -I. -Icdb  -I. -I. -I.-fPIC -g -O2 -Wall -c -o 
libvpopmail_a-vpopmail.o `test -f 'vpopmail.c' || echo './'`vpopmail.c

vpopmail.c:35: err.h: No such file or directory
make[2]: *** [libvpopmail_a-vpopmail.o] Error 1


the only place I have an err.h is in /usr/include/sys/

If I muck with the Makefile,

-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
+DEFAULT_INCLUDES =  -I. -I$(srcdir) -I/usr/include/sys/

and then try to make, i still get errors:

In file included from vpopmail.c:35:
/usr/include/sys/err.h:32: field `e_map' has incomplete type
vpopmail.c: In function `vadddomain':
vpopmail.c:130: warning: implicit declaration of function `chdir'
[...]
vpopmail.c:3096: dereferencing pointer to incomplete type
make[2]: *** [libvpopmail_a-vpopmail.o] Error 1


What's the solution to this problem ?

--

Jeremy Kister
http://jeremy.kister.net./




Re: [vchkpw] qmail-inject ignoring valias?

2006-01-19 Thread DAve

DAve wrote:
I've never run into this before, but then I've never needed the 
functionality. I have a script that processes mail from a Maildir, and 
then sends a reply to the sender. Currently I call qmail-inject to send 
the reply (I've tried /var/qmail/bin/sendmail with the same results).


Everything works as far as the message going out, however valias is not 
processed. .qmail-sender is processed, so I have a fix. But I would 
really prefer to use valias, as I nearly never have a .qmail-user file 
anymore.


Do I need to get a clue or something here? I've checked google with no 
luck.


If I am wrong, I am confused. Doesn't this say that .qmail-default will 
be checked if no .qmail-user exists?


http://cr.yp.to/qmail/pictures/PIC.local2virt

And if it exists, follow it's directions? I have .qmail-default with the 
normal vpopmail deliver line, which has been working. However it looks 
to me like qmail-local is ignoring the .qmail-default file and only 
following the .qmail-user file.


DAve





Re: [vchkpw] compiling vpopmail 5.4.13 on Solaris 7

2006-01-19 Thread Jorge Valdes

Jeremy Kister wrote:

looks like vpopmail is looking for an err.h

make[2]: Leaving directory 
`/export/home/src/sparc-sun-solaris2.7/vpopmail-5.4.13/cdb'
make[2]: Entering directory 
`/export/home/src/sparc-sun-solaris2.7/vpopmail-5.4.13'
gcc -I. -Icdb  -I. -I. -I.-fPIC -g -O2 -Wall -c -o 
libvpopmail_a-vpopmail.o `test -f 'vpopmail.c' || echo './'`vpopmail.c

vpopmail.c:35: err.h: No such file or directory
make[2]: *** [libvpopmail_a-vpopmail.o] Error 1


the only place I have an err.h is in /usr/include/sys/

If I muck with the Makefile,

-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
+DEFAULT_INCLUDES =  -I. -I$(srcdir) -I/usr/include/sys/

and then try to make, i still get errors:

In file included from vpopmail.c:35:
/usr/include/sys/err.h:32: field `e_map' has incomplete type
vpopmail.c: In function `vadddomain':
vpopmail.c:130: warning: implicit declaration of function `chdir'
[...]
vpopmail.c:3096: dereferencing pointer to incomplete type
make[2]: *** [libvpopmail_a-vpopmail.o] Error 1


What's the solution to this problem ?

I am still using an older version, but the problem is with the use of 
warn in the r_mkdir routine more or less lines 1822  1830. It will 
compile if you change the format from warn ('xxx') to fprintf 
(stderr, 'xxx'); a format also used in line 1833. I checked, and err.h 
is available for Linux, but not for Solaris.


I don't have a patch, but could make one for you if you really need it, 
or better yet, if the maintainers could roll back to using fprintf to 
stderr for compatibility's sake?


--
Jorge Valdes
Intercom El Salvador
[EMAIL PROTECTED]
voz: ++(503) 2278-5068
fax: ++(503) 2265-7025



Re: [vchkpw] compiling vpopmail 5.4.13 on Solaris 7

2006-01-19 Thread Tom Collins

On Jan 19, 2006, at 12:59 PM, Jorge Valdes wrote:
I am still using an older version, but the problem is with the use of 
warn in the r_mkdir routine more or less lines 1822  1830. It 
will compile if you change the format from warn ('xxx') to fprintf 
(stderr, 'xxx'); a format also used in line 1833. I checked, and 
err.h is available for Linux, but not for Solaris.


I don't have a patch, but could make one for you if you really need 
it, or better yet, if the maintainers could roll back to using fprintf 
to stderr for compatibility's sake?


I guess I could add conditionals to only use warn if it's available.  
It's better than just fprintf, because it will append a string that 
describes the actual error (from looking up errno).


I'll throw this on the heap for the next update.  In the mean time, I 
guess you'll have to hand-modify the code.


--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
You don't need a laptop to troubleshoot high-speed Internet: 
sniffter.com