Re: Integrating the logs

2001-06-27 Thread hari_bhr

look for ISOQLOG nice

- Original Message -
From: pop corn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 10:00 AM
Subject: Integrating the logs


 I have my different daemons logging into the various log subdirectories
via
 multilog.

 My problem now is integrating them so that I have a continuous line of
 activity from the beginning to end for a given email.

 For example, I can do a tail -f current log for qmail-pop3 while running
 tests. However, I would like to know what related activities are occurring
 in other logs for this same email test.

 I have pulled the following info about qmail-analog from the following
 length thread in the archives. It includes an example script. I cut/paste
 quickly, so not everyone gets the credit they deserve for their posts in
 this thread. I have at minimum two questions after reading all of the info
 below:

 1) what are all the z... files in the example script?
 for ana in zoverall zddist zdeferrals zfailures zrhosts zsuids zrxdelay;

 2) where is a real working example of qmail-mrtg?

 ==

 I want to know how many messages were sent/failed etc. for a given period
of
 time (say the last three days).
 I have done the following in both /var/log/qmail/qmail-send and
 /var/log/qmail/qmail-smtpd (I'll admit my ignorance and say that I don't
 know the difference between the two.  Is qmail-send local deliveries and
 qmail-smtpd remote deliveries?):
 1)  Ran matchup on /var/log/qmail/qmail-send(smtpd)/current
 2)  Converted the matchedup version of current into human readable
 format using tai64nlocal
 3)  Pulled out dates for which I want to see log results from the file
 created above
 4)  Convert the data above to tai64 format using tai64n
 5)  Ran this data through zoverall to see qmailanalog results
 Regardless of whether I run it against /var/log/qmail/qmail-send or
 /var/log/qmail/qmail-smtpd I get the following:
 
 Completed messages: 0
 Total delivery attempts: 0
 
 Am I anywhere near doing this right?
 
 Here are my actual commands
 1)  cat /var/log/qmail/qmail-smtpd/current |
 /usr/local/qmailanalog/bin/matchup  /var/log/qmail/qmail-smtpd/matchedup
 2)  cat /var/log/qmail/qmail-smtpd/matchedup | /usr/local/bin/tai64nlocal

 human_readable_current
 3)  vi human_readable_current (remove all unneeded data)
 4)  cat /var/log/qmail/qmail-send/human_readable_current |
 /usr/local/bin/tai64n  tai64_current
 5)  cat ./tai64_current | /usr/local/qmailanalog/bin/zoverall 
overall_log
 No.  qmail-smtpd is incoming mail via SMTP.  qmail-send is all deliveries,
 local and remote.
 No.  Instead of converting the tai64n timestamps to human-readable, you
need
 to convert them to the fractional seconds (tai) that qmail-analog expects.
 You can do this with tai64n2tai, included in Bruce Guenter's qlogtools
 package if I remember correctly.  His software is at untroubled.org.
Thanks
 for the info Charles, but I'm confused.  How do most of you folks pull out
 information from your logs?  Log files generated by qmail are
 unreadable/unusable in the current (multilog) format.  In order for them
to
 make sense to me, and in order to sift them for specific dates I have to
 convert them to human readable format.  I can do this with tai64nlocal.
Once
 I have removed data that is not pertinent I then have to change them back
 into multilog format using tai64n, and then convert them into the older
 TAI64 format that qmailanalog understands, then run them through the
 qmailanalog scripts.
 Wow, that's a convoluted process using tools that until now had worked
 together to provide a graceful solution to my email needs.
 Thanks for the info Charles, but I'm confused.  How do most of you folks
 pull out information from your logs?
 With qmail-analog, tai64nlocal, and less, in my case.  Most people here
 probably use something similar.
 Log files generated by qmail are unreadable/unusable in the current
 (multilog) format.
 tai64n timestamps aren't supposed to be human readable.  They're supposed
to
 be easily parsable by programs.  That's the whole point of tai64nlocal --
 you log with tai64n timestamps, and if you want to read the log with
 human-readable timestamps, you do:
 tai64nlocal  log | pager_of_choice
 Don't run the logs through tai64nlocal before they hit the disk.
 In order for them to make sense to me, and in order to sift them for
 specific dates I have to convert them to human readable format.
 No, it's much simpler than that.  A program to filter a log with
