Sending Host's IP Address

2000-01-06 Thread Peter Gradwell

Hi,

qmail-command defines a whole bunch of really useful environment variables 
which are set, like HOST, SENDER, USER, LOCAL, etc.

We want to capture the sending host's IP address in a perl script, invoked 
from a .qmail file, as we want to look it up in the MAPS lists and do some 
stats and stuff.

It appears that we will have to parse the headers of the message to get the 
ip address of the host it came from. Is this the only way?

cheers

peter

--
peter at gradwell dot com; online @ http://www.gradwell.com/



MX for two domains pointing towards one qmail server

2000-01-06 Thread shajai




Hi,

MX for two domains pointing towards one qmail server, 
all mails for both the domains are coming to that server. How can I define two 
mail accounts with the same username for different domains(i.e. [EMAIL PROTECTED] and [EMAIL PROTECTED] ).
 Also the qmail server is checking only for 
username after the mails come to the server how can I instruct qmail to check 
for the complete email id(i.e. [EMAIL PROTECTED] )instead of checking 
only for username.
Thanks,
Shailendra.


Tcpserver problems on machine w/ multiple IPs

2000-01-06 Thread Brian Baquiran

All of a sudden I'm having problems with tcpserver on a machine with multiple
IP's (but only one network interface card). It was working great until recently;
running qmail-smtpd and qmail-pop3d on both a "live" IP and a non-routable IP
(192.168.0.x). But just a few hours ago, it stopped running qmail-smtpd AND
qmail-pop3d on the non-routable IP. 

The non-routable IP is still up. I can telnet to ports 25 and 110 from machines
on the non-routable network, but although tcpserver seems to accept the
connection, it does not seem to run the proper program once a TCP session is
established. It works OK on the live IP though.

Has this happened to anyone else before? Any advice (where to look, etc.) would
be greatly appreciated.

Brian
--
[EMAIL PROTECTED] 
http://www.baquiran.com 
US Fax: (603) 908-0727
AIM: bbaquiran



Re: off-topic: Dan's engineering methods

2000-01-06 Thread Sam


Len Budney writes:

> Apologies for this slightly off-topic post.
> 
> Has Dan has revealed enough about his engineering methods for others
> to duplicate them? Does anybody want to, possibly producing sharable
> tools?

There are already existing tools out there that produce perfectly reusable
and recyclable code, which have been battleproven, and can easily handle
huge projects made out of modular parts.  I have four projects, in which an
average of 50% of the code is shared amongst all four of them, and is
organized into about a dozen different subdirectories.

> The big open question for me is:
> 
>   1. What does he use for source control, given that he builds in one
>  directory, and bundles the same libraries with many packages? How
>  is the repository organized? CVS etc. like hierarchies.

Initially RCS worked fine for me.  In each directory of a shared module, I
simply set RCS to be a soft link pointing to a common directory.

However, lately due to increased complexity I upgraded to CVS, so that
changes to any shared code can be automatically propagated via one cvs
update, instead of having to remember to RCS co each individual file from
the shared RCS repository, for each project.  Any time I switch projects I
just do a cvs update, and I'm all set.  

And, because CVS is just a shell on top of RCS, moving to CVS was virtually
a no-op.

>   2. The ezmlm package contains files of form *=* which give a strong
>  hint how his makefiles are generated [2].

That's nasically a simplified version of what autoconf and automake does. 
They are standardized tools that everyone knows how to use.  There's an
initial steep learning curve, but, after a while, it becomes as natural as
breathing.

>   3. Dan appears to track "functional units" of code, and appears to
>  incorporate them into projects as units [5]. Perhaps using CVS
>  modules or the like?

Easily handled via CVS, with autoconf and automake.  Take a look at
sqwebmail - http://www.inter7.com/sqwebmail/, courier-imap -
http://www.inter7.com/courierimap/, and maildrop -
http://www.flounder.net/~mrsam/maildrop/.  All three tools reuse about a
dozen functional modules, which are stored only once, in a single
repository.  At any given time, actually, there might be very minor
differences in the same module within each individual package simply due to
the fact I don't package them as a tarball simultaneously, but only when
there's a functional upgrade.

But, ignoring those minor differences, although the base source code within
all three projects is identical, in some cases the autoconf/automake
scripts end up configuring the same module quite differently.   For
example, look at the authlib library.  Because Courier-IMAP includes the
libhmac module, authlib detects it and compiles some code that implements
CRAM-MD5 authentication, which uses the code from libhmac.  The same
authlib module does not compile the CRAM-MD5 code when it is packaged as
part of sqwebmail, because sqwebmail does not include the libhmac library,
and it has no need for CRAM-MD5 authentication.

I just noticed that maildrop does not include the md5 module, because I
haven't worked on maildrop for a while, and haven't updated it.  Therefore,
the userdb virtual account module can only set crypted passwords for the
userdb virtual account database.  Simply adding the md5 module to the
maildrop build will result in userdb reconfiguring itself to offer an
option of storing passwords encrypted with the MD5 hash function,
permitting longer passwords.

>   4. All sources go into one directory; Perhaps because recursion defeats
>  make's dependency checks [3,4]? Perhaps because many tools don't like
>  to build things in subdirectories? Perhaps because his packages
>  are pretty small, so it just doesn't matter?

It's quite convenient to package standalone modules as individual
subdirectory that can be plonked into any project, and have a top-level
configure script configure it.  autoconf and automake have the necessary
resources to build a module hierarchy, so there's no need to badger djb for
this tools, since equivalent capabilities have been available in autoconf
and automake for years...


-- 
Sam



init.d qmail sript on solaris

2000-01-06 Thread Max Shaposhnikov

i  have  strange  problems with qmail smtp startup on my sun solaris 7
machine...
when i reboot sun qmail start but won't work properly
if i do
qmail stop
qmail start
all is work just fine...

init script:

PATH=$PATH:/usr/bin:/usr/local/bin:/var/qmail/bin:usr/sbin
USERID=102
GROUPID=100

case "$1" in
start)
echo -n "Starting mail-transfer agent: qmail"

#ulimit -v 2048
csh -cf '/var/qmail/rc &'
supervise /var/lock/qmail-smtpd
tcpserver -v -x/etc/tcp.smtp.cdb -u$USERID -g$GROUPID 0 2\rblsmtpd
qmail-smtpd 2>&1 | setuser qmaill accustamp | \
setuser qmaill cyclog -s500 -n5 /var/log/qmail/qmail-smtpd &
echo "."
;;
stop)
echo -n "Stopping mail-transfer agent: qmail"
PID=`ps -eo pid,comm | awk '{ if ($2 == "qmail-send") print $1}'`
kill -TERM $PID
svc -dx /var/lock/qmail-smtpd
echo "."
;;
restart)
$0 stop
$0 start
;;
reload|force-reload)
echo "Reloading 'locals' and 'virtualdomains' control files."
PID=`ps -eo pid,comm | awk '{ if ($2 == "qmail-send") print $1}'`
kill -HUP $PID
;;
*)
echo 'Usage: /etc/init.d/qmail {start|stop|restart|reload}'
exit 1
esac

