Scientific Linux 6
Sponsored Link

Mail Log Analyzer - AWstats2011/03/20

  Install maillog analyzer AWstats. Web Server is also needed. Web Server is also necessarry to be installed.

[1] Install AWstats
[root@mail ~]#
yum --enablerepo=rpmforge -y install awstats
 
# install from RPMforge


[root@mail ~]#
cp /etc/awstats/awstats.model.conf /etc/awstats/awstats.mail.srv.world.conf

[root@mail ~]#
vi /etc/awstats/awstats.mail.srv.world.conf


# line 51: change

LogFile="
/usr/bin/maillogconvert.pl standard < /var/log/maillog |
"

# line 63: change

LogType=
M


# line 122 make it comment / add the line below

#
LogFormat=1
LogFormat="%time2 %email %email_r %host %host_r %method %url %code %bytesd"


# line 153 specify hostname

SiteDomain="
mail.srv.world
"

# line 831: change like below

LevelForBrowsersDetection=
0

LevelForOSDetection=
0

LevelForRefererAnalyze=
0

LevelForRobotsDetection=
0

LevelForSearchEnginesDetection=
0

LevelForKeywordsDetection=
0

LevelForFileTypesDetection=
0

LevelForWormsDetection=0

# line 949: change like below

ShowMonthStats=
UHB

ShowDaysOfMonthStats=
HB

ShowDaysOfWeekStats=
HB

ShowHoursStats=
HB

ShowDomainsStats=
0

ShowHostsStats=
HBL

ShowRobotsStats=
0

ShowEMailSenders=
HBML

ShowEMailReceivers=
HBML

ShowSessionsStats=
0

ShowPagesStats=
0

ShowFileTypesStats=
0

ShowOSStats=
0

ShowBrowsersStats=
0

ShowOriginStats=
0

ShowKeyphrasesStats=
0

ShowKeywordsStats=
0

ShowMiscStats=
0

ShowHTTPErrorsStats=
0

ShowSMTPErrorsStats=
1


[root@mail ~]#
vi /etc/httpd/conf.d/awstats.conf


Alias /awstats/icon/ /var/www/awstats/icon/
# add Alias

Alias /report /var/www/awstats/

ScriptAlias /awstats/ /var/www/awstats/
<Directory "/var/www/awstats/">
DirectoryIndex awstats.pl
    Options ExecCGI
    order deny,allow
    deny from all
    allow from 127.0.0.1
10.0.0.0/24
# IP address you allow

</Directory>

[root@mail ~]#
/etc/rc.d/init.d/httpd restart

Stopping httpd:
[  OK  ]

Starting httpd:
[  OK  ]


# generate reports

[root@mail ~]#
/var/www/awstats/awstats.pl -config=mail.srv.world -update

Create/Update database for config "/etc/awstats/awstats.mail.srv.world.conf" by AWStats version 7.0 (build 1.971)
From data in log file "/usr/bin/maillogconvert.pl standard < /var/log/maillog |"...
Phase 1 : First bypass old records, searching new record...
Searching new records from beginning of log file...
Phase 2 : Now process new records (Flush history on disk after 20000 hosts)...
Jumped lines in file: 0
Parsed lines in file: 9
Found 2 dropped records,
Found 0 comments,
Found 0 blank records,
Found 0 corrupted records,
Found 0 old records,
Found 7 new qualified records.
# generate HTML from reports

[root@mail ~]#
/var/www/awstats/awstats.pl -config=mail.srv.world -output -staticlink > /var/www/awstats/index.html


# change cron

[root@mail ~]#
vi /etc/cron.hourly/00awstats


#!/bin/bash

if [ -f /var/log/httpd/access_log ] ; then
# make it comment

#
exec /usr/bin/awstats_updateall.pl now -configdir="/etc/awstats" -awstatsprog="/var/www/awstats/awstats.pl" > /dev/null
# add

/var/www/awstats/awstats.pl -config=mail.srv.world -update > /dev/null
/var/www/awstats/awstats.pl -config=mail.srv.world -output -staticlink > /var/www/awstats/index.html

fi
exit 0
[2] Access to 'http://(your server's name or IP address)/report/' with web browser. Then following screen is shown and it's possible to make sure mail log summary.
Matched Content