qmailadmin-0.45 compile problem

2001-04-25 Thread Georgi Kupenov

qmail-1.03
vpopmail-3.9.11.released

/home/aaa/qmailadmin-0.45/template.c:338: undefined reference to
`vauth_getall'
/home/aaa/qmailadmin-0.45/template.c:342: undefined reference to
`vauth_getall'
command.o: In function `setdefaultaccount':
/home/aaa/qmailadmin-0.45/command.c:209: undefined reference to
`vauth_getpw'
collect2: ld returned 1 exit status
make[2]: *** [qmailadmin] Error 1
make[2]: Leaving directory
`/home/jkk/mail.techno-link.com/qmailadmin-0.45'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/home/jkk/mail.techno-link.com/qmailadmin-0.45'
make: *** [all-recursive-am] Error 2  

What'a up here?



Re: how to _delay_ failed authentication

2001-04-25 Thread Markus Stumpf

On Wed, Apr 25, 2001 at 03:12:31AM +0200, Karsten W. Rohrbach wrote:
 maybe add it to tcpserver?

tcpserver ist not in control of checkpassword and has no knowledge
of corrrect/incorrect user:password pairs.

The solution I would like most (and which would be rather flexible and
also working with clusters) would be to have a fast http server (maybe
based on djb's publicfile).
This server would have a configurable sized hash table (similar to
dnscache) and a strategy for expiring entries.

There would be two clients/APIs:
- one would send ip:fail or ip:ok
  and the server would either increment or delete an internal counter
- the other would send ip:query and the server would return
  allow or deny.
These two clients could be placed withing the calling queue after
tcpserver and checkpassword.

Within this framework one could write other clients/servers that would
e.g. allow for controlling the number of smtp connects per IP per time
interval:
- have a client that sends
  ip:connect to the server and the server returns ok or fail.
  - if the answer the ok give over to the next program in queue
  - if the answer is fail act similar to rblsmtpd and send a 4xx
to every SMTP protocol request from the sender.

I've been working on the last server/client with a friend. We have some
code but it's not finished yet.

\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.



Items of interest

2001-04-25 Thread Matt Simerson

Hi all,

RFC 2821 and 2822 are official now:
   ftp://ftp.isi.edu/in-notes/rfc2821.txt   
   ftp://ftp.isi.edu/in-notes/rfc2822.txt

They replace the 821 and 822 RFC's for SMTP mail servers and services and
message formatting and make for some very interesting and insightful bedtime
reading.

The latest version of the vpopmail toaster recipe is online at
http://matt.simerson.net/computing/qmail/qmail.toaster.shtml. New features
include the creation of a archived and searchable mailing list for toaster
recipe users. Updates include conversion from ApacheSSL to Apache modssl
(better support, faster updates, etc..), using MySQL authentication. I'm
getting dangerously close to being able to release my log processing scripts
which feed cricket and make very pretty graphs.

Matt





Server Logs Please Help

2001-04-25 Thread Christopher Tarricone

I have included an excerpt of my start-up script. My server starts but does
not write anything to the log. The /var/log/qmail directory owned by
qmaill:nofiles with r/w permissions. Has anyone encountered this before?







#!/bin/sh

# Qmail Startup


# Source function library.
. /etc/rc.d/init.d/functions

HOSTNAME=`hostname`


# See how we were called.
case $1 in
  start)

echo -n Starting: 
env - PATH=/var/qmail/bin:/usr/local/bin \
qmail-start ./Maildir/ /usr/local/bin/accustamp \
| /usr/local/bin/setuidgid qmaill /usr/local/bin/cyclog /var/log/qmail 

echo -n qmail 

env - PATH=/var/qmail/bin:/usr/local/bin \
tcpserver -H -R -c100 0 pop-3 /var/qmail/bin/qmail-popup \
$HOSTNAME \
/var/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
/var/log/qmail/smtp.log 
echo -n pop 
# 
# This is commented out on purpose deamontools 0.80 does not
# require you to specify the location of the tcp.smtp file
# it is defined at compile time
#tcpserver -H -R -x /var/vpopmail/etc/tcp.smtp -c100 -u503 -g501 0 smtp
\

env - PATH=/var/qmail/bin:/usr/local/bin \
tcpserver -H -R -c100 -u503 -g501 0 smtp \
/var/qmail/bin/qmail-smtpd 21  /dev/null 
echo smtp




Re: Server Logs Please Help

2001-04-25 Thread Dan Phoenix



this belongs in supervise runs files not in startup.




--
Dan

+--+ 
|  BRAVENET WEB SERVICES   |
| [EMAIL PROTECTED] |
|  screen;cd /usr/src;make buildworld;cd ~ |
| cp MYKERNEL /sys/i386/conf;cd /usr/src   |
|make buildkernel KERNCONF=MYKERNEL|
|make installkernel KERNCONF=MYKERNEL;make installworld|
+__+

On Wed, 25 Apr 2001, Christopher Tarricone wrote:

 Date: Wed, 25 Apr 2001 16:20:07 -0400
 From: Christopher Tarricone [EMAIL PROTECTED]
 To: QMAIL [EMAIL PROTECTED], VPOPMail [EMAIL PROTECTED]
 Subject: Server Logs Please Help
 
 I have included an excerpt of my start-up script. My server starts but does
 not write anything to the log. The /var/log/qmail directory owned by
 qmaill:nofiles with r/w permissions. Has anyone encountered this before?
 
 
 
 
 
 
 
 #!/bin/sh
 
 # Qmail Startup
 
 
 # Source function library.
 . /etc/rc.d/init.d/functions
 
 HOSTNAME=`hostname`
 
 
 # See how we were called.
 case $1 in
   start)
 
 echo -n Starting: 
 env - PATH=/var/qmail/bin:/usr/local/bin \
 qmail-start ./Maildir/ /usr/local/bin/accustamp \
 | /usr/local/bin/setuidgid qmaill /usr/local/bin/cyclog /var/log/qmail 
 
 echo -n qmail 
 
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R -c100 0 pop-3 /var/qmail/bin/qmail-popup \
 $HOSTNAME \
 /var/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
 /var/log/qmail/smtp.log 
 echo -n pop 
 # 
 # This is commented out on purpose deamontools 0.80 does not
 # require you to specify the location of the tcp.smtp file
 # it is defined at compile time
 #tcpserver -H -R -x /var/vpopmail/etc/tcp.smtp -c100 -u503 -g501 0 smtp
 \
 
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R -c100 -u503 -g501 0 smtp \
 /var/qmail/bin/qmail-smtpd 21  /dev/null 
 echo smtp
 




smtpd auth issue

2001-04-25 Thread Javier Frias

Anyone ever encountered this... using the latest version found here
http://members.elysium.pl/brush/qmail-smtpd-auth/index.html 

and vpopmail 4.9.10 

 

and calling smtpd like this... 

#!/bin/sh
PATH=/var/qmail/bin:/usr/local/bin:/usr/bin:/bin
export PATH
QMAILUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming` 