exit 0

× ÐÁÍÑÔÉ ÐÏÓÌÅ ÚÁÇÒÕÚËÉ:
  qmailq   252   240  0 00:36:04 ?0:00 qmail-clean
  qmails   240 1  0 00:36:04 ?0:00 qmail-send
root   659   242  0 00:41:55 ?0:00 supervise
/var/lock/qmail-smtpd tcpserver -v -x/etc/tcp.smtp.cdb -u102 -g100 0
root   242 1  0 00:36:04 ?0:00 supervise
/var/lock/qmail-smtpd tcpserver -v -x/etc/tcp.smtp.cdb -u102 -g100 0
  qmaill   249   240  0 00:36:04 ?0:00 splogger qmail
root   250   240  0 00:36:04 ?0:00 qmail-lspawn ./Maildir/
  qmailr   251   240  0 00:36:04 ?0:00 qmail-rspawn

ÐÏÓÌÅ
/etc/init.d/qmail stop
/etc/init.d/qmail start

qmaill   734 1  0 00:42:59 pts/10:00 cyclog -s500 -n5
/var/log/qmail/qmail-smtpd
  qmaild   731   729  0 00:42:59 pts/10:00
tcpserver -v -x/etc/tcp.smtp.cdb -u102 -g100 0 25 rblsmtpd qmail-smtpd
root   729 1  0 00:42:59 pts/10:00 supervise
/var/lock/qmail-smtpd tcpserver -v -x/etc/tcp.smtp.cdb -u102 -g100 0
  qmailq   736   728  0 00:42:59 pts/10:00 qmail-clean
  qmaill   732 1  0 00:42:59 pts/10:00 accustamp
  qmaill   730   728  0 00:42:59 pts/10:00 splogger qmail
root   733   728  0 00:42:59 pts/10:00 qmail-lspawn ./Maildir/
  qmails   728 1  1 00:42:59 pts/10:00 qmail-send
  qmailr   735   728  0 00:42:59 pts/10:00 qmail-rspawn


script auto-running from /etc/rc2.d/S99qmail...

where i'm wrong?
who can send to me right init script?
i'm novice in qmail and solaris...




off-topic: Dan's engineering methods

2000-01-06 Thread Len Budney

Apologies for this slightly off-topic post.

Has Dan has revealed enough about his engineering methods for others
to duplicate them? Does anybody want to, possibly producing sharable
tools? Given the quality of his results, his methods might be worth
imitating.  (Plus, I'm not happy with current approaches to building;
below are some reasons.)

Dan: any hints, pointers, or sample scripts, however rough, would be
much appreciated--at least by me.

The big open question for me is:

  1. What does he use for source control, given that he builds in one
 directory, and bundles the same libraries with many packages? How
 is the repository organized? CVS etc. like hierarchies.

Here's what I have determined or guessed from following these lists.

  1. Dan _does_ have automated tools, but doesn't consider them production
 quality and hasn't released them [1].

  2. The ezmlm package contains files of form *=* which give a strong
 hint how his makefiles are generated [2].

  3. Dan appears to track "functional units" of code, and appears to
 incorporate them into projects as units [5]. Perhaps using CVS
 modules or the like?

  4. All sources go into one directory; Perhaps because recursion defeats
 make's dependency checks [3,4]? Perhaps because many tools don't like
 to build things in subdirectories? Perhaps because his packages
 are pretty small, so it just doesn't matter?

  5. The "just in time dependency" [1] approach to configuration is fairly
 well understood. (DJB's 'yabbawhap' package included a tool which
 inspired autoconf [1], but he has adopted his current approach
 because monolithic config subverts make's dependency checking [3].)

  6. Scripts "compile" and "load" exist so make can manage dependency
 on compiler settings. Changed settings force recompilation [3].

Thanks,
Len.


--
[1]


[2]


[3]




[4] For a discussion, not by Dan, see "Recursive Make Considered Harmful" at
.

[5] I can't find the reference. Dan once posted the observation that sets
of files belong together, as {substdi.c, substdio.c, substdio.h} (not the
correct example).



SNMP Support?

2000-01-06 Thread Reece Markowsky

Do any solutions for QMail/SNMP Support exist?
Thanks
Reece

PS: Thanks for all the help with the anti-relay questions.



problems with dropped network packets

2000-01-06 Thread Theodore Cekan

I am running FreeBSD 3.3 with a pn0 network card.  When I have qmail send
out large amounts of email to a subscriber list (about 100k addresses) I
often get errors in my message log about dropped packets and 'Out of mbuf
clusters'.  Qmail then stops sending mail, but I can still telnet in, so the
network is still up.  It suggests I increase nmbclusters or maxusers.  I
have maxusers set at 64 and nmbclusters at 2048.  Qmail is the only thing
running on the server.  Do I really need to increase these?  Is there a
problem with the pn0 nic driver?  Anyone else solve this problem?

Any help is much appreciated.

Ted




receiving mail

2000-01-06 Thread Kurt R. Hoehn



Hello,
 
    I seem to be having an erratic 
email system.  I get email from some locations and not from others.  I 
can send out and the internal work fine. 
 
Case One:  my friend sent me an email from aol 
and it arrived.
  then 
he sent another and it was returned
 
        
        I responded to his first email and he 
recieved it
    
he forwarded the email back to me and I got it again.
        
        '
 
 
Case Two: This is the header from another friend 
that an email was kicked back

    Final-Recipient: RFC822; [EMAIL PROTECTED]    
Action: failed    Status: 5.1.2    
Remote-MTA: DNS; mail.etechstudios.com.etechstudios.com    
Last-Attempt-Date: Thu, 6 Jan 2000 21:49:02 -0500
 
Please Help
Kurt R. Hoehn


Re: FAQ 5.4 and Mailing Lists

2000-01-06 Thread Dustin Marquess


 Qmail does not use the To: header to check relaying.  It uses the 
address given in the SMTP "RCPT TO" command.  In the case of mailing lists, 
this *IS* actually the address of the mail recipient and not the mailing 
list itself.

 -Dustin

At 08:27 PM 1/6/00 , you wrote:
>Hi.
>
>I am having a hard time understanding how to set up qmail to stop 
>third-party relaying while still accepting all of the legitimate mail our 
>users recieve.
>
>The specific problem I have having is that mail from distribution lists 
>(where the To: field addresses the list itself and not that of the local 
>user) is being seen as a relay since the list domain isn't in 
>/var/qmail/control/rcpthosts and tcp-env isn't setting RELAYCLIENT because 
>the list domain is also not in the set of domains we want to accept relays for.
>
>I read and reread the FAQ but didn't see an answer for this situation.  It 
>seems like it would be a common problem, but perhaps I just don't 
>understand enough of how the qmail system works.
>
>Thanks in advance for any help.
>
>Jacob Martinson
>



FAQ 5.4 and Mailing Lists

2000-01-06 Thread jacob

Hi.

I am having a hard time understanding how to set up qmail to stop third-party relaying 
while still accepting all of the legitimate mail our users recieve.

The specific problem I have having is that mail from distribution lists (where the To: 
field addresses the list itself and not that of the local user) is being seen as a 
relay since the list domain isn't in /var/qmail/control/rcpthosts and tcp-env isn't 
setting RELAYCLIENT because the list domain is also not in the set of domains we want 
to accept relays for.

I read and reread the FAQ but didn't see an answer for this situation.  It seems like 
it would be a common problem, but perhaps I just don't understand enough of how the 
qmail system works.

Thanks in advance for any help.

Jacob Martinson
 



host masq w/ exception for root delivery?!

2000-01-06 Thread nparrish

I hope this is not a terribly FAQ; I've searched through the discussion
list archives a good bit, and I've seen some answers which come rather 
close, but don't quite seem to hit my particular nail square on the 
head...  with that disclaimer done:

Setting my system up as a null-host seems to be nigh-perfect for me,
except for local root mail.  I found a suggestion in the archive that 
one might apply FAQ 1.2 and FAQ 5.5.  unfortunately, I was rather 
spoiled in the past by being able to leave off the @whereever.com for 
local mail.  If I follow FAQ 1.2, mail sent from my box to a local 
user will arrive at that user's mailbox, but with the To: address of 
[EMAIL PROTECTED]  Things get real nasty when people 
start doing group replies and suchlike, since my box is not always
up, and I shouldn't be in the business of delivering mail anyway.

FAQ 1.1 (host masquerading) works great for this, EXCEPT for the nasty
bit about root mail going out as [EMAIL PROTECTED], meaning that it 
goes out to the sysadmin for my company, who really doesn't care what 
happened with my cron scripts last night.  I do care about what 
happened with my cron scripts last night, so I put my address in 
~alias/.qmail-root.  but I don't have local delivery turned on, so 
my alias is never consulted...

So I'm looking for a solution whereby
a) I can still send mail to someuser and the to: address is
[EMAIL PROTECTED],
not [EMAIL PROTECTED],
b) I show up as [EMAIL PROTECTED], and
c) root mail gets delivered to my alias rather than going to
mailhub.whereever.com, who sends it to the sysadmin for my company.


