HOME


sh-3ll 1.0
DIR:/usr/local/qmailanalog/bin/
Upload File :
Current File : //usr/local/qmailanalog/bin/rhosts
#!/bin/sh
# WARNING: This file was auto-generated. Do not edit!
awk '
  /^d/ {
    host = $8
    while (num = index(host,"@"))
      host = substr(host,num + 1)
    xdelay[host] += $5 - $4
    if ($2 == "k") sbytes[host] += $6
    if ($2 == "k") succ[host] += 1
    if ($2 == "d") fail[host] += 1
    if ($2 == "z") temp[host] += 1
  }
  END {
    for (host in xdelay) {
      str = sprintf("%.2f",xdelay[host])
      print 0 + sbytes[host],succ[host] + fail[host],succ[host] + fail[host] + temp[host],str,host
    }
  }
'