tai64nlocal
 timestamps for particular dates is trivial; Bruce's qlogtools probably
 includes one (though I haven't checked).  After you've filtered them, you
 run it through tai64nlocal before reading it.
 Once I have removed data that is not pertinent I then have to change them
 back into multilog format using tai64n, and then convert them into the
 older
 TAI64 format that qmailanalog understands, then run them through the
 qmailanalog 

Re: Qmail server error

2001-06-16 Thread hari_bhr

i had a similar problem
then

i have created tcp.smtp
like this

Relay clients
--
vi /etc/tcp.smtp

127.0.0.1:allow,RELAYCLIENT=
:allow
- Original Message -
From: Alex Tsang [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, June 16, 2001 2:01 PM
Subject: RE: Qmail server error


 I think you need to add RELAYCLIENT variable in you hosts.allow

 e.g 192.168.1.:allow,RELAYCLIENT

 Regards

 Alex Tsang

 -Original Message-
 From: Bob Ross [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, June 16, 2001 6:51 AM
 To: [EMAIL PROTECTED]
 Subject: Qmail server error


 I just added a second T1 to our service. Every time we try to send mail
 while connected to the new server we get the following error. This only
 happens to outbound email.

 I put the class C in the /etc/hosts.allow

 What do I need to do to fix this?

 The message could not be sent because one of the recipients was rejected
by
 the server. The rejected e-mail address was '[EMAIL PROTECTED]'. Subject
 'RT311', Account: 'kingmanaz.net', Server: 'kingmanaz.net', Protocol:
SMTP,
 Server Response: '553 sorry, that domain isn't in my list of allowed
 rcpthosts (#5.7.1)', Port: 25, Secure(SSL): No, Server Error: 553, Error
 Number: 0x800CCC79

 Thanks
 Bob Ross


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




how do we integrate antivirus with qmail

2001-06-14 Thread hari_bhr



hi all

how do i integrate antivirus scanner for incoming 
and out going mails.

i have qmail+vpopmail+mysql

any help will appriciate


Re: Migrating a Maildir to another qmail box

2001-06-14 Thread hari_bhr

hi

take a back of all 

/var/qmail/control  directry
/var/qmail/usersdirectry

and restore
- Original Message - 
From: Al Sparks [EMAIL PROTECTED]
To: qmail list [EMAIL PROTECTED]
Sent: Friday, June 15, 2001 4:07 AM
Subject: Migrating a Maildir to another qmail box


 It comes time to move my email, located in a $HOME/Maildir to another
 machine, also running qmail.  I tar the $HOME/Maildir transfer it to
 the new machine (with a different name btw) and restore it to the new
 $HOME/Maildir.
 
 What else do I need to do to make qmail on the new machine see it?  
 
 When I do a file listing of $HOME/Maildir/cur, I notice that the
 machine name is included in the filenames.  Do I need to change all
 those filenames so it reflects the new machine name?
 
 Realizing this isn't the courier group, are there any changes I need to
 make to the various courierimapuiddb files?
 
 Anything else I should look for?
 === Al
 
 __
 Do You Yahoo!?
 Get personalized email addresses from Yahoo! Mail - only $35 
 a year!  http://personal.mail.yahoo.com/


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




moving from one server to another

2001-06-08 Thread hari_bhr

hi all

iam planning to migrate from one server to another server with option of
Mysql.- due to increase of space.
let me brief out what is my setup

OLD
-

Redhat Linux 6.2
qmail
vpopmail with out mysql support, with webpass
qmailadmin
sqwebmail

working more than year

NEW
---

same configuration server on RH 6.2
qmail
vpopmail + mysql
qmailadmin
sqwebmail with vchkpw authentication, no web pass

now iam planning to move OLD server to NEW server,
what are the precaution to be take care in this regard

how can i take back up and restore in to new server
how do i convert all the domains in to MySQL Server
how do i do that with out any problem with existing mails with existing
password
it should transparent to the end user.
it have got more than 2000-1 users on the old server.

for your information both the side i have similar setup with all user IDS
and place i have installed. ( except size of the disk)

thanks in advance for the help.

regards
hari


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




best patches to be apply for QMAIL

2001-06-07 Thread hari_bhr

hi

i have installed qmail 1.03 on redhat 6.2

i would like to know , what are the patches to be patch with this.
for more secure and with out any holes
could some one guide me what are the patches to be apply

thanks advance



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




better methods to install qmail on linux ( Redhat 6.2 or 7.0)

2001-06-06 Thread hari_bhr

hi all

i have quick question for the all the gurus of linux and qmail experts.
iam newnie for qmail and cpopmail
i would like to know what is the best installation linux for only mail and
http applications.

like volume wise

what is the space for /
what is the space for /boot
what is the space for /home
what is the space for /usr
what is the space for /var
what is the space for /swap
what is the space for /tmp

thanks for the help in advance






_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Hy

2001-06-01 Thread hari_bhr

better you down load plesk its free for one domain
- Original Message -
From: David [EMAIL PROTECTED]
To: marco1 [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, June 01, 2001 3:30 PM
Subject: Re: Hy


Dear marco1,

  1¡ê? here http://www.inter7.com/qmailadmin/ is web based interface to
create users/aliases/forward ...
  you should install vpopmail for qmail first, vpopmail can be located
at http://www.inter7.com/vpopmail/
  Http://www.inter7.com/vqadmin/ is a web based interface to create
virtual domains in qmail
  you nedd install vpopmail first too.
  2,  If you wanna get your mail to your local machine via pop3, you will
need one software like outlook express.
  3,  Here(http://www.inter7.com/sqwebmail/) is a free webmail programe, but
it need vpopmail too.

  I use qmail+vpopmail+mysql, so all my suggestion with vpopmail.



Sincerely yours,
David Ge [EMAIL PROTECTED]
Room 604, No. 168, Qinzhou Road, Shanghai.
Phone: (021)34140621-12
2001-06-01 18:00:52

On 2001-06-01 11:50:00 you wrote:
Hy I'me a new user of Qmail and Linux so i need some basic information, I'm
sorry for my ignorance:-)

1)There is some free Gui or Web interface for administering Qmail?
2)I need client software or all I need is something like outlook express?
3)It is possible to read e-mail directly on the server with common web
browser?




_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Qmail Authentication

2001-04-23 Thread hari_bhr

hi

you can use vpopmail for all

- Original Message -
From: Sajjad Ahmad [EMAIL PROTECTED]
To: Mira Tempr [EMAIL PROTECTED]
Cc: Qmail@List. Cr. Yp. To [EMAIL PROTECTED]
Sent: Monday, April 23, 2001 12:07 PM
Subject: RE: Qmail Authentication


 I am talking about POP3 Authentication


 -Original Message-
 From: Mira Tempr [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, April 22, 2001 7:34 PM
 To: Sajjad Ahmad
 Cc: Qmail@List. Cr. Yp. To
 Subject: Re: Qmail Authentication

 = 22/04/01 13:56  by  Sajjad Ahmad =
 | Dear All,
 |
 | I have Qmail server in my LAN. It  is currently getting authentication
 from
 | Microsoft SQL Server on NT. Now I want it authenticate the users from
 local
 | Linux ( Redhat) Passwd file . Can some body help me in this regard,
 |

 Autheticate for what ? Pop3 or smtp relaying or somenthing else ???

 --
Mira Tempr [EMAIL PROTECTED]
http://www.cekit.cz/


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Qmail Authentication

2001-04-23 Thread hari_bhr

can i ahve url of this
- Original Message -
From: sanjay singh [EMAIL PROTECTED]
To: hari_bhr [EMAIL PROTECTED]
Cc: Sajjad Ahmad [EMAIL PROTECTED]; Mira Tempír [EMAIL PROTECTED];
Qmail@List. Cr. Yp. To [EMAIL PROTECTED]
Sent: Monday, April 23, 2001 12:27 PM
Subject: Re: Qmail Authentication


 even cucipop is good.

 Regards
 Sanjay Singh
 www.net4india.com



 hari_bhr wrote:

  hi
 
  you can use vpopmail for all
 
  - Original Message -
  From: Sajjad Ahmad [EMAIL PROTECTED]
  To: Mira Tempír [EMAIL PROTECTED]
  Cc: Qmail@List. Cr. Yp. To [EMAIL PROTECTED]
  Sent: Monday, April 23, 2001 12:07 PM
  Subject: RE: Qmail Authentication
 
   I am talking about POP3 Authentication
  
  
   -Original Message-
   From: Mira Tempír [mailto:[EMAIL PROTECTED]]
   Sent: Sunday, April 22, 2001 7:34 PM
   To: Sajjad Ahmad
   Cc: Qmail@List. Cr. Yp. To
   Subject: Re: Qmail Authentication
  
   = 22/04/01 13:56  by  Sajjad Ahmad =
   | Dear All,
   |
   | I have Qmail server in my LAN. It  is currently getting
authentication
   from
   | Microsoft SQL Server on NT. Now I want it authenticate the users
from
   local
   | Linux ( Redhat) Passwd file . Can some body help me in this regard,
   |
  
   Autheticate for what ? Pop3 or smtp relaying or somenthing else ???
  
   --
  Mira Tempír [EMAIL PROTECTED]
  http://www.cekit.cz/
 
  _
  Do You Yahoo!?
  Get your free @yahoo.com address at http://mail.yahoo.com



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Qmail Authentication

2001-04-23 Thread hari_bhr

better check virus attached with your mail
- Original Message -
From: Forrest Sutton [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Cc: Sajjad Ahmad [EMAIL PROTECTED]; Mira Tempír [EMAIL PROTECTED];
Qmail@List. Cr. Yp. To [EMAIL PROTECTED]
Sent: Tuesday, April 24, 2001 7:58 AM
Subject: Re: Qmail Authentication



 even cucipop is good.

 Regards
 Sanjay Singh
 www.net4india.com



 hari_bhr wrote:

  hi
 
  you can use vpopmail for all
 
  - Original Message -
  From: Sajjad Ahmad [EMAIL PROTECTED]
  To: Mira Tempír [EMAIL PROTECTED]
  Cc: Qmail@List. Cr. Yp. To [EMAIL PROTECTED]
  Sent: Monday, April 23, 2001 12:07 PM
  Subject: RE: Qmail Authentication
 
   I am talking about POP3 Authentication
  
  
   -Original Message-
   From: Mira Tempír [mailto:[EMAIL PROTECTED]]
   Sent: Sunday, April 22, 2001 7:34 PM
   To: Sajjad Ahmad
   Cc: Qmail@List. Cr. Yp. To
   Subject: Re: Qmail Authentication
  
   = 22/04/01 13:56  by  Sajjad Ahmad =
   | Dear All,
   |
   | I have Qmail server in my LAN. It  is currently getting
authentication
   from
   | Microsoft SQL Server on NT. Now I want it authenticate the users
from
   local
   | Linux ( Redhat) Passwd file . Can some body help me in this regard,
   |
  
   Autheticate for what ? Pop3 or smtp relaying or somenthing else ???
  
   --
  Mira Tempír [EMAIL PROTECTED]
  http://www.cekit.cz/
 
  _
  Do You Yahoo!?
  Get your free @yahoo.com address at http://mail.yahoo.com



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




which operation system us the best use of qmail

2001-01-29 Thread hari_bhr

hi all

could some one help me which operation system is the best
usage of qmail+vpopmail+qmailadmin+mysql+sqwebmail

linux
freebsd
hp
sun
AIX
Solaris

thanks




_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: hahaha@sexyfun.net

2000-12-14 Thread hari_bhr

if u are using vpopmail and sqwebmail

do like this
so you wont see from address from sqwebmail

touch /usr/local/share/sqwebmail/nochangingfrom

- Original Message -
From: Marc-Adrian Napoli [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, December 15, 2000 6:49 AM
Subject: [EMAIL PROTECTED]


 hi all,

 this [EMAIL PROTECTED] email thats going around sends [EMAIL PROTECTED]
as
 an in-line "From:" header not "MAIL FROM" out-of-band info.

 does anyone know how to block based on the header not the "MAIL FROM"?

 Regards,

 Marc-Adrian Napoli
 Network Admin
 Connect Infobahn Australia
 +61 2 9212 0387


__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com