thanks in advance for any help,
nathan



web support

2000-01-06 Thread Ari Arantes Filho

Hi,

Is there a tools simular to qmailadmin (www.inter7.com) to deal with
real user accounts, I mean not to use with vpopmail?

Best regards,

Ari




Slow delivery of large message

2000-01-06 Thread Monte Mitzelfelt

I've got a fairly large (45k+ message) being sent to a mailing list of
about 1100 people.  It is getting "qmail-spawn unable to create pipe" 
errors each time the message hits the delivery stage.  At this point, I
also can't seem to ALRM it into sending for some reason.  It is running on
Solaris 7 (SunOS 5.7 is what uname -a reports anyway).

Anybody have any ideas about what I can do?  I've got some irritated
customers I need to help as soon as I can. 

Monte



Re: persistent connections for qmail file programs

2000-01-06 Thread Sam

Peter Gradwell writes:

> Hi ya,
> 
> If I have a perl script, in a .qmail- file, which connects to a mysql 
> database, has anyone considered how to make the mysql connection persistent.
> 
> Would it be at all possible to have persistence in the program run by a 
> .qmail file?
> 
> or am i totally mad?

Sure.  Anything is possible.  Run your Perl script permanently in the
background, and have a small Perl stub executed from .qmail that connects
to the background daemon via a socket or a pipe, and does what it has to
do.


-- 
Sam



Re: persistent connections for qmail file programs

2000-01-06 Thread Patrick Berry

on 1/6/00 2:25 PM, Peter Gradwell had the thought:

> Hi ya,
> 
> If I have a perl script, in a .qmail- file, which connects to a mysql
> database, has anyone considered how to make the mysql connection persistent.
> 
> Would it be at all possible to have persistence in the program run by a
> ..qmail file?

This is the "long way" as I don't really know the "short war".  You could
set up Apache+mod_perl+my_sql and have the dot-qmail file send stuff to a
cgi.  I'm not to sure about any other ways.

> or am i totally mad?

Pat

-- 
Freestyle Interactive | http://www.freestyleinteractive.com | 415.778.0610



persistent connections for qmail file programs

2000-01-06 Thread Peter Gradwell

Hi ya,

If I have a perl script, in a .qmail- file, which connects to a mysql 
database, has anyone considered how to make the mysql connection persistent.

Would it be at all possible to have persistence in the program run by a 
.qmail file?

or am i totally mad?

peter

--
peter at gradwell dot com; online @ http://www.gradwell.com/



FAQ for envelope/header fields

2000-01-06 Thread Bill Ataras



Is there a good faq somewhere that talks about how to handle the various
envelope and header fields from a MUA point of view? ie, which field should
I actually reply to when the user clicks reply, should I show the from:
field or sender field, etc etc




Re: 7 bit ascii & qmail

2000-01-06 Thread Claus Färber

Sam <[EMAIL PROTECTED]> schrieb/wrote:
> Matthew Brown writes:
>> The difference is that sendmail makes a halfhearted attempt at compliance,
>> and qmail doesn't.
>
> Agreed.  Now, which one would you rather have?