exec softlimit -m 200 tcpserver -p -R -x ~vpopmail/etc/tcp.smtp.cdb -c 
$MAXSMTPD \
 -u $QMAILUID -g $NOFILESGID 0 smtp rblsmtpd qmail-smtpd ~vpopmail/bin/vchkpw 
/usr/bin/true 21 

smtp auth takes ANY username password combination... it still requires you 
to imput a password..
but it  just lets anything thru anyone ever seen these? am i doing 
something wrong? 


 -Jav
[EMAIL PROTECTED]



First message questions

2001-04-25 Thread Tamas Amon

Hello,

I use more nice thing from inter7.com.
I use the vpop,ail, wit 3 domain (with vpopmail). 
I try to use the admin enviroment on the web(qmailadmin), but I have an
error. I can login, and I get a list of the available functions. I
select
a menu item, and I go back to the main page (domain  password) and I
can't
make anything. What is the problem?
Other thing (maybe help) the ezmlm not worjing correctly too.

(Sorry for my english, I know this is not very good)
-- 
Amon Tamas
[EMAIL PROTECTED]



qmail-inject + vdelivermail problem

2001-04-25 Thread henning

Hopefully someone here will be able to help me solve this problem, all my 
searches of mailing list archives have not found anything. The following log 
entries were produced when I tried to send an email to an address handled by 
.qmail-default for one of my virtually hosted domains. If .qmail-default 
contains just a forwarding address it will work correctly. But if I try to use 
a .qmail-default file with the line
| /home/vpopmail/bin/vdelivermail '' [EMAIL PROTECTED] I get the 
following log message and no email gets delivered.

-Henning 

988242720.843883 new msg 50730
988242720.843905 info msg 50730: bytes 869 from [EMAIL PROTECTED] 
qp 1146 uid 100
988242720.863862 starting delivery 976: msg 50730 to local 
[EMAIL PROTECTED]
988242720.863930 status: local 1/10 remote 0/20
988242720.965432 delivery 976: success: qmail-inject:_fatal:_read_error/POP_use
r_does_not_exist,[EMAIL PROTECTED]/did_0+0+1/
988242720.965538 status: local 0/10 remote 0/20
988242720.965569 end msg 50730
-- 
Henning Hogue, Ocean Group Systems Administrator
[EMAIL PROTECTED] http://www.oceangroup.com





vacation for vpopmail/qmailadmin?

2001-04-25 Thread Kris von Mach

Hi,

I was wondering if there were any developments regarding adding vacation 
option to qmailadmin? Or some vacation package that would work with vpopmail?

__
Kris.




Another copy of binaries

2001-04-25 Thread Francis P. Ling

Dear all,
 

I've a question here. Currently, I've got 
vpopmail,qmailadmin,sqwebmail,qmail installed on a box. It only serves a 
virtual domain. 


Since my vpopmail package was compiled with 
 --enable-default-domain=mydomain.com, adding another domain will not treat 
other users on the other domain to use their own domain as the default 
domain. 


My users on mydomain.com can send mail to another user on the same domain 
without having to append @mydomain.com to the local recipients. 


If however, the users from another domain starts sending a mail to a users 
(local ???) on the other domain, they must append @theotherdomain.com to the 
recipient's address. Any way of getting this fix? 

 

I don't think sqwebmail can handle this as the logindomain tag on the HTML 
only serves as hostname file. 


Ideas? 

 

++
| Francis P. Ling   [EMAIL PROTECTED] |
| Network Administrator +6084-66 |
| Pan Sarawak Co Sdn Bhd   www.pansar.com.my |
++ 

Facts are stubborn things;  and  whatever  may be our
wishes,  our inclinations,  or  the  dictates  of  our
passions, they cannot alter the state of the facts and
evidence.
  -- John Adams, President, United States (1735-1826) 


 ---
Any  opinions,  explicit  or  implied,  are solely those of
the author and do not necessarily represent those of PANSAR
 ---