Well, it would be nice if qmail was fully compliant here (although I  
don't like that standard).

So qmail should convert a message to quoted-printable iff necessary.  
Anything else is dangerous and bad.

But I certainly don't want a programme that does so many dangerous  
transformations as sendmail.

-- 
Claus Andre Faerber 
PGP: ID=1024/527CADCD FP=12 20 49 F3 E1 04 9E 9E  25 56 69 A5 C6 A0 C9 DC



Re: Virtual POP Users and Domains

2000-01-06 Thread Peter Green

On Thu, Jan 06, 2000 at 02:02:17PM -0500, Eric Benson wrote:
> I am trying to set up Qmail to be a pop mail server for several of our
> company domain names. The users do not need, nor do i want to give them,
> a login account. There will be some identical user names in the
> different domains but they must be handled differently. How would I set
> up the POP storage and create the virtual user accounts for them to log
> in and retrieve their mail.

I would highly recommend looking at the vpopmail distribution at
. We use qmail with "real" and "virtual"
users simultaneously (using vpopmail for the virtuals and stock qmail with
the reals) and we couldn't be happier. Development on vpopmail is active and
rapid, and the supporting tools (e.g., )
are invaluable.

/pg
-- 
Peter Green
Gospel Communications Network, SysAdmin
[EMAIL PROTECTED]



Re: Virtual POP Users and Domains

2000-01-06 Thread Peter Cavender

>I am trying to set up Qmail to be a pop mail server for several of our
>company domain names. The users do not need, nor do i want to give them,
>a login account. There will be some identical user names in the
>different domains but they must be handled differently. How would I set
>up the POP storage and create the virtual user accounts for them to log
>in and retrieve their mail.
>
>Eric


Create the user accounts with the "-s /bin/false" option; this gives 
them a "shell" of /bin/false, which essentially preventys login. 
qmail will work fine.



Virtual POP Users and Domains

2000-01-06 Thread Eric Benson

I am trying to set up Qmail to be a pop mail server for several of our
company domain names. The users do not need, nor do i want to give them,
a login account. There will be some identical user names in the
different domains but they must be handled differently. How would I set
up the POP storage and create the virtual user accounts for them to log
in and retrieve their mail.

Eric
-- 
E-mail : [EMAIL PROTECTED] | ICQ : 14275985 | AIM : Scedrick



Re: What MUA do you use?

2000-01-06 Thread Rok Papez

Hello Bill.

On Wed, 05 Jan 2000, Bill Ataras wrote:

> with "spruce" (check freshmeat). Its pretty good. But I'm curious what you

Spruce is nice Too bad it doesn't store mail in Maildir format, and it's
filterng isn't powerfull enough. Also I don't think it's stable enough (yet).
Spruce however has a potential to become a very good MUA. But I guess I'm just
spoiled by PMMail :-).. who unfortunately isn't available under Linux.

Right now I'm using KMail and it works for me (just barely)... However it did
loose a few mails once so I'm trying to find some other MUA.

Mutt; well I did try it and altough I sometimes_use/like Pine I realy disliked
Mutt becouse it's default key bindings are 100% different from what I'm used to.
Maybe someday when I have more time (yeah right... whom am I kidding) I'll read
the docs and rewamp all key bindings.

-- 
best regards,
Rok Papez.



Re: Mail to all users

2000-01-06 Thread Tong

How about create a mail-list for them ?

At 03:41 PM 1/6/00 +0300, Anand Buddhdev wrote:
>On Thu, Jan 06, 2000 at 11:44:15AM +0600, [EMAIL PROTECTED] wrote:
>
>> Hi all,
>> 
>> I have several accounts on my server,
>> and would like to have an easy way of sending news to all users.
>> A note on how to do that would be appreciated
>
>Depending on the POP server you use, you could use the bulletin feature.
>qpopper supports bulletins. If you use qmail-pop3d, I think there's a
>patch on www.qmail.org to give that functionality.
>
>-- 
>See complete headers for more info
>



Re: Why Are Virtual Domains So Difficult??

2000-01-06 Thread Dave Sill

Joe Kelsey <[EMAIL PROTECTED]> wrote:

>I think that the existing documentation is much too complex for most
>situations.  The FAQ points out a very simple solution, which becomes
>very complex as soon as more than one virtual domain is used.

I don't get it. How are multiple virtual domains more (than linearly)
complex than one?

If you ask how to do aliases, and I say "echo user >~alias/.qmail-foo",
is it not trivial to deduce the mechanism for creating other aliases?

>I think that DJB intends people to use fastforward, since he insists
>that a standard qmail distrubution includes fastforward and dotforward.

Ever seen one of those "standard qmail distrubution[s]"? Me neither.

I think fastforward and dotforward are crutches for sendmail
emigrés. If Dan thought .forwards were such a great idea, we wouldn't
have .qmail files. Likewise for fastforward.

>So, why doesn't LWQ or qmail-1.03/FAQ mention this?

See above.

-Dave



Re: Troubleshooting: Probably a FAQ...

2000-01-06 Thread Anand Buddhdev

On Thu, Jan 06, 2000 at 05:47:10AM -0800, Mike Payson wrote:

If you send mail via qmail-smtpd, it does NOT INSERT ANY HEADERS, except
for Received: headers. With Netscape, you can only submit messages via
SMTP, and therefore I can only conclude that the incomplete Sender:
header was inserted by Netscape. Some other MTA's, like sendmail, are
known to insert headers into messages submitted via SMTP, and so it's
possible that your ISP's mail server "fixed" your message for you.

> I'm pretty sure it's not Netscape... I tried setting my outgoing mail
> server to that of my ISP-- nothing else changed-- & the sender showed up
> as [EMAIL PROTECTED] It appears that this is a setting supplied by
> the mail server, but it's possible that I'm wrong.
> 
> Thanks!
> Mike
> 
> Anand Buddhdev wrote:
> > 
> > On Thu, Jan 06, 2000 at 12:13:29AM -0800, Mike Payson wrote:
> > 
> > listserv seems not to like your "Sender" field, which contains an
> > unqualified address, ie. "mpayson", instead of "[EMAIL PROTECTED]".
> > However, this has NOTHING to do with qmail; that field is inserted by
> > your Netscape mail client. Fix that or dump Netscape.
> > 
> > > I've just set up my qmail server, but I'm having some last minute
> > > problems... I just tried to sign up for a mailing list but the mailing
> > > list choked on my headers. Below are the fiull headers as forwarded from
> > > the mailing list administrator, & the error message generated by the
> > > list server. Also attached are the full headers from a second message I
> > > sent to myself at my current address. Any idea what I'm missing?
> > >
> > > Thanks!
> > > Mike
> > >
> > > -Original Message-
> > > From: L-Soft list server at Bibliofind (1.8c)
> > > [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, January 05, 2000 11:18 PM
> > > To: [EMAIL PROTECTED]; Aaron W. West; [EMAIL PROTECTED];
> > > [EMAIL PROTECTED]; from the Bibliofind offices
> > > Subject: Problem processing mail file from [EMAIL PROTECTED]
> > >
> > >
> > > Anerroroccurredwhile processingfile11873from
> > > [EMAIL PROTECTED]: "Mail message sent to the LISTSERV address
> > > contains invalid RFC822 fields and could not be parsed successfully".
> > >
> > > RFC822 parser messages follow:
> > >
> > >  Incorrect or incomplete address field found and ignored.
> > >
> > >  Incorrect or incomplete address field found and ignored.
> > >
> > >  Mail origin cannot be determined.
> > >
> > >  Original tag data was -> mpayson
> > >
> > > --- Message causing the problem (17
> > > lines) 
> > > Return-Path: <[EMAIL PROTECTED]>
> > > Received: from ubdnet.net (sense-sea-MegaSub-1-492.oz.net) by
> > > biblio.bibliofind.com (LSMTP for Windows NT v1.1b) with SMTP id
> > > <[EMAIL PROTECTED]>; Thu, 6 Jan 2000 2:17:32 -0500
> > > Received: (qmail 7689 invoked from network); 6 Jan 2000 07:16:40 -
> > > Received: from unknown (HELO ubdnet.net) ([EMAIL PROTECTED])
> > >   by sense-sea-megasub-1-492.oz.net with SMTP; 6 Jan 2000 07:16:40 -
> > > Sender: mpayson
> > > Message-ID: <[EMAIL PROTECTED]>
> > > Date: Wed, 05 Jan 2000 23:09:02 -0800
> > > From: Mike Payson <[EMAIL PROTECTED]>
> > > X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> > > X-Accept-Language: en
> > > MIME-Version: 1.0
> > > To: [EMAIL PROTECTED]
> > > Content-Type: text/plain; charset=us-ascii
> > > Content-Transfer-Encoding: 7bit
> > >
> > > join news
> > >
> > >
> > > 
> > > Received:
> > > from ubdnet.net
> > > (sense-sea-MegaSub-1-492.oz.net [216.39.145.238]) by
> > > mx1.eskimo.com (8.9.1a/8.8.8) with SMTP id
> > > XAA05279 for <[EMAIL PROTECTED]>;
> > > Wed, 5 Jan 2000 23:17:47 -0800
> > >Received:
> > > (qmail 7696 invoked from network); 6 Jan
> > > 2000 07:17:02 -
> > >Received:
> > > from unknown (HELO ubdnet.net)
> > > ([EMAIL PROTECTED]) by
> > > sense-sea-megasub-1-492.oz.net with SMTP; 6
> > > Jan 2000 07:17:02 -
> > >  Sender:
> > > [EMAIL PROTECTED]
> > > Message-ID:
> > > <[EMAIL PROTECTED]>
> > >Date:
> > > Wed, 05 Jan 2000 23:09:24 -0800
> > >   From:
> > > Mike Payson <[EMAIL PROTECTED]>
> > >   X-Mailer:
> > > Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> > > X-Accept-Language:
> > > en
> > >  MIME-Version:
> > > 1.0
> > > To:
> > > [EMAIL PROTECTED]
> > > Subject:
> > > test
> > >   Co

Re: Mail to all users

2000-01-06 Thread Russell Nelson

Anand Buddhdev writes:
 > If you use qmail-pop3d, I think there's a patch on www.qmail.org to
 > give that functionality.

No, not just a patch, it's a completely separate program.  It uses
the Bernstein Chaining(tm) of qmail-pop3d.

-- 
-russ nelson <[EMAIL PROTECTED]>  http://russnelson.com
Crynwr sells support for free software  | PGPok | "Ask not what your country
521 Pleasant Valley Rd. | +1 315 268 1925 voice | can force other people to
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | do for you..."  -Perry M.



need help with open-smtp4

2000-01-06 Thread qmail

hi all!
can someone please explain how to install the open-smtp4.tar.gz from russ
nelson?

thx in advance

greets, michael



RE: Troubleshooting: Probably a FAQ...

2000-01-06 Thread Greg Owen

> I'm pretty sure it's not Netscape... I tried setting my outgoing mail
> server to that of my ISP-- nothing else changed-- & the sender showed
> up as [EMAIL PROTECTED] It appears that this is a setting 
> supplied by the mail server, but it's possible that I'm wrong.

More probably it is "rewritten" by your mail server.  Sendmail has a
habit of rewriting any addresses to correct the MUA's incorrect or partial
view of the world.  Qmail, less so; but see the mess822 package
(particularly ofmipd) at http://cr.yp.to/mess822.html.

Probably easier to fix in the client.   

-- 
gowen -- Greg Owen -- [EMAIL PROTECTED]




Re: Troubleshooting: Probably a FAQ...

2000-01-06 Thread Mike Payson

I'm pretty sure it's not Netscape... I tried setting my outgoing mail
server to that of my ISP-- nothing else changed-- & the sender showed up
as [EMAIL PROTECTED] It appears that this is a setting supplied by
the mail server, but it's possible that I'm wrong.

Thanks!
Mike

Anand Buddhdev wrote:
> 
> On Thu, Jan 06, 2000 at 12:13:29AM -0800, Mike Payson wrote:
> 
> listserv seems not to like your "Sender" field, which contains an
> unqualified address, ie. "mpayson", instead of "[EMAIL PROTECTED]".
> However, this has NOTHING to do with qmail; that field is inserted by
> your Netscape mail client. Fix that or dump Netscape.
> 
> > I've just set up my qmail server, but I'm having some last minute
> > problems... I just tried to sign up for a mailing list but the mailing
> > list choked on my headers. Below are the fiull headers as forwarded from
> > the mailing list administrator, & the error message generated by the
> > list server. Also attached are the full headers from a second message I
> > sent to myself at my current address. Any idea what I'm missing?
> >
> > Thanks!
> > Mike
> >
> > -Original Message-
> > From: L-Soft list server at Bibliofind (1.8c)
> > [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, January 05, 2000 11:18 PM
> > To: [EMAIL PROTECTED]; Aaron W. West; [EMAIL PROTECTED];
> > [EMAIL PROTECTED]; from the Bibliofind offices
> > Subject: Problem processing mail file from [EMAIL PROTECTED]
> >
> >
> > Anerroroccurredwhile processingfile11873from
> > [EMAIL PROTECTED]: "Mail message sent to the LISTSERV address
> > contains invalid RFC822 fields and could not be parsed successfully".
> >
> > RFC822 parser messages follow:
> >
> >  Incorrect or incomplete address field found and ignored.
> >
> >  Incorrect or incomplete address field found and ignored.
> >
> >  Mail origin cannot be determined.
> >
> >  Original tag data was -> mpayson
> >
> > --- Message causing the problem (17
> > lines) 
> > Return-Path: <[EMAIL PROTECTED]>
> > Received: from ubdnet.net (sense-sea-MegaSub-1-492.oz.net) by
> > biblio.bibliofind.com (LSMTP for Windows NT v1.1b) with SMTP id
> > <[EMAIL PROTECTED]>; Thu, 6 Jan 2000 2:17:32 -0500
> > Received: (qmail 7689 invoked from network); 6 Jan 2000 07:16:40 -
> > Received: from unknown (HELO ubdnet.net) ([EMAIL PROTECTED])
> >   by sense-sea-megasub-1-492.oz.net with SMTP; 6 Jan 2000 07:16:40 -
> > Sender: mpayson
> > Message-ID: <[EMAIL PROTECTED]>
> > Date: Wed, 05 Jan 2000 23:09:02 -0800
> > From: Mike Payson <[EMAIL PROTECTED]>
> > X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> > X-Accept-Language: en
> > MIME-Version: 1.0
> > To: [EMAIL PROTECTED]
> > Content-Type: text/plain; charset=us-ascii
> > Content-Transfer-Encoding: 7bit
> >
> > join news
> >
> >
> > 
> > Received:
> > from ubdnet.net
> > (sense-sea-MegaSub-1-492.oz.net [216.39.145.238]) by
> > mx1.eskimo.com (8.9.1a/8.8.8) with SMTP id
> > XAA05279 for <[EMAIL PROTECTED]>;
> > Wed, 5 Jan 2000 23:17:47 -0800
> >Received:
> > (qmail 7696 invoked from network); 6 Jan
> > 2000 07:17:02 -
> >Received:
> > from unknown (HELO ubdnet.net)
> > ([EMAIL PROTECTED]) by
> > sense-sea-megasub-1-492.oz.net with SMTP; 6
> > Jan 2000 07:17:02 -
> >  Sender:
> > [EMAIL PROTECTED]
> > Message-ID:
> > <[EMAIL PROTECTED]>
> >Date:
> > Wed, 05 Jan 2000 23:09:24 -0800
> >   From:
> > Mike Payson <[EMAIL PROTECTED]>
> >   X-Mailer:
> > Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> > X-Accept-Language:
> > en
> >  MIME-Version:
> > 1.0
> > To:
> > [EMAIL PROTECTED]
> > Subject:
> > test
> >   Content-Type:
> > text/plain; charset=us-ascii
> >  Content-Transfer-Encoding:
> > 7bit
> >   X-Mozilla-Status:
> > 8001
> >  X-Mozilla-Status2:
> > 
> >X-UIDL:
> > 9d29cd0b32e3d580a517270da2667bec
> 
> --
> See complete headers for more info

-- 
Mike Payson || ubdnet.net: The Used Book Dealer's Network
mailto:[EMAIL PROTECTED] || http://www.ubdnet.net:8080/ubd



Re: 7 bit ascii & qmail

2000-01-06 Thread Len Budney

Sam <[EMAIL PROTECTED]> wrote:
> > the cost/benefit ratio in talking to you drops way low.
> 
> Boo-hoo.

Fine; build your own MTA which conforms to your own vague requirements and
doesn't do the *something* that you don't like (drop messages? bounce
messages? burn messages?). And make sure it interoperates with a
_majority_ of _existing_ clients and servers.

Len.

--
I don't have a killfile; I'm just ignoring you.



Re: What MUA do you use?

2000-01-06 Thread Matthew Schnierle

Yeah.  Pine.  Does all that (well, procmail helps the spam effort), and you
can run it on a 300 baud serial connection if necessary.  


On Tue, 4 Jan 2000, Bill Ataras wrote:

BA>
BA>
BA>Just curious what people are using to read/send mail from X. I was using
BA>netscape (SMTP/POP) that came with my redhat dist, but wanted something
BA>with more features (multiple POP accts, filtering etc). I've been playing
BA>with "spruce" (check freshmeat). Its pretty good. But I'm curious what you
BA>guys are using. Now that I have an industrial strength mail server (qmail)
BA>I'd like a really good MUA. Maybe to help me use different mail accounts
BA>for different maillists and for usenet etc etc. Have you found a good mail
BA>client that will let you live on multiple maillists, usenet, spam/filter
BA>yada yada?
BA>
BA>
BA>

-- 
--Matt Schnierle
--mgs at stargate dot net
--Stargate Industries, LLC
--#include 
--"It's not that simple."



Re: 7 bit ascii & qmail

2000-01-06 Thread Len Budney

Sam <[EMAIL PROTECTED]> wrote:
> > ..."dropped"..."bounced"...slandering AOL.
> 
> Sue me.

Are you worth it?

Seriously, my point was 1) clarify what you meant before, and 2) say
what you mean in the future. If you don't, the cost/benefit ratio in
talking to you drops way low.

Len.



Re: Mail to all users

2000-01-06 Thread Anand Buddhdev

On Thu, Jan 06, 2000 at 11:44:15AM +0600, [EMAIL PROTECTED] wrote:

> Hi all,
> 
> I have several accounts on my server,
> and would like to have an easy way of sending news to all users.
> A note on how to do that would be appreciated

Depending on the POP server you use, you could use the bulletin feature.
qpopper supports bulletins. If you use qmail-pop3d, I think there's a
patch on www.qmail.org to give that functionality.

-- 
See complete headers for more info



Re: Troubleshooting: Probably a FAQ...

2000-01-06 Thread Anand Buddhdev

On Thu, Jan 06, 2000 at 12:13:29AM -0800, Mike Payson wrote:

listserv seems not to like your "Sender" field, which contains an
unqualified address, ie. "mpayson", instead of "[EMAIL PROTECTED]".
However, this has NOTHING to do with qmail; that field is inserted by
your Netscape mail client. Fix that or dump Netscape.

> I've just set up my qmail server, but I'm having some last minute
> problems... I just tried to sign up for a mailing list but the mailing
> list choked on my headers. Below are the fiull headers as forwarded from
> the mailing list administrator, & the error message generated by the
> list server. Also attached are the full headers from a second message I
> sent to myself at my current address. Any idea what I'm missing?
> 
> Thanks!
> Mike
> 
> -Original Message-
> From: L-Soft list server at Bibliofind (1.8c)
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 05, 2000 11:18 PM
> To: [EMAIL PROTECTED]; Aaron W. West; [EMAIL PROTECTED];
> [EMAIL PROTECTED]; from the Bibliofind offices
> Subject: Problem processing mail file from [EMAIL PROTECTED]
> 
> 
> Anerroroccurredwhile processingfile11873from
> [EMAIL PROTECTED]: "Mail message sent to the LISTSERV address
> contains invalid RFC822 fields and could not be parsed successfully".
> 
> RFC822 parser messages follow:
> 
>  Incorrect or incomplete address field found and ignored.
> 
>  Incorrect or incomplete address field found and ignored.
> 
>  Mail origin cannot be determined.
> 
>  Original tag data was -> mpayson
> 
> --- Message causing the problem (17
> lines) 
> Return-Path: <[EMAIL PROTECTED]>
> Received: from ubdnet.net (sense-sea-MegaSub-1-492.oz.net) by
> biblio.bibliofind.com (LSMTP for Windows NT v1.1b) with SMTP id
> <[EMAIL PROTECTED]>; Thu, 6 Jan 2000 2:17:32 -0500
> Received: (qmail 7689 invoked from network); 6 Jan 2000 07:16:40 -
> Received: from unknown (HELO ubdnet.net) ([EMAIL PROTECTED])
>   by sense-sea-megasub-1-492.oz.net with SMTP; 6 Jan 2000 07:16:40 -
> Sender: mpayson
> Message-ID: <[EMAIL PROTECTED]>
> Date: Wed, 05 Jan 2000 23:09:02 -0800
> From: Mike Payson <[EMAIL PROTECTED]>
> X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> X-Accept-Language: en
> MIME-Version: 1.0
> To: [EMAIL PROTECTED]
> Content-Type: text/plain; charset=us-ascii
> Content-Transfer-Encoding: 7bit
> 
> join news
> 
> 
> 
> Received: 
> from ubdnet.net
> (sense-sea-MegaSub-1-492.oz.net [216.39.145.238]) by
> mx1.eskimo.com (8.9.1a/8.8.8) with SMTP id
> XAA05279 for <[EMAIL PROTECTED]>;
> Wed, 5 Jan 2000 23:17:47 -0800
>Received: 
> (qmail 7696 invoked from network); 6 Jan
> 2000 07:17:02 -
>Received: 
> from unknown (HELO ubdnet.net)
> ([EMAIL PROTECTED]) by
> sense-sea-megasub-1-492.oz.net with SMTP; 6
> Jan 2000 07:17:02 -
>  Sender: 
> [EMAIL PROTECTED]
> Message-ID: 
> <[EMAIL PROTECTED]>
>Date: 
> Wed, 05 Jan 2000 23:09:24 -0800
>   From: 
> Mike Payson <[EMAIL PROTECTED]>
>   X-Mailer: 
> Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
> X-Accept-Language: 
> en
>  MIME-Version: 
> 1.0
> To: 
> [EMAIL PROTECTED]
> Subject: 
> test
>   Content-Type: 
> text/plain; charset=us-ascii
>  Content-Transfer-Encoding: 
> 7bit
>   X-Mozilla-Status: 
> 8001
>  X-Mozilla-Status2: 
> 
>X-UIDL: 
> 9d29cd0b32e3d580a517270da2667bec

-- 
See complete headers for more info



Mail to all users

2000-01-06 Thread qmail

Hi all,

I have several accounts on my server,
and would like to have an easy way of sending news to all users.
A note on how to do that would be appreciated

best regards
Jacob

-- 
 A saying of the Buddha from http://metta.lk/ 
  
Empty this boat, O Bhikkhu! Emptied by you it will move swiftly. Cutting off lust and 
hatred, to Nibbana you will thereby go. 
Random Dhammapada Verse 369 
 



Re: limiting smtp message size depending on domain

2000-01-06 Thread Anand Buddhdev

On Thu, Jan 06, 2000 at 11:41:23AM +0100, Robert Varga wrote:

man qmail-smtpd, and look for DATABYTES. It's settable via tcpserver,
and while you can't control the size limit on a per-domain basis, it
allows for per-ip control.

> Is there a way to limit the maximum message size the qmail-smtpd accepts
> varying from domain to domain.
> 
> Eg. I would like to have mail's going out of my LAN to have no size limit,
> mail routed internally (from inside to inside through the mail hub) have
> no size limit, but messages coming from outside have size limit, and
> preferably even different limit for each domain. 
> 
> I would not like to do this somewhere after qmail-smtpd, because that way
> the message gets accepted and hence transferred to our machine even if it
> exceeds the size limit.

-- 
See complete headers for more info



qmail Digest 6 Jan 2000 11:00:00 -0000 Issue 872

2000-01-06 Thread qmail-digest-help


qmail Digest 6 Jan 2000 11:00:00 - Issue 872

Topics (messages 35128 through 35167):

Re: OPEN RELAY
35128 by: Lorens Kockum

Re: Local bounces vs. VERP
35129 by: Pavel Kankovsky
35141 by: Russell Nelson

Re: Delivering mail into a SQL table
35130 by: Peter Gradwell

Re: adding a reply-to?
35131 by: Marthe Nesøen Gangfløt

Why Are Virtual Domains So Difficult??
35132 by: CDR Inc
35138 by: Dave Sill
35157 by: Joe Kelsey
35158 by: Marek Narkiewicz

Re: What MUA do you use?
35133 by: Dave Sill
35137 by: Delanet Administration
35147 by: Bruno Wolff III
35151 by: Jedi/Sector One
35152 by: Jedi/Sector One
35153 by: Julian Brown
35154 by: richard.illuin.org
35156 by: Bill Ataras

Re: 7 bit ascii & qmail
35134 by: Dave Sill
35135 by: Dave Sill
35140 by: Fred Lindberg
35150 by: Matthew Brown
35155 by: Sam
35159 by: Len Budney
35160 by: Len Budney
35161 by: Sam

Re: virtual domains.
35136 by: iv0
35142 by: Timothy L. Mayo

Re: Domain relaying (host relaying?) or something
35139 by: Marthe Nesøen Gangfløt

Re: Does qmail-local run more than 1 simultaneous instance?
35143 by: Dave Sill
35144 by: Dave Sill
35145 by: Russell Nelson

Re: creating new users
35146 by: Dave Sill

qmail and pid
35148 by: clifford thurber
35149 by: Dave Sill

Re: ANNOUNCE:  getmail v.0.95, a 'fetchmail' replacement
35162 by: Charles Cazabon

Troubleshooting: Probably a FAQ...
35163 by: Mike Payson

Mail Logfiles
35164 by: Dewald Strauss
35165 by: bert hubert

Tcpserver query...
35166 by: Scott Ballantyne

limiting smtp message size depending on domain
35167 by: Robert Varga

Administrivia:

To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]

To subscribe to the digest, e-mail:
[EMAIL PROTECTED]

To bug my human owner, e-mail:
[EMAIL PROTECTED]

To post to the list, e-mail:
[EMAIL PROTECTED]


--



On the qmail list [EMAIL PROTECTED] wrote:
>
>ORBS obviously succeeds testing:

Not at all obvious, no.

>I don't actually know if this mail is delivered. But they pretend...

Who pretends?  ORBS knows very well that most qmail servers do
not relay.  Those who (are (mis)configured to) relay don't need
any obscure hacks, and those who don't, don't.

Have you been listed in ORBS?  If not, no open relay.




On Tue, 4 Jan 2000, Russell Nelson wrote:

> Pavel Kankovsky writes:
>  > And it bounces to "user-bounce-@hostname"
> 
> Yup.  When the VERP part is empty, then you know that it's an QSBMF,
> but Qmail's Bounce Message Format is Simple to Parse.  What's the big
> deal?

1. QSBMF may be Simple to Parse but it cannot be as simple as $EXTn
2. qmail-VERP combo should not be advertised and/or documented as
   something *eliminating* the need to parse bounces completely

--Pavel Kankovsky aka Peak  [ Boycott Microsoft--http://www.vcnet.com/bms ]
"Resistance is futile. Open your source code and prepare for assimilation."





Pavel Kankovsky writes:
 > 1. QSBMF may be Simple to Parse but it cannot be as simple as $EXTn

Just about.  See below.

 > 2. qmail-VERP combo should not be advertised and/or documented as
 >something *eliminating* the need to parse bounces completely

Sheesh, Pavel, get a life or something!  The statement of the problem
that VERP solves is that there are N+1 foreign bounce message formats,
where N is the number that you have seen before.  VERP lets you
totally escape having to parse remote bounce messages.  Local bounce
messages use QSBMF.  Is this such a big deal??

Here's some perl code which splits out bounces, and also prunes some
stupid sendmail warnings.

$list = shift;
$_ = $ENV{LOCAL};
($addr) = m/$list-owner-(.*)/i or die "doesn't match the list name";
if ($addr) {
$addr =~ s/=([^=]*)$/\@$1/;
while(<>) {
exit 99 if /THIS IS A WARNING MESSAGE ONLY/;
exit 99 if /^Subject: WARNING: message delayed at/;
exit 99 if /^Subject: Warning From uucp/;
exit 99 if /^Subject: Returned mail: Deferred/;
}   
&handle_addr($addr);
} else {
$/="";
$_=<>; # get rid of the email header.
$_=<>; # get the QSBMF
/^Hi. This is the/ or die "This is not a qmail bounce message";
while(<>) {
last if /^-/;
/^<(.*)>/ or die "No recipient address";
&handle_addr($1);
}
}

-- 
-russ nelson <[EMAIL PROTECTED]>  http://russnelson.com
Crynwr sells support for free software  | PGPok | "Ask not what your country
521 Pleasant Valley Rd. | +1 315 268 1925 voice | can force other people to
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | do 

limiting smtp message size depending on domain

2000-01-06 Thread Robert Varga


Is there a way to limit the maximum message size the qmail-smtpd accepts
varying from domain to domain.

Eg. I would like to have mail's going out of my LAN to have no size limit,
mail routed internally (from inside to inside through the mail hub) have
no size limit, but messages coming from outside have size limit, and
preferably even different limit for each domain. 

I would not like to do this somewhere after qmail-smtpd, because that way
the message gets accepted and hence transferred to our machine even if it
exceeds the size limit.

Is somewhere a patch for this?

Robert Varga



Tcpserver query...

2000-01-06 Thread Scott Ballantyne

There doesn't seem to be a list for the ucspi tools, or my eye slipped
over it on Dan's mailinglist page...

Are there known problems with tcpserver under OpenBSD 2.6? I've been
trying to bring up a 2.6 system, and using the same command line that
worked under SunOS 4 doesn't cut it here. anonftpd prints it's banner,
and then exits immediately. It works correctly from inetd.

Regards,
sdb


--
bash-2.03# PATH="/var/databases/ftp/bin:/usr/local/bin:$PATH" tcpserver -R -v -B"You 
have reached SSR.COM's anonymus FTP server..." 0 ftp anonftpd 68 68 &
bash-2.03# ftp localhost
tcpserver: status: 1/40
tcpserver: pid 31145 from 127.0.0.1
Connected to localhost.
tcpserver: ok 31145 localhost:127.0.0.1:21 localhost:127.0.0.1::42866
You have reached SSR.COM's anonymus FTP server...220 Hi there! This is anonftpd.
tcpserver: end 31145 status 0
tcpserver: status: 0/40
--



Re: Mail Logfiles

2000-01-06 Thread bert hubert

On Thu, Jan 06, 2000 at 10:32:07AM +0200, Dewald Strauss wrote:

> Can anyone recommend a program to analyze the maillog files
> generated by qmail ?
> Anything that will show the amount of mail sent and received
> will do at the moment.

qmailanalog - available on www.qmail.org

-- 
+---+  |  http://www.rent-a-nerd.nl
| nerd for hire |  |  
+---+  | - U N I X -
|  |  Inspice et cautus eris - D11T'95



Mail Logfiles

2000-01-06 Thread Dewald Strauss

Hi everybody,

Slight offtopic question...
Can anyone recommend a program to analyze the maillog files
generated by qmail ?
Anything that will show the amount of mail sent and received
will do at the moment.

thanks
Deew



Troubleshooting: Probably a FAQ...

2000-01-06 Thread Mike Payson

I've just set up my qmail server, but I'm having some last minute
problems... I just tried to sign up for a mailing list but the mailing
list choked on my headers. Below are the fiull headers as forwarded from
the mailing list administrator, & the error message generated by the
list server. Also attached are the full headers from a second message I
sent to myself at my current address. Any idea what I'm missing?

Thanks!
Mike

-Original Message-
From: L-Soft list server at Bibliofind (1.8c)
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 05, 2000 11:18 PM
To: [EMAIL PROTECTED]; Aaron W. West; [EMAIL PROTECTED];
[EMAIL PROTECTED]; from the Bibliofind offices
Subject: Problem processing mail file from [EMAIL PROTECTED]


Anerroroccurredwhile processingfile11873from
[EMAIL PROTECTED]: "Mail message sent to the LISTSERV address
contains invalid RFC822 fields and could not be parsed successfully".

RFC822 parser messages follow:

 Incorrect or incomplete address field found and ignored.

 Incorrect or incomplete address field found and ignored.

 Mail origin cannot be determined.

 Original tag data was -> mpayson

--- Message causing the problem (17
lines) 
Return-Path: <[EMAIL PROTECTED]>
Received: from ubdnet.net (sense-sea-MegaSub-1-492.oz.net) by
biblio.bibliofind.com (LSMTP for Windows NT v1.1b) with SMTP id
<[EMAIL PROTECTED]>; Thu, 6 Jan 2000 2:17:32 -0500
Received: (qmail 7689 invoked from network); 6 Jan 2000 07:16:40 -
Received: from unknown (HELO ubdnet.net) ([EMAIL PROTECTED])
  by sense-sea-megasub-1-492.oz.net with SMTP; 6 Jan 2000 07:16:40 -
Sender: mpayson
Message-ID: <[EMAIL PROTECTED]>
Date: Wed, 05 Jan 2000 23:09:02 -0800
From: Mike Payson <[EMAIL PROTECTED]>
X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
X-Accept-Language: en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

join news



Received: 
from ubdnet.net
(sense-sea-MegaSub-1-492.oz.net [216.39.145.238]) by
mx1.eskimo.com (8.9.1a/8.8.8) with SMTP id
XAA05279 for <[EMAIL PROTECTED]>;
Wed, 5 Jan 2000 23:17:47 -0800
   Received: 
(qmail 7696 invoked from network); 6 Jan
2000 07:17:02 -
   Received: 
from unknown (HELO ubdnet.net)
([EMAIL PROTECTED]) by
sense-sea-megasub-1-492.oz.net with SMTP; 6
Jan 2000 07:17:02 -
 Sender: 
[EMAIL PROTECTED]
Message-ID: 
<[EMAIL PROTECTED]>
   Date: 
Wed, 05 Jan 2000 23:09:24 -0800
  From: 
Mike Payson <[EMAIL PROTECTED]>
  X-Mailer: 
Mozilla 4.7 [en] (X11; I; Linux 2.2.13 i586)
X-Accept-Language: 
en
 MIME-Version: 
1.0
To: 
[EMAIL PROTECTED]
Subject: 
test
  Content-Type: 
text/plain; charset=us-ascii
 Content-Transfer-Encoding: 
7bit
  X-Mozilla-Status: 
8001
 X-Mozilla-Status2: 

   X-UIDL: 
9d29cd0b32e3d580a517270da2667bec