Redhat ES V.04 Linux Mail server
I have configured mail server sendmail as MTA , used dovecot imap protocal to send and receive mails, users access the mail server by the email clinet software ( outlook express)with the broadband internet connection from their home while accessing their mail account they are able to access most of the times but some times they are not able to access their mailaccount , they say connection failed is the error message ,this happens atleast once in a day ,
please check my firewall copied below and give me the complete iptable rules for running the mail server without any problems
Following i have copied the firewall , iptables- L-vn , netstat-nl and /var/log/maillog
--------------------------
---firewal
l---------
----------
----------
----------
----------
---
#!/bin/sh
#-------------------------
----------
----------
----------
----------
----------
#
#
#-------------------------
----------
----------
----------
----------
----------
#-------------------------
------MODU
LES-------
----------
----------
----------
#Load Mdules
modprobe ip_tables
modprobe iptable_mangle
modprobe iptable_filter
modprobe iptable_nat
modprobe ipt_limit
modprobe ipt_LOG
modprobe ipt_MASQUERADE
modprobe ipt_state
modprobe ip_conntrack
modprobe ip_conntrack_ftp
modprobe ip_nat_ftp
#-------------------------
---INTERFA
CES-------
----------
----------
----------
#Interface Definitions
int_nic="eth0"
int_ip="202.144.86.74"
lan="192.168.1.0/24"
dns0="202.144.95.4"
dns1="202.144.66.6"
anywhere="0.0.0.0/0"
router_ip="202.144.86.73"
ip="192.168.1"
#-------------------------
---FLUSH POLICIES AND RULES---------------------
---
#Clear out any existing firewall rules
iptables -F
iptables -F INPUT
iptables -F OUTPUT
iptables -F FORWARD
iptables -F -t mangle
iptables -F -t nat
iptables -X -t nat
iptables -X -t mangle
iptables -X
#-------------------------
---BASIC SECURITY RESTRICTIONS--------------
----------
----------
--
#Disabling IP Spoofing attacks
echo 2 > /proc/sys/net/ipv4/conf/al
l/rp_filte
r
#Don't respond to broadcast pings
echo "1" > /proc/sys/net/ipv4/icmp_ec
ho_ignore_
broadcasts
#Block source routing
echo 0 >/proc/sys/net/ipv4/conf/a
ll/accept_
source_rou
te
#Kill timestamps. These have been the subject of a recent bugtraq
#thread
echo 0 > /proc/sys/net/ipv4/tcp_tim
estamps
#Enable SYN Cookies
echo 1 > /proc/sys/net/ipv4/tcp_syn
cookies
#Kill ICMP redirects
echo 0 >/proc/sys/net/ipv4/conf/a
ll/accept_
redirects
#Enable bad error message protection
echo 1 > /proc/sys/net/ipv4/icmp_ig
nore_bogus
_error_res
ponses
#Allow dynamic ip addresses
echo "1" > /proc/sys/net/ipv4/ip_dyna
ddr
#Set out local port range
echo "32768 61000" >/proc/sys/net/ipv4/ip_loc
al_port_ra
nge
#PING OF DEATH
iptables -A FORWARD -p icmp --icmp-type 8 -m limit --limit 3/second -j ACCEPT
#SYN-FLOOD PROTECTION
iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
#-------------------------
--DENIAL OF SERVICE-------------------
----------
------
#Reduce DoS'ing ability by timeouts
echo 30 > /proc/sys/net/ipv4/tcp_fin
_timeout
echo 1800 > /proc/sys/net/ipv4/tcp_kee
palive_tim
e
echo 1 > /proc/sys/net/ipv4/tcp_win
dow_scalin
g
echo 0 > /proc/sys/net/ipv4/tcp_sac
k
echo 1280 > /proc/sys/net/ipv4/tcp_max
_syn_backl
og
#-------------------------
--FIREWALL
POLICIES AND TRAFFIC DETAILS-------------------
----------
------
#Default POLICIES
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
#LOOPBACK ALLOW TRAFFIC ON THE LOOPBACK INTERFACE
iptables -A INPUT -i lo -j ACCEPT
#Allow access to SSH from outside
iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 22 -j ACCEPT
#dns
iptables -A INPUT -p tcp --dport 53 -j ACCEPT
iptables -A INPUT -p udp --dport 53 -j ACCEPT
# From Outside
iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 80 -j ACCEPT
iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 25 -j ACCEPT
iptables -A INPUT -p udp -s $anywhere -d $int_ip --dport 25 -j ACCEPT
iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 143 -j ACCEPT
iptables -A INPUT -p udp -s $anywhere -d $int_ip --dport 143 -j ACCEPT
iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 465 -j ACCEPT
#iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 110 -j ACCEPT
#iptables -A INPUT -p tcp -s $anywhere -d $int_ip --dport 106 -j ACCEPT
iptables -A INPUT -p tcp -s $anywhere --sport 1024:65535 -d $int_ip --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp -s $int_ip --sport 25 -d $anywhere --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -p tcp -s $int_ip --sport 1024:65535 -d $anywhere --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A INPUT -p tcp -s $anywhere --sport 25 -d $int_ip --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT
#-------------------------
-ICMP CONNECTIONS---------------
----------
----------
----------
----------
---
#Allow and Accept icmp traffic with restrictions
iptables -A INPUT -p 1 -s $lan -j ACCEPT
iptables -A INPUT -p 1 -d $int_ip --icmp-type 8 -j DROP
iptables -A INPUT -p 1 -s $anywhere -j ACCEPT
#-------------------------
-----FIREW
ALL LOGGING-------------------
----------
----------
----------
----------
#LOG RULES
iptables -A INPUT -p tcp -m state --state INVALID -j LOG
iptables -A INPUT -p icmp -j LOG
#iptables -A OUTPUT -j LOG
#iptables -A INPUT -j LOG
#iptables -A FORWARD -j LOG
#iptables -t nat -A PREROUTING -j LOG
#iptables -t nat -A POSTROUTING -j LOG
#iptables -t nat -A OUTPUT -j LOG
#-------------------------
----------
----------
----------
----------
----------
----------
----------
----------
echo "Started Firewall."
sleep 13
--------------------------
----------
-iptables -L -vn-----------------------
----------
----------
---
Chain INPUT (policy DROP 4087 packets, 297K bytes)
pkts bytes target prot opt in out source destination
12221 8413K ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
585 47868 ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp dpt:22
0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:53
0 0 ACCEPT udp -- * * 0.0.0.0/0 0.0.0.0/0 udp dpt:53
788 73797 ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp dpt:80
51465 46M ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp dpt:25
0 0 ACCEPT udp -- * * 0.0.0.0/0 202.144.86.74 udp dpt:25
381K 31M ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp dpt:143
0 0 ACCEPT udp -- * * 0.0.0.0/0 202.144.86.74 udp dpt:143
0 0 ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp dpt:465
0 0 ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp spts:1024:65535 dpt:25 state NEW,ESTABLISHED
235K 16M ACCEPT tcp -- * * 0.0.0.0/0 202.144.86.74 tcp spt:25 dpts:1024:65535 state ESTABLISHED
4 240 ACCEPT icmp -- * * 192.168.1.0/24 0.0.0.0/0
16 1472 DROP icmp -- * * 0.0.0.0/0 202.144.86.74 icmp type 8
54 3392 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0
71338 6728K ACCEPT udp -- eth0 * 202.144.95.4 0.0.0.0/0 udp spt:53 state RELATED,ESTABLISHED
2367 256K ACCEPT udp -- eth0 * 202.144.66.6 0.0.0.0/0 udp spt:53 state RELATED,ESTABLISHED
992 41734 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0 state INVALID LOG flags 0 level 4
0 0 LOG icmp -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 4
Chain FORWARD (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 icmp type 8 limit: avg 3/sec burst 5
0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp flags:0x16/0x02 limit: avg 1/sec burst 5
Chain OUTPUT (policy ACCEPT 561K packets, 337M bytes)
pkts bytes target prot opt in out source destination
48999 2909K ACCEPT tcp -- * * 202.144.86.74 0.0.0.0/0 tcp spt:25 dpts:1024:65535 state ESTABLISHED
440K 222M ACCEPT tcp -- * * 202.144.86.74 0.0.0.0/0 tcp spts:1024:65535 dpt:25 state NEW,ESTABLISHED
--------------------------
----------
netstat -nl-----------------------
----------
----------
---------
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:32768 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:6000 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
tcp 0 0 :::993 :::* LISTEN
tcp 0 0 :::143 :::* LISTEN
tcp 0 0 :::6000 :::* LISTEN
tcp 0 0 :::80 :::* LISTEN
tcp 0 0 :::22 :::* LISTEN
tcp 0 0 :::443 :::* LISTEN
udp 0 0 0.0.0.0:32768 0.0.0.0:*
udp 0 0 0.0.0.0:111 0.0.0.0:*
udp 0 0 0.0.0.0:631 0.0.0.0:*
udp 0 0 0.0.0.0:632 0.0.0.0:*
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ACC ] STREAM LISTENING 5939 /var/run/dbus/system_bus_s
ocket
unix 2 [ ACC ] STREAM LISTENING 431708 @/tmp/fam-root-
unix 2 [ ACC ] STREAM LISTENING 431193 /tmp/.X11-unix/X0
unix 2 [ ACC ] STREAM LISTENING 420355 /tmp/ssh-YzgGp23959/agent.
23959
unix 2 [ ACC ] STREAM LISTENING 431426 /tmp/ssh-SeQtj24983/agent.
24983
unix 2 [ ACC ] STREAM LISTENING 431541 /tmp/ksocket-root/kdeinit_
_0
unix 2 [ ACC ] STREAM LISTENING 431543 /tmp/ksocket-root/kdeinit-
:0
unix 2 [ ACC ] STREAM LISTENING 431558 /tmp/.ICE-unix/dcop25036-1
160800984
unix 2 [ ACC ] STREAM LISTENING 431892 /tmp/mcop-root/mail_script
acomsystem
s_com-61e3
-45306af1
unix 2 [ ACC ] STREAM LISTENING 431610 /tmp/ksocket-root/klaunche
rxS8PJa.sl
ave-socket
unix 2 [ ACC ] STREAM LISTENING 431999 /tmp/.ICE-unix/25070
unix 2 [ ACC ] STREAM LISTENING 432319 /tmp/orbit-root/linc-620a-
0-77654a21
22651
unix 2 [ ACC ] STREAM LISTENING 432338 /tmp/orbit-root/linc-6203-
0-3d6db351
d96ae
unix 2 [ ACC ] STREAM LISTENING 432334 /tmp/orbit-root/linc-6204-
0-3d6db351
36bca
unix 2 [ ACC ] STREAM LISTENING 432511 /tmp/orbit-root/linc-6211-
0-49ff245e
60738
unix 2 [ ACC ] STREAM LISTENING 432611 /tmp/orbit-root/linc-6219-
0-783ed06d
1f13d
unix 2 [ ACC ] STREAM LISTENING 432715 /tmp/orbit-root/linc-6206-
0-7895587a
97864
unix 2 [ ACC ] STREAM LISTENING 433058 /tmp/orbit-root/linc-625c-
0-3e3bbb64
358b3
unix 2 [ ACC ] STREAM LISTENING 5793 /dev/gpmctl
unix 2 [ ACC ] STREAM LISTENING 5880 /tmp/.font-unix/fs7100
unix 2 [ ACC ] STREAM LISTENING 431435 @/tmp/dbus-M55SUBQhBi
unix 2 [ ACC ] STREAM LISTENING 5375 /var/run/acpid.socket
unix 2 [ ACC ] STREAM LISTENING 5477 /var/run/dovecot-login/def
ault
--------------------------
var/log/ma
illog-----
----------
----------
----------
----------
----------
------
Oct 14 06:14:41 mail sendmail[18768]: k9DLe1o5018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=79711, dsn=2.0.0, stat=Sent
Oct 14 06:14:55 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 16000
Oct 14 06:15:17 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 17000
Oct 14 06:15:24 mail sendmail[21073]: k9E0jNsA021073: lost input channel from [124.90.115.11] to MTA after rcpt
Oct 14 06:15:24 mail sendmail[21073]: k9E0jNsA021073: from=<hrchennai@scriptacom
systems.co
m>, size=0, class=0, nrcpts=1, proto=ESMTP, daemon=MTA, relay=[124.90.115.11]
Oct 14 06:15:31 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:15:35 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:15:35 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 18000
Oct 14 06:15:36 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:15:47 mail imap-login: Login: vijaylakshmi [::ffff:59.92.143.177]
Oct 14 06:15:49 mail imap-login: Login: vijaylakshmi [::ffff:59.92.143.177]
Oct 14 06:15:52 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 19000
Oct 14 06:15:54 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:15:56 mail sendmail[21090]: k9E0jtJg021090: from=<send@mail.efax.com>,
size=1382, class=0, nrcpts=1, msgid=<45303310.001311.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp13.j2.com [204.11.168.115]
Oct 14 06:15:57 mail sendmail[21094]: k9E0jtJg021090: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61588, dsn=2.0.0, stat=Sent
Oct 14 06:15:57 mail sendmail[21094]: k9E0jtJg021090: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61588, dsn=2.0.0, stat=Sent
Oct 14 06:15:59 mail sendmail[21093]: k9E0jva7021093: from=<send@mail.efax.com>,
size=1345, class=0, nrcpts=1, msgid=<453033D1.0011D3.016
40@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp14.j2.com [204.11.168.116]
Oct 14 06:15:59 mail sendmail[21097]: k9E0jva7021093: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61552, dsn=2.0.0, stat=Sent
Oct 14 06:15:59 mail sendmail[21097]: k9E0jva7021093: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61552, dsn=2.0.0, stat=Sent
Oct 14 06:16:01 mail sendmail[7286]: k9C3XOUd005915: to=<kshannon@bna.bellsouth
.net>,<ksh
ep@bna.bel
lsouth.net
>, delay=1+21:11:36, xdelay=00:32:00, mailer=esmtp, pri=1157912, relay=bna.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with bna.bellsouth.net.
Oct 14 06:16:09 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 20000
Oct 14 06:16:13 mail sendmail[19635]: k9DMe1YC019635: to=<mcaxmczfhkg@arabia.com
>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=78687, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:16:14 mail sendmail[19635]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:00:58, xdelay=00:00:00, mailer=esmtp, pri=467441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:14 mail sendmail[19635]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:06:17, xdelay=00:00:00, mailer=esmtp, pri=467442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:14 mail sendmail[19635]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:05:14, xdelay=00:00:00, mailer=esmtp, pri=467442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:16:14 mail sendmail[19635]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+19:39:13, xdelay=00:00:00, mailer=esmtp, pri=467442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:16:29 mail sendmail[19635]: k9AGWqVJ006964: to=<techcouriers@yahoo.com
>,<techcr@
yahoo.com>
, delay=3+08:11:51, xdelay=00:00:15, mailer=esmtp, pri=377443, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:16:33 mail sendmail[19635]: k9AEsBoV004828: to=<pinkgirl1x1@yahoo.com>
,<pinkgirl
20002002@y
ahoo.com>,
<pinkgirl2
0002004@ya
hoo.com>,<
pinkgirl20
00_17@yaho
o.com>,<pi
nkgirl20@y
ahoo.com>,
delay=3+09:51:21, xdelay=00:00:04, mailer=esmtp, pri=377444, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:16:33 mail sendmail[18400]: k992VtAB016706: to=<cowbell@clt.bellsouth.
net>,<cowb
oy@clt.bel
lsouth.net
>, delay=4+22:14:01, xdelay=00:32:00, mailer=esmtp, pri=463678, relay=clt.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:16:35 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 21000
Oct 14 06:16:37 mail sendmail[19635]: k9B680w0012684: to=<donnika_thompson@yahoo
.com>,<don
nikadeyonn
i@yahoo.co
m>,<donnik
awatson@ya
hoo.com>,<
donniker@y
ahoo.com>,
<donniklas
@yahoo.com
>, delay=2+18:38:00, xdelay=00:00:04, mailer=esmtp, pri=377447, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:16:40 mail sendmail[19635]: k9AGgw9q007161: to=<ntlong_st@yahoo.com>,<
ntlongandp
oor@yahoo.
com>,<ntlo
ngley@yaho
o.com>,<nt
longtai@ya
hoo.com>,<
ntloo@yaho
o.com>, delay=3+08:03:04, xdelay=00:00:03, mailer=esmtp, pri=377447, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:16:40 mail sendmail[19635]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:20:05, xdelay=00:00:00, mailer=esmtp, pri=377448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:16:40 mail sendmail[19635]: k99KOVDu021522: k9DMe1YD019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:16:41 mail sendmail[19635]: k9DMe1YD019635: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:16:41 mail sendmail[21100]: k9E0kf0U021100: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:16:41 mail sendmail[19635]: k9DMe1YD019635: to=<muxkdolyder@centrapoin
t.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=78693, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:16:41 mail sendmail[19635]: k9DMe1YD019635: k9DMe1YE019635: return to sender: Local configuration error
Oct 14 06:16:41 mail sendmail[19635]: k9DMe1YE019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=79717, dsn=2.0.0, stat=Sent
Oct 14 06:16:46 mail sendmail[19635]: k9ANkrsm022119: to=<bre_starr@yahoo.com>,<
bre_studen
t@yahoo.co
m>,<bre_su
m@yahoo.co
m>,<bre_su
nshine@yah
oo.com>,<b
re_swain@y
ahoo.com>,
delay=3+00:57:25, xdelay=00:00:05, mailer=esmtp, pri=377448, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:16:49 mail sendmail[18400]: k9B7qv8R025314: to=<tmm@bellsouth.net>, delay=2+16:47:15, xdelay=00:00:10, mailer=esmtp, pri=1004228, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:16:49 mail sendmail[18400]: k9AJeHrK011245: to=<ausjason@bellsouth.net
>,<ausjazz
@bellsouth
.net>, delay=3+05:05:18, xdelay=00:00:00, mailer=esmtp, pri=1004234, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:49 mail sendmail[18400]: k9AJgEkh011307: to=<ausjason@bellsouth.net
>,<ausjazz
@bellsouth
.net>, delay=3+05:04:31, xdelay=00:00:00, mailer=esmtp, pri=1004234, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k99JaarL018717: to=<bamfer@bellsouth.net>,
delay=4+05:09:49, xdelay=00:00:00, mailer=esmtp, pri=1004236, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k99KUJ9S021770: to=<lepatton52@bellsouth.n
et>, delay=4+04:16:17, xdelay=00:00:00, mailer=esmtp, pri=1004238, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k99B2rH9015606: to=<cmtc@bellsouth.net>,<f
ritzg@bell
south.net>
, delay=4+13:42:21, xdelay=00:00:00, mailer=esmtp, pri=1004238, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k99AAf6N011310: to=<realgl2@bellsouth.net>
, delay=4+14:34:29, xdelay=00:00:00, mailer=esmtp, pri=1004238, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k99ESUR5008065: to=<anciest@bellsouth.net>
,<annmarr@
bellsouth.
net>, delay=4+10:17:43, xdelay=00:00:00, mailer=esmtp, pri=1004240, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:50 mail sendmail[18400]: k9AKRHNh012067: to=<jillrich@bellsouth.net
>,<jillrnc
@bellsouth
.net>,<jil
lrob@bells
outh.net>,
<jillrock@
bellsouth.
net>,<jill
romero@bel
lsouth.net
>, delay=3+04:18:08, xdelay=00:00:00, mailer=esmtp, pri=1004245, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:51 mail sendmail[18400]: k9AJ3fD0010319: to=<hshoshr@bellsouth.net>
,<hshot@be
llsouth.ne
t>,<hshote
l@bellsout
h.net>,<hs
hots@bells
outh.net>,
<hshott@be
llsouth.ne
t>, delay=3+05:41:10, xdelay=00:00:00, mailer=esmtp, pri=1004245, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:51 mail sendmail[18400]: k9B1LO8E031506: to=<kabur666@bellsouth.net
>,<kaburag
i@bellsout
h.net>, delay=2+23:24:26, xdelay=00:00:00, mailer=esmtp, pri=1004247, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:51 mail sendmail[18400]: k99LuVia024794: to=<hookem2002@bellsouth.n
et>,<mdye@
bellsouth.
net>, delay=4+02:49:53, xdelay=00:00:00, mailer=esmtp, pri=1004249, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:51 mail sendmail[19635]: k9B08mtM023258: to=<azm20032002@yahoo.com>
,<azm2005@
yahoo.com>
,<azm20074
real@yahoo
.com>,<azm
20@yahoo.c
om>,<azm2@
yahoo.com>
, delay=3+00:36:18, xdelay=00:00:04, mailer=esmtp, pri=377448, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:16:51 mail sendmail[18400]: k9AFFlh1005186: to=<dolphindave22@bellsout
h.net>,<do
lphindiver
@bellsouth
.net>,<dol
phindla@be
llsouth.ne
t>,<dolphi
ndude@bell
south.net>
,<dolphine
@bellsouth
.net>, delay=3+09:29:23, xdelay=00:00:00, mailer=esmtp, pri=1004252, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:51 mail sendmail[18400]: k9B3r91b003924: to=<linfemi@bellsouth.net>
, delay=2+20:53:13, xdelay=00:00:00, mailer=esmtp, pri=1004265, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:52 mail sendmail[18400]: k99Dnmeg006517: to=<sandyjk3@bellsouth.net
>, delay=4+10:56:05, xdelay=00:00:00, mailer=esmtp, pri=914269, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:52 mail sendmail[18400]: k9AD2QXA001202: to=<brooks1057@bellsouth.n
et>,<brook
s1066@bell
south.net>
,<brooks10
6@bellsout
h.net>,<br
ooks1075@b
ellsouth.n
et>,<brook
s107@bells
outh.net>,
delay=3+11:41:48, xdelay=00:00:00, mailer=esmtp, pri=1004272, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:52 mail sendmail[18400]: k9ANBq23020626: to=<famroque@bellsouth.net
>,<famros@
bellsouth.
net>,<famr
ose@bellso
uth.net>,<
famrue@bel
lsouth.net
>,<famruiz
@bellsouth
.net>, delay=3+01:32:19, xdelay=00:00:00, mailer=esmtp, pri=1004292, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:53 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:16:53 mail sendmail[18400]: k991fbpi015949: to=<andrew.rose@bellsouth.
net>,<andr
ew.rowley@
bellsouth.
net>, delay=4+23:02:33, xdelay=00:00:00, mailer=esmtp, pri=1005621, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:16:54 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 22000
Oct 14 06:16:54 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:16:55 mail sendmail[19635]: k9AGZKPo007017: to=<nhoxanh_la_nhochua@yah
oo.com>,<n
hoxaolon_b
mt@yahoo.c
om>,<nhoxi
nh2005bl@y
ahoo.com>,
<nhoxitrum
buongbinh7
301@yahoo.
com>,<nhox
iu09_10_82
@yahoo.com
>, delay=3+08:08:38, xdelay=00:00:04, mailer=esmtp, pri=377449, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:16:56 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:16:59 mail sendmail[19635]: k9B3nqdU003767: to=<mark_walls30@yahoo.com
>,<mark_wa
lsh_au@yah
oo.com>,<m
ark_walter
s2001@yaho
o.com>,<ma
rk_walters
@yahoo.com
>,<mark_wa
mbo2@yahoo
.com>, delay=2+20:56:40, xdelay=00:00:04, mailer=esmtp, pri=377452, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:16:59 mail sendmail[19635]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+11:41:36, xdelay=00:00:00, mailer=esmtp, pri=377452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:16:59 mail sendmail[19635]: k9AD2QXE001202: k9DMe1YF019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:17:01 mail sendmail[19635]: k9DMe1YF019635: to=<ykfcrmg@arsenal.co.uk>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=78700, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:17:01 mail sendmail[19635]: k9DMe1YF019635: k9DMe1YG019635: return to sender: User unknown
Oct 14 06:17:01 mail sendmail[19635]: k9DMe1YG019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=79724, dsn=2.0.0, stat=Sent
Oct 14 06:17:05 mail sendmail[19635]: k9B4wfc3006070: to=<anila_buchanan6830@yah
oo.com>,<a
nila_chm@y
ahoo.com>,
<anila_cho
udhry@yaho
o.com>,<an
ila_choudr
ay17@yahoo
.com>,<ani
la_detta_l
aline@yaho
o.com>, delay=2+19:47:27, xdelay=00:00:03, mailer=esmtp, pri=377454, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:17:06 mail imap-login: Login: vijaylakshmi [::ffff:59.92.143.177]
Oct 14 06:17:07 mail imap-login: Login: vijaylakshmi [::ffff:59.92.143.177]
Oct 14 06:17:07 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:17:08 mail sendmail[7286]: k9BE6jru012288: to=<robodel@bellsouth.net>
, delay=2+10:40:05, xdelay=00:01:07, mailer=esmtp, pri=1427944, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:17:08 mail sendmail[7286]: k9C7TYQd026282: to=<dabom13579@bellsouth.n
et>,<dabom
1357@bells
outh.net>,
<dabom135@
bellsouth.
net>,<dabo
m1631@bell
south.net>
,<dabom16@
bellsouth.
net>, delay=1+17:10:17, xdelay=00:00:00, mailer=esmtp, pri=1427961, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:17:09 mail sendmail[19635]: k9B6l6ki017545: to=<claudio_claudio@yahoo.
com>,<clau
dio_clemen
s@yahoo.co
m>,<claudi
o_clod@yah
oo.com>,<c
laudio_coc
uzza@yahoo
.com>,<cla
udio_comet
ta@yahoo.c
om>, delay=2+17:59:51, xdelay=00:00:04, mailer=esmtp, pri=377455, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:17:11 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 23000
Oct 14 06:17:13 mail sendmail[19635]: k9B72PDN019861: to=<saleemthola@yahoo.com>
,<saleemti
rmizi@yaho
o.com>,<sa
leemtofan@
yahoo.com>
,<saleemtx
@yahoo.com
>,<saleemu
ddinsyed@y
ahoo.com>,
delay=2+17:42:39, xdelay=00:00:04, mailer=esmtp, pri=377456, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:17:17 mail sendmail[19635]: k9B21Gnh032439: to=<ermac182003@yahoo.com>
,<ermac182
7@yahoo.co
m>,<ermac1
87@yahoo.c
om>,<ermac
1897@yahoo
.com>,<erm
ac19@yahoo
.com>, delay=2+22:43:07, xdelay=00:00:03, mailer=esmtp, pri=377456, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:17:21 mail sendmail[19635]: k9B62gVW011922: to=<poochiethomas@yahoo.co
m>,<poochi
ethree@yah
oo.com>,<p
oochietoo@
yahoo.com>
,<poochiet
y@yahoo.co
m>,<poochi
ewoo@yahoo
.com>, delay=2+18:44:10, xdelay=00:00:04, mailer=esmtp, pri=377456, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:17:21 mail sendmail[19635]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+09:45:35, xdelay=00:00:00, mailer=esmtp, pri=377456, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:17:21 mail sendmail[19635]: k99F0Eij008832: k9DMe1YH019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:17:27 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 24000
Oct 14 06:17:51 mail sendmail[21121]: k9E0lndb021121: from=<send@mail.efax.com>,
size=1509, class=0, nrcpts=1, msgid=<45303383.080701.016
08@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp2.pit1.j2.com [204.11.173.152]
Oct 14 06:17:52 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 25000
Oct 14 06:17:52 mail imap-login: Login: asokan [::ffff:59.92.143.177]
Oct 14 06:17:53 mail sendmail[21122]: k9E0lndb021121: to=<data@scriptacomsystems
.com>, delay=00:00:03, xdelay=00:00:02, mailer=local, pri=61717, dsn=2.0.0, stat=Sent
Oct 14 06:17:53 mail sendmail[21122]: k9E0lndb021121: to=network@scriptacomsyste
ms.com, delay=00:00:03, xdelay=00:00:00, mailer=local, pri=61717, dsn=2.0.0, stat=Sent
Oct 14 06:17:55 mail sendmail[21128]: k9E0lrjZ021128: from=<send@mail.efax.com>,
size=1398, class=0, nrcpts=1, msgid=<45303445.001299.020
04@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp14.j2.com [204.11.168.116]
Oct 14 06:17:55 mail sendmail[21129]: k9E0lrjZ021128: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61605, dsn=2.0.0, stat=Sent
Oct 14 06:17:55 mail sendmail[21129]: k9E0lrjZ021128: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61605, dsn=2.0.0, stat=Sent
Oct 14 06:18:09 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 26000
Oct 14 06:18:21 mail sendmail[21132]: k9E0mJGG021132: from=<send@mail.efax.com>,
size=1481, class=0, nrcpts=1, msgid=<453033A0.00148F.021
96@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp14.j2.com [204.11.168.116]
Oct 14 06:18:21 mail sendmail[21133]: k9E0mJGG021132: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61687, dsn=2.0.0, stat=Sent
Oct 14 06:18:21 mail sendmail[21133]: k9E0mJGG021132: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61687, dsn=2.0.0, stat=Sent
Oct 14 06:18:25 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 27000
Oct 14 06:18:48 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 28000
Oct 14 06:18:49 mail sendmail[7772]: k9BCEnXC005874: to=<jturner@mem.bellsouth.
net>,<juan
@mem.bells
outh.net>,
<juanita@m
em.bellsou
th.net>,<j
ubilee@mem
.bellsouth
.net>,<jud
ge@mem.bel
lsouth.net
>, delay=2+12:32:41, xdelay=00:32:00, mailer=esmtp, pri=624810, relay=mem.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with mem.bellsouth.net.
Oct 14 06:18:51 mail sendmail[21136]: k9E0mnVl021136: from=<send@mail.efax.com>,
size=1451, class=0, nrcpts=1, msgid=<453033BE.00134D.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp12.j2.com [204.11.168.114]
Oct 14 06:18:51 mail sendmail[21137]: k9E0mnVl021136: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61657, dsn=2.0.0, stat=Sent
Oct 14 06:18:51 mail sendmail[21137]: k9E0mnVl021136: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61657, dsn=2.0.0, stat=Sent
Oct 14 06:19:04 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 29000
Oct 14 06:19:20 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 30000
Oct 14 06:19:32 mail sendmail[13928]: k97C7d2q017709: to=<mccool@bhm.bellsouth.n
et>, delay=6+12:41:36, xdelay=00:32:00, mailer=esmtp, pri=375638, relay=bhm.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:19:32 mail sendmail[13928]: k97C7d2q017709: k9DDe1nU013928: sender notify: Cannot send message for 5 days
Oct 14 06:19:35 mail sendmail[19635]: k9DMe1YH019635: to=<ttzybdlqh@brain.net.pk
>, delay=00:02:14, xdelay=00:02:14, mailer=esmtp, pri=78702, relay=mx2.brain.net.pk. [203.128.7.15], dsn=5.1.1, stat=User unknown
Oct 14 06:19:36 mail sendmail[19635]: k9DMe1YH019635: k9DMe1YI019635: return to sender: User unknown
Oct 14 06:19:37 mail sendmail[19635]: k9DMe1YI019635: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=79726, dsn=2.0.0, stat=Sent
Oct 14 06:19:37 mail sendmail[19635]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:13:12, xdelay=00:00:00, mailer=esmtp, pri=377460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:19:37 mail sendmail[19635]: k9AEY5Jj004402: k9DMe1YJ019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:19:39 mail sendmail[19635]: k9DMe1YJ019635: to=<gieeddmacc@arsenal.co.
uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=78708, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:19:40 mail sendmail[19635]: k9DMe1YJ019635: k9DMe1YK019635: return to sender: User unknown
Oct 14 06:19:40 mail sendmail[19635]: k9DMe1YK019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=79732, dsn=2.0.0, stat=Sent
Oct 14 06:19:41 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 31000
Oct 14 06:19:45 mail sendmail[19635]: k9AH0kIZ007525: to=<ny_knicks_1@yahoo.com>
,<ny_knick
s_will_win
@yahoo.com
>,<ny_know
les@yahoo.
com>,<ny_k
udie@yahoo
.com>,<ny_
kwon@yahoo
.com>, delay=3+07:48:16, xdelay=00:00:05, mailer=esmtp, pri=377466, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:19:47 mail sendmail[19635]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:39:55, xdelay=00:00:00, mailer=esmtp, pri=377469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:19:47 mail sendmail[19635]: k99Lwe91024882: k9DMe1YL019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:19:47 mail sendmail[19635]: k9DMe1YL019635: to=<grpkbjpnda@chinabyte.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=78717, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:19:48 mail sendmail[19635]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:35:48, xdelay=00:00:00, mailer=esmtp, pri=377473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:19:48 mail sendmail[19635]: k9B2Dffq000376: k9DMe1YM019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:19:48 mail sendmail[19635]: k9DMe1YM019635: to=<upfpqnofpwe@centrapoin
t.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=78718, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:19:48 mail sendmail[19635]: k9DMe1YM019635: k9DMe1YN019635: return to sender: Local configuration error
Oct 14 06:19:48 mail sendmail[19635]: k9DMe1YN019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=79742, dsn=2.0.0, stat=Sent
Oct 14 06:19:51 mail sendmail[19635]: k9B4cIse005532: to=<rawniesteves@yahoo.com
>,<rawnieu
s@yahoo.co
m>, delay=2+20:09:12, xdelay=00:00:03, mailer=esmtp, pri=377474, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:19:54 mail sendmail[19635]: k9AKlAI4012671: to=<packer425@yahoo.com>,<
packer435@
yahoo.com>
,<packer44
2000@yahoo
.com>,<pac
ker45@yaho
o.com>,<pa
cker468@ya
hoo.com>, delay=3+04:01:00, xdelay=00:00:02, mailer=esmtp, pri=377477, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:19:56 mail sendmail[19635]: k9AIYudC009687: to=<apsaalooke_horseracer_
2001@yahoo
.com>,<aps
aalooke_la
kota03@yah
oo.com>,<a
psaalooke_
style69@ya
hoo.com>,<
apsaalooke
_style6@ya
hoo.com>,<
apsaalooke
dude@yahoo
.com>, delay=3+06:14:56, xdelay=00:00:02, mailer=esmtp, pri=377499, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:19:56 mail sendmail[15758]: k99M3TE7025002: to=<revers@rdu.bellsouth.n
et>, delay=4+02:40:01, xdelay=00:32:00, mailer=esmtp, pri=464216, relay=rdu.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:19:59 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 32000
Oct 14 06:20:05 mail sendmail[19635]: k9C61LW5015790: to=<xxednortonxx@yahoo.com
>,<xxedout
34@yahoo.c
om>,<xxedo
ut77@yahoo
.com>,<xxe
doxx@yahoo
.com>, delay=1+18:47:11, xdelay=00:00:09, mailer=esmtp, pri=377816, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: Connection refused by mta-v1.mail.vip.re3.yahoo.
com.
Oct 14 06:20:05 mail sendmail[19635]: k9C61LW5015790: k9DMe1YO019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:07 mail sendmail[21143]: k9E0o5XR021143: from=<send@mail.efax.com>,
size=1464, class=0, nrcpts=1, msgid=<4530340B.00136F.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp13.j2.com [204.11.168.115]
Oct 14 06:20:07 mail sendmail[21144]: k9E0o5XR021143: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61670, dsn=2.0.0, stat=Sent
Oct 14 06:20:07 mail sendmail[21144]: k9E0o5XR021143: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61670, dsn=2.0.0, stat=Sent
Oct 14 06:20:16 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 33000
Oct 14 06:20:17 mail sendmail[19635]: k9DMe1YO019635: to=<oowkmlngkoc@brain.net.
pk>, delay=00:00:12, xdelay=00:00:12, mailer=esmtp, pri=49065, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:20:17 mail sendmail[9082]: k9BHHV9e021774: to=<creme@rdu.bellsouth.ne
t>,<cremee
ns@rdu.bel
lsouth.net
>,<cremins
@rdu.bells
outh.net>,
<crenner@r
du.bellsou
th.net>,<c
rennie@rdu
.bellsouth
.net>, delay=2+07:31:10, xdelay=00:32:00, mailer=esmtp, pri=1247883, relay=rdu.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:20:17 mail sendmail[19635]: k9DMe1YO019635: k9DMe1YP019635: return to sender: User unknown
Oct 14 06:20:17 mail sendmail[19635]: k9DMe1YP019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50089, dsn=2.0.0, stat=Sent
Oct 14 06:20:17 mail sendmail[19635]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:02:55, xdelay=00:00:00, mailer=esmtp, pri=377818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:20:17 mail sendmail[19635]: k9BCjml3007633: k9DMe1YQ019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:19 mail sendmail[19635]: k9DMe1YQ019635: to=<pnclq@bellauk.com>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=49064, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:20:20 mail sendmail[19635]: k9DMe1YQ019635: k9DMe1YR019635: return to sender: User unknown
Oct 14 06:20:20 mail sendmail[19635]: k9DMe1YR019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50088, dsn=2.0.0, stat=Sent
Oct 14 06:20:20 mail sendmail[19635]: k98LsUbR011522: to=<efs111@bellsouth.net>,
<efs5@bell
south.net>
,<efs653@b
ellsouth.n
et>,<efs73
@bellsouth
.net>,<efs
ales@bells
outh.net>,
delay=5+02:55:48, xdelay=00:00:00, mailer=esmtp, pri=377826, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:20:20 mail sendmail[19635]: k98LsUbR011522: k9DMe1YS019635: DSN: Cannot send message for 5 days
Oct 14 06:20:24 mail sendmail[19635]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:20:27 mail sendmail[19635]: k9DMe1YS019635: to=<zyvbukddo@caller.com>,
delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=79124, relay=mail.global.sprint.c
om. [62.209.45.169], dsn=2.0.0, stat=Sent (Ok: queued as 57291A98068)
Oct 14 06:20:27 mail sendmail[19635]: k9BApNgF001368: to=<lewia808@yahoo.com>,<l
ewia@yahoo
.com>,<lew
iajackey@y
ahoo.com>,
<lewian_c@
yahoo.com>
,<lewiberg
@yahoo.com
>,<lewibl@
yahoo.com>
, delay=2+13:58:55, xdelay=00:00:00, mailer=esmtp, pri=377827, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: Connection refused by mta-v1.mail.vip.re3.yahoo.
com.
Oct 14 06:20:27 mail sendmail[19635]: k9BApNgF001368: k9DMe1YT019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:31 mail sendmail[19635]: k9DMe1YT019635: to=<fbaeqowhqeyak@brain.ne
t.pk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=49075, relay=mx3.brain.net.pk. [203.128.7.58], dsn=5.1.1, stat=User unknown
Oct 14 06:20:31 mail sendmail[19635]: k9DMe1YT019635: k9DMe1YU019635: return to sender: User unknown
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YU019635: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50099, dsn=2.0.0, stat=Sent
Oct 14 06:20:32 mail sendmail[19635]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:41:50, xdelay=00:00:00, mailer=esmtp, pri=377830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:20:32 mail sendmail[19635]: k9BJ8egc028413: k9DMe1YV019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YV019635: to=<wfvwncyo@centrapoint.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=49076, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YV019635: k9DMe1YW019635: return to sender: Local configuration error
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YW019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50100, dsn=2.0.0, stat=Sent
Oct 14 06:20:32 mail sendmail[19635]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:42:49, xdelay=00:00:00, mailer=esmtp, pri=377830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:20:32 mail sendmail[19635]: k9BJ6qP0028406: to=<det804@yahoo.com>,<emm
a8483@yaho
o.com>,<su
leyf@yahoo
.com>, delay=2+05:42:49, xdelay=00:00:00, mailer=esmtp, pri=377830, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: Connection refused by mta-v1.mail.vip.re3.yahoo.
com.
Oct 14 06:20:32 mail sendmail[19635]: k9BJ6qP0028406: k9DMe1YX019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:32 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 34000
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YX019635: to=<wfvwncyo@centrapoint.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=49077, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:20:32 mail sendmail[19635]: k9DMe1YX019635: k9DMe1YY019635: return to sender: Local configuration error
Oct 14 06:20:33 mail sendmail[19635]: k9DMe1YY019635: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50101, dsn=2.0.0, stat=Sent
Oct 14 06:20:33 mail sendmail[19635]: k9C7DCtQ023931: to=<birdkrab@yahoo.com>,<b
irdkrap12@
yahoo.com>
,<birdkraz
y4@yahoo.c
om>,<birdk
razy@yahoo
.com>,<bir
dkristi@ya
hoo.com>,<
birdkuh@ya
hoo.com>, delay=1+17:37:13, xdelay=00:00:00, mailer=esmtp, pri=377831, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: Connection refused by mta-v1.mail.vip.re3.yahoo.
com.
Oct 14 06:20:33 mail sendmail[19635]: k9C7DCtQ023931: k9DMe1YZ019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:33 mail sendmail[19635]: k9DMe1YZ019635: to=<cqwkngpy@arabia.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=49114, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:20:34 mail sendmail[19635]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:15:43, xdelay=00:00:00, mailer=esmtp, pri=377834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 06:20:34 mail sendmail[19635]: k9BIXuWJ026396: k9DMe1Ya019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:20:35 mail sendmail[19635]: k9DMe1Ya019635: to=<dxkgktw@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49082, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:20:36 mail sendmail[19635]: k9DMe1Ya019635: k9DMe1Yb019635: return to sender: User unknown
Oct 14 06:20:36 mail sendmail[19635]: k9DMe1Yb019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50106, dsn=2.0.0, stat=Sent
Oct 14 06:20:41 mail sendmail[15231]: k9ALBZQm013457: to=<enola@rdu.bellsouth.ne
t>,<enon@r
du.bellsou
th.net>,<e
nona@rdu.b
ellsouth.n
et>,<enor@
rdu.bellso
uth.net>,<
enorris@rd
u.bellsout
h.net>, delay=3+03:34:38, xdelay=00:32:00, mailer=esmtp, pri=640823, relay=rdu.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:20:49 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 35000
Oct 14 06:21:10 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 06:21:14 mail last message repeated 2 times
Oct 14 06:21:15 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 36000
Oct 14 06:21:16 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 06:21:18 mail imap-login: Login: btz [::ffff:59.92.135.232]
Oct 14 06:21:24 mail last message repeated 3 times
Oct 14 06:21:26 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:21:33 mail last message repeated 2 times
Oct 14 06:21:33 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 37000
Oct 14 06:21:44 mail sendmail[13928]: k9DDe1nU013928: to=<lfhjwtqw@brain.net.pk>
, delay=00:02:12, xdelay=00:02:11, mailer=esmtp, pri=76884, relay=mx3.brain.net.pk. [203.128.7.58], dsn=5.1.1, stat=User unknown
Oct 14 06:21:45 mail sendmail[13928]: k9DDe1nU013928: k9DDe1nV013928: return to sender: User unknown
Oct 14 06:21:45 mail sendmail[13928]: k9DDe1nV013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=77908, dsn=2.0.0, stat=Sent
Oct 14 06:21:47 mail sendmail[21186]: k9E0pjvb021186: from=<send@mail.efax.com>,
size=1512, class=0, nrcpts=1, msgid=<4530346F.0807DD.016
08@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp2.pit1.j2.com [204.11.173.152]
Oct 14 06:21:47 mail sendmail[21187]: k9E0piPp021187: from=<send@mail.efax.com>,
size=1553, class=0, nrcpts=1, msgid=<4530346F.07EA83.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:21:47 mail sendmail[21189]: k9E0pjvb021186: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61720, dsn=2.0.0, stat=Sent
Oct 14 06:21:47 mail sendmail[21189]: k9E0pjvb021186: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61720, dsn=2.0.0, stat=Sent
Oct 14 06:21:55 mail sendmail[21190]: k9E0piPp021187: to=<data@scriptacomsystems
.com>, delay=00:00:09, xdelay=00:00:08, mailer=local, pri=61761, dsn=2.0.0, stat=Sent
Oct 14 06:21:55 mail sendmail[21190]: k9E0piPp021187: to=network@scriptacomsyste
ms.com, delay=00:00:09, xdelay=00:00:00, mailer=local, pri=61761, dsn=2.0.0, stat=Sent
Oct 14 06:21:57 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 38000
Oct 14 06:22:03 mail sendmail[15758]: k9B7qv8R025314: to=<tmm@bellsouth.net>, delay=2+16:52:29, xdelay=00:02:06, mailer=esmtp, pri=1094228, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:22:04 mail sendmail[15758]: k9AJeHrK011245: to=<ausjason@bellsouth.net
>,<ausjazz
@bellsouth
.net>, delay=3+05:10:33, xdelay=00:00:00, mailer=esmtp, pri=1094234, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:04 mail sendmail[15758]: k9AJgEkh011307: to=<ausjason@bellsouth.net
>,<ausjazz
@bellsouth
.net>, delay=3+05:09:46, xdelay=00:00:00, mailer=esmtp, pri=1094234, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:04 mail sendmail[15758]: k99JaarL018717: to=<bamfer@bellsouth.net>,
delay=4+05:15:03, xdelay=00:00:00, mailer=esmtp, pri=1094236, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:04 mail sendmail[15758]: k99KUJ9S021770: to=<lepatton52@bellsouth.n
et>, delay=4+04:21:31, xdelay=00:00:00, mailer=esmtp, pri=1094238, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:04 mail sendmail[15758]: k99B2rH9015606: to=<cmtc@bellsouth.net>,<f
ritzg@bell
south.net>
, delay=4+13:47:35, xdelay=00:00:00, mailer=esmtp, pri=1094238, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:04 mail sendmail[15758]: k99AAf6N011310: to=<realgl2@bellsouth.net>
, delay=4+14:39:43, xdelay=00:00:00, mailer=esmtp, pri=1094238, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:05 mail sendmail[15758]: k99ESUR5008065: to=<anciest@bellsouth.net>
,<annmarr@
bellsouth.
net>, delay=4+10:22:58, xdelay=00:00:00, mailer=esmtp, pri=1094240, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:05 mail sendmail[15758]: k9AKRHNh012067: to=<jillrich@bellsouth.net
>,<jillrnc
@bellsouth
.net>,<jil
lrob@bells
outh.net>,
<jillrock@
bellsouth.
net>,<jill
romero@bel
lsouth.net
>, delay=3+04:23:23, xdelay=00:00:00, mailer=esmtp, pri=1094245, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:05 mail sendmail[15758]: k9AJ3fD0010319: to=<hshoshr@bellsouth.net>
,<hshot@be
llsouth.ne
t>,<hshote
l@bellsout
h.net>,<hs
hots@bells
outh.net>,
<hshott@be
llsouth.ne
t>, delay=3+05:46:24, xdelay=00:00:00, mailer=esmtp, pri=1094245, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:05 mail sendmail[15758]: k9B1LO8E031506: to=<kabur666@bellsouth.net
>,<kaburag
i@bellsout
h.net>, delay=2+23:29:40, xdelay=00:00:00, mailer=esmtp, pri=1094247, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:05 mail sendmail[15758]: k99LuVia024794: to=<hookem2002@bellsouth.n
et>,<mdye@
bellsouth.
net>, delay=4+02:55:07, xdelay=00:00:00, mailer=esmtp, pri=1094249, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:06 mail sendmail[15758]: k9AFFlh1005186: to=<dolphindave22@bellsout
h.net>,<do
lphindiver
@bellsouth
.net>,<dol
phindla@be
llsouth.ne
t>,<dolphi
ndude@bell
south.net>
,<dolphine
@bellsouth
.net>, delay=3+09:34:38, xdelay=00:00:00, mailer=esmtp, pri=1094252, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:06 mail sendmail[15758]: k9B3r91b003924: to=<linfemi@bellsouth.net>
, delay=2+20:58:28, xdelay=00:00:00, mailer=esmtp, pri=1094265, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:06 mail sendmail[15758]: k99Dnmeg006517: to=<sandyjk3@bellsouth.net
>, delay=4+11:01:19, xdelay=00:00:00, mailer=esmtp, pri=1004269, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:06 mail sendmail[15758]: k9AD2QXA001202: to=<brooks1057@bellsouth.n
et>,<brook
s1066@bell
south.net>
,<brooks10
6@bellsout
h.net>,<br
ooks1075@b
ellsouth.n
et>,<brook
s107@bells
outh.net>,
delay=3+11:47:02, xdelay=00:00:00, mailer=esmtp, pri=1094272, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:07 mail sendmail[15758]: k9ANBq23020626: to=<famroque@bellsouth.net
>,<famros@
bellsouth.
net>,<famr
ose@bellso
uth.net>,<
famrue@bel
lsouth.net
>,<famruiz
@bellsouth
.net>, delay=3+01:37:34, xdelay=00:00:00, mailer=esmtp, pri=1094292, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:08 mail sendmail[15758]: k991fbpi015949: to=<andrew.rose@bellsouth.
net>,<andr
ew.rowley@
bellsouth.
net>, delay=4+23:07:48, xdelay=00:00:00, mailer=esmtp, pri=1095621, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:08 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:22:10 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 06:22:12 mail sendmail[15758]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:22:13 mail sendmail[15758]: k9AKhrTx012578: to=<harriet_newton@dell.co
m>, delay=3+04:02:24, xdelay=00:00:03, mailer=esmtp, pri=736318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:13 mail sendmail[15758]: k9AKhrTx012578: to=<harriet_rook@dell.com>
, delay=3+04:02:24, xdelay=00:00:03, mailer=esmtp, pri=736318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:13 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 06:22:13 mail sendmail[15758]: k9AKhrTx012578: to=<harriet_ruslan@dell.co
m>, delay=3+04:02:24, xdelay=00:00:03, mailer=esmtp, pri=736318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:15 mail sendmail[15758]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.ne
t>,<d7ofus
7@bellsout
h.net>,<d7
stars@bell
south.net>
,<d7thstar
@bellsouth
.net>,<d7t
oes@bellso
uth.net>, delay=3+15:19:34, xdelay=00:00:00, mailer=esmtp, pri=736324, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:15 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 06:22:15 mail sendmail[15758]: k9AHSbvc008173: to=<ckozy@bellsouth.net>,<
ckp116@bel
lsouth.net
>,<ckp1192
@bellsouth
.net>,<ckp
1@bellsout
h.net>,<ck
p@bellsout
h.net>, delay=3+07:23:33, xdelay=00:00:00, mailer=esmtp, pri=826328, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:15 mail sendmail[1042]: k9B8EOkm027458: to=<pc1@lig.bellsouth.net>
,<pc3@lig.
bellsouth.
net>,<pc4@
lig.bellso
uth.net>,<
pc93@lig.b
ellsouth.n
et>,<pca@l
ig.bellsou
th.net>, delay=2+16:35:54, xdelay=00:32:00, mailer=esmtp, pri=642070, relay=lig.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 06:22:15 mail sendmail[15758]: k9B4iu4j005638: to=<servigon@bellsouth.net
>,<servil@
bellsouth.
net>, delay=2+20:06:36, xdelay=00:00:00, mailer=esmtp, pri=826330, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:15 mail sendmail[1042]: STARTTLS: write error=syscall error (-1)
Oct 14 06:22:15 mail sendmail[15758]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+19:31:53, xdelay=00:00:00, mailer=esmtp, pri=736345, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:16 mail sendmail[15758]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+02:38:11, xdelay=00:00:00, mailer=esmtp, pri=646346, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:16 mail sendmail[15758]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+12:44:15, xdelay=00:00:00, mailer=esmtp, pri=646358, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:16 mail sendmail[15758]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+01:39:01, xdelay=00:00:00, mailer=esmtp, pri=557394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:16 mail sendmail[15758]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+17:39:10, xdelay=00:00:00, mailer=esmtp, pri=467413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:16 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 06:22:16 mail sendmail[15758]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+20:42:34, xdelay=00:00:00, mailer=esmtp, pri=557425, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:07:15, xdelay=00:00:00, mailer=esmtp, pri=557436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:33:15, xdelay=00:00:00, mailer=esmtp, pri=557436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:14:28, xdelay=00:00:00, mailer=esmtp, pri=467440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:07:01, xdelay=00:00:00, mailer=esmtp, pri=557441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:12:20, xdelay=00:00:00, mailer=esmtp, pri=557442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:17 mail sendmail[15758]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:11:17, xdelay=00:00:00, mailer=esmtp, pri=557442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+19:45:17, xdelay=00:00:00, mailer=esmtp, pri=557442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:25:43, xdelay=00:00:00, mailer=esmtp, pri=467448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+11:46:55, xdelay=00:00:00, mailer=esmtp, pri=467452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+09:50:32, xdelay=00:00:00, mailer=esmtp, pri=467456, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:15:53, xdelay=00:00:00, mailer=esmtp, pri=467460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:42:26, xdelay=00:00:00, mailer=esmtp, pri=467469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:18 mail sendmail[15758]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:38:18, xdelay=00:00:00, mailer=esmtp, pri=467473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:19 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 39000
Oct 14 06:22:23 mail sendmail[21212]: k9E0qL43021212: from=<send@mail.efax.com>,
size=1453, class=0, nrcpts=1, msgid=<45303493.0012B7.022
00@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp12.j2.com [204.11.168.114]
Oct 14 06:22:23 mail sendmail[21213]: k9E0qL43021212: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61659, dsn=2.0.0, stat=Sent
Oct 14 06:22:23 mail sendmail[21213]: k9E0qL43021212: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61659, dsn=2.0.0, stat=Sent
Oct 14 06:22:24 mail sendmail[9082]: k9BC0akA005203: to=<dlrgiss@bellsouth.net>
,<dr283@be
llsouth.ne
t>, delay=2+12:44:42, xdelay=00:02:07, mailer=esmtp, pri=1427884, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:22:24 mail sendmail[9082]: k9BIqFTK027556: to=<pajames1975@bellsouth.
net>,<paja
mes7@bells
outh.net>,
<pajaraca@
bellsouth.
net>,<paja
ro@bellsou
th.net>,<p
ajarrell@b
ellsouth.n
et>, delay=2+05:57:43, xdelay=00:00:00, mailer=esmtp, pri=1517886, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:24 mail sendmail[9082]: k9BHDo0r021581: to=<apple45354@bellsouth.n
et>,<apple
45565@bell
south.net>
,<apple456
7@bellsout
h.net>,<ap
ple4584@be
llsouth.ne
t>,<apple4
5@bellsout
h.net>, delay=2+07:38:08, xdelay=00:00:00, mailer=esmtp, pri=1427886, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:25 mail sendmail[9082]: k9BItLuc027880: to=<pajames1975@bellsouth.
net>,<paja
mes7@bells
outh.net>,
<pajaraca@
bellsouth.
net>,<paja
ro@bellsou
th.net>,<p
ajarrell@b
ellsouth.n
et>, delay=2+05:57:02, xdelay=00:00:00, mailer=esmtp, pri=1427886, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:25 mail sendmail[9082]: k9BItLum027880: to=<khector@bellsouth.net>
,<khed56@b
ellsouth.n
et>,<khed@
bellsouth.
net>,<khed
er@bellsou
th.net>,<k
hedger@bel
lsouth.net
>, delay=2+05:56:21, xdelay=00:00:00, mailer=esmtp, pri=1427890, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:33 mail sendmail[15758]: k9C61LW5015790: to=<xxednortonxx@yahoo.com
>,<xxedout
34@yahoo.c
om>,<xxedo
ut77@yahoo
.com>,<xxe
doxx@yahoo
.com>, delay=1+18:49:39, xdelay=00:00:14, mailer=esmtp, pri=467816, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta193.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:22:34 mail sendmail[15758]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:05:12, xdelay=00:00:00, mailer=esmtp, pri=467818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:37 mail sendmail[13928]: k9B6weTu019325: to=<slmann1@bellsouth.net>
,<slmannin
@bellsouth
.net>, delay=2+17:52:42, xdelay=00:00:51, mailer=esmtp, pri=736312, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:22:39 mail sendmail[13928]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:22:40 mail sendmail[13928]: k9AKhrTx012578: to=<harriet_newton@dell.co
m>, delay=3+04:02:51, xdelay=00:00:03, mailer=esmtp, pri=826318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:40 mail sendmail[13928]: k9AKhrTx012578: to=<harriet_rook@dell.com>
, delay=3+04:02:51, xdelay=00:00:03, mailer=esmtp, pri=826318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:40 mail sendmail[13928]: k9AKhrTx012578: to=<harriet_ruslan@dell.co
m>, delay=3+04:02:51, xdelay=00:00:03, mailer=esmtp, pri=826318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:41 mail sendmail[15231]: k99Gx781011974: to=<mckeehant@bellsouth.ne
t>, delay=4+07:52:50, xdelay=00:01:50, mailer=esmtp, pri=1180825, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:22:41 mail sendmail[15231]: k99AqCo5015159: to=<bunnellt@bellsouth.net
>,<foforit
o@bellsout
h.net>, delay=4+13:59:57, xdelay=00:00:00, mailer=esmtp, pri=1090825, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:41 mail sendmail[15231]: k9AHhTwX008613: to=<boy46@bellsouth.net>,<
boy47@bell
south.net>
, delay=3+07:04:53, xdelay=00:00:00, mailer=esmtp, pri=1090826, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.ne
t>,<d7ofus
7@bellsout
h.net>,<d7
stars@bell
south.net>
,<d7thstar
@bellsouth
.net>,<d7t
oes@bellso
uth.net>, delay=3+15:20:01, xdelay=00:00:00, mailer=esmtp, pri=826324, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[15231]: k9B3r91l003924: to=<lingafel@bellsouth.net
>,<lingail
@bellsouth
.net>,<lin
gal@bellso
uth.net>,<
lingale@be
llsouth.ne
t>,<lingal
ls@bellsou
th.net>, delay=2+20:58:23, xdelay=00:00:00, mailer=esmtp, pri=1090841, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9AHSbvc008173: to=<ckozy@bellsouth.net>,<
ckp116@bel
lsouth.net
>,<ckp1192
@bellsouth
.net>,<ckp
1@bellsout
h.net>,<ck
p@bellsout
h.net>, delay=3+07:24:00, xdelay=00:00:00, mailer=esmtp, pri=916328, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[15231]: k99JLbHP017994: to=<hutclub@bellsouth.net>
, delay=4+05:29:18, xdelay=00:00:00, mailer=esmtp, pri=1090845, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9B4iu4j005638: to=<servigon@bellsouth.net
>,<servil@
bellsouth.
net>, delay=2+20:07:03, xdelay=00:00:00, mailer=esmtp, pri=916330, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[15231]: k990Qo4o014504: to=<melodymoore9@bellsouth
.net>,<mel
odymt@bell
south.net>
, delay=5+00:23:39, xdelay=00:00:00, mailer=esmtp, pri=1091583, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[15231]: k990Qo4o014504: k9DFe1Ix015231: sender notify: Cannot send message for 5 days
Oct 14 06:22:42 mail sendmail[13928]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+19:32:20, xdelay=00:00:00, mailer=esmtp, pri=826345, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+02:38:37, xdelay=00:00:00, mailer=esmtp, pri=736346, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+12:44:41, xdelay=00:00:00, mailer=esmtp, pri=736358, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:42 mail sendmail[13928]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+01:39:27, xdelay=00:00:00, mailer=esmtp, pri=647394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+17:39:37, xdelay=00:00:00, mailer=esmtp, pri=557413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+20:43:01, xdelay=00:00:00, mailer=esmtp, pri=647425, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:07:41, xdelay=00:00:00, mailer=esmtp, pri=647436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:33:41, xdelay=00:00:00, mailer=esmtp, pri=647436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:14:54, xdelay=00:00:00, mailer=esmtp, pri=557440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:07:27, xdelay=00:00:00, mailer=esmtp, pri=647441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:12:46, xdelay=00:00:00, mailer=esmtp, pri=647442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:11:43, xdelay=00:00:00, mailer=esmtp, pri=647442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+19:45:42, xdelay=00:00:00, mailer=esmtp, pri=647442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:26:08, xdelay=00:00:00, mailer=esmtp, pri=557448, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:43 mail sendmail[13928]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+11:47:20, xdelay=00:00:00, mailer=esmtp, pri=557452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:44 mail sendmail[13928]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+09:50:58, xdelay=00:00:00, mailer=esmtp, pri=557456, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:44 mail sendmail[13928]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:16:19, xdelay=00:00:00, mailer=esmtp, pri=557460, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:44 mail sendmail[13928]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:42:52, xdelay=00:00:00, mailer=esmtp, pri=557469, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:44 mail sendmail[13928]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:38:44, xdelay=00:00:00, mailer=esmtp, pri=557473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:45 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 40000
Oct 14 06:22:45 mail sendmail[15231]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:22:48 mail sendmail[15231]: k9DFe1Ix015231: to=<zawhm@caller.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=72828, relay=mail.global.sprint.c
om. [62.209.45.169], dsn=2.0.0, stat=Sent (Ok: queued as B4628648051)
Oct 14 06:22:49 mail sendmail[15231]: k991fbpa015949: to=<andrew.ricketts@bellso
uth.net>,<
andrew.rid
dell@bells
outh.net>,
delay=4+23:09:14, xdelay=00:00:00, mailer=esmtp, pri=1001613, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:49 mail sendmail[15231]: k991IeEA015715: to=<kkoski@bellsouth.net>,
<kkosmo@be
llsouth.ne
t>,<kkosni
k@bellsout
h.net>,<kk
ossack@bel
lsouth.net
>,<kkosse@
bellsouth.
net>, delay=4+23:32:31, xdelay=00:00:00, mailer=esmtp, pri=1091619, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:49 mail sendmail[15231]: k991fbpg015949: to=<andrew.rolla@bellsouth
.net>,<and
rew.roper@
bellsouth.
net>, delay=4+23:08:37, xdelay=00:00:00, mailer=esmtp, pri=1001619, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:50 mail sendmail[15231]: k990kHl9014909: to=<damu2hell2@bellsouth.n
et>,<damu3
@bellsouth
.net>, delay=5+00:05:09, xdelay=00:00:00, mailer=esmtp, pri=1001620, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:50 mail sendmail[15231]: k990kHl9014909: k9DFe1J0015231: sender notify: Cannot send message for 5 days
Oct 14 06:22:51 mail sendmail[15231]: k9DFe1J0015231: to=<sghrlwthh@bellauk.com>
, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=72869, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:22:52 mail sendmail[15231]: k9DFe1J0015231: k9DFe1J1015231: return to sender: User unknown
Oct 14 06:22:52 mail sendmail[15758]: k9BApNgF001368: to=<lewia808@yahoo.com>,<l
ewia@yahoo
.com>,<lew
iajackey@y
ahoo.com>,
<lewian_c@
yahoo.com>
,<lewiberg
@yahoo.com
>,<lewibl@
yahoo.com>
, delay=2+14:01:20, xdelay=00:00:18, mailer=esmtp, pri=467827, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:22:52 mail sendmail[15231]: k9DFe1J1015231: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=73893, dsn=2.0.0, stat=Sent
Oct 14 06:22:52 mail sendmail[15758]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:44:10, xdelay=00:00:00, mailer=esmtp, pri=467830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:53 mail sendmail[15758]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:45:10, xdelay=00:00:00, mailer=esmtp, pri=467830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:53 mail sendmail[15231]: k9AN551q019861: to=<savarna@bellsouth.net>
,<savarnad
@bellsouth
.net>,<sav
as@bellsou
th.net>,<s
avasg@bell
south.net>
,<savash@b
ellsouth.n
et>, delay=3+01:46:23, xdelay=00:00:00, mailer=esmtp, pri=1182024, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:53 mail sendmail[15231]: k9B1wXg5032365: to=<big1merv@bellsouth.net
>,<big1mom
@bellsouth
.net>, delay=2+22:52:46, xdelay=00:00:00, mailer=esmtp, pri=1182029, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:22:56 mail sendmail[15231]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:22:56 mail sendmail[15231]: k9A9Z4Mb027460: to=<flavio_robles@dell.com
>, delay=3+15:17:16, xdelay=00:00:02, mailer=esmtp, pri=1182056, relay=smtp.ins.dell.com. [143.166.224.193], dsn=5.5.4, stat=Service unavailable
Oct 14 06:22:57 mail sendmail[15231]: k9A9Z4Mb027460: to=<flb_frank@dell.com>, delay=3+15:17:17, xdelay=00:00:03, mailer=esmtp, pri=1182056, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:22:57 mail sendmail[15758]: k9BJ6qP0028406: to=<det804@yahoo.com>,<emm
a8483@yaho
o.com>,<su
leyf@yahoo
.com>, delay=2+05:45:14, xdelay=00:00:04, mailer=esmtp, pri=467830, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/2)
Oct 14 06:22:58 mail sendmail[15231]: k9A9Z4Mb027460: k9DFe1J2015231: sender notify: Service unavailable
Oct 14 06:23:02 mail sendmail[15758]: k9C7DCtQ023931: to=<birdkrab@yahoo.com>,<b
irdkrap12@
yahoo.com>
,<birdkraz
y4@yahoo.c
om>,<birdk
razy@yahoo
.com>,<bir
dkristi@ya
hoo.com>,<
birdkuh@ya
hoo.com>, delay=1+17:39:42, xdelay=00:00:04, mailer=esmtp, pri=467831, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta193.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:23:02 mail sendmail[15758]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:18:11, xdelay=00:00:00, mailer=esmtp, pri=467834, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:02 mail sendmail[1042]: k99LDfDn023441: to=<lp1012@bellsouth.net>,
<rhitchco@
bellsouth.
net>, delay=4+03:37:44, xdelay=00:00:47, mailer=esmtp, pri=1002074, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:23:02 mail sendmail[1042]: k9AKXSI1012299: to=<wahligs@bellsouth.net>
,<wahlm@be
llsouth.ne
t>,<wahls@
bellsouth.
net>,<wahl
sd@bellsou
th.net>,<w
ahm@bellso
uth.net>, delay=3+04:15:57, xdelay=00:00:00, mailer=esmtp, pri=1092074, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:02 mail sendmail[1042]: k9AKXSHx012299: to=<wahlen@bellsouth.net>,
<wahlenbr@
bellsouth.
net>,<wahl
er@bellsou
th.net>,<w
ahlf@bells
outh.net>,
<wahlg@bel
lsouth.net
>, delay=3+04:16:21, xdelay=00:00:00, mailer=esmtp, pri=1092078, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:03 mail sendmail[15231]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:23:04 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 41000
Oct 14 06:23:05 mail sendmail[15231]: k9DFe1J2015231: to=<evyfhmuq@caller.com>, delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=73303, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as DE4DEC80068)
Oct 14 06:23:06 mail sendmail[15231]: k9AJgEkt011307: to=<auskie@bellsouth.net>,
<auskk@bel
lsouth.net
>, delay=3+05:09:51, xdelay=00:00:00, mailer=esmtp, pri=1182058, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:07 mail sendmail[15758]: k9C6VsDr019597: to=<blacrust@yahoo.com>,<b
lacs@yahoo
.com>,<bla
cs_18@yaho
o.com>,<bl
acs_girl_2
4@yahoo.co
m>,<blacsa
bath@yahoo
.com>,<bla
csabith@ya
hoo.com>, delay=1+18:20:07, xdelay=00:00:05, mailer=esmtp, pri=377836, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:23:07 mail sendmail[15231]: k9AGVdYV006944: to=<chunghan@bellsouth.net
>,<chungi@
bellsouth.
net>,<chun
gil@bellso
uth.net>,<
chungj@bel
lsouth.net
>,<chungkt
@bellsouth
.net>, delay=3+08:21:21, xdelay=00:00:00, mailer=esmtp, pri=1182058, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:10 mail sendmail[15758]: k98A5qx4001151: to=<booky002@yahoo.com>,<b
ooky007@ya
hoo.com>,<
booky00@ya
hoo.com>,<
booky05@ya
hoo.com>,<
booky@yaho
o.com>, delay=5+14:46:46, xdelay=00:00:03, mailer=esmtp, pri=377836, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:23:10 mail sendmail[15758]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:12:23, xdelay=00:00:00, mailer=esmtp, pri=377839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:10 mail sendmail[15758]: k9C5btPq012864: k9DGe1d5015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:23:15 mail sendmail[4249]: k9C38uwx005300: to=<ericad@rdu.bellsouth.n
et>,<erica
g@rdu.bell
south.net>
, delay=1+21:43:19, xdelay=00:32:00, mailer=esmtp, pri=889284, relay=rdu.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:23:18 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:23:27 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 42000
Oct 14 06:23:38 mail sendmail[21219]: k9E0rXFa021219: from=<mjy@effigy.be>, size=18221, class=0, nrcpts=1, msgid=<3CD9CB5B.5000104@ef
figy.be>, proto=SMTP, daemon=MTA, relay=[58.142.83.19]
Oct 14 06:23:39 mail sendmail[21220]: k9E0rXFa021219: to=<asokan@scriptacomsyste
ms.com>, delay=00:00:03, xdelay=00:00:01, mailer=local, pri=48412, dsn=2.0.0, stat=Sent
Oct 14 06:23:42 mail sendmail[21222]: k9E0rfat021222: from=<send@mail.efax.com>,
size=1453, class=0, nrcpts=1, msgid=<453034E2.00142F.021
40@sendapp
3>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:23:43 mail sendmail[21223]: k9E0rfat021222: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61659, dsn=2.0.0, stat=Sent
Oct 14 06:23:43 mail sendmail[21223]: k9E0rfat021222: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61659, dsn=2.0.0, stat=Sent
Oct 14 06:23:49 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 43000
Oct 14 06:23:54 mail sendmail[13928]: k9C61LW5015790: to=<xxednortonxx@yahoo.com
>,<xxedout
34@yahoo.c
om>,<xxedo
ut77@yahoo
.com>,<xxe
doxx@yahoo
.com>, delay=1+18:51:00, xdelay=00:01:10, mailer=esmtp, pri=557816, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta100.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:23:54 mail sendmail[13928]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:06:32, xdelay=00:00:00, mailer=esmtp, pri=557818, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:54 mail sendmail[13928]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:45:12, xdelay=00:00:00, mailer=esmtp, pri=557830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:54 mail sendmail[13928]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:46:11, xdelay=00:00:00, mailer=esmtp, pri=557830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:23:58 mail sendmail[13928]: k9C7DCtQ023931: to=<birdkrab@yahoo.com>,<b
irdkrap12@
yahoo.com>
,<birdkraz
y4@yahoo.c
om>,<birdk
razy@yahoo
.com>,<bir
dkristi@ya
hoo.com>,<
birdkuh@ya
hoo.com>, delay=1+17:40:38, xdelay=00:00:04, mailer=esmtp, pri=557831, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:23:58 mail sendmail[13928]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:19:07, xdelay=00:00:00, mailer=esmtp, pri=557834, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:24:00 mail sendmail[13928]: k9BGc0FE019862: to=<ldd240@yahoo.com>,<ldd
2744@yahoo
.com>,<ldd
296@yahoo.
com>,<ldd3
09@yahoo.c
om>,<ldd31
886648@yah
oo.com>,<l
dd320@yaho
o.com>, delay=2+08:15:58, xdelay=00:00:02, mailer=esmtp, pri=377842, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta100.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:24:00 mail sendmail[13928]: k9BGc0FE019862: k9DDe1nW013928: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:24:02 mail sendmail[21226]: k9E0s1Ns021226: from=<send@mail.efax.com>,
size=1560, class=0, nrcpts=1, msgid=<453034F7.07EB1D.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:24:03 mail sendmail[21228]: k9E0s1Ns021226: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61768, dsn=2.0.0, stat=Sent
Oct 14 06:24:03 mail sendmail[21228]: k9E0s1Ns021226: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61768, dsn=2.0.0, stat=Sent
Oct 14 06:24:03 mail sendmail[21227]: k9E0s273021227: from=<send@mail.efax.com>,
size=1529, class=0, nrcpts=1, msgid=<453034F8.07EB25.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp2.pit1.j2.com [204.11.173.152]
Oct 14 06:24:03 mail sendmail[21231]: k9E0s273021227: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61737, dsn=2.0.0, stat=Sent
Oct 14 06:24:03 mail sendmail[21231]: k9E0s273021227: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61737, dsn=2.0.0, stat=Sent
Oct 14 06:24:04 mail sendmail[13928]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:24:06 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 44000
Oct 14 06:24:06 mail sendmail[13928]: k9DDe1nW013928: to=<psbklbgl@caller.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49089, relay=mail.global.sprint.c
om. [62.209.45.169], dsn=2.0.0, stat=Sent (Ok: queued as BEC4CA68057)
Oct 14 06:24:19 mail sendmail[14561]: k992VtAD016706: to=<cowboys@clt.bellsouth.
net>,<cowd
en@clt.bel
lsouth.net
>,<cowee@c
lt.bellsou
th.net>,<c
owell@clt.
bellsouth.
net>,<cowe
n@clt.bell
south.net>
, delay=4+22:21:39, xdelay=00:32:00, mailer=esmtp, pri=730134, relay=clt.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:24:19 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:24:23 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 45000
Oct 14 06:24:41 mail sendmail[4249]: k9C1wlMQ003324: to=<heugene@bellsouth.net>
,<heugenio
@bellsouth
.net>, delay=1+22:54:40, xdelay=00:01:26, mailer=esmtp, pri=1249293, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:24:41 mail sendmail[4249]: k9C2TR98004317: to=<babyblossom@bellsouth.
net>,<baby
blow@bells
outh.net>,
delay=1+22:25:11, xdelay=00:00:00, mailer=esmtp, pri=1339294, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:24:43 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 46000
Oct 14 06:24:58 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 47000
Oct 14 06:25:10 mail sendmail[15758]: k9DGe1d5015758: to=<dfgkeqh@arabia.com>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=49087, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:25:13 mail sendmail[18008]: k992VtAF016706: to=<cowger@clt.bellsouth.n
et>,<cowgi
rl@clt.bel
lsouth.net
>, delay=4+22:22:23, xdelay=00:32:00, mailer=esmtp, pri=375658, relay=clt.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:25:13 mail sendmail[18008]: k992VtAF016706: k9DJe10o018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:25:15 mail sendmail[18008]: k9DJe10o018008: to=<oifiur@arsenal.co.uk>,
delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=76902, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:25:16 mail sendmail[18008]: k9DJe10o018008: k9DJe10p018008: return to sender: User unknown
Oct 14 06:25:16 mail sendmail[18008]: k9DJe10p018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=77926, dsn=2.0.0, stat=Sent
Oct 14 06:25:18 mail sendmail[15758]: k9BGc0FE019862: to=<ldd240@yahoo.com>,<ldd
2744@yahoo
.com>,<ldd
296@yahoo.
com>,<ldd3
09@yahoo.c
om>,<ldd31
886648@yah
oo.com>,<l
dd320@yaho
o.com>, delay=2+08:17:16, xdelay=00:00:07, mailer=esmtp, pri=467842, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta187.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:25:19 mail sendmail[21236]: k9E0tEcX021236: from=<xzk@tyndale.org>, size=18269, class=0, nrcpts=1, msgid=<45303531.6030401@ty
ndale.org>
, proto=SMTP, daemon=MTA, relay=[221.148.192.44]
Oct 14 06:25:19 mail sendmail[21238]: k9E0tEcX021236: to=<outsrc@scriptacomsyste
ms.com>, delay=00:00:03, xdelay=00:00:00, mailer=local, pri=48461, dsn=2.0.0, stat=Sent
Oct 14 06:25:20 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:25:22 mail sendmail[15758]: k98HOCdQ007628: to=<daisyslw@yahoo.com>,<d
aisysm16@y
ahoo.com>,
<daisysm20
03@yahoo.c
om>,<daisy
sm@yahoo.c
om>,<daisy
smail2004@
yahoo.com>
, delay=5+07:30:58, xdelay=00:00:04, mailer=esmtp, pri=377843, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:25:24 mail sendmail[15758]: k98M56cE011728: to=<clwwong@yahoo.com>,<cl
wws69420@y
ahoo.com>,
<clwwtxsp@
yahoo.com>
,<clwww200
3@yahoo.co
m>,<clwwww
ii@yahoo.c
om>, delay=5+02:47:54, xdelay=00:00:02, mailer=esmtp, pri=377844, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:25:24 mail sendmail[15758]: k98IPxqA008395: to=<entera@bellsouth.net>,
<enteracti
ve@bellsou
th.net>, delay=5+06:27:47, xdelay=00:00:00, mailer=esmtp, pri=377844, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:25:25 mail sendmail[15758]: k98IPxqA008395: k9DGe1d6015758: DSN: Cannot send message for 5 days
Oct 14 06:25:25 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 48000
Oct 14 06:25:28 mail sendmail[15758]: k9DGe1d6015758: to=<bmlwcqju@briankennedy.
co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=79091, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:25:29 mail sendmail[15758]: k9DGe1d6015758: k9DGe1d7015758: return to sender: User unknown
Oct 14 06:25:30 mail sendmail[15758]: k9DGe1d7015758: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80115, dsn=2.0.0, stat=Sent
Oct 14 06:25:32 mail sendmail[15758]: k9C7FAND024241: to=<falveyd@yahoo.com>,<fa
lveyjlaw@y
ahoo.com>,
<falveyjp@
yahoo.com>
,<falviaca
rletti@yah
oo.com>,<f
alvinator@
yahoo.com>
,<falvinso
nny@yahoo.
com>, delay=1+17:37:09, xdelay=00:00:02, mailer=esmtp, pri=377847, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: 451 mta164.mail.re2.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:25:32 mail sendmail[15758]: k9C7FAND024241: k9DGe1d8015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:25:32 mail sendmail[21243]: k9E0tVAS021243: from=<send@mail.efax.com>,
size=1555, class=0, nrcpts=1, msgid=<45303551.07EB6F.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:25:33 mail sendmail[21244]: k9E0tVAS021243: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61763, dsn=2.0.0, stat=Sent
Oct 14 06:25:33 mail sendmail[21244]: k9E0tVAS021243: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61763, dsn=2.0.0, stat=Sent
Oct 14 06:25:38 mail sendmail[15758]: k9DGe1d8015758: to=<undsgl@chinabyte.com>,
delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49096, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Resources temporarily not available - Please try again later [#4.16.5].
Oct 14 06:25:41 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 49000
Oct 14 06:25:42 mail sendmail[15758]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:25:43 mail sendmail[15758]: k98EoDhu005166: to=<cobb_casey@dell.com>, delay=5+10:05:20, xdelay=00:00:05, mailer=esmtp, pri=377848, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:25:44 mail sendmail[15758]: k98EoDhu005166: to=<cobb_ga@dell.com>, delay=5+10:05:21, xdelay=00:00:06, mailer=esmtp, pri=377848, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:25:44 mail sendmail[15758]: k98EoDhu005166: to=<cobb_island@dell.com>,
delay=5+10:05:21, xdelay=00:00:06, mailer=esmtp, pri=377848, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:25:44 mail sendmail[15758]: k98EoDhu005166: to=<cobb_jeannie@dell.com>
, delay=5+10:05:21, xdelay=00:00:06, mailer=esmtp, pri=377848, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:25:44 mail sendmail[15758]: k98EoDhu005166: k9DGe1d9015758: DSN: Cannot send message for 5 days
Oct 14 06:25:45 mail sendmail[15758]: k9DGe1d9015758: to=<hfcflwnpapb@arabia.com
>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79096, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:25:45 mail sendmail[15758]: k9BBw6i5004905: to=<plumnum@yahoo.com>,<pl
umnurse@ya
hoo.com>,<
plumnut@ya
hoo.com>,<
plumnutz21
@yahoo.com
>,<plumnut
z24@yahoo.
com>,<plum
o0322@yaho
o.com>, delay=2+12:57:22, xdelay=00:00:00, mailer=esmtp, pri=377849, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:25:45 mail sendmail[15758]: k9BBw6i5004905: k9DGe1dA015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:25:48 mail sendmail[15758]: k9DGe1dA015758: to=<qzzfpkemswfmo@chinabyt
e.com>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49095, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=5.0.0, stat=Service unavailable
Oct 14 06:25:48 mail sendmail[15758]: k9DGe1dA015758: k9DGe1dB015758: return to sender: Service unavailable
Oct 14 06:25:49 mail sendmail[15758]: k9DGe1dB015758: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=50119, dsn=2.0.0, stat=Sent
Oct 14 06:25:49 mail sendmail[15758]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+14:45:09, xdelay=00:00:00, mailer=esmtp, pri=377850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:25:49 mail sendmail[15758]: k9BA7t5q032046: k9DGe1dC015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:25:53 mail sendmail[15758]: k9DGe1dC015758: to=<llvggwsckpf@briankenne
dy.co.uk>,
delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=49098, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:25:54 mail sendmail[15758]: k9DGe1dC015758: k9DGe1dD015758: return to sender: User unknown
Oct 14 06:25:55 mail sendmail[15758]: k9DGe1dD015758: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50122, dsn=2.0.0, stat=Sent
Oct 14 06:25:55 mail sendmail[15758]: k9BCKdaZ006378: to=<lockhartj1@yahoo.com>,
<lockhartj
91@yahoo.c
om>,<lockh
artjanita@
yahoo.com>
,<lockhart
kye@yahoo.
com>,<lock
hartlatash
a@yahoo.co
m>,<lockha
rtlatino@y
ahoo.com>,
delay=2+12:32:59, xdelay=00:00:00, mailer=esmtp, pri=377850, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:25:55 mail sendmail[15758]: k9BCKdaZ006378: k9DGe1dE015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:25:56 mail sendmail[15758]: k9DGe1dE015758: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:25:56 mail sendmail[21249]: k9E0tujg021249: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:25:56 mail sendmail[15758]: k9DGe1dE015758: to=<eggoitpenzt@centrapoin
t.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49096, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:25:56 mail sendmail[15758]: k9DGe1dE015758: k9DGe1dF015758: return to sender: Local configuration error
Oct 14 06:25:57 mail sendmail[15758]: k9DGe1dF015758: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50120, dsn=2.0.0, stat=Sent
Oct 14 06:26:06 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 50000
Oct 14 06:26:21 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:26:22 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 51000
Oct 14 06:26:23 mail sendmail[18008]: k9B6weTu019325: to=<slmann1@bellsouth.net>
,<slmannin
@bellsouth
.net>, delay=2+17:56:28, xdelay=00:01:06, mailer=esmtp, pri=826312, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:26:29 mail sendmail[18008]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:26:30 mail sendmail[18008]: k9AKhrTx012578: to=<harriet_newton@dell.co
m>, delay=3+04:06:41, xdelay=00:00:06, mailer=esmtp, pri=916318, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:26:30 mail sendmail[18008]: k9AKhrTx012578: to=<harriet_rook@dell.com>
, delay=3+04:06:41, xdelay=00:00:06, mailer=esmtp, pri=916318, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:26:31 mail sendmail[18008]: k9AKhrTx012578: to=<harriet_ruslan@dell.co
m>, delay=3+04:06:42, xdelay=00:00:07, mailer=esmtp, pri=916318, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:26:32 mail sendmail[18008]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.ne
t>,<d7ofus
7@bellsout
h.net>,<d7
stars@bell
south.net>
,<d7thstar
@bellsouth
.net>,<d7t
oes@bellso
uth.net>, delay=3+15:23:51, xdelay=00:00:00, mailer=esmtp, pri=916324, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:33 mail sendmail[18008]: k9AHSbvc008173: to=<ckozy@bellsouth.net>,<
ckp116@bel
lsouth.net
>,<ckp1192
@bellsouth
.net>,<ckp
1@bellsout
h.net>,<ck
p@bellsout
h.net>, delay=3+07:27:51, xdelay=00:00:00, mailer=esmtp, pri=1006328, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:33 mail sendmail[18008]: k9B4iu4j005638: to=<servigon@bellsouth.net
>,<servil@
bellsouth.
net>, delay=2+20:10:54, xdelay=00:00:00, mailer=esmtp, pri=1006330, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:34 mail sendmail[21253]: k9E0uWUU021253: from=<send@mail.efax.com>,
size=1459, class=0, nrcpts=1, msgid=<4530364C.001305.018
96@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:26:34 mail sendmail[18008]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+19:36:12, xdelay=00:00:00, mailer=esmtp, pri=916345, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:34 mail sendmail[18008]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+02:42:29, xdelay=00:00:00, mailer=esmtp, pri=826346, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:34 mail sendmail[21254]: k9E0uWUU021253: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61665, dsn=2.0.0, stat=Sent
Oct 14 06:26:34 mail sendmail[21254]: k9E0uWUU021253: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61665, dsn=2.0.0, stat=Sent
Oct 14 06:26:34 mail sendmail[18008]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+12:48:33, xdelay=00:00:00, mailer=esmtp, pri=826358, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:34 mail sendmail[18008]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+01:43:19, xdelay=00:00:00, mailer=esmtp, pri=737394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:34 mail sendmail[18008]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+17:43:28, xdelay=00:00:00, mailer=esmtp, pri=647413, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+20:46:53, xdelay=00:00:00, mailer=esmtp, pri=737425, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:11:33, xdelay=00:00:00, mailer=esmtp, pri=737436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:37:33, xdelay=00:00:00, mailer=esmtp, pri=737436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:18:46, xdelay=00:00:00, mailer=esmtp, pri=647440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:11:19, xdelay=00:00:00, mailer=esmtp, pri=737441, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:35 mail sendmail[18008]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:16:38, xdelay=00:00:00, mailer=esmtp, pri=737442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:15:36, xdelay=00:00:00, mailer=esmtp, pri=737442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+19:49:35, xdelay=00:00:00, mailer=esmtp, pri=737442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:30:01, xdelay=00:00:00, mailer=esmtp, pri=647448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+11:51:13, xdelay=00:00:00, mailer=esmtp, pri=647452, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+09:54:50, xdelay=00:00:00, mailer=esmtp, pri=647456, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:36 mail sendmail[18008]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:20:11, xdelay=00:00:00, mailer=esmtp, pri=647460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:37 mail sendmail[18008]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:46:45, xdelay=00:00:00, mailer=esmtp, pri=647469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:37 mail sendmail[18008]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:42:37, xdelay=00:00:00, mailer=esmtp, pri=647473, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:26:46 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 52000
Oct 14 06:27:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 53000
Oct 14 06:27:05 mail sendmail[14561]: k9A7WaoE015658: to=<brentwc@bellsouth.net>
, delay=3+17:24:22, xdelay=00:02:45, mailer=esmtp, pri=1180134, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:27:09 mail sendmail[18008]: k9C61LW5015790: to=<xxednortonxx@yahoo.com
>,<xxedout
34@yahoo.c
om>,<xxedo
ut77@yahoo
.com>,<xxe
doxx@yahoo
.com>, delay=1+18:54:15, xdelay=00:00:32, mailer=esmtp, pri=647816, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/4)
Oct 14 06:27:09 mail sendmail[18008]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:09:47, xdelay=00:00:00, mailer=esmtp, pri=647818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:09 mail sendmail[18008]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:48:27, xdelay=00:00:00, mailer=esmtp, pri=647830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:09 mail sendmail[18008]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:49:26, xdelay=00:00:00, mailer=esmtp, pri=647830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:09 mail sendmail[18008]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:22:18, xdelay=00:00:00, mailer=esmtp, pri=647834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:09 mail sendmail[18008]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:16:22, xdelay=00:00:00, mailer=esmtp, pri=467839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:13 mail sendmail[14561]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:27:13 mail sendmail[18008]: k9BGc0FE019862: to=<ldd240@yahoo.com>,<ldd
2744@yahoo
.com>,<ldd
296@yahoo.
com>,<ldd3
09@yahoo.c
om>,<ldd31
886648@yah
oo.com>,<l
dd320@yaho
o.com>, delay=2+08:19:11, xdelay=00:00:04, mailer=esmtp, pri=557842, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta153.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:27:14 mail sendmail[14561]: k9AA9g0E028206: to=<ap_daisymae@dell.com>,
delay=3+14:47:15, xdelay=00:00:08, mailer=esmtp, pri=1180786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:27:14 mail sendmail[14561]: k9AA9g0E028206: to=<ap_doshi@dell.com>, delay=3+14:47:15, xdelay=00:00:08, mailer=esmtp, pri=1180786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:27:14 mail sendmail[14561]: k9AA9g0E028206: to=<ap_dp103@dell.com>, delay=3+14:47:15, xdelay=00:00:08, mailer=esmtp, pri=1180786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:27:16 mail sendmail[14561]: k99B6Ra2015785: to=<vjriki_4u@yahoo.co.in>
, delay=4+13:49:31, xdelay=00:00:00, mailer=esmtp, pri=1180790, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:27:17 mail sendmail[14561]: k9AA9uV1028209: to=<hawkinsl@bellsouth.net
>,<hawkins
lauren@bel
lsouth.net
>, delay=3+14:46:32, xdelay=00:00:00, mailer=esmtp, pri=1180790, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:17 mail sendmail[14561]: k9B442uJ004255: to=<shibbyguy14@bellsouth.
net>,<shib
bykay05@be
llsouth.ne
t>,<shibee
l@bellsout
h.net>,<sh
ibi@bellso
uth.net>,<
shible@bel
lsouth.net
>, delay=2+20:49:04, xdelay=00:00:00, mailer=esmtp, pri=1180792, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:18 mail sendmail[18008]: k9C7FAND024241: to=<falveyd@yahoo.com>,<fa
lveyjlaw@y
ahoo.com>,
<falveyjp@
yahoo.com>
,<falviaca
rletti@yah
oo.com>,<f
alvinator@
yahoo.com>
,<falvinso
nny@yahoo.
com>, delay=1+17:38:55, xdelay=00:00:05, mailer=esmtp, pri=467847, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:27:18 mail sendmail[14561]: k9AFvolb006155: to=<barthmann@bellsouth.ne
t>,<barthm
os@bellsou
th.net>,<b
arthms5@be
llsouth.ne
t>,<barthn
@bellsouth
.net>,<bar
tho@bellso
uth.net>, delay=3+08:58:03, xdelay=00:00:00, mailer=esmtp, pri=1180796, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:19 mail sendmail[14561]: k99EFEwb007597: to=<bjrake@bellsouth.net>,
<frazierr@
bellsouth.
net>,<pday
@bellsouth
.net>, delay=4+10:41:29, xdelay=00:00:00, mailer=esmtp, pri=1090796, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:19 mail sendmail[14561]: k9ACjKOp000680: to=<boxman803@bellsouth.ne
t>,<boxman
8196@bells
outh.net>,
<boxman822
8@bellsout
h.net>,<bo
xman8500@b
ellsouth.n
et>,<boxma
n8@bellsou
th.net>, delay=3+12:09:55, xdelay=00:00:00, mailer=esmtp, pri=1180799, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:19 mail sendmail[14561]: k9ANA82M020355: to=<btmimme@bellsouth.net>
,<btmimrut
op@bellsou
th.net>,<b
tmin22304@
bellsouth.
net>,<btmi
n425@bells
outh.net>,
<btminatlk
9@bellsout
h.net>, delay=3+01:43:27, xdelay=00:00:00, mailer=esmtp, pri=1180801, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:20 mail sendmail[14561]: k9B6LksS014536: to=<birtys@bellsouth.net>,
<birtzy@be
llsouth.ne
t>,<biruby
69@bellsou
th.net>,<b
iruce@bell
south.net>
,<biruchan
@bellsouth
.net>, delay=2+18:34:28, xdelay=00:00:00, mailer=esmtp, pri=1180801, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:20 mail sendmail[14561]: k9AL4xp0013307: to=<ray366@bellsouth.net>,
<ray37212@
bellsouth.
net>,<ray3
79@bellsou
th.net>,<r
ay38@bells
outh.net>,
<ray392@be
llsouth.ne
t>, delay=3+03:50:00, xdelay=00:00:00, mailer=esmtp, pri=1270802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:20 mail sendmail[14561]: k9AL89Vo013386: to=<ray366@bellsouth.net>,
<ray37212@
bellsouth.
net>,<ray3
79@bellsou
th.net>,<r
ay38@bells
outh.net>,
<ray392@be
llsouth.ne
t>, delay=3+03:48:49, xdelay=00:00:00, mailer=esmtp, pri=1180802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:21 mail sendmail[14561]: k999scUJ009373: to=<deedell@bellsouth.net>
, delay=4+15:01:47, xdelay=00:00:00, mailer=esmtp, pri=1180802, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:21 mail sendmail[14561]: k9AC87vt031639: to=<zeg64@bellsouth.net>,<
zeg@bellso
uth.net>,<
zega6553@b
ellsouth.n
et>,<zegg@
bellsouth.
net>,<zegm
@bellsouth
.net>, delay=3+12:48:08, xdelay=00:00:00, mailer=esmtp, pri=1270804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:22 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:27:23 mail sendmail[14561]: k9AB1UDH029653: to=<ttaylor1@bellsouth.net
>,<ttaylor
28@bellsou
th.net>,<t
taylor2@be
llsouth.ne
t>,<ttaylo
r4@bellsou
th.net>,<t
taylor5@be
llsouth.ne
t>, delay=3+13:53:39, xdelay=00:00:00, mailer=esmtp, pri=1180805, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:23 mail sendmail[18008]: k9BBw6i5004905: to=<plumnum@yahoo.com>,<pl
umnurse@ya
hoo.com>,<
plumnut@ya
hoo.com>,<
plumnutz21
@yahoo.com
>,<plumnut
z24@yahoo.
com>,<plum
o0322@yaho
o.com>, delay=2+12:59:00, xdelay=00:00:05, mailer=esmtp, pri=467849, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:27:23 mail sendmail[18008]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+14:46:43, xdelay=00:00:00, mailer=esmtp, pri=467850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:23 mail sendmail[14561]: k99ESURF008065: to=<rdksimm22@bellsouth.ne
t>, delay=4+10:25:47, xdelay=00:00:00, mailer=esmtp, pri=1180807, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:24 mail sendmail[14561]: k9B1wXg9032365: to=<big2001@bellsouth.net>
,<big2002@
bellsouth.
net>,<big2
1@bellsout
h.net>,<bi
g222@bells
outh.net>,
<big22@bel
lsouth.net
>, delay=2+22:55:56, xdelay=00:00:00, mailer=esmtp, pri=1180811, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:24 mail sendmail[14561]: k99INT9j015508: to=<alegerno@bellsouth.net
>, delay=4+06:33:42, xdelay=00:00:00, mailer=esmtp, pri=1180811, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:25 mail sendmail[14561]: k9B7wOht025921: to=<gerryatc@bellsouth.net
>,<gerryb1
@bellsouth
.net>,<ger
ryb@bellso
uth.net>,<
gerrybla@b
ellsouth.n
et>,<gerry
blake@bell
south.net>
, delay=2+16:57:50, xdelay=00:00:00, mailer=esmtp, pri=1180812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 06:27:25 mail sendmail[14561]: k99JTc1e018428: to=<bcrockett1@bellsouth.n
et>, delay=4+05:26:13, xdelay=00:00:00, mailer=esmtp, pri=1090820, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:28 mail sendmail[18008]: k9BCKdaZ006378: to=<lockhartj1@yahoo.com>,
<lockhartj
91@yahoo.c
om>,<lockh
artjanita@
yahoo.com>
,<lockhart
kye@yahoo.
com>,<lock
hartlatash
a@yahoo.co
m>,<lockha
rtlatino@y
ahoo.com>,
delay=2+12:34:32, xdelay=00:00:04, mailer=esmtp, pri=467850, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta153.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:27:29 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 54000
Oct 14 06:27:32 mail sendmail[18008]: k98JckFo009407: to=<summerlachner@yahoo.co
m>,<summer
lady1946@y
ahoo.com>,
<summerlad
y1986@yaho
o.com>,<su
mmerlady25
2001@yahoo
.com>,<sum
merlady46@
yahoo.com>
, delay=5+05:11:13, xdelay=00:00:04, mailer=esmtp, pri=377851, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:27:33 mail sendmail[18008]: k98LHOxj010859: to=<jensmith@bellsouth.net
>,<jensmom
@bellsouth
.net>,<jen
snielsen@b
ellsouth.n
et>,<jensn
ric@bellso
uth.net>,<
jenso@bell
south.net>
, delay=5+03:39:10, xdelay=00:00:00, mailer=esmtp, pri=377851, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:27:33 mail sendmail[18008]: k98LHOxj010859: k9DJe10q018008: DSN: Cannot send message for 5 days
Oct 14 06:27:33 mail sendmail[18008]: k9DJe10q018008: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:27:33 mail sendmail[21259]: k9E0vX4F021259: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:27:33 mail sendmail[18008]: k9DJe10q018008: to=<qfbcsenlswqin@centrapo
int.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79097, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:27:33 mail sendmail[18008]: k9DJe10q018008: k9DJe10r018008: return to sender: Local configuration error
Oct 14 06:27:33 mail sendmail[18008]: k9DJe10r018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80121, dsn=2.0.0, stat=Sent
Oct 14 06:27:37 mail sendmail[18008]: k98NcaGi013734: to=<bfc1221@yahoo.com>,<bf
c1229@yaho
o.com>,<bf
c1233@yaho
o.com>,<bf
c1234@yaho
o.com>,<bf
c123@yahoo
.com>, delay=5+01:18:30, xdelay=00:00:04, mailer=esmtp, pri=377852, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:27:41 mail sendmail[18008]: k98HXcc9007777: to=<billham51@yahoo.com>,<
billham68@
yahoo.com>
, delay=5+07:23:34, xdelay=00:00:04, mailer=esmtp, pri=377853, relay=mx1.mail.yahoo.com. [67.28.113.19], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:27:43 mail sendmail[18008]: k9C8Wtbw002349: to=<cshs_cahn@yahoo.com>,<
cshs_cat@y
ahoo.com>,
<cshs_catv
@yahoo.com
>,<cshs_ca
tv_2004@ya
hoo.com>, delay=1+16:24:46, xdelay=00:00:02, mailer=esmtp, pri=377854, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: 451 mta232.mail.re2.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:27:43 mail sendmail[18008]: k9C8Wtbw002349: k9DJe10s018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:27:46 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 55000
Oct 14 06:28:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 56000
Oct 14 06:28:17 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 57000
Oct 14 06:28:18 mail sendmail[21261]: k9E0wG8N021261: from=<send@mail.efax.com>,
size=1461, class=0, nrcpts=1, msgid=<453035F6.001343.022
00@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:28:19 mail sendmail[21262]: k9E0wG8N021261: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=61667, dsn=2.0.0, stat=Sent
Oct 14 06:28:19 mail sendmail[21262]: k9E0wG8N021261: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61667, dsn=2.0.0, stat=Sent
Oct 14 06:28:23 mail imap-login: Disconnected: Inactivity [::ffff:59.92.135.232]
Oct 14 06:28:24 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 06:28:34 mail last message repeated 3 times
Oct 14 06:28:36 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 58000
Oct 14 06:28:36 mail sendmail[21277]: k9E0wZUn021277: ruleset=check_rcpt, arg1=<bt@scriptacomsystems
>, relay=[59.92.135.232], reject=550 5.7.1 <bt@scriptacomsystems>... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:28:36 mail sendmail[21277]: k9E0wZUn021277: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:28:38 mail sendmail[21277]: k9E0wZUo021277: ruleset=check_rcpt, arg1=<mt@scriptasomsystems
.com>, relay=[59.92.135.232], reject=550 5.7.1 <mt@scriptasomsystems.com>
... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:28:38 mail sendmail[21277]: k9E0wZUo021277: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=3, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:28:39 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:28:40 mail sendmail[21278]: k9E0wcxb021278: from=<send@mail.efax.com>,
size=1493, class=0, nrcpts=1, msgid=<4530360D.080951.016
08@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:28:40 mail sendmail[21282]: k9E0wcxb021278: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61701, dsn=2.0.0, stat=Sent
Oct 14 06:28:40 mail sendmail[21282]: k9E0wcxb021278: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61701, dsn=2.0.0, stat=Sent
Oct 14 06:28:43 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:28:47 mail last message repeated 2 times
Oct 14 06:28:55 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 59000
Oct 14 06:28:59 mail sendmail[21294]: k9E0wv0q021294: from=<send@mail.efax.com>,
size=1467, class=0, nrcpts=1, msgid=<453036DD.0013AF.020
04@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:28:59 mail sendmail[21295]: k9E0wv0q021294: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61673, dsn=2.0.0, stat=Sent
Oct 14 06:28:59 mail sendmail[21295]: k9E0wv0q021294: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61673, dsn=2.0.0, stat=Sent
Oct 14 06:29:15 mail sendmail[21298]: k9E0xDWQ021298: from=<send@mail.efax.com>,
size=1457, class=0, nrcpts=1, msgid=<4530362F.0015AF.021
96@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp13.j2.com [204.11.168.115]
Oct 14 06:29:15 mail sendmail[21299]: k9E0xDWQ021298: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61663, dsn=2.0.0, stat=Sent
Oct 14 06:29:16 mail sendmail[21299]: k9E0xDWQ021298: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=61663, dsn=2.0.0, stat=Sent
Oct 14 06:29:21 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 60000
Oct 14 06:29:32 mail sendmail[27407]: k9BEGVE2012758: to=<hofkin@rdu.bellsouth.n
et>, delay=2+10:40:18, xdelay=00:32:00, mailer=esmtp, pri=1158825, relay=rdu.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:29:32 mail sendmail[15871]: k9C2EB4C003819: to=<mkidwell@bhm.bellsouth
.net>,<mki
efer@bhm.b
ellsouth.n
et>, delay=1+22:43:27, xdelay=00:32:00, mailer=esmtp, pri=979261, relay=bhm.bellsouth.net. [205.152.58.135], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:29:37 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 61000
Oct 14 06:29:43 mail sendmail[18008]: k9DJe10s018008: to=<dddurdzu@arabia.com>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=49102, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:29:54 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 62000
Oct 14 06:29:57 mail sendmail[27407]: k9BFOlMB016044: to=<averldrcook@bellsouth.
net>, delay=2+09:30:21, xdelay=00:00:25, mailer=esmtp, pri=1338827, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:29:57 mail sendmail[27407]: k9BFOlMB016044: to=<minti19in@yahoo.co.in>
, delay=2+09:30:21, xdelay=00:00:00, mailer=esmtp, pri=1338827, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:29:57 mail sendmail[27407]: k9BCTM1q006752: to=<christopher.jewett@bel
lsouth.net
>,<shadow1
7@bellsout
h.net>, delay=2+12:27:43, xdelay=00:00:00, mailer=esmtp, pri=1428831, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:29:57 mail sendmail[27407]: k9BGN7pe019246: to=<acraig1041@bellsouth.n
et>,<acrai
g17@bellso
uth.net>,<
acraig1946
@bellsouth
.net>,<acr
aig1@bells
outh.net>,
<acraig@be
llsouth.ne
t>, delay=2+08:36:19, xdelay=00:00:00, mailer=esmtp, pri=1428834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:29:59 mail sendmail[27407]: k9BD3v4n008728: to=<bball85@bellsouth.net>
, delay=2+11:54:33, xdelay=00:00:00, mailer=esmtp, pri=1428834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:29:59 mail sendmail[27407]: k9C1h43s002772: to=<whit6016@bellsouth.net
>,<whit605
7@bellsout
h.net>, delay=1+23:16:13, xdelay=00:00:00, mailer=esmtp, pri=1428835, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:29:59 mail sendmail[27407]: k9C38uwn005300: to=<ergon@rdu.bellsouth.ne
t>,<ergot@
rdu.bellso
uth.net>, delay=1+21:50:24, xdelay=00:00:00, mailer=esmtp, pri=1068836, relay=rdu.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:29:59 mail sendmail[27407]: k9BG3A9L018108: to=<akira-murayama@bellsou
th.net>, delay=2+08:56:16, xdelay=00:00:00, mailer=esmtp, pri=1428839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:29:59 mail sendmail[27407]: k9C1leTu002931: to=<cpk6@bellsouth.net>,<c
pk721@bell
south.net>
, delay=1+23:12:11, xdelay=00:00:00, mailer=esmtp, pri=1428849, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:30:00 mail sendmail[27407]: k9BI2YBn024199: to=<bataata@bellsouth.net>
,<batab@be
llsouth.ne
t>,<bataba
seball@bel
lsouth.net
>,<batabat
a@bellsout
h.net>,<ba
tabing1@be
llsouth.ne
t>, delay=2+06:52:38, xdelay=00:00:00, mailer=esmtp, pri=1428857, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:30:00 mail sendmail[27407]: k9C1wlM8003324: to=<hetzy2250@bellsouth.ne
t>,<heu@be
llsouth.ne
t>, delay=1+23:00:46, xdelay=00:00:00, mailer=esmtp, pri=1428864, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:30:00 mail sendmail[27407]: k9C4PsEL007527: to=<jose.ramon@bellsouth.n
et>,<jose.
ramos@bell
south.net>
,<jose.ran
gel@bellso
uth.net>,<
jose.river
a@bellsout
h.net>,<jo
se.rpineda
@bellsouth
.net>, delay=1+20:33:11, xdelay=00:00:00, mailer=esmtp, pri=1428924, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:30:04 mail sendmail[19957]: k99HJ7w9012596: to=<hugle@mia.bellsouth.ne
t>, delay=4+07:40:47, xdelay=00:32:00, mailer=esmtp, pri=464235, relay=mia.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 06:30:11 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 63000
Oct 14 06:30:21 mail sendmail[21302]: k9E10JH2021302: from=<send@mail.efax.com>,
size=1470, class=0, nrcpts=1, msgid=<45303671.001479.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp14.j2.com [204.11.168.116]
Oct 14 06:30:21 mail sendmail[21303]: k9E10JH2021302: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61676, dsn=2.0.0, stat=Sent
Oct 14 06:30:21 mail sendmail[21303]: k9E10JH2021302: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61676, dsn=2.0.0, stat=Sent
Oct 14 06:30:29 mail sendmail[12927]: k9B8EOku027458: to=<pcarr@lig.bellsouth.ne
t>,<pcarro
ll@lig.bel
lsouth.net
>,<pcarty@
lig.bellso
uth.net>,<
pcaruso@li
g.bellsout
h.net>,<pc
asey@lig.b
ellsouth.n
et>, delay=2+16:43:29, xdelay=00:32:00, mailer=esmtp, pri=906821, relay=lig.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 06:30:37 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 64000
Oct 14 06:30:52 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 65000
Oct 14 06:31:04 mail sendmail[21306]: k9E10wCq021306: from=<tloring@server1.scri
ptacomsolu
tions.com>
, size=54784, class=0, nrcpts=3, msgid=<200610140100.k9E107
xm006232@s
erver1.scr
iptacomsol
utions.com
>, proto=ESMTP, daemon=MTA, relay=iad2.emailsrvr.com [207.97.227.212]
Oct 14 06:31:04 mail sendmail[21307]: k9E10wCq021306: to=<asokan@scriptacomsyste
ms.com>, delay=00:00:04, xdelay=00:00:00, mailer=local, pri=174969, dsn=2.0.0, stat=Sent
Oct 14 06:31:05 mail sendmail[21307]: k9E10wCq021306: to=<data@scriptacomsystems
.com>, delay=00:00:05, xdelay=00:00:01, mailer=local, pri=174969, dsn=2.0.0, stat=Sent
Oct 14 06:31:05 mail sendmail[21307]: k9E10wCq021306: to=network@scriptacomsyste
ms.com, delay=00:00:05, xdelay=00:00:00, mailer=local, pri=174969, dsn=2.0.0, stat=Sent
Oct 14 06:31:05 mail sendmail[21307]: k9E10wCq021306: to=<sbs@scriptacomsystems.
com>, delay=00:00:05, xdelay=00:00:00, mailer=local, pri=174969, dsn=2.0.0, stat=Sent
Oct 14 06:31:08 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 66000
Oct 14 06:31:20 mail sendmail[21312]: k9E11J7A021312: from=<send@mail.efax.com>,
size=1464, class=0, nrcpts=1, msgid=<453036AD.0014A1.021
92@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:31:20 mail sendmail[19957]: k991fbpi015949: to=<andrew.rose@bellsouth.
net>,<andr
ew.rowley@
bellsouth.
net>, delay=4+23:17:00, xdelay=00:01:16, mailer=esmtp, pri=1185621, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:31:21 mail sendmail[21314]: k9E11J7A021312: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61670, dsn=2.0.0, stat=Sent
Oct 14 06:31:21 mail sendmail[21313]: k9E11JSA021313: from=<send@mail.efax.com>,
size=1451, class=0, nrcpts=1, msgid=<4530376B.0013E5.020
04@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp11.j2.com [204.11.168.113]
Oct 14 06:31:21 mail sendmail[21314]: k9E11J7A021312: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61670, dsn=2.0.0, stat=Sent
Oct 14 06:31:21 mail sendmail[21317]: k9E11JSA021313: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61657, dsn=2.0.0, stat=Sent
Oct 14 06:31:21 mail sendmail[21317]: k9E11JSA021313: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61657, dsn=2.0.0, stat=Sent
Oct 14 06:31:25 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 67000
Oct 14 06:31:36 mail sendmail[5162]: k9C2uoa7005074: to=<reedj@atl.bellsouth.ne
t>,<reeds@
atl.bellso
uth.net>, delay=1+22:03:27, xdelay=00:32:00, mailer=esmtp, pri=439796, relay=atl.bellsouth.net. [205.152.58.8], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 06:31:42 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 68000
Oct 14 06:31:56 mail sendmail[21320]: k9E11sp2021320: from=<send@mail.efax.com>,
size=1484, class=0, nrcpts=1, msgid=<453036CC.0809ED.016
08@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp2.pit1.j2.com [204.11.173.152]
Oct 14 06:31:56 mail sendmail[21321]: k9E11sp2021320: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61692, dsn=2.0.0, stat=Sent
Oct 14 06:31:56 mail sendmail[21321]: k9E11sp2021320: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61692, dsn=2.0.0, stat=Sent
Oct 14 06:31:57 mail sendmail[11354]: k99HTnI5012933: to=<albright@jax.bellsouth
.net>, delay=4+07:31:35, xdelay=00:32:10, mailer=esmtp, pri=376341, relay=jax.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with jax.bellsouth.net.
Oct 14 06:31:57 mail sendmail[11354]: k99HTnI5012933: k9D5e1N8011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:32:07 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 06:32:09 mail sendmail[21326]: k9E127lC021326: from=<send@mail.efax.com>,
size=1552, class=0, nrcpts=1, msgid=<453036DD.07ECBB.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:32:09 mail sendmail[11354]: k9D5e1N8011354: to=<hkcmfnjrrt@ciudad.com.
ar>, delay=00:00:12, xdelay=00:00:11, mailer=esmtp, pri=77585, relay=postino7.prima.com.a
r. [200.42.0.150], dsn=2.0.0, stat=Sent (ok 1160787680 qp 99477)
Oct 14 06:32:10 mail sendmail[21329]: k9E127lC021326: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=61760, dsn=2.0.0, stat=Sent
Oct 14 06:32:10 mail sendmail[21329]: k9E127lC021326: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61760, dsn=2.0.0, stat=Sent
Oct 14 06:32:11 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 69000
Oct 14 06:32:12 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 06:32:15 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 06:32:16 mail sendmail[21328]: k9E128Xi021328: from=<send@mail.efax.com>,
size=1392, class=0, nrcpts=1, msgid=<4530379C.0013FB.020
04@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:32:16 mail sendmail[21338]: k9E128Xi021328: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61599, dsn=2.0.0, stat=Sent
Oct 14 06:32:16 mail sendmail[21338]: k9E128Xi021328: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61599, dsn=2.0.0, stat=Sent
Oct 14 06:32:17 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 06:32:17 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 06:32:19 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 06:32:24 mail sendmail[12927]: k9B6NXGM014716: to=<smatsuo@bellsouth.net>
,<smatt@be
llsouth.ne
t>, delay=2+18:37:51, xdelay=00:01:55, mailer=esmtp, pri=1266835, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:32:25 mail sendmail[21350]: k9E12OD1021350: from=<send@mail.efax.com>,
size=1532, class=0, nrcpts=1, msgid=<453036EE.07ECC3.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp2.pit1.j2.com [204.11.173.152]
Oct 14 06:32:26 mail sendmail[21351]: k9E12OD1021350: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=61740, dsn=2.0.0, stat=Sent
Oct 14 06:32:26 mail sendmail[21351]: k9E12OD1021350: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61740, dsn=2.0.0, stat=Sent
Oct 14 06:32:27 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 06:32:29 mail sendmail[5162]: k9C2feDG004664: to=<branblau@bellsouth.net
>,<branblk
blt@bellso
uth.net>, delay=1+22:18:23, xdelay=00:00:53, mailer=esmtp, pri=439798, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:32:29 mail sendmail[5162]: k9C4xicR008645: to=<jean9585@bellsouth.net
>,<jean972
@bellsouth
.net>,<jea
n9838@bell
south.net>
,<jean9877
@bellsouth
.net>,<jea
n9991@bell
south.net>
, delay=1+20:00:53, xdelay=00:00:00, mailer=esmtp, pri=1249802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:29 mail sendmail[5162]: k9C1wlM6003324: to=<hetzlerm@bellsouth.net
>,<hetzman
@bellsouth
.net>, delay=1+23:03:20, xdelay=00:00:00, mailer=esmtp, pri=1249803, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:29 mail sendmail[5162]: k9C6PJSn018807: to=<beannie_babe@bellsouth
.net>,<bea
nniem@bell
south.net>
, delay=1+18:37:04, xdelay=00:00:00, mailer=esmtp, pri=439804, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:30 mail sendmail[5162]: k9C1leTs002931: to=<cpk4lyf@bellsouth.net>
,<cpk59@be
llsouth.ne
t>, delay=1+23:14:45, xdelay=00:00:00, mailer=esmtp, pri=1339807, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:30 mail sendmail[5162]: k9BDjMso011041: to=<ashleypreston@bellsout
h.net>,<ce
sfens@bell
south.net>
, delay=2+11:16:12, xdelay=00:00:00, mailer=esmtp, pri=1249809, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:30 mail sendmail[5162]: k9BAnnwM001302: to=<hoffy82@bellsouth.net>
, delay=2+14:09:46, xdelay=00:00:00, mailer=esmtp, pri=1339810, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:30 mail sendmail[5162]: k9C2jReQ004723: to=<alcmoore@bellsouth.net
>,<emma_ma
y@bellsout
h.net>, delay=1+22:14:23, xdelay=00:00:00, mailer=esmtp, pri=439817, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:31 mail sendmail[5162]: k9C1hb2F002774: to=<dworby@bellsouth.net>,
delay=1+23:17:45, xdelay=00:00:00, mailer=esmtp, pri=1249817, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:31 mail sendmail[5162]: k9C2uoZf005074: to=<redness@atl.bellsouth.
net>,<redo
ne@atl.bel
lsouth.net
>, delay=1+22:05:29, xdelay=00:00:00, mailer=esmtp, pri=439821, relay=atl.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 06:32:31 mail sendmail[5162]: k9C2pTbs004878: to=<cmteague@bellsouth.net
>,<cmteam@
bellsouth.
net>, delay=1+22:05:42, xdelay=00:00:00, mailer=esmtp, pri=439821, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:32 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 70000
Oct 14 06:32:38 mail sendmail[6709]: k9C2uoa1005074: to=<reece@atl.bellsouth.ne
t>, delay=1+22:04:42, xdelay=00:32:00, mailer=esmtp, pri=1224812, relay=atl.bellsouth.net. [205.152.58.8], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 06:32:38 mail sendmail[11354]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+19:42:16, xdelay=00:00:28, mailer=esmtp, pri=1006345, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:32:38 mail sendmail[11354]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+02:48:33, xdelay=00:00:00, mailer=esmtp, pri=916346, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:38 mail sendmail[11354]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+12:54:37, xdelay=00:00:00, mailer=esmtp, pri=916358, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:39 mail sendmail[11354]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+01:49:24, xdelay=00:00:00, mailer=esmtp, pri=827394, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:39 mail sendmail[11354]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+17:49:33, xdelay=00:00:00, mailer=esmtp, pri=737413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:40 mail sendmail[11354]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+20:52:58, xdelay=00:00:00, mailer=esmtp, pri=827425, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:41 mail sendmail[11354]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:17:39, xdelay=00:00:00, mailer=esmtp, pri=827436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:41 mail sendmail[11354]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:43:39, xdelay=00:00:00, mailer=esmtp, pri=827436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:42 mail sendmail[11354]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:24:53, xdelay=00:00:00, mailer=esmtp, pri=737440, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:42 mail sendmail[11354]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:17:26, xdelay=00:00:00, mailer=esmtp, pri=827441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:43 mail sendmail[11354]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:22:46, xdelay=00:00:00, mailer=esmtp, pri=827442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:43 mail sendmail[11354]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:21:43, xdelay=00:00:00, mailer=esmtp, pri=827442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:43 mail sendmail[11354]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+19:55:42, xdelay=00:00:00, mailer=esmtp, pri=827442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:44 mail sendmail[11354]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:36:09, xdelay=00:00:00, mailer=esmtp, pri=737448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:44 mail sendmail[11354]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+11:57:21, xdelay=00:00:00, mailer=esmtp, pri=737452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:45 mail sendmail[11354]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+10:00:59, xdelay=00:00:00, mailer=esmtp, pri=737456, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:45 mail sendmail[11354]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:26:20, xdelay=00:00:00, mailer=esmtp, pri=737460, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:45 mail sendmail[11354]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:52:53, xdelay=00:00:00, mailer=esmtp, pri=737469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:46 mail sendmail[11354]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:48:46, xdelay=00:00:00, mailer=esmtp, pri=737473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:46 mail sendmail[11354]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:15:24, xdelay=00:00:00, mailer=esmtp, pri=737818, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:46 mail sendmail[11354]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:54:04, xdelay=00:00:00, mailer=esmtp, pri=737830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:47 mail sendmail[11354]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:55:04, xdelay=00:00:00, mailer=esmtp, pri=737830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:47 mail sendmail[11354]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:27:56, xdelay=00:00:00, mailer=esmtp, pri=737834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:48 mail sendmail[11354]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:22:01, xdelay=00:00:00, mailer=esmtp, pri=557839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:32:58 mail sendmail[21357]: k9E12vlg021357: from=<send@mail.efax.com>,
size=1549, class=0, nrcpts=1, msgid=<4530370F.080A2D.016
08@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:32:59 mail sendmail[21358]: k9E12vlg021357: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=61757, dsn=2.0.0, stat=Sent
Oct 14 06:32:59 mail sendmail[21358]: k9E12vlg021357: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61757, dsn=2.0.0, stat=Sent
Oct 14 06:33:00 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 71000
Oct 14 06:33:00 mail sendmail[11354]: k9BGc0FE019862: to=<ldd240@yahoo.com>,<ldd
2744@yahoo
.com>,<ldd
296@yahoo.
com>,<ldd3
09@yahoo.c
om>,<ldd31
886648@yah
oo.com>,<l
dd320@yaho
o.com>, delay=2+08:24:58, xdelay=00:00:11, mailer=esmtp, pri=647842, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:33:00 mail sendmail[11354]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+14:52:20, xdelay=00:00:00, mailer=esmtp, pri=557850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:33:07 mail sendmail[11354]: k9BCKdaZ006378: to=<lockhartj1@yahoo.com>,
<lockhartj
91@yahoo.c
om>,<lockh
artjanita@
yahoo.com>
,<lockhart
kye@yahoo.
com>,<lock
hartlatash
a@yahoo.co
m>,<lockha
rtlatino@y
ahoo.com>,
delay=2+12:40:11, xdelay=00:00:06, mailer=esmtp, pri=557850, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:33:11 mail sendmail[11354]: k9C8Wtbw002349: to=<cshs_cahn@yahoo.com>,<
cshs_cat@y
ahoo.com>,
<cshs_catv
@yahoo.com
>,<cshs_ca
tv_2004@ya
hoo.com>, delay=1+16:30:14, xdelay=00:00:04, mailer=esmtp, pri=467854, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta179.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:33:14 mail sendmail[11354]: k98FVvcs005745: to=<ericacen@yahoo.com>,<e
ricacephus
@yahoo.com
>,<ericace
r@yahoo.co
m>,<ericac
esdad2@yah
oo.com>,<e
ricach777@
yahoo.com>
, delay=5+09:30:13, xdelay=00:00:03, mailer=esmtp, pri=377855, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:33:17 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 72000
Oct 14 06:33:17 mail sendmail[11354]: k990kHlF014909: to=<aa4000us@yahoo.com>,<a
a402381@ya
hoo.com>,<
aa402@yaho
o.com>,<aa
40@yahoo.c
om>,<aa4@y
ahoo.com>,
delay=5+00:15:16, xdelay=00:00:03, mailer=esmtp, pri=377856, relay=mx3.mail.yahoo.com. [67.28.113.10], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:33:22 mail sendmail[11354]: k97LW83w004351: to=<carter2001_2002@yahoo.
com>,<cart
er2002002@
yahoo.com>
,<carter20
02010101@y
ahoo.com>,
<carter200
242633@yah
oo.com>,<c
arter2002@
yahoo.com>
, delay=6+03:30:11, xdelay=00:00:05, mailer=esmtp, pri=377857, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta179.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:33:22 mail sendmail[11354]: k97LW83w004351: k9D5e1N9011354: DSN: Cannot send message for 5 days
Oct 14 06:33:35 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 73000
Oct 14 06:33:40 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 06:33:40 mail sendmail[21361]: k9E13ZDL021361: from=<jmpccn@premiumprop.c
om>, size=16824, class=0, nrcpts=1, msgid=<45303736.3000400@pr
emiumprop.
com>, proto=SMTP, daemon=MTA, relay=[59.9.193.41]
Oct 14 06:33:41 mail sendmail[21364]: k9E13ZDL021361: to=<bt@scriptacomsystems.c
om>, delay=00:00:03, xdelay=00:00:00, mailer=local, pri=77009, dsn=2.0.0, stat=Sent
Oct 14 06:33:41 mail sendmail[21364]: k9E13ZDL021361: to=network@scriptacomsyste
ms.com, delay=00:00:03, xdelay=00:00:00, mailer=local, pri=77009, dsn=2.0.0, stat=Sent
Oct 14 06:33:55 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 74000
Oct 14 06:34:04 mail sendmail[6709]: k9BCfoRK007451: to=<schurch3@bellsouth.net
>, delay=2+12:20:24, xdelay=00:01:26, mailer=esmtp, pri=1674813, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:34:04 mail sendmail[6709]: k9BDvwpP011802: to=<geo1960@bellsouth.net>
, delay=2+11:02:03, xdelay=00:00:00, mailer=esmtp, pri=1674815, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:04 mail sendmail[6709]: k9C2uoZd005074: to=<redmond@atl.bellsouth.
net>, delay=1+22:07:07, xdelay=00:00:00, mailer=esmtp, pri=1224817, relay=atl.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 06:34:04 mail sendmail[6709]: k9BD3gI5008707: to=<corig@bellsouth.net>, delay=2+11:58:31, xdelay=00:00:00, mailer=esmtp, pri=1674820, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:04 mail sendmail[6709]: k9BCnGca007882: to=<lesgjordan@bellsouth.n
et>, delay=2+12:13:54, xdelay=00:00:00, mailer=esmtp, pri=1674825, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:05 mail sendmail[6709]: k9BEcZUX013631: to=<mwfj90@bellsouth.net>,
delay=2+10:24:17, xdelay=00:00:00, mailer=esmtp, pri=1674828, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:05 mail sendmail[6709]: k9BIZPEX026504: to=<anrui@bellsouth.net>, delay=2+06:27:01, xdelay=00:00:00, mailer=esmtp, pri=1674830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:05 mail sendmail[6709]: k9BG3rUa018126: to=<daclose@bellsouth.net>
,<ltaylo54
@bellsouth
.net>, delay=2+08:58:42, xdelay=00:00:00, mailer=esmtp, pri=1674831, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:34:08 mail sendmail[9876]: k9C2t3YP005013: to=<cotters@mia.bellsouth.
net>, delay=1+22:05:30, xdelay=00:32:01, mailer=esmtp, pri=1227604, relay=mia.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 06:34:13 mail sendmail[17051]: k99IRDUN015772: to=<pmal@bhm.bellsouth.net
>, delay=4+06:36:08, xdelay=00:32:00, mailer=esmtp, pri=376345, relay=bhm.bellsouth.net. [205.152.58.135], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:34:13 mail sendmail[17051]: k99IRDUN015772: k9DIe1dQ017051: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:34:18 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 75000
Oct 14 06:34:33 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 06:34:34 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 76000
Oct 14 06:34:47 mail sendmail[18008]: k986CPa7029807: timeout waiting for input from mx1.mail.yahoo.com. during client greeting
Oct 14 06:34:47 mail sendmail[18008]: k986CPa7029807: to=<loricox32@yahoo.com>,<
loricox67@
yahoo.com>
,<loricoxb
fi@yahoo.c
om>,<loric
oxbif@yaho
o.com>,<lo
ricpa1229@
yahoo.com>
, delay=5+18:50:03, xdelay=00:05:03, mailer=esmtp, pri=377854, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:34:47 mail sendmail[18008]: k986CPa7029807: k9DJe10t018008: DSN: Cannot send message for 5 days
Oct 14 06:34:48 mail sendmail[18008]: k9DJe10t018008: to=<jkfjoreplirfrj@arabia.
com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79102, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:34:48 mail sendmail[18008]: k980unq5025255: to=<bivi_pc@yahoo.com>,<bi
viab@yahoo
.com>,<biv
iam@yahoo.
com>,<bivi
ana2000@ya
hoo.com>,<
bivianamar
tinezalzat
e@yahoo.co
m>, delay=6+00:07:02, xdelay=00:00:00, mailer=esmtp, pri=377857, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:34:48 mail sendmail[18008]: k980unq5025255: k9DJe10u018008: DSN: Cannot send message for 5 days
Oct 14 06:34:52 mail sendmail[18008]: k9DJe10u018008: to=<hgxhncpswxkh@briankenn
edy.co.uk>
, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79105, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:34:53 mail sendmail[18008]: k9DJe10u018008: k9DJe10v018008: return to sender: User unknown
Oct 14 06:34:55 mail sendmail[18008]: k9DJe10v018008: to=root, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=80129, dsn=2.0.0, stat=Sent
Oct 14 06:34:55 mail sendmail[18008]: k9BA24wZ031785: to=<scrumpmoss42@yahoo.com
>,<scrumpn
asty@yahoo
.com>,<scr
umponit04@
yahoo.com>
,<scrumpr@
yahoo.com>
,<scrumprs
@yahoo.com
>,<scrumps
2004@yahoo
.com>, delay=2+15:00:30, xdelay=00:00:00, mailer=esmtp, pri=377858, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:34:55 mail sendmail[18008]: k9BA24wZ031785: k9DJe10w018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:34:58 mail sendmail[18008]: k9DJe10w018008: to=<dtlccxso@arsenal.co.uk
>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49106, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:34:58 mail sendmail[18008]: k9DJe10w018008: k9DJe10x018008: return to sender: User unknown
Oct 14 06:34:58 mail sendmail[18008]: k9DJe10x018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50130, dsn=2.0.0, stat=Sent
Oct 14 06:34:59 mail sendmail[18008]: k97NEBWM023474: to=<beeve@clt.bellsouth.ne
t>,<beever
s@clt.bell
south.net>
, delay=6+01:50:43, xdelay=00:00:00, mailer=esmtp, pri=377858, relay=clt.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:34:59 mail sendmail[18008]: k97NEBWM023474: k9DJe110018008: DSN: Cannot send message for 5 days
Oct 14 06:34:59 mail sendmail[18008]: k9DJe110018008: to=<ixbfmcgw@arabia.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79104, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:34:59 mail sendmail[18008]: k9BB8N2W002320: to=<caedmonds85@yahoo.com>
,<caedmond
s@yahoo.co
m>,<caedmo
nian@yahoo
.com>,<cae
dmonic@yah
oo.com>,<c
aedmonjoc@
yahoo.com>
,<caedmonl
ibrary@yah
oo.com>, delay=2+13:52:49, xdelay=00:00:00, mailer=esmtp, pri=377858, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:34:59 mail sendmail[18008]: k9BB8N2W002320: k9DJe111018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:00 mail sendmail[18008]: k9DJe111018008: to=<gczuelses@arsenal.co.u
k>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49155, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:35:00 mail sendmail[18008]: k9DJe111018008: k9DJe112018008: return to sender: User unknown
Oct 14 06:35:01 mail sendmail[18008]: k9DJe112018008: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50179, dsn=2.0.0, stat=Sent
Oct 14 06:35:01 mail sendmail[18008]: k9C7APga023486: to=<taklaew1@yahoo.com>,<t
aklahn@yah
oo.com>,<t
aklak1992@
yahoo.com>
,<taklale@
yahoo.com>
,<taklalug
irl@yahoo.
com>,<takl
am@yahoo.c
om>, delay=1+17:52:01, xdelay=00:00:00, mailer=esmtp, pri=377858, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:01 mail sendmail[18008]: k9C7APga023486: k9DJe113018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:01 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 06:35:02 mail sendmail[18008]: k9DJe113018008: to=<mquuuqvuoy@arabia.com>
, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49103, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:35:02 mail sendmail[18008]: k9B9S8Hi030299: to=<jbrito_2000@yahoo.com>
,<st_5_14@
yahoo.com>
,<tarolynm
robinson@y
ahoo.com>,
delay=2+15:34:00, xdelay=00:00:00, mailer=esmtp, pri=377858, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:02 mail sendmail[18008]: k9B9S8Hi030299: k9DJe114018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:02 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 77000
Oct 14 06:35:04 mail sendmail[18008]: k9DJe114018008: to=<nagdhsthmflkb@brianken
nedy.co.uk
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49142, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:35:06 mail sendmail[18008]: k9DJe114018008: k9DJe115018008: return to sender: User unknown
Oct 14 06:35:06 mail sendmail[18008]: k9DJe115018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50166, dsn=2.0.0, stat=Sent
Oct 14 06:35:06 mail sendmail[18008]: k98IdR82008626: to=<fenixelement@yahoo.com
>,<fenixen
gine81@yah
oo.com>,<f
enixfeen@y
ahoo.com>,
<fenixfeli
pe@yahoo.c
om>,<fenix
fever@yaho
o.com>, delay=5+06:24:26, xdelay=00:00:00, mailer=esmtp, pri=377859, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:06 mail sendmail[18008]: k98IdR82008626: k9DJe116018008: DSN: Cannot send message for 5 days
Oct 14 06:35:09 mail sendmail[18008]: k9DJe116018008: to=<ybvftzjncvoot@brianken
nedy.co.uk
>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=79104, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:35:10 mail sendmail[18008]: k9DJe116018008: k9DJe117018008: return to sender: User unknown
Oct 14 06:35:10 mail sendmail[18008]: k9DJe117018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80128, dsn=2.0.0, stat=Sent
Oct 14 06:35:10 mail sendmail[18008]: k98HVPfl007726: to=<liu2lang4@yahoo.com>,<
liu2ying@y
ahoo.com>,
<liu30@yah
oo.com>,<l
iu322@yaho
o.com>,<li
u32304@yah
oo.com>, delay=5+07:33:10, xdelay=00:00:00, mailer=esmtp, pri=377859, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:10 mail sendmail[18008]: k98HVPfl007726: k9DJe118018008: DSN: Cannot send message for 5 days
Oct 14 06:35:15 mail sendmail[18008]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:35:17 mail sendmail[18008]: k9DJe118018008: to=<zthgurbwki@caller.com>
, delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=79103, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as D2CEF4D2A6A)
Oct 14 06:35:17 mail sendmail[18008]: k98AsdpF001723: to=<asianmel@yahoo.com>,<a
sianmen_us
@yahoo.com
>,<asianme
nace8@yaho
o.com>,<as
ianmeng4u@
yahoo.com>
,<asianmeo
ki@yahoo.c
om>, delay=5+14:08:28, xdelay=00:00:00, mailer=esmtp, pri=377859, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:17 mail sendmail[18008]: k98AsdpF001723: k9DJe119018008: DSN: Cannot send message for 5 days
Oct 14 06:35:19 mail sendmail[18008]: k9DJe119018008: to=<vyxxmabxxoil@arsenal.c
o.uk>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=79140, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:35:20 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 78000
Oct 14 06:35:20 mail sendmail[18008]: k9DJe119018008: k9DJe11A018008: return to sender: User unknown
Oct 14 06:35:20 mail sendmail[18008]: k9DJe11A018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80164, dsn=2.0.0, stat=Sent
Oct 14 06:35:20 mail sendmail[18008]: k98Lu2iD011553: to=<msgreatcook@yahoo.com>
,<msgreatd
anes@yahoo
.com>,<msg
reathands@
yahoo.com>
,<msgreath
ouse03@yah
oo.com>,<m
sgreathous
e03c@yahoo
.com>, delay=5+03:09:05, xdelay=00:00:00, mailer=esmtp, pri=377859, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:20 mail sendmail[18008]: k98Lu2iD011553: k9DJe11B018008: DSN: Cannot send message for 5 days
Oct 14 06:35:22 mail sendmail[11354]: k9D5e1N9011354: to=<qisatzh@arabia.com>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=79131, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:35:24 mail sendmail[18008]: k9DJe11B018008: to=<cvavipcf@briankennedy.
co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79106, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:35:25 mail sendmail[18008]: k9DJe11B018008: k9DJe11C018008: return to sender: User unknown
Oct 14 06:35:25 mail sendmail[18008]: k9DJe11C018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80130, dsn=2.0.0, stat=Sent
Oct 14 06:35:25 mail sendmail[18008]: k98Jcu8m009412: to=<cagirl2002@yahoo.com>,
<cagirl200
@yahoo.com
>,<cagirl2
020@yahoo.
com>,<cagi
rl2038@yah
oo.com>,<c
agirl209@y
ahoo.com>,
delay=5+05:24:35, xdelay=00:00:00, mailer=esmtp, pri=377859, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:25 mail sendmail[18008]: k98Jcu8m009412: k9DJe11D018008: DSN: Cannot send message for 5 days
Oct 14 06:35:25 mail sendmail[11354]: k9BA24wZ031785: to=<scrumpmoss42@yahoo.com
>,<scrumpn
asty@yahoo
.com>,<scr
umponit04@
yahoo.com>
,<scrumpr@
yahoo.com>
,<scrumprs
@yahoo.com
>,<scrumps
2004@yahoo
.com>, delay=2+15:01:00, xdelay=00:00:03, mailer=esmtp, pri=467858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:35:33 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 06:35:34 mail sendmail[11354]: k9BB8N2W002320: to=<caedmonds85@yahoo.com>
,<caedmond
s@yahoo.co
m>,<caedmo
nian@yahoo
.com>,<cae
dmonic@yah
oo.com>,<c
aedmonjoc@
yahoo.com>
,<caedmonl
ibrary@yah
oo.com>, delay=2+13:53:24, xdelay=00:00:02, mailer=esmtp, pri=467858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:35:34 mail sendmail[18008]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:35:36 mail sendmail[11354]: k9C7APga023486: to=<taklaew1@yahoo.com>,<t
aklahn@yah
oo.com>,<t
aklak1992@
yahoo.com>
,<taklale@
yahoo.com>
,<taklalug
irl@yahoo.
com>,<takl
am@yahoo.c
om>, delay=1+17:52:36, xdelay=00:00:02, mailer=esmtp, pri=467858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:35:37 mail sendmail[18008]: k9DJe11D018008: to=<masfcth@caller.com>, delay=00:00:12, xdelay=00:00:05, mailer=esmtp, pri=79108, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as 459A319D804E)
Oct 14 06:35:37 mail sendmail[18008]: k9818Y3s025616: to=<bradwolfe2002@yahoo.co
m>,<bradwo
lff@yahoo.
com>,<brad
wolken@yah
oo.com>,<b
radwolly@y
ahoo.com>,
<bradwolos
zyk@yahoo.
com>, delay=5+23:54:56, xdelay=00:00:00, mailer=esmtp, pri=377860, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:35:37 mail sendmail[18008]: k9818Y3s025616: k9DJe11E018008: DSN: Cannot send message for 5 days
Oct 14 06:35:37 mail sendmail[18008]: k9DJe11E018008: to=<jgyusrrzuau@centrapoin
t.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79107, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:35:37 mail sendmail[18008]: k9DJe11E018008: k9DJe11F018008: return to sender: Local configuration error
Oct 14 06:35:37 mail sendmail[18008]: k9DJe11F018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80131, dsn=2.0.0, stat=Sent
Oct 14 06:35:38 mail sendmail[11354]: k9B9S8Hi030299: to=<jbrito_2000@yahoo.com>
,<st_5_14@
yahoo.com>
,<tarolynm
robinson@y
ahoo.com>,
delay=2+15:34:36, xdelay=00:00:02, mailer=esmtp, pri=467858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:35:38 mail sendmail[11354]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+07:57:36, xdelay=00:00:00, mailer=esmtp, pri=377860, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:35:38 mail sendmail[11354]: k9BH7aOD021272: k9D5e1NA011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:39 mail sendmail[11354]: k9D5e1NA011354: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:35:39 mail sendmail[11354]: k9D5e1NA011354: to=<iuykybpvg@centrapoint.
com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49107, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:35:39 mail sendmail[21385]: k9E15cwb021385: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:35:39 mail sendmail[11354]: k9D5e1NA011354: k9D5e1NB011354: return to sender: Local configuration error
Oct 14 06:35:39 mail sendmail[11354]: k9D5e1NB011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50131, dsn=2.0.0, stat=Sent
Oct 14 06:35:42 mail sendmail[11354]: k98Cm5Qx003549: to=<fatmuffp@yahoo.com>,<f
atmuha@yah
oo.com>,<f
atmulano69
@yahoo.com
>,<fatmum3
8yrold@yah
oo.com>,<f
atmunchkin
69@yahoo.c
om>, delay=5+12:15:32, xdelay=00:00:03, mailer=esmtp, pri=377860, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:35:44 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 79000
Oct 14 06:35:44 mail sendmail[11354]: k9C4sKPT008539: to=<lilsugahighwashu@yahoo
.com>,<lil
sugahuney@
yahoo.com>
,<lilsugai
2@yahoo.co
m>,<lilsug
akiss09@ya
hoo.com>,<
lilsugakis
ses@yahoo.
com>,<lils
ugakiwi@ya
hoo.com>, delay=1+20:09:38, xdelay=00:00:02, mailer=esmtp, pri=377862, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:35:44 mail sendmail[11354]: k9C4sKPT008539: k9D5e1NC011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:45 mail sendmail[18008]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:37:23, xdelay=00:00:00, mailer=esmtp, pri=377860, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:35:45 mail sendmail[18008]: k9C5RVTC011189: k9DJe11G018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:35:46 mail sendmail[11354]: k9D5e1NC011354: to=<ljtrfuqwhfysy@bellauk.
com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49140, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:35:47 mail sendmail[11354]: k9D5e1NC011354: k9D5e1ND011354: return to sender: User unknown
Oct 14 06:35:47 mail sendmail[11354]: k9D5e1ND011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50164, dsn=2.0.0, stat=Sent
Oct 14 06:35:47 mail sendmail[11354]: k97CH5lE018139: to=<albertablue@bellsouth.
net>, delay=6+12:46:15, xdelay=00:00:00, mailer=esmtp, pri=377862, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:35:47 mail sendmail[11354]: k97CH5lE018139: k9D5e1NE011354: sender notify: Cannot send message for 5 days
Oct 14 06:35:49 mail sendmail[11354]: k9D5e1NE011354: to=<oxksidmogomjkr@bellauk
.com>, delay=00:00:02, xdelay=00:00:00, mailer=esmtp, pri=79107, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:35:50 mail sendmail[11354]: k9D5e1NE011354: k9D5e1NF011354: return to sender: User unknown
Oct 14 06:35:50 mail sendmail[11354]: k9D5e1NF011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80131, dsn=2.0.0, stat=Sent
Oct 14 06:35:54 mail sendmail[11354]: k98IxpA9008905: to=<cash_money_45801@yahoo
.com>,<cas
h_money_4_
life_69@ya
hoo.com>,<
cash_money
_4_life_99
@yahoo.com
>,<cash_mo
ney_4me@ya
hoo.com>,<
cash_money
_4tha99@ya
hoo.com>, delay=5+06:04:03, xdelay=00:00:04, mailer=esmtp, pri=377862, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:35:54 mail sendmail[18008]: k9DJe11G018008: to=<dhkvrgw@chinabyte.com>
, delay=00:00:09, xdelay=00:00:09, mailer=esmtp, pri=49143, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Resources temporarily not available - Please try again later [#4.16.5].
Oct 14 06:35:54 mail sendmail[18008]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+07:57:52, xdelay=00:00:00, mailer=esmtp, pri=467860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:35:54 mail sendmail[18008]: k9C4sKPT008539: to=<lilsugahighwashu@yahoo
.com>,<lil
sugahuney@
yahoo.com>
,<lilsugai
2@yahoo.co
m>,<lilsug
akiss09@ya
hoo.com>,<
lilsugakis
ses@yahoo.
com>,<lils
ugakiwi@ya
hoo.com>, delay=1+20:09:48, xdelay=00:00:00, mailer=esmtp, pri=467862, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:36:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 80000
Oct 14 06:36:09 mail sendmail[9876]: k9BCxF8B008474: to=<rsissyt@bellsouth.net>
, delay=2+12:02:28, xdelay=00:02:01, mailer=esmtp, pri=1407605, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:36:09 mail sendmail[9876]: k9BERdiH013160: to=<alejandro9756@bellsout
h.net>,<be
cca023@bel
lsouth.net
>, delay=2+10:37:40, xdelay=00:00:00, mailer=esmtp, pri=1407607, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:36:11 mail sendmail[11354]: k98KVb4l010279: to=<slicexes@yahoo.com>,<s
licey01@ya
hoo.com>,<
slicey1@ya
hoo.com>,<
sliceya@ya
hoo.com>,<
sliceyicey
@yahoo.com
>, delay=5+04:34:03, xdelay=00:00:17, mailer=esmtp, pri=377863, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok Fri Oct 13 18:05:22 2006: ql 6071401, qr 0)
Oct 14 06:36:13 mail sendmail[11354]: k9C54ipf008883: to=<daniel_crow2@yahoo.com
>,<daniel_
crowder1@y
ahoo.com>,
<daniel_cr
owder2001@
yahoo.com>
,<daniel_c
rowe2000@y
ahoo.com>,
<daniel_cr
p@yahoo.co
m>,<daniel
_cruise4@y
ahoo.com>,
delay=1+20:01:27, xdelay=00:00:02, mailer=esmtp, pri=377864, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:36:13 mail sendmail[11354]: k9C54ipf008883: k9D5e1NG011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:36:13 mail sendmail[17051]: k9DIe1dQ017051: to=<xrsebklrdpa@arabia.com
>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=77592, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:36:15 mail sendmail[11354]: k9D5e1NG011354: to=<xtcqiyb@arsenal.co.uk>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49162, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:36:16 mail sendmail[11354]: k9D5e1NG011354: k9D5e1NH011354: return to sender: User unknown
Oct 14 06:36:16 mail sendmail[11354]: k9D5e1NH011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50186, dsn=2.0.0, stat=Sent
Oct 14 06:36:17 mail sendmail[21389]: k9E16Fno021389: from=<send@mail.efax.com>,
size=1458, class=0, nrcpts=1, msgid=<45303893.00137B.016
40@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp12.j2.com [204.11.168.114]
Oct 14 06:36:18 mail sendmail[21391]: k9E16Fno021389: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61664, dsn=2.0.0, stat=Sent
Oct 14 06:36:18 mail sendmail[21391]: k9E16Fno021389: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61664, dsn=2.0.0, stat=Sent
Oct 14 06:36:20 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 81000
Oct 14 06:36:20 mail sendmail[11354]: k98J5X64009012: to=<jawlany_riz@yahoo.com>
,<jawlas@y
ahoo.com>,
delay=5+05:58:55, xdelay=00:00:03, mailer=esmtp, pri=377864, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/0)
Oct 14 06:36:22 mail sendmail[11354]: k9BAT6G4032640: to=<joeybassjr@yahoo.com>,
<joeybasta
rdo@yahoo.
com>,<joey
battaglio@
yahoo.com>
,<joeybatz
2003@yahoo
.com>,<joe
ybauder@ya
hoo.com>,<
joeybayani
@yahoo.com
>, delay=2+14:36:32, xdelay=00:00:02, mailer=esmtp, pri=377864, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta143.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:36:22 mail sendmail[11354]: k9BAT6G4032640: k9D5e1NI011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:36:24 mail sendmail[11354]: k9D5e1NI011354: to=<cgjlareweo@bellauk.com
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49110, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:36:24 mail sendmail[11354]: k9D5e1NI011354: k9D5e1NJ011354: return to sender: User unknown
Oct 14 06:36:25 mail sendmail[11354]: k9D5e1NJ011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50134, dsn=2.0.0, stat=Sent
Oct 14 06:36:25 mail sendmail[11354]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:19:38, xdelay=00:00:00, mailer=esmtp, pri=377865, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:36:25 mail sendmail[11354]: k9BDkItq011114: k9D5e1NK011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:36:28 mail sendmail[11354]: k9D5e1NK011354: to=<zcgxmsrqlenud@chinabyt
e.com>, delay=00:00:03, xdelay=00:00:01, mailer=esmtp, pri=49113, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:36:28 mail sendmail[11354]: k98IuWhT008853: to=<steph_tx_rn@yahoo.com>
,<steph_ty
ler_mike@y
ahoo.com>,
<steph_uio
@yahoo.com
>,<steph_u
lrich@yaho
o.com>,<st
eph_ups@ya
hoo.com>, delay=5+06:09:25, xdelay=00:00:00, mailer=esmtp, pri=377866, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:36:28 mail sendmail[11354]: k98IuWhT008853: k9D5e1NL011354: DSN: Cannot send message for 5 days
Oct 14 06:36:28 mail sendmail[11354]: k9D5e1NL011354: to=<bzwuymt@centrapoint.co
m>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79110, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:36:28 mail sendmail[11354]: k9D5e1NL011354: k9D5e1NM011354: return to sender: Local configuration error
Oct 14 06:36:28 mail sendmail[11354]: k9D5e1NM011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80134, dsn=2.0.0, stat=Sent
Oct 14 06:36:29 mail sendmail[11354]: k98Eww5W005225: to=<catnguyen24@yahoo.com>
,<catnguye
n72@yahoo.
com>,<catn
guyen78@ya
hoo.com>,<
catnguyen_
vn@yahoo.c
om>,<catng
uyenngoc@y
ahoo.com>,
delay=5+10:06:11, xdelay=00:00:00, mailer=esmtp, pri=377866, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:36:29 mail sendmail[11354]: k98Eww5W005225: k9D5e1NN011354: DSN: Cannot send message for 5 days
Oct 14 06:36:30 mail sendmail[11354]: k9D5e1NN011354: to=<nciylbzxsitst@bellauk.
com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79111, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:36:30 mail sendmail[11354]: k9D5e1NN011354: k9D5e1NO011354: return to sender: User unknown
Oct 14 06:36:31 mail sendmail[11354]: k9D5e1NO011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80135, dsn=2.0.0, stat=Sent
Oct 14 06:36:31 mail sendmail[11354]: k990YCqH014678: to=<tpr_pjones@yahoo.com>,
<tpr_rick@
yahoo.com>
,<tpra@yah
oo.com>,<t
prabb@yaho
o.com>,<tp
rabbette@y
ahoo.com>,
delay=5+00:31:52, xdelay=00:00:00, mailer=esmtp, pri=377867, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:36:31 mail sendmail[11354]: k990YCqH014678: k9D5e1NP011354: DSN: Cannot send message for 5 days
Oct 14 06:36:35 mail sendmail[11354]: k9D5e1NP011354: to=<irxlcjshh@briankennedy
.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79158, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:36:36 mail sendmail[11354]: k9D5e1NP011354: k9D5e1NQ011354: return to sender: User unknown
Oct 14 06:36:36 mail sendmail[11354]: k9D5e1NQ011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80182, dsn=2.0.0, stat=Sent
Oct 14 06:36:37 mail sendmail[11354]: k98LO73j010983: to=<shafiq-samina@yahoo.co
m>,<shafiq
01531m@yah
oo.com>,<s
hafiq01@ya
hoo.com>,<
shafiq04@y
ahoo.com>,
<shafiq@ya
hoo.com>, delay=5+03:42:14, xdelay=00:00:00, mailer=esmtp, pri=377868, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:36:37 mail sendmail[11354]: k98LO73j010983: k9D5e1NR011354: DSN: Cannot send message for 5 days
Oct 14 06:36:39 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 82000
Oct 14 06:36:40 mail sendmail[8530]: k9BBcaic003802: to=<elrio@msy.bellsouth.ne
t>, delay=2+13:25:38, xdelay=00:32:10, mailer=esmtp, pri=1224847, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 06:36:58 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 83000
Oct 14 06:36:59 mail sendmail[6285]: k9BCxF83008474: to=<jeffd@rdu.bellsouth.ne
t>, delay=2+12:06:12, xdelay=00:32:00, mailer=esmtp, pri=712387, relay=rdu.bellsouth.net. [205.152.58.6], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:37:08 mail sendmail[10613]: k9C3XOUh005915: to=<ksilver@bna.bellsouth.
net>, delay=1+21:32:14, xdelay=00:32:01, mailer=esmtp, pri=1226429, relay=bna.bellsouth.net. [205.152.58.134], dsn=4.0.0, stat=Deferred: Connection timed out with bna.bellsouth.net.
Oct 14 06:37:09 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 06:37:12 mail last message repeated 3 times
Oct 14 06:37:13 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 06:37:13 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 06:37:14 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 06:37:14 mail sendmail[16393]: k9B8EOkq027458: to=<pcalhoun@lig.bellsouth
.net>,<pca
meron@lig.
bellsouth.
net>,<pcam
pbell@lig.
bellsouth.
net>,<pcam
pos@lig.be
llsouth.ne
t>,<pcarey
@lig.bells
outh.net>,
delay=2+16:50:30, xdelay=00:32:00, mailer=esmtp, pri=909020, relay=lig.bellsouth.net. [205.152.58.131], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 06:37:16 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 06:37:16 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 06:37:17 mail sendmail[8530]: k9BHX2v2022545: to=<greg500@bellsouth.net>
,<greg505@
bellsouth.
net>,<greg
5166@bells
outh.net>,
<greg51@be
llsouth.ne
t>, delay=2+07:33:09, xdelay=00:00:37, mailer=esmtp, pri=1584847, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:37:18 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 06:37:24 mail sendmail[17051]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+02:53:19, xdelay=00:01:10, mailer=esmtp, pri=1006346, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:37:24 mail sendmail[17051]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+12:59:23, xdelay=00:00:00, mailer=esmtp, pri=1006358, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:24 mail sendmail[17051]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+01:54:09, xdelay=00:00:00, mailer=esmtp, pri=917394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:24 mail sendmail[17051]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+17:54:18, xdelay=00:00:00, mailer=esmtp, pri=827413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+20:57:43, xdelay=00:00:00, mailer=esmtp, pri=917425, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:22:23, xdelay=00:00:00, mailer=esmtp, pri=917436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:48:23, xdelay=00:00:00, mailer=esmtp, pri=917436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:29:36, xdelay=00:00:00, mailer=esmtp, pri=827440, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:22:09, xdelay=00:00:00, mailer=esmtp, pri=917441, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:25 mail sendmail[17051]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:27:28, xdelay=00:00:00, mailer=esmtp, pri=917442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:26:26, xdelay=00:00:00, mailer=esmtp, pri=917442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+20:00:25, xdelay=00:00:00, mailer=esmtp, pri=917442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:40:51, xdelay=00:00:00, mailer=esmtp, pri=827448, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+12:02:03, xdelay=00:00:00, mailer=esmtp, pri=827452, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+10:05:40, xdelay=00:00:00, mailer=esmtp, pri=827456, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:26 mail sendmail[17051]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:31:01, xdelay=00:00:00, mailer=esmtp, pri=827460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+02:57:35, xdelay=00:00:00, mailer=esmtp, pri=827469, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+22:53:27, xdelay=00:00:00, mailer=esmtp, pri=827473, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:20:05, xdelay=00:00:00, mailer=esmtp, pri=827818, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+05:58:45, xdelay=00:00:00, mailer=esmtp, pri=827830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+05:59:44, xdelay=00:00:00, mailer=esmtp, pri=827830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:27 mail sendmail[17051]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:32:36, xdelay=00:00:00, mailer=esmtp, pri=827834, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:28 mail sendmail[17051]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:26:41, xdelay=00:00:00, mailer=esmtp, pri=647839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:28 mail sendmail[17051]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+14:56:48, xdelay=00:00:00, mailer=esmtp, pri=647850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:28 mail sendmail[16393]: k9ADJqu9001656: to=<debgtrail@bellsouth.ne
t>,<debgui
@bellsouth
.net>,<deb
gurls@bell
south.net>
,<debgurne
y@bellsout
h.net>,<de
bgusal@bel
lsouth.net
>, delay=3+11:43:42, xdelay=00:00:13, mailer=esmtp, pri=1269031, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:37:29 mail sendmail[16393]: k99L0jeT022844: to=<angloumike@bellsouth.n
et>,<riche
rsj@bellso
uth.net>, delay=4+04:04:07, xdelay=00:00:00, mailer=esmtp, pri=1269033, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:29 mail sendmail[16393]: k99IXNFI016142: to=<jckosmala@bellsouth.ne
t>, delay=4+06:33:54, xdelay=00:00:00, mailer=esmtp, pri=1269033, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:29 mail sendmail[16393]: k99KWWuT021821: to=<deckthewalls@bellsouth
.net>,<eju
dys@bellso
uth.net>, delay=4+04:32:40, xdelay=00:00:00, mailer=esmtp, pri=1269056, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:29 mail sendmail[16393]: k99KiwMq022457: to=<auto-responders-owner@
bellsouth.
net>, delay=4+04:21:30, xdelay=00:00:00, mailer=esmtp, pri=1179065, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:29 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 84000
Oct 14 06:37:29 mail sendmail[16393]: k990Qo4q014504: to=<melodyo@bellsouth.net>
,<melodypa
k@bellsout
h.net>,<me
lodypelfre
y@bellsout
h.net>,<me
lodyq@bell
south.net>
,<melodyro
dgers@bell
south.net>
, delay=5+00:38:19, xdelay=00:00:00, mailer=esmtp, pri=1180111, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:29 mail sendmail[16393]: k990Qo4q014504: k9DHe1HH016393: sender notify: Cannot send message for 5 days
Oct 14 06:37:33 mail sendmail[17051]: k9C8Wtbw002349: to=<cshs_cahn@yahoo.com>,<
cshs_cat@y
ahoo.com>,
<cshs_catv
@yahoo.com
>,<cshs_ca
tv_2004@ya
hoo.com>, delay=1+16:34:36, xdelay=00:00:05, mailer=esmtp, pri=557854, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/4)
Oct 14 06:37:35 mail sendmail[16393]: k9DHe1HH016393: to=<puypzpqwsluiu@ciudad.c
om.ar>, delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=71356, relay=postino11.prima.com.
ar. [200.42.0.147], dsn=2.0.0, stat=Sent (ok 1160788006 qp 57017)
Oct 14 06:37:38 mail sendmail[17051]: k9BA24wZ031785: to=<scrumpmoss42@yahoo.com
>,<scrumpn
asty@yahoo
.com>,<scr
umponit04@
yahoo.com>
,<scrumpr@
yahoo.com>
,<scrumprs
@yahoo.com
>,<scrumps
2004@yahoo
.com>, delay=2+15:03:13, xdelay=00:00:05, mailer=esmtp, pri=557858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:37:42 mail sendmail[17051]: k9C7APga023486: to=<taklaew1@yahoo.com>,<t
aklahn@yah
oo.com>,<t
aklak1992@
yahoo.com>
,<taklale@
yahoo.com>
,<taklalug
irl@yahoo.
com>,<takl
am@yahoo.c
om>, delay=1+17:54:42, xdelay=00:00:04, mailer=esmtp, pri=557858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:37:45 mail sendmail[17051]: k9B9S8Hi030299: to=<jbrito_2000@yahoo.com>
,<st_5_14@
yahoo.com>
,<tarolynm
robinson@y
ahoo.com>,
delay=2+15:36:43, xdelay=00:00:03, mailer=esmtp, pri=557858, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/1)
Oct 14 06:37:45 mail sendmail[17051]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:39:23, xdelay=00:00:00, mailer=esmtp, pri=467860, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:45 mail sendmail[17051]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+07:59:43, xdelay=00:00:00, mailer=esmtp, pri=557860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:37:46 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 85000
Oct 14 06:37:49 mail sendmail[17051]: k9C4sKPT008539: to=<lilsugahighwashu@yahoo
.com>,<lil
sugahuney@
yahoo.com>
,<lilsugai
2@yahoo.co
m>,<lilsug
akiss09@ya
hoo.com>,<
lilsugakis
ses@yahoo.
com>,<lils
ugakiwi@ya
hoo.com>, delay=1+20:11:43, xdelay=00:00:04, mailer=esmtp, pri=557862, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:37:53 mail sendmail[17051]: k9C54ipf008883: to=<daniel_crow2@yahoo.com
>,<daniel_
crowder1@y
ahoo.com>,
<daniel_cr
owder2001@
yahoo.com>
,<daniel_c
rowe2000@y
ahoo.com>,
<daniel_cr
p@yahoo.co
m>,<daniel
_cruise4@y
ahoo.com>,
delay=1+20:03:07, xdelay=00:00:04, mailer=esmtp, pri=467864, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:37:57 mail sendmail[17051]: k9BAT6G4032640: to=<joeybassjr@yahoo.com>,
<joeybasta
rdo@yahoo.
com>,<joey
battaglio@
yahoo.com>
,<joeybatz
2003@yahoo
.com>,<joe
ybauder@ya
hoo.com>,<
joeybayani
@yahoo.com
>, delay=2+14:38:07, xdelay=00:00:04, mailer=esmtp, pri=467864, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:37:58 mail sendmail[17051]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:21:11, xdelay=00:00:00, mailer=esmtp, pri=467865, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:02 mail sendmail[17051]: k98JpCpv009629: to=<purple_niple@yahoo.com
>,<purple_
nipple@yah
oo.com>,<p
urple_nipp
lez@yahoo.
com>,<purp
le_nirples
@yahoo.com
>,<purple_
nite@yahoo
.com>, delay=5+05:16:17, xdelay=00:00:04, mailer=esmtp, pri=377868, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:38:05 mail sendmail[17051]: k986bOIB030212: to=<grabe_dating_m@yahoo.c
om>,<grabe
_m@yahoo.c
om>,<grabe
_n_toh@yah
oo.com>,<g
rabe_na_to
_2003@yaho
o.com>,<gr
abe_nai_2@
yahoo.com>
, delay=5+18:30:39, xdelay=00:00:03, mailer=esmtp, pri=377869, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:38:10 mail sendmail[17051]: k9BG5bcC018206: to=<andystar@yahoo.com>,<j
oe_ram_98@
yahoo.com>
,<lynneshe
rie@yahoo.
com>,<sdcp
le@yahoo.c
om>, delay=2+09:01:43, xdelay=00:00:05, mailer=esmtp, pri=377869, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/1)
Oct 14 06:38:11 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 86000
Oct 14 06:38:13 mail sendmail[17051]: k986Z4WS030192: to=<grabe_dating_m@yahoo.c
om>,<grabe
_m@yahoo.c
om>,<grabe
_n_toh@yah
oo.com>,<g
rabe_na_to
_2003@yaho
o.com>,<gr
abe_nai_2@
yahoo.com>
, delay=5+18:31:54, xdelay=00:00:03, mailer=esmtp, pri=377869, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:38:17 mail sendmail[17051]: k9C4PoGt007520: to=<lonisha1205@yahoo.com>
,<lonisha2
000@yahoo.
com>,<loni
shagraham@
yahoo.com>
,<lonishag
reen@yahoo
.com>,<lon
ishalton3@
yahoo.com>
,<lonishel
don@yahoo.
com>, delay=1+20:42:04, xdelay=00:00:04, mailer=esmtp, pri=377869, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:38:17 mail sendmail[17051]: k9C4PoGt007520: k9DIe1dR017051: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:38:18 mail sendmail[17051]: k9DIe1dR017051: to=<eitfxcbkxjehb@chinabyt
e.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49149, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:38:18 mail sendmail[17051]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:27:09, xdelay=00:00:00, mailer=esmtp, pri=377870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:18 mail sendmail[17051]: k9BDf4kh010867: k9DIe1dS017051: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:38:20 mail sendmail[17051]: k9DIe1dS017051: to=<kcsjuzbcve@bellauk.com
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49116, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:38:21 mail sendmail[17051]: k9DIe1dS017051: k9DIe1dT017051: return to sender: User unknown
Oct 14 06:38:21 mail sendmail[17051]: k9DIe1dT017051: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50140, dsn=2.0.0, stat=Sent
Oct 14 06:38:21 mail sendmail[17051]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:15:29, xdelay=00:00:00, mailer=esmtp, pri=377870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:21 mail sendmail[17051]: k9BEqF0N014314: k9DIe1dU017051: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:38:25 mail sendmail[17051]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:38:27 mail sendmail[17051]: k9DIe1dU017051: to=<qiosr@caller.com>, delay=00:00:06, xdelay=00:00:04, mailer=esmtp, pri=49145, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as 0D09A113005C)
Oct 14 06:38:28 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 87000
Oct 14 06:38:28 mail sendmail[6285]: k9BDI598009682: to=<benhut@bellsouth.net>,
delay=2+11:48:29, xdelay=00:01:28, mailer=esmtp, pri=1252393, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:38:29 mail sendmail[6285]: k9BI0u2R024072: to=<lovexxx@bellsouth.net>
, delay=2+07:05:04, xdelay=00:00:00, mailer=esmtp, pri=1252394, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:29 mail sendmail[6285]: k9C8E8LT032182: to=<gkhpsmth@bellsouth.net
>,<gkhump@
bellsouth.
net>,<gkhu
nt@bellsou
th.net>,<g
khunter@be
llsouth.ne
t>,<gkhurs
t@bellsout
h.net>, delay=1+16:52:09, xdelay=00:00:00, mailer=esmtp, pri=1252396, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:29 mail sendmail[6285]: k9BF76NT015002: to=<ogasm@bellsouth.net>, delay=2+10:00:11, xdelay=00:00:00, mailer=esmtp, pri=1252396, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:29 mail sendmail[6285]: k9C5RVTA011189: to=<jmf1959@bellsouth.net>
,<jmf1968@
bellsouth.
net>,<jmf1
972@bellso
uth.net>,<
jmf2509@be
llsouth.ne
t>,<jmf2@b
ellsouth.n
et>, delay=1+19:40:25, xdelay=00:00:00, mailer=esmtp, pri=1252401, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:29 mail sendmail[6285]: k9BIFCOL025157: to=<cmind@bellsouth.net>,<
cmindel@be
llsouth.ne
t>,<cmindi
ans@bellso
uth.net>,<
cmindigo@b
ellsouth.n
et>,<cmind
ler@bellso
uth.net>, delay=2+06:53:15, xdelay=00:00:00, mailer=esmtp, pri=1252401, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:30 mail sendmail[6285]: k9BC6OvG005494: to=<capnrona@bellsouth.net
>, delay=2+12:59:22, xdelay=00:00:00, mailer=esmtp, pri=1252403, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:30 mail sendmail[6285]: k9BH1DJH020911: to=<antonio_s@bellsouth.ne
t>,<comlea
se@bellsou
th.net>, delay=2+08:06:16, xdelay=00:00:00, mailer=esmtp, pri=1252408, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:30 mail sendmail[6285]: k9BFdhWe016764: to=<pandora7@bellsouth.net
>, delay=2+09:24:50, xdelay=00:00:00, mailer=esmtp, pri=1252409, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:30 mail sendmail[6285]: k9BFTGwh016252: to=<hrbjr@bellsouth.net>,<
hrbksb@bel
lsouth.net
>,<hrbla@b
ellsouth.n
et>,<hrbla
w@bellsout
h.net>,<hr
block@bell
south.net>
, delay=2+09:36:25, xdelay=00:00:00, mailer=esmtp, pri=1252411, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:31 mail sendmail[21430]: k9E18TW4021430: from=<send@mail.efax.com>,
size=1404, class=0, nrcpts=1, msgid=<4530385B.001527.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp10.j2.com [204.11.168.112]
Oct 14 06:38:31 mail sendmail[6285]: k9CDlDSe011182: to=<binduja_e@yahoo.co.in>
, delay=1+11:21:15, xdelay=00:00:01, mailer=esmtp, pri=1252413, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Resources temporarily not available - Please try again later [#4.16.5].
Oct 14 06:38:31 mail sendmail[21431]: k9E18TW4021430: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61610, dsn=2.0.0, stat=Sent
Oct 14 06:38:31 mail sendmail[21431]: k9E18TW4021430: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61610, dsn=2.0.0, stat=Sent
Oct 14 06:38:32 mail sendmail[6285]: k9BFnaT0017192: to=<r97@bellsouth.net>, delay=2+09:17:12, xdelay=00:00:00, mailer=esmtp, pri=1252420, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:39 mail sendmail[6285]: k9BH9WEL021390: to=<kiza_the_purple_sparkl
ing_dildo@
yahoo.com>
,<kiza_zg@
yahoo.com>
,<kizaaaaa
aaaaaaaa@y
ahoo.com>,
<noknok27@
yahoo.com>
,<noknok3@
yahoo.com>
, delay=2+07:58:03, xdelay=00:00:07, mailer=esmtp, pri=1252446, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:38:39 mail sendmail[6285]: k9C7ceMg027632: to=<crcoke@bellsouth.net>,
<crcole568
7@bellsout
h.net>,<cr
cole@bells
outh.net>,
<crcoleman
@bellsouth
.net>,<crc
ollings@be
llsouth.ne
t>, delay=1+17:26:43, xdelay=00:00:00, mailer=esmtp, pri=1252461, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:39 mail sendmail[6285]: k9BAO4uY032526: to=<ihringer@bellsouth.net
>, delay=2+14:43:00, xdelay=00:00:00, mailer=esmtp, pri=1252474, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:40 mail sendmail[6285]: k9C8XjhS002451: to=<cmcoggins@bellsouth.ne
t>,<cmcoh@
bellsouth.
net>,<cmco
hen@bellso
uth.net>,<
cmcokmedin
@bellsouth
.net>,<cmc
ole@bellso
uth.net>, delay=1+16:33:06, xdelay=00:00:00, mailer=esmtp, pri=1252488, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:40 mail sendmail[6285]: k9BCYmx9007118: to=<fanslerj@bellsouth.net
>,<fansley
@bellsouth
.net>,<fan
smith@bell
south.net>
,<fansp@be
llsouth.ne
t>,<fanspo
rts10@bell
south.net>
, delay=2+12:32:14, xdelay=00:00:00, mailer=esmtp, pri=1254800, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:40 mail sendmail[6285]: k9BI4wiM024401: to=<achsin@bellsouth.net>,
delay=2+07:00:30, xdelay=00:00:00, mailer=esmtp, pri=1254808, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:48 mail sendmail[11354]: k9D5e1NR011354: to=<cdmytk@brain.net.pk>, delay=00:02:11, xdelay=00:02:11, mailer=esmtp, pri=79116, relay=mx3.brain.net.pk. [203.128.7.58], dsn=5.1.1, stat=User unknown
Oct 14 06:38:49 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 88000
Oct 14 06:38:49 mail sendmail[11354]: k9D5e1NR011354: k9D5e1NS011354: return to sender: User unknown
Oct 14 06:38:49 mail sendmail[11354]: k9D5e1NS011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80140, dsn=2.0.0, stat=Sent
Oct 14 06:38:50 mail sendmail[11354]: k9C4PoGt007520: to=<lonisha1205@yahoo.com>
,<lonisha2
000@yahoo.
com>,<loni
shagraham@
yahoo.com>
,<lonishag
reen@yahoo
.com>,<lon
ishalton3@
yahoo.com>
,<lonishel
don@yahoo.
com>, delay=1+20:42:37, xdelay=00:00:00, mailer=esmtp, pri=467869, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:38:50 mail sendmail[11354]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:27:41, xdelay=00:00:00, mailer=esmtp, pri=467870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:50 mail sendmail[11354]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:15:58, xdelay=00:00:00, mailer=esmtp, pri=467870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:38:50 mail sendmail[11354]: k990W9Jv014641: to=<beachedinsd@yahoo.com>
,<beachedk
ajun@yahoo
.com>,<bea
chedlia@ya
hoo.com>,<
lobo_guerr
ero2000@ya
hoo.com>,<
lobo_guerr
ero_azteca
@yahoo.com
>, delay=5+00:36:30, xdelay=00:00:00, mailer=esmtp, pri=377870, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:38:50 mail sendmail[11354]: k990W9Jv014641: k9D5e1NT011354: DSN: Cannot send message for 5 days
Oct 14 06:38:52 mail sendmail[11354]: k9D5e1NT011354: to=<xgwpcll@arsenal.co.uk>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79114, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:38:52 mail sendmail[11354]: k9D5e1NT011354: k9D5e1NU011354: return to sender: User unknown
Oct 14 06:38:52 mail sendmail[11354]: k9D5e1NU011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80138, dsn=2.0.0, stat=Sent
Oct 14 06:38:53 mail sendmail[11354]: k98G4LAI006521: to=<brianna456@yahoo.com>,
<brianna45
8@yahoo.co
m>,<briann
a4612@yaho
o.com>,<br
ianna469@y
ahoo.com>,
<brianna47
@yahoo.com
>, delay=5+09:04:27, xdelay=00:00:00, mailer=esmtp, pri=377870, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:38:53 mail sendmail[11354]: k98G4LAI006521: k9D5e1NV011354: DSN: Cannot send message for 5 days
Oct 14 06:38:53 mail sendmail[11354]: k9D5e1NV011354: to=<ifgkdam@centrapoint.co
m>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79114, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:38:53 mail sendmail[11354]: k9D5e1NV011354: k9D5e1NW011354: return to sender: Local configuration error
Oct 14 06:38:53 mail sendmail[11354]: k9D5e1NW011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80138, dsn=2.0.0, stat=Sent
Oct 14 06:38:54 mail sendmail[11354]: k9BBjgto004295: to=<kreture73@yahoo.com>,<
kreturex@y
ahoo.com>,
<krety4@ya
hoo.com>,<
kretyos777
@yahoo.com
>,<kretz02
@yahoo.com
>,<kretz1@
yahoo.com>
, delay=2+13:22:06, xdelay=00:00:00, mailer=esmtp, pri=377871, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:38:54 mail sendmail[11354]: k9BBjgto004295: k9D5e1NX011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:38:58 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:39:00 mail sendmail[11354]: k9D5e1NX011354: to=<vnmqa@caller.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49118, relay=mail.global.sprint.c
om. [206.16.192.227], dsn=2.0.0, stat=Sent (Ok: queued as 06E3364F218)
Oct 14 06:39:00 mail sendmail[11354]: k98DJmK7004026: to=<pimpgrieseqb@yahoo.com
>,<pimpgri
l192000@ya
hoo.com>,<
pimpgritz@
yahoo.com>
,<pimpgrl2
002@yahoo.
com>,<pimp
grl68@yaho
o.com>, delay=5+11:49:08, xdelay=00:00:00, mailer=esmtp, pri=377873, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:00 mail sendmail[11354]: k98DJmK7004026: k9D5e1NY011354: DSN: Cannot send message for 5 days
Oct 14 06:39:01 mail sendmail[11354]: k9D5e1NY011354: to=<spcvefwrlsp@chinabyte.
com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79119, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:01 mail sendmail[11354]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+07:58:37, xdelay=00:00:00, mailer=esmtp, pri=377873, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:01 mail sendmail[11354]: k9BHAIvU021424: k9D5e1NZ011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:39:04 mail sendmail[11354]: k9D5e1NZ011354: to=<bchsqpf@briankennedy.c
o.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49153, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:39:05 mail sendmail[11354]: k9D5e1NZ011354: k9D5e1Na011354: return to sender: User unknown
Oct 14 06:39:05 mail sendmail[11354]: k9D5e1Na011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50177, dsn=2.0.0, stat=Sent
Oct 14 06:39:05 mail sendmail[11354]: k98DxOJ1004470: to=<okori_kichan@yahoo.com
>,<okorich
ef@yahoo.c
om>,<okori
e1010@yaho
o.com>,<ok
orie12@yah
oo.com>,<o
korie@yaho
o.com>, delay=5+11:07:04, xdelay=00:00:00, mailer=esmtp, pri=377873, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:06 mail sendmail[11354]: k98DxOJ1004470: k9D5e1Nb011354: DSN: Cannot send message for 5 days
Oct 14 06:39:07 mail sendmail[21398]: k9E176V0021398: ruleset=check_mail, arg1=<tobijena@autodijelov
i.com>, relay=rrcs-67-52-209-128.w
est.biz.rr
.com [67.52.209.128], reject=451 4.1.8 Domain of sender address tobijena@autodijelovi.com does not resolve
Oct 14 06:39:07 mail sendmail[21398]: k9E176V0021398: from=<tobijena@autodijelov
i.com>, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=rrcs-67-52-209-128.w
est.biz.rr
.com [67.52.209.128]
Oct 14 06:39:07 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 89000
Oct 14 06:39:07 mail sendmail[11354]: k9D5e1Nb011354: to=<ocknfr@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79120, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:39:08 mail sendmail[11354]: k9D5e1Nb011354: k9D5e1Nc011354: return to sender: User unknown
Oct 14 06:39:15 mail sendmail[11354]: k9D5e1Nc011354: to=root, delay=00:00:07, xdelay=00:00:00, mailer=local, pri=80144, dsn=2.0.0, stat=Sent
Oct 14 06:39:15 mail sendmail[11354]: k97LW83u004351: to=<carter2000_2001@yahoo.
com>,<cart
er2000_hk@
yahoo.com>
,<carter20
00_uk@yaho
o.com>,<ca
rter2000ct
c@yahoo.co
m>,<carter
2000n@yaho
o.com>, delay=6+03:36:12, xdelay=00:00:00, mailer=esmtp, pri=377874, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:15 mail sendmail[11354]: k97LW83u004351: k9D5e1Nd011354: DSN: Cannot send message for 5 days
Oct 14 06:39:16 mail sendmail[11354]: k9D5e1Nd011354: to=<yficeztqv@arabia.com>,
delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79148, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:39:16 mail sendmail[11354]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:33:09, xdelay=00:00:00, mailer=esmtp, pri=377874, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:16 mail sendmail[11354]: k9BGZ49o019691: k9D5e1Ne011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:39:17 mail sendmail[11354]: k9D5e1Ne011354: to=<jvdyzpz@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49122, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:39:18 mail sendmail[11354]: k9D5e1Ne011354: k9D5e1Nf011354: return to sender: User unknown
Oct 14 06:39:18 mail sendmail[11354]: k9D5e1Nf011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50146, dsn=2.0.0, stat=Sent
Oct 14 06:39:18 mail sendmail[11354]: k9BBtREq004758: to=<princezzdanie@yahoo.co
m>,<prince
zzdawnz@ya
hoo.com>,<
princezzdd
@yahoo.com
>,<princez
zdezz18@ya
hoo.com>,<
princezzdr
agon@yahoo
.com>,<pri
ncezze6920
01@yahoo.c
om>, delay=2+13:09:41, xdelay=00:00:00, mailer=esmtp, pri=377874, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:18 mail sendmail[11354]: k9BBtREq004758: k9D5e1Ng011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:39:21 mail sendmail[21440]: k9E19JXJ021440: from=<send@mail.efax.com>,
size=1351, class=0, nrcpts=1, msgid=<4530388D.001537.022
04@sendapp
1>, proto=ESMTP, daemon=MTA, relay=smtp12.j2.com [204.11.168.114]
Oct 14 06:39:21 mail sendmail[21441]: k9E19JXJ021440: to=<data@scriptacomsystems
.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61558, dsn=2.0.0, stat=Sent
Oct 14 06:39:21 mail sendmail[21441]: k9E19JXJ021440: to=network@scriptacomsyste
ms.com, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=61558, dsn=2.0.0, stat=Sent
Oct 14 06:39:30 mail sendmail[11354]: k9D5e1Ng011354: to=<ojigev@brain.net.pk>, delay=00:00:12, xdelay=00:00:12, mailer=esmtp, pri=49149, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:39:30 mail sendmail[11354]: k9D5e1Ng011354: k9D5e1Nh011354: return to sender: User unknown
Oct 14 06:39:30 mail sendmail[11354]: k9D5e1Nh011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50173, dsn=2.0.0, stat=Sent
Oct 14 06:39:31 mail sendmail[11354]: k9C8PAqE001133: to=<m_jaky@yahoo.com>,<m_j
al_ways@ya
hoo.com>,<
m_jalal_sa
@yahoo.com
>,<m_jalal
i59@yahoo.
com>,<m_ja
lalpour75@
yahoo.com>
,<m_jalals
a@yahoo.co
m>, delay=1+16:43:28, xdelay=00:00:00, mailer=esmtp, pri=377875, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:31 mail sendmail[11354]: k9C8PAqE001133: k9D5e1Ni011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:39:34 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:39:36 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 90000
Oct 14 06:39:37 mail sendmail[11354]: k9D5e1Ni011354: to=<xayayqudvhgqq@caller.c
om>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49159, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as 503E012F008E)
Oct 14 06:39:37 mail sendmail[11354]: k9B9USKv030381: to=<bwarner69@yahoo.com>,<
bwarner7@y
ahoo.com>,
<bwarner8@
yahoo.com>
,<bwarner9
0@yahoo.co
m>,<bwarne
r911@yahoo
.com>,<bwa
rner99@yah
oo.com>, delay=2+15:37:31, xdelay=00:00:00, mailer=esmtp, pri=377876, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:37 mail sendmail[11354]: k9B9USKv030381: k9D5e1Nj011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:39:39 mail sendmail[11354]: k9D5e1Nj011354: to=<ppdvmsqraecjhk@bellauk
.com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49121, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:39:39 mail sendmail[11354]: k9D5e1Nj011354: k9D5e1Nk011354: return to sender: User unknown
Oct 14 06:39:40 mail sendmail[11354]: k9D5e1Nk011354: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=50145, dsn=2.0.0, stat=Sent
Oct 14 06:39:40 mail sendmail[11354]: k98KGiMJ010034: to=<gtaboy14@yahoo.com>,<g
tabrian@ya
hoo.com>, delay=5+04:50:40, xdelay=00:00:00, mailer=esmtp, pri=377876, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:40 mail sendmail[11354]: k98KGiMJ010034: k9D5e1Nl011354: DSN: Cannot send message for 5 days
Oct 14 06:39:40 mail sendmail[11354]: k9D5e1Nl011354: to=<wvofh@arabia.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79123, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:39:40 mail sendmail[11354]: k983ePOW027767: to=<kinzie_0509@yahoo.com>
,<kinzie_1
48@yahoo.c
om>,<kinzi
e_2002@yah
oo.com>,<k
inzie_brun
gardt2001@
yahoo.com>
,<kinzie_m
eyer_02@ya
hoo.com>, delay=5+21:27:33, xdelay=00:00:00, mailer=esmtp, pri=377877, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:40 mail sendmail[11354]: k983ePOW027767: k9D5e1Nm011354: DSN: Cannot send message for 5 days
Oct 14 06:39:40 mail sendmail[11354]: k9D5e1Nm011354: to=<joamxheo@centrapoint.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79158, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:39:40 mail sendmail[11354]: k9D5e1Nm011354: k9D5e1Nn011354: return to sender: Local configuration error
Oct 14 06:39:41 mail sendmail[11354]: k9D5e1Nn011354: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=80182, dsn=2.0.0, stat=Sent
Oct 14 06:39:41 mail sendmail[11354]: k98N4wOJ013128: to=<dhamareswar_d@yahoo.co
m>,<laxman
pc@yahoo.c
om>,<laxma
nprakaash@
yahoo.com>
,<laxmanpr
ao@yahoo.c
om>,<laxma
npratap_00
7@yahoo.co
m>, delay=5+02:04:39, xdelay=00:00:00, mailer=esmtp, pri=377877, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:39:41 mail sendmail[11354]: k98N4wOJ013128: k9D5e1No011354: DSN: Cannot send message for 5 days
Oct 14 06:39:44 mail sendmail[10303]: k99LapOY024276: to=<bobg@msy.bellsouth.net
>, delay=4+03:31:55, xdelay=00:32:00, mailer=esmtp, pri=909016, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 06:39:45 mail sendmail[10613]: k9BD0oBc008576: to=<catmizer@bellsouth.net
>, delay=2+12:06:55, xdelay=00:02:37, mailer=esmtp, pri=1496431, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:39:45 mail sendmail[10613]: k9BEqF0L014314: to=<crzyflpchk@bellsouth.n
et>, delay=2+10:17:28, xdelay=00:00:00, mailer=esmtp, pri=1496432, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:46 mail sendmail[10613]: k9BHujcS023902: to=<angel278@bellsouth.net
>, delay=2+07:09:26, xdelay=00:00:00, mailer=esmtp, pri=1496432, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:46 mail sendmail[11354]: k9D5e1No011354: to=<enmsirswcchkb@arsenal.
co.uk>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=79125, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:39:46 mail sendmail[10613]: k9BFgISd016856: to=<reynes@bellsouth.net>,
delay=2+09:26:41, xdelay=00:00:00, mailer=esmtp, pri=1496440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:46 mail sendmail[11354]: k9D5e1No011354: k9D5e1Np011354: return to sender: User unknown
Oct 14 06:39:46 mail sendmail[10613]: k9BFdhW6016764: to=<christianlanier@bellso
uth.net>, delay=2+09:29:52, xdelay=00:00:00, mailer=esmtp, pri=1496442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:46 mail sendmail[11354]: k9D5e1Np011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80149, dsn=2.0.0, stat=Sent
Oct 14 06:39:47 mail sendmail[11354]: k98NbpWG013719: to=<bdear1@bellsouth.net>,
<bdear@bel
lsouth.net
>,<bdearbo
rn@bellsou
th.net>,<b
dearbornav
@bellsouth
.net>,<bde
ardorf@bel
lsouth.net
>, delay=5+01:31:53, xdelay=00:00:00, mailer=esmtp, pri=377878, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:47 mail sendmail[11354]: k98NbpWG013719: k9D5e1Nq011354: DSN: Cannot send message for 5 days
Oct 14 06:39:47 mail sendmail[10613]: k9BCjGC8007602: to=<leggs35@bellsouth.net>
, delay=2+12:23:53, xdelay=00:00:00, mailer=esmtp, pri=1496448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:47 mail sendmail[10613]: k9BFAAA3015182: to=<andrea.s@bellsouth.net
>, delay=2+09:56:34, xdelay=00:00:00, mailer=esmtp, pri=1496449, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:47 mail sendmail[10613]: k9BFQaME016118: to=<draler@bellsouth.net>,
<katart@be
llsouth.ne
t>, delay=2+09:40:50, xdelay=00:00:00, mailer=esmtp, pri=1496449, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:47 mail sendmail[10613]: k9BDRwH2010136: to=<husain786@bellsouth.ne
t>, delay=2+11:39:09, xdelay=00:00:00, mailer=esmtp, pri=1496452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:48 mail sendmail[10613]: k9BF3AcZ014826: to=<uther@bellsouth.net>, delay=2+10:03:59, xdelay=00:00:00, mailer=esmtp, pri=1496453, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:48 mail sendmail[10613]: k9BBcaia003802: to=<perrymashburn@bellsout
h.net>, delay=2+13:28:58, xdelay=00:00:00, mailer=esmtp, pri=1496454, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:48 mail sendmail[10613]: k9C1wlMC003324: to=<heubank@bellsouth.net>
, delay=1+23:10:24, xdelay=00:00:00, mailer=esmtp, pri=1496455, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:48 mail sendmail[10613]: k9BCrPe8008134: to=<bedebo@bellsouth.net>,
<kenaichan
g@bellsout
h.net>, delay=2+12:14:16, xdelay=00:00:00, mailer=esmtp, pri=1496457, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:48 mail sendmail[10613]: k9C8R6RQ001329: to=<dluvng@bellsouth.net>,
<dluvnguye
n@bellsout
h.net>,<dl
uvnman4u@b
ellsouth.n
et>,<dluvo
fnkn@bells
outh.net>,
delay=1+16:41:36, xdelay=00:00:00, mailer=esmtp, pri=1496482, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:49 mail sendmail[10613]: k9C8bvX6003024: to=<mbwarren@bellsouth.net
>,<mbwatso
n@bellsout
h.net>,<mb
wb@bellsou
th.net>,<m
bwe@bellso
uth.net>, delay=1+16:30:06, xdelay=00:00:00, mailer=esmtp, pri=1496486, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:49 mail sendmail[10613]: k9BFBY4p015227: to=<cjrousso@bellsouth.net
>,<peterwd
p@bellsout
h.net>, delay=2+09:53:46, xdelay=00:00:00, mailer=esmtp, pri=1496500, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:49 mail sendmail[10613]: k9C7TYQh026282: to=<dabom34468@bellsouth.n
et>,<dabom
420@bellso
uth.net>,<
dabom58@be
llsouth.ne
t>,<dabom6
@bellsouth
.net>, delay=1+17:31:22, xdelay=00:00:00, mailer=esmtp, pri=1496515, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:39:57 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 91000
Oct 14 06:40:00 mail sendmail[11354]: k9D5e1Nq011354: to=<ffjoqptquioybs@brain.n
et.pk>, delay=00:00:13, xdelay=00:00:13, mailer=esmtp, pri=79122, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:40:01 mail sendmail[11354]: k9D5e1Nq011354: k9D5e1Nr011354: return to sender: User unknown
Oct 14 06:40:02 mail sendmail[11354]: k9D5e1Nr011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80146, dsn=2.0.0, stat=Sent
Oct 14 06:40:02 mail sendmail[11354]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:13:23, xdelay=00:00:00, mailer=esmtp, pri=377878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:02 mail sendmail[11354]: k992uRaW017044: k9D5e1Ns011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:40:03 mail sendmail[11354]: k9D5e1Ns011354: to=<qmgnjuwntewu@bellauk.c
om>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79124, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:40:04 mail sendmail[11354]: k9D5e1Ns011354: k9D5e1Nt011354: return to sender: User unknown
Oct 14 06:40:04 mail sendmail[11354]: k9D5e1Nt011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80148, dsn=2.0.0, stat=Sent
Oct 14 06:40:04 mail sendmail[11354]: k981ecnU025915: to=<gabulldog1@bellsouth.n
et>,<gabul
ldog23@bel
lsouth.net
>,<gabulld
og@bellsou
th.net>,<g
abulldogs@
bellsouth.
net>,<gabu
m@bellsout
h.net>, delay=5+23:29:17, xdelay=00:00:00, mailer=esmtp, pri=377879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:04 mail sendmail[11354]: k981ecnU025915: k9D5e1Nu011354: DSN: Cannot send message for 5 days
Oct 14 06:40:06 mail sendmail[11354]: k9D5e1Nu011354: to=<fhsmtvrtfogfuh@brain.n
et.pk>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=79126, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:40:07 mail sendmail[11354]: k9D5e1Nu011354: k9D5e1Nv011354: return to sender: User unknown
Oct 14 06:40:07 mail sendmail[11354]: k9D5e1Nv011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80150, dsn=2.0.0, stat=Sent
Oct 14 06:40:07 mail sendmail[11354]: k9865BEn029683: to=<glenw416@yahoo.com>,<g
lenw55@yah
oo.com>,<g
lenw66@yah
oo.com>,<g
lenw713200
3@yahoo.co
m>,<glenw8
5716@yahoo
.com>, delay=5+19:02:40, xdelay=00:00:00, mailer=esmtp, pri=377879, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:40:07 mail sendmail[11354]: k9865BEn029683: k9D5e1Nw011354: DSN: Cannot send message for 5 days
Oct 14 06:40:07 mail sendmail[11354]: k9D5e1Nw011354: to=<zwyxtiojd@arabia.com>,
delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79124, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:40:07 mail sendmail[11354]: k97FSTnO026453: to=<ellis436@bellsouth.net
>, delay=6+09:41:27, xdelay=00:00:00, mailer=esmtp, pri=377879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:07 mail sendmail[11354]: k97FSTnO026453: k9D5e1Nx011354: DSN: Cannot send message for 5 days
Oct 14 06:40:13 mail sendmail[11354]: k9D5e1Nx011354: to=<wqajzaituun@briankenne
dy.co.uk>,
delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=79123, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:40:15 mail sendmail[11354]: k9D5e1Nx011354: k9D5e1O0011354: return to sender: User unknown
Oct 14 06:40:15 mail sendmail[11354]: k9D5e1O0011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80147, dsn=2.0.0, stat=Sent
Oct 14 06:40:15 mail sendmail[11354]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+07:52:47, xdelay=00:00:00, mailer=esmtp, pri=377879, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:15 mail sendmail[11354]: k9BHFQIQ021656: k9D5e1O1011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:40:18 mail sendmail[11354]: k9D5e1O1011354: to=<qlmhqtv@brain.net.pk>,
delay=00:00:03, xdelay=00:00:01, mailer=esmtp, pri=49124, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:40:19 mail sendmail[11354]: k9D5e1O1011354: k9D5e1O2011354: return to sender: User unknown
Oct 14 06:40:19 mail sendmail[11354]: k9D5e1O2011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50148, dsn=2.0.0, stat=Sent
Oct 14 06:40:20 mail sendmail[11354]: k98IWOWp008488: to=<vic6kar@bellsouth.net>
,<vic6stri
ng@bellsou
th.net>,<v
ic710@bell
south.net>
,<vic7thsu
n@bellsout
h.net>,<vi
c900@bells
outh.net>,
delay=5+06:37:48, xdelay=00:00:00, mailer=esmtp, pri=377880, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:20 mail sendmail[11354]: k98IWOWp008488: k9D5e1O3011354: DSN: Cannot send message for 5 days
Oct 14 06:40:21 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 92000
Oct 14 06:40:22 mail sendmail[11354]: k9D5e1O3011354: to=<ylhuavwwbphxs@brain.ne
t.pk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79126, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 06:40:22 mail sendmail[11354]: k9D5e1O3011354: k9D5e1O4011354: return to sender: User unknown
Oct 14 06:40:22 mail sendmail[11354]: k9D5e1O4011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80150, dsn=2.0.0, stat=Sent
Oct 14 06:40:22 mail sendmail[11354]: k98FRMXJ005619: to=<
www.kev_wln@yahoo.com>
,<
www.kevans478@yahoo.com>,<
www.keven.jack@yahoo.com>,<
www.keven_park@yahoo.com>
,<
www.kevette_w@yahoo.com>, delay=5+09:42:58, xdelay=00:00:00, mailer=esmtp, pri=377880, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:40:22 mail sendmail[11354]: k98FRMXJ005619: k9D5e1O5011354: DSN: Cannot send message for 5 days
Oct 14 06:40:29 mail sendmail[11354]: k9D5e1O5011354: to=<hknvkq@ciudad.com.ar>,
delay=00:00:07, xdelay=00:00:06, mailer=esmtp, pri=79128, relay=postino12.prima.com.
ar. [200.42.0.146], dsn=2.0.0, stat=Sent (ok 1160788180 qp 1533)
Oct 14 06:40:30 mail sendmail[11354]: k9C8E8LN032182: to=<kevin_kunz_2000@yahoo.
com>,<kevi
n_kuretich
@yahoo.com
>,<kevin_k
usmierz@ya
hoo.com>,<
kevin_kusu
ma@yahoo.c
om>,<kevin
_kutty@yah
oo.com>,<k
evin_kuzz@
yahoo.com>
, delay=1+16:54:38, xdelay=00:00:00, mailer=esmtp, pri=377881, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:40:30 mail sendmail[11354]: k9C8E8LN032182: k9D5e1O6011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:40:35 mail sendmail[11354]: k9D5e1O6011354: to=<pohwpbspdzb@arsenal.co
.uk>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=49160, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:40:35 mail sendmail[11354]: k9D5e1O6011354: k9D5e1O7011354: return to sender: User unknown
Oct 14 06:40:35 mail sendmail[11354]: k9D5e1O7011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50184, dsn=2.0.0, stat=Sent
Oct 14 06:40:35 mail sendmail[11354]: k98McZCW012718: to=<aqtama_348@yahoo.com>,
<aqtamy@ya
hoo.com>,<
aqtan@yaho
o.com>,<aq
tandpk@yah
oo.com>,<a
qtangel@ya
hoo.com>, delay=5+02:30:30, xdelay=00:00:00, mailer=esmtp, pri=377882, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:40:36 mail sendmail[11354]: k98McZCW012718: k9D5e1O8011354: DSN: Cannot send message for 5 days
Oct 14 06:40:36 mail sendmail[11354]: k9D5e1O8011354: to=<rwhvdzxpqvv@centrapoin
t.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79128, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:40:36 mail sendmail[11354]: k9D5e1O8011354: k9D5e1O9011354: return to sender: Local configuration error
Oct 14 06:40:36 mail sendmail[11354]: k9D5e1O9011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80152, dsn=2.0.0, stat=Sent
Oct 14 06:40:36 mail sendmail[11354]: k990EIcT014327: to=<blueeiz18@bellsouth.ne
t>,<blueei
z36@bellso
uth.net>,<
blueeiz4u@
bellsouth.
net>,<blue
eiz79@bell
south.net>
,<blueeize
1@bellsout
h.net>, delay=5+00:56:07, xdelay=00:00:00, mailer=esmtp, pri=377883, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:40:36 mail sendmail[11354]: k990EIcT014327: k9D5e1OA011354: DSN: Cannot send message for 5 days
Oct 14 06:40:38 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 93000
Oct 14 06:40:40 mail sendmail[21454]: k9E1AXgi021454: ruleset=check_rcpt, arg1=<k200.k200@msa.hinet.
net>, relay=59-117-116-197.dynam
ic.hinet.n
et [59.117.116.197], reject=550 5.7.1 <k200.k200@msa.hinet.net>.
.. Relaying denied
Oct 14 06:40:41 mail sendmail[21454]: k9E1AXgi021454: lost input channel from 59-117-116-197.dynamic.hin
et.net [59.117.116.197] to MTA after rcpt
Oct 14 06:40:41 mail sendmail[21454]: k9E1AXgi021454: from=<hdh@hotmail.com>, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=59-117-116-197.dynam
ic.hinet.n
et [59.117.116.197]
Oct 14 06:40:49 mail sendmail[11354]: k9D5e1OA011354: to=<ugdcytucrgdtja@brianke
nnedy.co.u
k>, delay=00:00:13, xdelay=00:00:13, mailer=esmtp, pri=79128, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:40:51 mail sendmail[11354]: k9D5e1OA011354: k9D5e1OB011354: return to sender: User unknown
Oct 14 06:40:51 mail sendmail[11354]: k9D5e1OB011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80152, dsn=2.0.0, stat=Sent
Oct 14 06:40:51 mail sendmail[11354]: k9C8NF6w000887: to=<nickie19_flame@yahoo.c
om>,<nicki
e19m@yahoo
.com>,<nic
kie1eye@ya
hoo.com>,<
nickie1one
@yahoo.com
>,<nickie2
0008@yahoo
.com>,<nic
kie2000_20
00@yahoo.c
om>, delay=1+16:46:54, xdelay=00:00:00, mailer=esmtp, pri=377884, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:40:51 mail sendmail[11354]: k9C8NF6w000887: k9D5e1OC011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:40:54 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 94000
Oct 14 06:40:56 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:41:00 mail sendmail[11354]: k9D5e1OC011354: to=<vhpcqxujqfv@caller.com
>, delay=00:00:09, xdelay=00:00:08, mailer=esmtp, pri=49130, relay=mail.global.sprint.c
om. [207.46.51.86], dsn=2.0.0, stat=Sent (Ok: queued as 46177DF8054)
Oct 14 06:41:00 mail sendmail[11354]: k98LBF2n010785: to=<spaz_hickerbilly@yahoo
.com>,<spa
z_hulk@yah
oo.com>,<s
paz_in_out
@yahoo.com
>,<spaz_in
mashorts@y
ahoo.com>,
<spaz_is_a
_moocher_l
mao@yahoo.
com>, delay=5+03:58:46, xdelay=00:00:00, mailer=esmtp, pri=377884, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:00 mail sendmail[11354]: k98LBF2n010785: k9D5e1OD011354: DSN: Cannot send message for 5 days
Oct 14 06:41:06 mail sendmail[11354]: k9D5e1OD011354: to=<ouvumxmzpgppe@cari.com
.my>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79130, relay=mail.cari.com.my. [202.75.47.236], dsn=5.0.0, stat=Service unavailable
Oct 14 06:41:06 mail sendmail[11354]: k9D5e1OD011354: k9D5e1OE011354: return to sender: Service unavailable
Oct 14 06:41:07 mail sendmail[11354]: k9D5e1OE011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80154, dsn=2.0.0, stat=Sent
Oct 14 06:41:07 mail sendmail[11354]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:18:22, xdelay=00:00:00, mailer=esmtp, pri=377884, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:41:07 mail sendmail[11354]: k9BFpwV3017407: k9D5e1OF011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:10 mail sendmail[11354]: k9D5e1OF011354: to=<wtzupbfxcybspt@brianke
nnedy.co.u
k>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49131, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:41:11 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 95000
Oct 14 06:41:11 mail sendmail[11354]: k9D5e1OF011354: k9D5e1OG011354: return to sender: User unknown
Oct 14 06:41:11 mail sendmail[11354]: k9D5e1OG011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50155, dsn=2.0.0, stat=Sent
Oct 14 06:41:12 mail sendmail[11354]: k993FroC017394: to=<candygirl_12208@yahoo.
com>,<cand
ygirl_126@
yahoo.com>
,<candygir
l_12_1999@
yahoo.com>
,<candygir
l_12_2002@
yahoo.com>
,<candygir
l_12_8_84@
yahoo.com>
, delay=4+21:54:17, xdelay=00:00:00, mailer=esmtp, pri=377885, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:12 mail sendmail[11354]: k993FroC017394: k9D5e1OH011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:14 mail sendmail[11354]: k9D5e1OH011354: to=<uyknijkw@briankennedy.
co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79133, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:41:15 mail sendmail[11354]: k9D5e1OH011354: k9D5e1OI011354: return to sender: User unknown
Oct 14 06:41:16 mail sendmail[11354]: k9D5e1OI011354: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=80157, dsn=2.0.0, stat=Sent
Oct 14 06:41:16 mail sendmail[11354]: k98HhuWG007832: to=<kellanb1999@yahoo.com>
,<kellanc_
1999@yahoo
.com>,<kel
lanchapman
2001@yahoo
.com>,<kel
land08@yah
oo.com>,<k
elland@yah
oo.com>, delay=5+07:25:52, xdelay=00:00:00, mailer=esmtp, pri=377885, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:16 mail sendmail[11354]: k98HhuWG007832: k9D5e1OJ011354: DSN: Cannot send message for 5 days
Oct 14 06:41:18 mail sendmail[11354]: k9D5e1OJ011354: to=<utykqbtrptnow@arsenal.
co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79165, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:41:19 mail sendmail[11354]: k9D5e1OJ011354: k9D5e1OK011354: return to sender: User unknown
Oct 14 06:41:19 mail sendmail[11354]: k9D5e1OK011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80189, dsn=2.0.0, stat=Sent
Oct 14 06:41:19 mail sendmail[11354]: k990QM1S014497: to=<cnxzzhang2003@yahoo.co
m>,<cny007
@yahoo.com
>,<cny009@
yahoo.com>
,<cny01ecl
ipse@yahoo
.com>,<cny
@yahoo.com
>, delay=5+00:44:41, xdelay=00:00:00, mailer=esmtp, pri=377886, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:19 mail sendmail[11354]: k990QM1S014497: k9D5e1OL011354: DSN: Cannot send message for 5 days
Oct 14 06:41:21 mail sendmail[11354]: k9D5e1OL011354: to=<jidywllyz@briankennedy
.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79134, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:41:23 mail sendmail[11354]: k9D5e1OL011354: k9D5e1OM011354: return to sender: User unknown
Oct 14 06:41:23 mail sendmail[11354]: k9D5e1OM011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80158, dsn=2.0.0, stat=Sent
Oct 14 06:41:24 mail sendmail[11354]: k9C8aBrb002824: to=<fthunter2000@yahoo.com
>,<fthuott
ewell@yaho
o.com>,<ft
hurber@yah
oo.com>,<f
thurlbutt_
611@yahoo.
com>,<fthu
rman@yahoo
.com>,<fth
uron@yahoo
.com>, delay=1+16:34:23, xdelay=00:00:00, mailer=esmtp, pri=377886, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:24 mail sendmail[11354]: k9C8aBrb002824: k9D5e1ON011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:26 mail sendmail[11354]: k9D5e1ON011354: to=<gandljnuqkxz@briankenn
edy.co.uk>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49169, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:41:27 mail sendmail[11354]: k9D5e1ON011354: k9D5e1OO011354: return to sender: User unknown
Oct 14 06:41:28 mail sendmail[11354]: k9D5e1OO011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=50193, dsn=2.0.0, stat=Sent
Oct 14 06:41:28 mail sendmail[11354]: k993Fro2017394: to=<candygirl_0312@yahoo.c
om>,<candy
girl_037@y
ahoo.com>,
delay=4+21:55:20, xdelay=00:00:00, mailer=esmtp, pri=377888, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:28 mail sendmail[11354]: k993Fro2017394: k9D5e1OP011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:33 mail sendmail[10303]: k99LapOY024276: to=<christinamcphee@bellso
uth.net>, delay=4+03:33:44, xdelay=00:01:49, mailer=esmtp, pri=909016, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:41:34 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:41:38 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 96000
Oct 14 06:41:38 mail sendmail[11354]: k9D5e1OP011354: to=<rpbzd@caller.com>, delay=00:00:10, xdelay=00:00:09, mailer=esmtp, pri=79136, relay=mail.global.sprint.c
om. [207.46.51.86], dsn=2.0.0, stat=Sent (Ok: queued as ED25A200058)
Oct 14 06:41:38 mail sendmail[11354]: k98E6b3O004533: to=<crazy33713@yahoo.com>,
<osvaldoye
birahm@yah
oo.com>,<o
svaldozapa
ta@yahoo.c
om>,<osval
dson_amor@
yahoo.com>
,<osvalen2
@yahoo.com
>, delay=5+11:03:14, xdelay=00:00:00, mailer=esmtp, pri=377888, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:38 mail sendmail[11354]: k98E6b3O004533: k9D5e1OQ011354: DSN: Cannot send message for 5 days
Oct 14 06:41:40 mail sendmail[11354]: k9D5e1OQ011354: to=<pifvehsqvih@arsenal.co
.uk>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=79135, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:41:41 mail sendmail[11354]: k9D5e1OQ011354: k9D5e1OR011354: return to sender: User unknown
Oct 14 06:41:41 mail sendmail[11354]: k9D5e1OR011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80159, dsn=2.0.0, stat=Sent
Oct 14 06:41:41 mail sendmail[11354]: k9BF1Ip9014783: to=<morrowm2@yahoo.com>,<o
sfam@yahoo
.com>, delay=2+10:05:41, xdelay=00:00:00, mailer=esmtp, pri=377889, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:41 mail sendmail[11354]: k9BF1Ip9014783: k9D5e1OS011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:42 mail sendmail[11354]: k9D5e1OS011354: to=<vzghdntujoov@arabia.co
m>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49190, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:42 mail sendmail[11354]: k98AGZSo001276: to=<scottfamily1996@yahoo.
com>,<scot
tfamily200
3@yahoo.co
m>,<scottf
amily2004@
yahoo.com>
,<scottfam
ily4@yahoo
.com>,<sco
ttfamily51
80@yahoo.c
om>, delay=5+14:54:12, xdelay=00:00:00, mailer=esmtp, pri=377889, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:42 mail sendmail[11354]: k98AGZSo001276: k9D5e1OT011354: DSN: Cannot send message for 5 days
Oct 14 06:41:44 mail sendmail[11354]: k9D5e1OT011354: to=<lfzpusmvxamc@bellauk.c
om>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79133, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:41:45 mail sendmail[11354]: k9D5e1OT011354: k9D5e1OU011354: return to sender: User unknown
Oct 14 06:41:45 mail sendmail[11354]: k9D5e1OU011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80157, dsn=2.0.0, stat=Sent
Oct 14 06:41:45 mail sendmail[11354]: k98Dsgdj004401: to=<oraliagonzalez14@yahoo
.com>,<ora
liagrza3@y
ahoo.com>,
<oraliague
rrero@yaho
o.com>,<or
aliaheredi
a@yahoo.co
m>,<oralia
hh@yahoo.c
om>, delay=5+11:16:06, xdelay=00:00:00, mailer=esmtp, pri=377889, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:45 mail sendmail[11354]: k98Dsgdj004401: k9D5e1OV011354: DSN: Cannot send message for 5 days
Oct 14 06:41:48 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:41:50 mail sendmail[10613]: k9AKlKtT012677: to=<kszqy@arabia.com>, delay=2+01:59:23, xdelay=00:02:00, mailer=esmtp, pri=1497234, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:50 mail sendmail[10613]: k9ADlKSY002438: to=<pnoxewnlboump@arabia.c
om>, delay=2+01:57:46, xdelay=00:00:00, mailer=esmtp, pri=1497253, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:50 mail sendmail[10613]: k9AKlKtb012677: to=<hslrnq@arabia.com>, delay=2+01:56:06, xdelay=00:00:00, mailer=esmtp, pri=1497266, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:50 mail sendmail[10613]: k9AKlKtk012677: to=<ndqyw@arabia.com>, delay=2+01:52:59, xdelay=00:00:00, mailer=esmtp, pri=1497287, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:50 mail sendmail[10613]: k9BFKpwM015816: to=<djvra@arabia.com>, delay=2+09:50:59, xdelay=00:00:00, mailer=esmtp, pri=1497293, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:50 mail sendmail[10613]: k9C2wxmM005152: to=<tzzdqexqnnk@arabia.com
>, delay=1+22:12:51, xdelay=00:00:00, mailer=esmtp, pri=1497306, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[10613]: k9BDATwL009126: to=<pgckagygpe@arabia.com>
, delay=2+12:01:22, xdelay=00:00:00, mailer=esmtp, pri=1497323, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[10613]: k9BImOJs027154: to=<yfvvjhh@arabia.com>, delay=2+06:23:27, xdelay=00:00:00, mailer=esmtp, pri=1497328, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[11354]: k9D5e1OV011354: to=<eqzqzdvdvbde@caller.co
m>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79136, relay=mail.global.sprint.c
om. [206.16.192.227], dsn=2.0.0, stat=Sent (Ok: queued as 47C966B68EF)
Oct 14 06:41:51 mail sendmail[11354]: k98FChJ7005376: to=<ropp_2001@yahoo.com>,<
ropp_will_
eat_you@ya
hoo.com>,<
roppa12003
@yahoo.com
>,<roppa20
00uk@yahoo
.com>,<rop
pa3075@yah
oo.com>, delay=5+09:58:22, xdelay=00:00:00, mailer=esmtp, pri=377890, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:51 mail sendmail[10613]: k9BFA3fj014973: to=<uwnxnc@arabia.com>, delay=2+10:01:48, xdelay=00:00:00, mailer=esmtp, pri=1497334, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[11354]: k98FChJ7005376: k9D5e1OW011354: DSN: Cannot send message for 5 days
Oct 14 06:41:51 mail sendmail[10613]: k9BAlKhf001230: to=<ecomnhmboqnf@arabia.co
m>, delay=2+02:48:22, xdelay=00:00:00, mailer=esmtp, pri=1497336, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[10613]: k9BAlKhk001230: to=<cshlhkdlmx@arabia.com>
, delay=2+02:48:00, xdelay=00:00:00, mailer=esmtp, pri=1497337, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:51 mail sendmail[10613]: k9D0e1Jh007772: to=<civlpun@arabia.com>, delay=23:00:56, xdelay=00:00:00, mailer=esmtp, pri=957339, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:53 mail sendmail[11354]: k9D5e1OW011354: to=<kukqvvbm@caller.com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79136, relay=mail.global.sprint.c
om. [206.16.192.227], dsn=2.0.0, stat=Sent (Ok: queued as 455E06B5DEC)
Oct 14 06:41:53 mail sendmail[10613]: k9D0e1Jg007772: to=<pddgeiehu@chinabyte.co
m>, delay=23:00:58, xdelay=00:00:00, mailer=esmtp, pri=957340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:41:54 mail sendmail[11354]: k98D9mOd003848: to=<okkenyatta2002@yahoo.c
om>,<okkeo
la@yahoo.c
om>,<okker
624@yahoo.
com>,<okke
r69@yahoo.
com>,<okke
r@yahoo.co
m>, delay=5+12:00:35, xdelay=00:00:00, mailer=esmtp, pri=377890, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:54 mail sendmail[11354]: k98D9mOd003848: k9D5e1OX011354: DSN: Cannot send message for 5 days
Oct 14 06:41:54 mail sendmail[10613]: k9CJe1ji004249: to=<pddgeiehu@chinabyte.co
m>, delay=22:38:19, xdelay=00:00:00, mailer=esmtp, pri=957340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:54 mail sendmail[10613]: k9BI3Kc8024172: to=<yutstfdgoboa@arabia.co
m>, delay=2+07:08:34, xdelay=00:00:00, mailer=esmtp, pri=1497342, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:54 mail sendmail[10613]: k9CEJlP1012146: to=<pezhsmnfglone@arabia.c
om>, delay=1+10:52:07, xdelay=00:00:00, mailer=esmtp, pri=1497343, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:54 mail sendmail[10613]: k9CJe1fJ004249: to=<ipoxyashmc@arabia.com>
, delay=1+00:57:43, xdelay=00:00:00, mailer=esmtp, pri=1137346, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:54 mail sendmail[10613]: k9BD2w3r008648: to=<hqfka@arabia.com>, delay=2+12:08:56, xdelay=00:00:00, mailer=esmtp, pri=1497348, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9D0e1K9007772: to=<gpjvrqzytyzh@arabia.co
m>, delay=22:56:07, xdelay=00:00:00, mailer=esmtp, pri=957349, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9BEacEB013489: to=<gpjvrqzytyzh@arabia.co
m>, delay=2+10:35:17, xdelay=00:00:00, mailer=esmtp, pri=1497349, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9BMlK1T032261: to=<iknuskuemvysvg@arabia.
com>, delay=1+22:59:56, xdelay=00:00:00, mailer=esmtp, pri=1497350, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9BAlKkp001230: to=<eywmepzmc@arabia.com>,
delay=2+00:10:38, xdelay=00:00:00, mailer=esmtp, pri=1497351, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9CJe1jw004249: to=<vojsdpxhin@arabia.com>
, delay=22:28:57, xdelay=00:00:00, mailer=esmtp, pri=957358, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9D0e1JF007772: to=<jbgfjbtwu@arabia.com>,
delay=23:02:43, xdelay=00:00:00, mailer=esmtp, pri=957359, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:55 mail sendmail[10613]: k9CJe1k1004249: to=<qcncsxhenqlve@chinabyt
e.com>, delay=22:28:54, xdelay=00:00:00, mailer=esmtp, pri=957360, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:56 mail sendmail[10613]: k9D0e1JO007772: to=<ygoqh@arabia.com>, delay=23:02:31, xdelay=00:00:00, mailer=esmtp, pri=957364, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:56 mail sendmail[11354]: k9D5e1OX011354: to=<cpyvgelbcf@caller.com>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79165, relay=mail.global.sprint.c
om. [206.16.192.227], dsn=2.0.0, stat=Sent (Ok: queued as BA21D6B7125)
Oct 14 06:41:56 mail sendmail[10613]: k9BJlKSX028942: to=<ngaaeedia@arabia.com>,
delay=2+02:40:23, xdelay=00:00:00, mailer=esmtp, pri=1497368, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:56 mail sendmail[11354]: k9BAx6dY001722: to=<jes5199@yahoo.com>,<je
s519@yahoo
.com>,<jes
521@yahoo.
com>,<jes5
23@yahoo.c
om>,<jes52
5@yahoo.co
m>,<jes530
96@yahoo.c
om>, delay=2+14:11:59, xdelay=00:00:00, mailer=esmtp, pri=377891, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:56 mail sendmail[11354]: k9BAx6dY001722: k9D5e1OY011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:41:56 mail sendmail[10613]: k9BLlK7p030621: to=<wgqdvhcpxr@arabia.com>
, delay=2+01:59:00, xdelay=00:00:00, mailer=esmtp, pri=1497371, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:56 mail sendmail[10613]: k9CJe1kK004249: to=<jthhxjftnnbngr@chinaby
te.com>, delay=22:25:51, xdelay=00:00:00, mailer=esmtp, pri=957371, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:56 mail sendmail[10613]: k9CJe1kL004249: to=<cotnutntffccxu@arabia.
com>, delay=22:25:50, xdelay=00:00:00, mailer=esmtp, pri=957373, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9C3FnMq005448: to=<hfixkvyawvm@arabia.com
>, delay=1+21:56:08, xdelay=00:00:00, mailer=esmtp, pri=1497374, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9CB0Kmr005447: to=<xokswaepo@arabia.com>,
delay=1+12:10:14, xdelay=00:00:00, mailer=esmtp, pri=1497376, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9D0e1KC007772: to=<ipcygbvk@arabia.com>, delay=22:56:07, xdelay=00:00:00, mailer=esmtp, pri=957378, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9CJe1kY004249: to=<rkyprjhxbvjd@arabia.co
m>, delay=22:25:11, xdelay=00:00:00, mailer=esmtp, pri=957380, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9BFggSR016872: to=<epooklo@arabia.com>, delay=2+09:29:15, xdelay=00:00:00, mailer=esmtp, pri=1497383, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9CB0Kmu005447: to=<blxpan@arabia.com>, delay=1+12:10:08, xdelay=00:00:00, mailer=esmtp, pri=1497384, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9CD0KtH009755: to=<blxpan@arabia.com>, delay=1+11:32:04, xdelay=00:00:00, mailer=esmtp, pri=1497384, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:57 mail sendmail[10613]: k9D0e1K8007772: to=<knzvyksxfxi@chinabyte.
com>, delay=22:56:09, xdelay=00:00:00, mailer=esmtp, pri=957386, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:58 mail sendmail[10613]: k9BKlK7P029775: to=<nfarhbwb@arabia.com>, delay=1+22:02:50, xdelay=00:00:00, mailer=esmtp, pri=1497391, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:58 mail sendmail[11354]: k9D5e1OY011354: to=<enxwqncs@arsenal.co.uk
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49139, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:41:58 mail sendmail[10613]: k9BIVIkx026160: to=<pttgogus@arabia.com>, delay=2+06:40:40, xdelay=00:00:00, mailer=esmtp, pri=1497397, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:58 mail sendmail[10613]: k9CJe1kC004249: to=<ibnorphont@arabia.com>
, delay=22:26:14, xdelay=00:00:00, mailer=esmtp, pri=957405, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:58 mail sendmail[11354]: k9D5e1OY011354: k9D5e1OZ011354: return to sender: User unknown
Oct 14 06:41:58 mail sendmail[10613]: k9CJe1kT004249: to=<vgrjppcngbaexg@arabia.
com>, delay=22:25:31, xdelay=00:00:00, mailer=esmtp, pri=957409, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:59 mail sendmail[5678]: k9BAkMtn001187: to=<egleston@mia.bellsouth
.net>, delay=2+14:25:06, xdelay=00:32:01, mailer=esmtp, pri=1316410, relay=mia.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 06:41:59 mail sendmail[11354]: k9D5e1OZ011354: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=50163, dsn=2.0.0, stat=Sent
Oct 14 06:41:59 mail sendmail[10613]: k9BElK3g014033: to=<xwbutsy@arabia.com>, delay=2+04:55:33, xdelay=00:00:00, mailer=esmtp, pri=1497412, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:59 mail sendmail[10613]: k9BIlKoM027225: to=<wfodw@arabia.com>, delay=1+21:33:38, xdelay=00:00:00, mailer=esmtp, pri=1497419, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:59 mail sendmail[11354]: k990VPMM014635: to=<bgardner_63301@yahoo.c
om>,<bgard
ner_us@yah
oo.com>,<b
gardnerapp
@yahoo.com
>,<bgardne
rr@yahoo.c
om>,<bgard
nerrn@yaho
o.com>, delay=5+00:37:44, xdelay=00:00:00, mailer=esmtp, pri=377892, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:41:59 mail sendmail[11354]: k990VPMM014635: k9D5e1Oa011354: DSN: Cannot send message for 5 days
Oct 14 06:41:59 mail sendmail[10613]: k9BKlK0T029775: to=<wfodw@arabia.com>, delay=2+03:03:46, xdelay=00:00:00, mailer=esmtp, pri=1497419, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:59 mail sendmail[10613]: k9BFa8TR016609: to=<vwyxfewt@arabia.com>, delay=2+09:35:51, xdelay=00:00:00, mailer=esmtp, pri=1497427, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:41:59 mail sendmail[10613]: k9CDBnvu010114: to=<tmckppjo@chinabyte.com
>, delay=1+12:00:10, xdelay=00:00:00, mailer=esmtp, pri=1497429, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:42:00 mail sendmail[10613]: k9CB0Kn7005447: to=<vrvxgtpdqnnxoo@chinaby
te.com>, delay=1+12:09:50, xdelay=00:00:00, mailer=esmtp, pri=1497446, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:42:00 mail sendmail[10613]: k9CB0Kn9005447: to=<qoecbxqntvrxog@arabia.
com>, delay=1+12:09:36, xdelay=00:00:00, mailer=esmtp, pri=1497461, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:42:00 mail sendmail[10613]: k9CB0KnA005447: to=<hhtlhgyecxsclu@arabia.
com>, delay=1+12:09:35, xdelay=00:00:00, mailer=esmtp, pri=1497464, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:42:00 mail sendmail[10613]: k9CNe1RC007286: to=<murxqbrev@arabia.com>,
delay=1+00:25:51, xdelay=00:00:00, mailer=esmtp, pri=1047496, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:42:00 mail sendmail[10613]: k9CB0KnD005447: to=<jeoieaqoxenmve@arabia.
com>, delay=1+12:09:19, xdelay=00:00:00, mailer=esmtp, pri=1497498, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:42:00 mail sendmail[10613]: k9CC0Kdx007575: to=<zavoduggeabi@arabia.co
m>, delay=1+10:35:59, xdelay=00:00:00, mailer=esmtp, pri=1497539, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:42:00 mail sendmail[10613]: k9BGvc5O020763: to=<bigjoewae@bellsouth.ne
t>, delay=2+08:12:11, xdelay=00:00:00, mailer=esmtp, pri=1497590, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:01 mail sendmail[10613]: k9BGvc5O020763: to=<mimanjo@yahoo.co.in>, delay=2+08:12:12, xdelay=00:00:01, mailer=esmtp, pri=1497590, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:42:01 mail sendmail[10613]: k9BBcaiW003802: to=<leroy.lui@bellsouth.ne
t>, delay=2+13:31:29, xdelay=00:00:00, mailer=esmtp, pri=1497593, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 97000
Oct 14 06:42:06 mail sendmail[5678]: k9BHmcQL023326: to=<ctoasn4444@bellsouth.n
et>,<ourse
lf@mail.be
llsouth.ne
t>, delay=2+07:19:29, xdelay=00:00:07, mailer=esmtp, pri=1586411, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:42:06 mail sendmail[5678]: k9BGEPtc018662: to=<ericdupont@bellsouth.n
et>, delay=2+08:54:26, xdelay=00:00:00, mailer=esmtp, pri=1586413, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:06 mail sendmail[5678]: k9BEqF0b014314: to=<kkluth@bellsouth.net>,
<noakleys@
bellsouth.
net>, delay=2+10:16:04, xdelay=00:00:00, mailer=esmtp, pri=1586415, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:07 mail sendmail[5678]: k9C1hb2P002774: to=<gaou@bellsouth.net>, delay=1+23:26:38, xdelay=00:00:00, mailer=esmtp, pri=1496415, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:07 mail sendmail[5678]: k9C1Mx1e002331: to=<spgreen@bellsouth.net>
, delay=1+23:48:22, xdelay=00:00:00, mailer=esmtp, pri=1586416, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:07 mail sendmail[5678]: k9BEZFKm013505: to=<deeno95@bellsouth.net>
, delay=2+10:36:41, xdelay=00:00:00, mailer=esmtp, pri=1496419, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:07 mail sendmail[5678]: k9BGb6bS019805: to=<deanna1218@bellsouth.n
et>, delay=2+08:33:57, xdelay=00:00:00, mailer=esmtp, pri=1496420, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:07 mail sendmail[5678]: k9BFmHsf017165: to=<gizachew@bellsouth.net
>, delay=2+09:16:54, xdelay=00:00:00, mailer=esmtp, pri=1496422, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:08 mail sendmail[5678]: k9C1leU8002931: to=<cpkarate@bellsouth.net
>, delay=1+23:23:52, xdelay=00:00:00, mailer=esmtp, pri=1496423, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:42:11 mail sendmail[11354]: k9D5e1Oa011354: to=<kdvabm@bellauk.com>, delay=00:00:12, xdelay=00:00:12, mailer=esmtp, pri=79138, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:42:11 mail sendmail[11354]: k9D5e1Oa011354: k9D5e1Ob011354: return to sender: User unknown
Oct 14 06:42:12 mail sendmail[11354]: k9D5e1Ob011354: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80162, dsn=2.0.0, stat=Sent
Oct 14 06:42:19 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 98000
Oct 14 06:42:40 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 99000
Oct 14 06:43:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 100000
Oct 14 06:43:17 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 101000
Oct 14 06:43:39 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 102000
Oct 14 06:43:48 mail sendmail[2438]: k9BFseVE017550: to=<anhinga@msy.bellsouth.
net>, delay=2+09:16:58, xdelay=00:32:00, mailer=esmtp, pri=1314851, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 06:43:55 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 103000
Oct 14 06:44:12 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 104000
Oct 14 06:44:32 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:44:32 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 06:44:40 mail last message repeated 2 times
Oct 14 06:44:41 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 105000
Oct 14 06:44:42 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 06:44:44 mail imap-login: Login: btz [::ffff:59.92.135.232]
Oct 14 06:44:50 mail last message repeated 3 times
Oct 14 06:44:52 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:44:56 mail last message repeated 2 times
Oct 14 06:44:59 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 106000
Oct 14 06:45:04 mail sendmail[21503]: k99KWuUm021842: to=<hartman5@bhm.bellsouth
.net>, delay=4+04:40:41, xdelay=00:32:00, mailer=esmtp, pri=377424, relay=bhm.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:45:04 mail sendmail[21503]: k99KWuUm021842: to=<anilugle@yahoo.co.in>,
delay=4+04:40:41, xdelay=00:00:00, mailer=esmtp, pri=377424, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:45:04 mail sendmail[21503]: k99KWuUm021842: k9D7e1xu021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:45:06 mail sendmail[21503]: k9D7e1xu021503: to=<qyulluuk@chinabyte.com
>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=78671, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:45:07 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:45:09 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 06:45:15 mail last message repeated 3 times
Oct 14 06:45:16 mail sendmail[21503]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+21:05:34, xdelay=00:00:10, mailer=esmtp, pri=1007425, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:45:17 mail sendmail[21503]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+04:30:15, xdelay=00:00:00, mailer=esmtp, pri=1007436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:18 mail sendmail[21503]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+07:56:16, xdelay=00:00:00, mailer=esmtp, pri=1007436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:18 mail sendmail[21503]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+02:37:29, xdelay=00:00:00, mailer=esmtp, pri=917440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:19 mail sendmail[21503]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+20:30:03, xdelay=00:00:00, mailer=esmtp, pri=1007441, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:19 mail sendmail[21503]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:35:22, xdelay=00:00:00, mailer=esmtp, pri=1007442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:20 mail sendmail[21503]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+22:34:20, xdelay=00:00:00, mailer=esmtp, pri=1007442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:20 mail sendmail[21503]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+20:08:19, xdelay=00:00:00, mailer=esmtp, pri=1007442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:20 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 06:45:20 mail sendmail[21503]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:48:45, xdelay=00:00:00, mailer=esmtp, pri=917448, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:21 mail sendmail[21503]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+12:09:58, xdelay=00:00:00, mailer=esmtp, pri=917452, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:22 mail sendmail[21503]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+10:13:36, xdelay=00:00:00, mailer=esmtp, pri=917456, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:22 mail sendmail[21503]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:38:57, xdelay=00:00:00, mailer=esmtp, pri=917460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:22 mail sendmail[21503]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+03:05:30, xdelay=00:00:00, mailer=esmtp, pri=917469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:23 mail sendmail[21503]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+23:01:23, xdelay=00:00:00, mailer=esmtp, pri=917473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:23 mail sendmail[21503]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:28:01, xdelay=00:00:00, mailer=esmtp, pri=917818, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:23 mail sendmail[21503]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+06:06:41, xdelay=00:00:00, mailer=esmtp, pri=917830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:23 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 06:45:23 mail sendmail[21503]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+06:07:40, xdelay=00:00:00, mailer=esmtp, pri=917830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:24 mail sendmail[21503]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:40:33, xdelay=00:00:00, mailer=esmtp, pri=917834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:24 mail sendmail[21503]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:34:37, xdelay=00:00:00, mailer=esmtp, pri=737839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:24 mail sendmail[21511]: k9E1FCLx021511: from=<send@mail.efax.com>,
size=1395, class=0, nrcpts=1, msgid=<453039EE.0015F1.021
40@sendapp
3>, proto=ESMTP, daemon=MTA, relay=smtp13.j2.com [204.11.168.115]
Oct 14 06:45:24 mail sendmail[21503]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+15:04:44, xdelay=00:00:00, mailer=esmtp, pri=737850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:25 mail sendmail[21527]: k9E1FCLx021511: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=61602, dsn=2.0.0, stat=Sent
Oct 14 06:45:25 mail sendmail[21527]: k9E1FCLx021511: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61602, dsn=2.0.0, stat=Sent
Oct 14 06:45:26 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 107000
Oct 14 06:45:26 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 06:45:30 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 06:45:30 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 06:45:33 mail sendmail[21503]: k9BA24wZ031785: to=<scrumpmoss42@yahoo.com
>,<scrumpn
asty@yahoo
.com>,<scr
umponit04@
yahoo.com>
,<scrumpr@
yahoo.com>
,<scrumprs
@yahoo.com
>,<scrumps
2004@yahoo
.com>, delay=2+15:11:08, xdelay=00:00:08, mailer=esmtp, pri=647858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:45:33 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 06:45:37 mail last message repeated 2 times
Oct 14 06:45:38 mail sendmail[21503]: k9C7APga023486: to=<taklaew1@yahoo.com>,<t
aklahn@yah
oo.com>,<t
aklak1992@
yahoo.com>
,<taklale@
yahoo.com>
,<taklalug
irl@yahoo.
com>,<takl
am@yahoo.c
om>, delay=1+18:02:38, xdelay=00:00:05, mailer=esmtp, pri=647858, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:45:39 mail sendmail[21503]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:47:17, xdelay=00:00:00, mailer=esmtp, pri=557860, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:39 mail sendmail[21503]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+08:07:37, xdelay=00:00:00, mailer=esmtp, pri=647860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:39 mail sendmail[21544]: k9E1Fcmt021544: ruleset=check_rcpt, arg1=<bt@scriptacomsystems
>, relay=[59.92.135.232], reject=550 5.7.1 <bt@scriptacomsystems>... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:45:39 mail sendmail[21544]: k9E1Fcmt021544: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:45:41 mail sendmail[21544]: k9E1Fcmu021544: ruleset=check_rcpt, arg1=<mt@scriptasomsystems
.com>, relay=[59.92.135.232], reject=550 5.7.1 <mt@scriptasomsystems.com>
... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:45:41 mail sendmail[21544]: k9E1Fcmu021544: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=3, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:45:42 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:45:44 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:45:44 mail sendmail[21503]: k9C4sKPT008539: to=<lilsugahighwashu@yahoo
.com>,<lil
sugahuney@
yahoo.com>
,<lilsugai
2@yahoo.co
m>,<lilsug
akiss09@ya
hoo.com>,<
lilsugakis
ses@yahoo.
com>,<lils
ugakiwi@ya
hoo.com>, delay=1+20:19:38, xdelay=00:00:05, mailer=esmtp, pri=647862, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:45:46 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:45:47 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 108000
Oct 14 06:45:49 mail sendmail[21503]: k9BAT6G4032640: to=<joeybassjr@yahoo.com>,
<joeybasta
rdo@yahoo.
com>,<joey
battaglio@
yahoo.com>
,<joeybatz
2003@yahoo
.com>,<joe
ybauder@ya
hoo.com>,<
joeybayani
@yahoo.com
>, delay=2+14:45:59, xdelay=00:00:04, mailer=esmtp, pri=557864, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:45:49 mail sendmail[21503]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:29:02, xdelay=00:00:00, mailer=esmtp, pri=557865, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:51 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:45:54 mail sendmail[21503]: k9C4PoGt007520: to=<lonisha1205@yahoo.com>
,<lonisha2
000@yahoo.
com>,<loni
shagraham@
yahoo.com>
,<lonishag
reen@yahoo
.com>,<lon
ishalton3@
yahoo.com>
,<lonishel
don@yahoo.
com>, delay=1+20:49:41, xdelay=00:00:04, mailer=esmtp, pri=557869, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:45:54 mail sendmail[21503]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:34:45, xdelay=00:00:00, mailer=esmtp, pri=557870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:54 mail sendmail[21503]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:23:02, xdelay=00:00:00, mailer=esmtp, pri=557870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:45:58 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:45:58 mail sendmail[21503]: k9BBjgto004295: to=<kreture73@yahoo.com>,<
kreturex@y
ahoo.com>,
<krety4@ya
hoo.com>,<
kretyos777
@yahoo.com
>,<kretz02
@yahoo.com
>,<kretz1@
yahoo.com>
, delay=2+13:29:10, xdelay=00:00:04, mailer=esmtp, pri=467871, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:45:58 mail sendmail[21503]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:05:34, xdelay=00:00:00, mailer=esmtp, pri=467873, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:46:00 mail sendmail[21503]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:39:53, xdelay=00:00:00, mailer=esmtp, pri=467874, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:46:00 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 06:46:05 mail sendmail[21503]: k9BBtREq004758: to=<princezzdanie@yahoo.co
m>,<prince
zzdawnz@ya
hoo.com>,<
princezzdd
@yahoo.com
>,<princez
zdezz18@ya
hoo.com>,<
princezzdr
agon@yahoo
.com>,<pri
ncezze6920
01@yahoo.c
om>, delay=2+13:16:28, xdelay=00:00:05, mailer=esmtp, pri=467874, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:46:05 mail sendmail[21563]: k9E1G3Jd021563: from=<akstcbudgetwebmnsdgs
@budgetweb
.com>, size=5645, class=0, nrcpts=1, msgid=<718639203.503392968
25238@theb
at.net>, proto=ESMTP, daemon=MTA, relay=[89.169.211.207]
Oct 14 06:46:06 mail sendmail[21564]: k9E1G3Jd021563: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=35843, dsn=2.0.0, stat=Sent
Oct 14 06:46:07 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 06:46:10 mail sendmail[21503]: k9C8PAqE001133: to=<m_jaky@yahoo.com>,<m_j
al_ways@ya
hoo.com>,<
m_jalal_sa
@yahoo.com
>,<m_jalal
i59@yahoo.
com>,<m_ja
lalpour75@
yahoo.com>
,<m_jalals
a@yahoo.co
m>, delay=1+16:50:07, xdelay=00:00:05, mailer=esmtp, pri=467875, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:46:14 mail sendmail[21503]: k9B9USKv030381: to=<bwarner69@yahoo.com>,<
bwarner7@y
ahoo.com>,
<bwarner8@
yahoo.com>
,<bwarner9
0@yahoo.co
m>,<bwarne
r911@yahoo
.com>,<bwa
rner99@yah
oo.com>, delay=2+15:44:08, xdelay=00:00:04, mailer=esmtp, pri=467876, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:46:14 mail sendmail[21503]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:19:35, xdelay=00:00:00, mailer=esmtp, pri=467878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:46:14 mail sendmail[21503]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+07:58:46, xdelay=00:00:00, mailer=esmtp, pri=467879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:46:14 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 109000
Oct 14 06:46:19 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:46:20 mail sendmail[21503]: k9C8E8LN032182: to=<kevin_kunz_2000@yahoo.
com>,<kevi
n_kuretich
@yahoo.com
>,<kevin_k
usmierz@ya
hoo.com>,<
kevin_kusu
ma@yahoo.c
om>,<kevin
_kutty@yah
oo.com>,<k
evin_kuzz@
yahoo.com>
, delay=1+17:00:28, xdelay=00:00:06, mailer=esmtp, pri=467881, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:46:24 mail sendmail[21503]: k9C8NF6w000887: to=<nickie19_flame@yahoo.c
om>,<nicki
e19m@yahoo
.com>,<nic
kie1eye@ya
hoo.com>,<
nickie1one
@yahoo.com
>,<nickie2
0008@yahoo
.com>,<nic
kie2000_20
00@yahoo.c
om>, delay=1+16:52:27, xdelay=00:00:04, mailer=esmtp, pri=467884, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:46:24 mail sendmail[21503]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:23:39, xdelay=00:00:00, mailer=esmtp, pri=467884, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:46:27 mail sendmail[21503]: k993FroC017394: to=<candygirl_12208@yahoo.
com>,<cand
ygirl_126@
yahoo.com>
,<candygir
l_12_1999@
yahoo.com>
,<candygir
l_12_2002@
yahoo.com>
,<candygir
l_12_8_84@
yahoo.com>
, delay=4+21:59:32, xdelay=00:00:03, mailer=esmtp, pri=467885, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:46:32 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 110000
Oct 14 06:46:36 mail sendmail[21503]: k9C8aBrb002824: to=<fthunter2000@yahoo.com
>,<fthuott
ewell@yaho
o.com>,<ft
hurber@yah
oo.com>,<f
thurlbutt_
611@yahoo.
com>,<fthu
rman@yahoo
.com>,<fth
uron@yahoo
.com>, delay=1+16:39:35, xdelay=00:00:08, mailer=esmtp, pri=467886, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta198.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:46:39 mail sendmail[21503]: k993Fro2017394: to=<candygirl_0312@yahoo.c
om>,<candy
girl_037@y
ahoo.com>,
delay=4+22:00:31, xdelay=00:00:03, mailer=esmtp, pri=467888, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 06:46:44 mail sendmail[21572]: k9E1GgVj021572: from=<send@mail.efax.com>,
size=1506, class=0, nrcpts=1, msgid=<45303A48.07EF25.015
76@sendapp
2>, proto=ESMTP, daemon=MTA, relay=smtp1.pit1.j2.com [204.11.173.151]
Oct 14 06:46:44 mail sendmail[21503]: k9BF1Ip9014783: to=<morrowm2@yahoo.com>,<o
sfam@yahoo
.com>, delay=2+10:10:44, xdelay=00:00:04, mailer=esmtp, pri=467889, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:46:45 mail sendmail[21573]: k9E1GgVj021572: to=<data@scriptacomsystems
.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61714, dsn=2.0.0, stat=Sent
Oct 14 06:46:45 mail sendmail[21573]: k9E1GgVj021572: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=61714, dsn=2.0.0, stat=Sent
Oct 14 06:46:50 mail sendmail[21503]: k9BAx6dY001722: to=<jes5199@yahoo.com>,<je
s519@yahoo
.com>,<jes
521@yahoo.
com>,<jes5
23@yahoo.c
om>,<jes52
5@yahoo.co
m>,<jes530
96@yahoo.c
om>, delay=2+14:16:53, xdelay=00:00:05, mailer=esmtp, pri=467891, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:46:53 mail sendmail[18768]: k99IH5Eh015106: to=<damas@msy.bellsouth.ne
t>, delay=4+06:50:18, xdelay=00:32:11, mailer=esmtp, pri=377443, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 06:46:53 mail sendmail[18768]: k99IH5Eh015106: k9DLe1o6018768: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:46:53 mail sendmail[21503]: k981q6bc026147: to=<darren_lvr@yahoo.com>,
<darren_lv
z_carolann
e@yahoo.co
m>,<darren
_lynn@yaho
o.com>,<da
rren_lytle
@yahoo.com
>,<darren_
m@yahoo.co
m>, delay=5+23:22:33, xdelay=00:00:02, mailer=esmtp, pri=377897, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:46:55 mail sendmail[21503]: k98FleUL006142: to=<captain_heatranger@yah
oo.com>,<c
aptain_heb
ert@yahoo.
com>,<capt
ain_hecubu
s@yahoo.co
m>,<captai
n_hematite
@yahoo.com
>,<captain
_henry@yah
oo.com>, delay=5+09:24:31, xdelay=00:00:02, mailer=esmtp, pri=377898, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:46:56 mail sendmail[21576]: k9E1Gtfp021576: from=<nafisahusain100@hotm
ail.com>, size=2190, class=0, nrcpts=2, msgid=<BAY122-F10744CB3D58
9418F89B77
AE40B0@phx
.gbl>, proto=ESMTP, daemon=MTA, relay=bay0-omc2-s37.bay0.h
otmail.com
[65.54.246.173]
Oct 14 06:46:57 mail sendmail[21577]: k9E1Gtfp021576: to=<outsrc@scriptacomsyste
ms.com>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=62393, dsn=2.0.0, stat=Sent
Oct 14 06:46:57 mail sendmail[21577]: k9E1Gtfp021576: to=<hr@scriptacomsystems.c
om>, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=62393, dsn=2.0.0, stat=Sent
Oct 14 06:46:57 mail sendmail[18768]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:46:58 mail sendmail[21503]: k98N5p2H013143: to=<betsylane@yahoo.com>,<
betsylangf
or@yahoo.c
om>,<betsy
langford71
04@yahoo.c
om>,<betsy
langford71
0@yahoo.co
m>,<betsyl
anglais@ya
hoo.com>, delay=5+02:08:51, xdelay=00:00:03, mailer=esmtp, pri=377899, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:46:58 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 111000
Oct 14 06:47:00 mail sendmail[18768]: k9DLe1o6018768: to=<jikbemgdtpfvv@caller.c
om>, delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=78717, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as 5CA4D5CBB60)
Oct 14 06:47:00 mail sendmail[21503]: k9C5ingq013765: to=<donnagagne@yahoo.com>,
<donnagail
00@yahoo.c
om>,<donna
gail1156@y
ahoo.com>,
<donnagail
1956@yahoo
.com>,<don
nagail195@
yahoo.com>
,<ecdaddy6
7801@yahoo
.com>, delay=1+19:29:49, xdelay=00:00:02, mailer=esmtp, pri=377899, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:47:00 mail sendmail[21503]: k990cBGE014738: to=<cathys02@bellsouth.net
>,<cathys1
234@bellso
uth.net>,<
cathys1250
@bellsouth
.net>,<cat
hys1@bells
outh.net>,
<cathys@be
llsouth.ne
t>, delay=5+00:38:37, xdelay=00:00:00, mailer=esmtp, pri=377902, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:00 mail sendmail[21503]: k990cBGE014738: k9D7e1xv021503: DSN: Cannot send message for 5 days
Oct 14 06:47:02 mail sendmail[21503]: k9D7e1xv021503: to=<tovvwdiuchkt@bellauk.c
om>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79147, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:47:02 mail sendmail[21503]: k9D7e1xv021503: k9D7e1xw021503: return to sender: User unknown
Oct 14 06:47:03 mail sendmail[21503]: k9D7e1xw021503: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80171, dsn=2.0.0, stat=Sent
Oct 14 06:47:07 mail sendmail[21503]: k98IogB2008777: to=<george_moussa@yahoo.co
m>,<george
_moya@yaho
o.com>,<ge
orge_mpls@
yahoo.com>
,<george_m
ro@yahoo.c
om>,<georg
e_msgt@yah
oo.com>, delay=5+06:24:26, xdelay=00:00:04, mailer=esmtp, pri=377905, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:47:07 mail sendmail[21503]: k990Qo4k014504: to=<melodyh@bellsouth.net>
,<melodyhe
ad@bellsou
th.net>,<m
elodyj@bel
lsouth.net
>,<melodyj
williams@b
ellsouth.n
et>,<melod
yki@bellso
uth.net>, delay=5+00:48:24, xdelay=00:00:00, mailer=esmtp, pri=377911, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:07 mail sendmail[21503]: k990Qo4k014504: k9D7e1xx021503: DSN: Cannot send message for 5 days
Oct 14 06:47:10 mail sendmail[21503]: k9D7e1xx021503: to=<gtargmwboyamz@brianken
nedy.co.uk
>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=79156, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:47:12 mail sendmail[21503]: k9D7e1xx021503: k9D7e100021503: return to sender: User unknown
Oct 14 06:47:12 mail sendmail[21503]: k9D7e100021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80180, dsn=2.0.0, stat=Sent
Oct 14 06:47:16 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 112000
Oct 14 06:47:16 mail sendmail[18768]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+04:50:41, xdelay=00:00:16, mailer=esmtp, pri=1007448, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:47:17 mail sendmail[18768]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+12:11:54, xdelay=00:00:00, mailer=esmtp, pri=1007452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+10:15:31, xdelay=00:00:00, mailer=esmtp, pri=1007456, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+10:40:52, xdelay=00:00:00, mailer=esmtp, pri=1007460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+03:07:25, xdelay=00:00:00, mailer=esmtp, pri=1007469, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+23:03:17, xdelay=00:00:00, mailer=esmtp, pri=1007473, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+12:29:55, xdelay=00:00:00, mailer=esmtp, pri=1007818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+06:08:35, xdelay=00:00:00, mailer=esmtp, pri=1007830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+06:09:34, xdelay=00:00:00, mailer=esmtp, pri=1007830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[18768]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+06:42:26, xdelay=00:00:00, mailer=esmtp, pri=1007834, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:17 mail sendmail[21503]: k9B9qwHX031267: to=<justmeandmyhorse@yahoo
.com>,<jus
tmeandmyki
ds5@yahoo.
com>,<just
meandmyman
2000@yahoo
.com>,<jus
tmeandmyma
n2002@yaho
o.com>,<ju
stmeandmym
onkey@yaho
o.com>,<ju
stmeandmyp
up@yahoo.c
om>, delay=2+15:24:04, xdelay=00:00:05, mailer=esmtp, pri=377911, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta125.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:47:17 mail sendmail[21503]: k9B9qwHX031267: k9D7e101021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:47:17 mail sendmail[18768]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:36:30, xdelay=00:00:00, mailer=esmtp, pri=827839, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:18 mail sendmail[18768]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+15:06:38, xdelay=00:00:00, mailer=esmtp, pri=827850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:47:19 mail sendmail[21503]: k9D7e101021503: to=<hwzug@arsenal.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49157, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:47:20 mail sendmail[21503]: k9D7e101021503: k9D7e102021503: return to sender: User unknown
Oct 14 06:47:20 mail sendmail[21503]: k9D7e102021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50181, dsn=2.0.0, stat=Sent
Oct 14 06:47:22 mail sendmail[21503]: k9C59EN4009017: to=<kwam800@yahoo.com>,<kw
am_4_apjb@
yahoo.com>
,<kwam_96@
yahoo.com>
, delay=1+20:01:40, xdelay=00:00:02, mailer=esmtp, pri=377916, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta125.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:47:22 mail sendmail[21503]: k9C59EN4009017: k9D7e103021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:47:25 mail sendmail[21503]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:47:27 mail sendmail[21503]: k9D7e103021503: to=<pcmxidgrhimab@caller.c
om>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=49195, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as 089D113F8073)
Oct 14 06:47:40 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 113000
Oct 14 06:47:55 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 114000
Oct 14 06:48:17 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 115000
Oct 14 06:48:33 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 116000
Oct 14 06:48:50 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 117000
Oct 14 06:48:54 mail sendmail[18400]: k9919eQi015465: to=<ic@bhm.bellsouth.net>,
<icainc@bh
m.bellsout
h.net>, delay=5+00:07:24, xdelay=00:32:01, mailer=esmtp, pri=465637, relay=bhm.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:48:54 mail sendmail[18400]: k9919eQi015465: k9DKe184018400: sender notify: Cannot send message for 5 days
Oct 14 06:48:58 mail sendmail[18400]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:49:01 mail sendmail[18400]: k9DKe184018400: to=<vucphefcgl@caller.com>
, delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=76882, relay=mail.global.sprint.c
om. [62.209.45.169], dsn=2.0.0, stat=Sent (Ok: queued as E3B3A85007A)
Oct 14 06:49:10 mail sendmail[7286]: k9C8UWhS001976: to=<agreene@lig.bellsouth.
net>,<agre
iner@lig.b
ellsouth.n
et>,<agrif
f@lig.bell
south.net>
,<agriffin
@lig.bells
outh.net>,
<agriffis@
lig.bellso
uth.net>, delay=1+16:48:14, xdelay=00:32:00, mailer=esmtp, pri=1157990, relay=lig.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 06:49:14 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 118000
Oct 14 06:49:31 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 119000
Oct 14 06:49:38 mail sendmail[18400]: k9B6weTu019325: to=<slmann1@bellsouth.net>
,<slmannin
@bellsouth
.net>, delay=2+18:19:43, xdelay=00:00:36, mailer=esmtp, pri=916312, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:49:41 mail sendmail[18400]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:49:42 mail sendmail[18400]: k9AKhrTx012578: to=<harriet_newton@dell.co
m>, delay=3+04:29:53, xdelay=00:00:04, mailer=esmtp, pri=1006318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=5.5.4, stat=Service unavailable
Oct 14 06:49:42 mail sendmail[18400]: k9AKhrTx012578: to=<harriet_rook@dell.com>
, delay=3+04:29:53, xdelay=00:00:04, mailer=esmtp, pri=1006318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:49:42 mail sendmail[18400]: k9AKhrTx012578: to=<harriet_ruslan@dell.co
m>, delay=3+04:29:53, xdelay=00:00:04, mailer=esmtp, pri=1006318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:49:46 mail sendmail[18400]: k9AKhrTx012578: k9DKe185018400: sender notify: Service unavailable
Oct 14 06:49:46 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 120000
Oct 14 06:49:47 mail sendmail[18400]: k9DKe185018400: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:49:47 mail sendmail[18400]: k9DKe185018400: to=<lvkjvrawfw@centrapoint
.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=77566, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:49:47 mail sendmail[21583]: k9E1Jki4021583: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:49:47 mail sendmail[18400]: k9DKe185018400: k9DKe186018400: return to sender: Local configuration error
Oct 14 06:49:48 mail sendmail[18400]: k9DKe186018400: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=78590, dsn=2.0.0, stat=Sent
Oct 14 06:49:48 mail sendmail[18400]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.ne
t>,<d7ofus
7@bellsout
h.net>,<d7
stars@bell
south.net>
,<d7thstar
@bellsouth
.net>,<d7t
oes@bellso
uth.net>, delay=3+15:47:07, xdelay=00:00:00, mailer=esmtp, pri=1006324, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:49:49 mail sendmail[18400]: k9AHSbvc008173: to=<ckozy@bellsouth.net>,<
ckp116@bel
lsouth.net
>,<ckp1192
@bellsouth
.net>,<ckp
1@bellsout
h.net>,<ck
p@bellsout
h.net>, delay=3+07:51:07, xdelay=00:00:00, mailer=esmtp, pri=1096328, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:49:49 mail sendmail[18400]: k9B4iu4j005638: to=<servigon@bellsouth.net
>,<servil@
bellsouth.
net>, delay=2+20:34:10, xdelay=00:00:00, mailer=esmtp, pri=1096330, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:50:09 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 121000
Oct 14 06:50:24 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 122000
Oct 14 06:50:47 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 123000
Oct 14 06:50:56 mail sendmail[7772]: k9BHPF42022180: to=<clarkt@cha.bellsouth.n
et>, delay=2+07:54:28, xdelay=00:32:06, mailer=esmtp, pri=714819, relay=cha.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with cha.bellsouth.net.
Oct 14 06:51:04 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 124000
Oct 14 06:51:11 mail sendmail[7286]: k9AElKC7004656: to=<pdyohhsxgqc@arabia.com
>, delay=2+06:01:40, xdelay=00:02:01, mailer=esmtp, pri=1338717, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:51:20 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 125000
Oct 14 06:51:31 mail sendmail[21585]: k9E1LVgE021585: ruleset=check_rcpt, arg1=<bt@scriptacomsystems
>, relay=[59.92.135.232], reject=550 5.7.1 <bt@scriptacomsystems>... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:51:31 mail sendmail[21585]: k9E1LVgE021585: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:51:32 mail sendmail[21585]: k9E1LVgF021585: ruleset=check_rcpt, arg1=<mt@scriptasomsystems
.com>, relay=[59.92.135.232], reject=550 5.7.1 <mt@scriptasomsystems.com>
... Relaying denied. IP name lookup failed [59.92.135.232]
Oct 14 06:51:32 mail sendmail[21585]: k9E1LVgF021585: from=<support@scriptacomsy
stems.com>
, size=0, class=0, nrcpts=3, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:51:33 mail sendmail[21585]: k9E1LVgG021585: from=<support@scriptacomsy
stems.com>
, size=7256, class=0, nrcpts=3, msgid=<002801c6ef2f$f3b42a
50$6401a8c
0@computer
100>, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 06:51:39 mail sendmail[7286]: k9C1k8Ge002852: to=<vdevore@bellsouth.net>
, delay=1+23:35:08, xdelay=00:00:28, mailer=esmtp, pri=1338780, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:51:39 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 06:51:39 mail sendmail[21586]: k9E1LVgG021585: to=<asokan@scriptacomsyste
ms.com>, ctladdr=<support@scriptaco
msystems.c
om> (525/525), delay=00:00:06, xdelay=00:00:00, mailer=local, pri=97427, dsn=2.0.0, stat=Sent
Oct 14 06:51:39 mail sendmail[21586]: k9E1LVgG021585: to=<jayasri@scriptacomsyst
ems.com>, ctladdr=<support@scriptaco
msystems.c
om> (525/525), delay=00:00:06, xdelay=00:00:00, mailer=local, pri=97427, dsn=2.0.0, stat=Sent
Oct 14 06:51:40 mail sendmail[7286]: k9BES8va013172: to=<hdianna@bellsouth.net>
, delay=2+10:51:22, xdelay=00:00:00, mailer=esmtp, pri=1428783, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:40 mail sendmail[7286]: k9BHIl5J021859: to=<band8@bellsouth.net>, delay=2+08:02:44, xdelay=00:00:00, mailer=esmtp, pri=1428794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:40 mail sendmail[7286]: k9BG8b2b018455: to=<tina66@bellsouth.net>,
delay=2+09:09:13, xdelay=00:00:00, mailer=esmtp, pri=1428799, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:41 mail sendmail[7286]: k9BDm45f011230: to=<bklyncoogi@bellsouth.n
et>, delay=2+11:33:23, xdelay=00:00:00, mailer=esmtp, pri=1428800, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:41 mail sendmail[7286]: k9BHb0fY022719: to=<g_amy@bellsouth.net>,<
g_ana@bell
south.net>
,<g_and_g@
bellsouth.
net>,<g_an
dre@bellso
uth.net>,<
g_andrea@b
ellsouth.n
et>, delay=2+07:43:32, xdelay=00:00:00, mailer=esmtp, pri=1428809, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:43 mail sendmail[21586]: STARTTLS=client, relay=mail.etransmedia.com
., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 06:51:44 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 126000
Oct 14 06:51:44 mail sendmail[21586]: k9E1LVgG021585: to=<operations@etransmedia
.com>, ctladdr=<support@scriptaco
msystems.c
om> (525/525), delay=00:00:11, xdelay=00:00:05, mailer=esmtp, pri=97427, relay=mail.etransmedia.com
. [69.9.164.210], dsn=2.0.0, stat=Sent (Ok: queued as 2358436C93)
Oct 14 06:51:52 mail sendmail[7772]: k9BA7ScN032037: to=<ibe@bellsouth.net>, delay=2+15:13:18, xdelay=00:00:55, mailer=esmtp, pri=1164822, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:51:52 mail sendmail[7772]: k9BDkjcB011138: to=<galleyj@bellsouth.net>
, delay=2+11:35:05, xdelay=00:00:00, mailer=esmtp, pri=1164822, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:52 mail sendmail[7772]: k9C8dtnw003224: to=<suckdick@bellsouth.net
>,<suckdog
@bellsouth
.net>,<suc
ker1@bells
outh.net>,
<sucker@be
llsouth.ne
t>,<suckit
@bellsouth
.net>, delay=1+16:41:01, xdelay=00:00:00, mailer=esmtp, pri=1164824, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:53 mail sendmail[7772]: k9B9xjmA031680: to=<eyes4lda@bellsouth.net
>, delay=2+15:21:53, xdelay=00:00:00, mailer=esmtp, pri=1164827, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:53 mail sendmail[7772]: k9BFdhWQ016764: to=<alisagayle@bellsouth.n
et>,<cypyr
et@bellsou
th.net>,<i
udhforl@be
llsouth.ne
t>, delay=2+09:39:49, xdelay=00:00:00, mailer=esmtp, pri=1164828, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:53 mail sendmail[7772]: k9BFOlLl016044: to=<fmary@bellsouth.net>, delay=2+09:55:44, xdelay=00:00:00, mailer=esmtp, pri=1164829, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:53 mail sendmail[7772]: k9BF76ar015003: to=<pokeone@bellsouth.net>
,<poker1@b
ellsouth.n
et>,<poker
@bellsouth
.net>,<pok
er_21@bell
south.net>
,<pokerbob
@bellsouth
.net>, delay=2+10:13:57, xdelay=00:00:00, mailer=esmtp, pri=1164831, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:54 mail sendmail[7772]: k9BH6Hbx021181: to=<temeka1@bellsouth.net>
, delay=2+08:12:54, xdelay=00:00:00, mailer=esmtp, pri=1164838, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:51:54 mail sendmail[7772]: k9BDr2GB011583: to=<batres@mail.bellsouth.
net>, delay=2+11:28:06, xdelay=00:00:00, mailer=esmtp, pri=1164840, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:01 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 127000
Oct 14 06:52:19 mail sendmail[18768]: k9BA24wZ031785: timeout waiting for input from mx1.mail.yahoo.com. during client greeting
Oct 14 06:52:24 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 128000
Oct 14 06:52:31 mail sendmail[18768]: k9BA24wZ031785: to=<scrumpmoss42@yahoo.com
>,<scrumpn
asty@yahoo
.com>,<scr
umponit04@
yahoo.com>
,<scrumpr@
yahoo.com>
,<scrumprs
@yahoo.com
>,<scrumps
2004@yahoo
.com>, delay=2+15:18:06, xdelay=00:05:13, mailer=esmtp, pri=737858, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:52:33 mail sendmail[18768]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:54:11, xdelay=00:00:00, mailer=esmtp, pri=647860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:33 mail sendmail[18768]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+08:14:31, xdelay=00:00:00, mailer=esmtp, pri=737860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:37 mail sendmail[19635]: k97N0l43023186: to=<elys@clt.bellsouth.net
>,<elyse@c
lt.bellsou
th.net>, delay=6+02:20:00, xdelay=00:32:00, mailer=esmtp, pri=377836, relay=clt.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:52:37 mail sendmail[19635]: k97N0l43023186: k9DMe1Yc019635: DSN: Cannot send message for 5 days
Oct 14 06:52:37 mail sendmail[18768]: k9BAT6G4032640: to=<joeybassjr@yahoo.com>,
<joeybasta
rdo@yahoo.
com>,<joey
battaglio@
yahoo.com>
,<joeybatz
2003@yahoo
.com>,<joe
ybauder@ya
hoo.com>,<
joeybayani
@yahoo.com
>, delay=2+14:52:47, xdelay=00:00:03, mailer=esmtp, pri=647864, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:52:37 mail sendmail[18768]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:35:50, xdelay=00:00:00, mailer=esmtp, pri=647865, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:38 mail sendmail[19635]: k9DMe1Yc019635: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:52:38 mail sendmail[19635]: k9DMe1Yc019635: to=<gbyvgub@centrapoint.co
m>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79083, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:52:38 mail sendmail[21592]: k9E1McRX021592: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:52:38 mail sendmail[19635]: k9DMe1Yc019635: k9DMe1Yd019635: return to sender: Local configuration error
Oct 14 06:52:39 mail sendmail[19635]: k9DMe1Yd019635: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=80107, dsn=2.0.0, stat=Sent
Oct 14 06:52:42 mail sendmail[18768]: k9C4PoGt007520: to=<lonisha1205@yahoo.com>
,<lonisha2
000@yahoo.
com>,<loni
shagraham@
yahoo.com>
,<lonishag
reen@yahoo
.com>,<lon
ishalton3@
yahoo.com>
,<lonishel
don@yahoo.
com>, delay=1+20:56:29, xdelay=00:00:04, mailer=esmtp, pri=647869, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:52:42 mail sendmail[18768]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:41:33, xdelay=00:00:00, mailer=esmtp, pri=647870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:42 mail sendmail[18768]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:29:50, xdelay=00:00:00, mailer=esmtp, pri=647870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:43 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 129000
Oct 14 06:52:46 mail sendmail[18768]: k9BBjgto004295: to=<kreture73@yahoo.com>,<
kreturex@y
ahoo.com>,
<krety4@ya
hoo.com>,<
kretyos777
@yahoo.com
>,<kretz02
@yahoo.com
>,<kretz1@
yahoo.com>
, delay=2+13:35:58, xdelay=00:00:04, mailer=esmtp, pri=557871, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:52:46 mail sendmail[18768]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:12:22, xdelay=00:00:00, mailer=esmtp, pri=557873, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:46 mail sendmail[18768]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:46:39, xdelay=00:00:00, mailer=esmtp, pri=557874, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:51 mail sendmail[18768]: k9BBtREq004758: to=<princezzdanie@yahoo.co
m>,<prince
zzdawnz@ya
hoo.com>,<
princezzdd
@yahoo.com
>,<princez
zdezz18@ya
hoo.com>,<
princezzdr
agon@yahoo
.com>,<pri
ncezze6920
01@yahoo.c
om>, delay=2+13:23:14, xdelay=00:00:04, mailer=esmtp, pri=557874, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:52:52 mail sendmail[18768]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:26:13, xdelay=00:00:00, mailer=esmtp, pri=557878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:52 mail sendmail[18768]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:05:24, xdelay=00:00:00, mailer=esmtp, pri=557879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:52:56 mail sendmail[18768]: k9C8NF6w000887: to=<nickie19_flame@yahoo.c
om>,<nicki
e19m@yahoo
.com>,<nic
kie1eye@ya
hoo.com>,<
nickie1one
@yahoo.com
>,<nickie2
0008@yahoo
.com>,<nic
kie2000_20
00@yahoo.c
om>, delay=1+16:58:59, xdelay=00:00:04, mailer=esmtp, pri=557884, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 06:52:56 mail sendmail[18768]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:30:11, xdelay=00:00:00, mailer=esmtp, pri=557884, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:00 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 130000
Oct 14 06:53:01 mail sendmail[18768]: k9C8aBrb002824: to=<fthunter2000@yahoo.com
>,<fthuott
ewell@yaho
o.com>,<ft
hurber@yah
oo.com>,<f
thurlbutt_
611@yahoo.
com>,<fthu
rman@yahoo
.com>,<fth
uron@yahoo
.com>, delay=1+16:46:00, xdelay=00:00:05, mailer=esmtp, pri=557886, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:53:05 mail sendmail[18768]: k9B9qwHX031267: to=<justmeandmyhorse@yahoo
.com>,<jus
tmeandmyki
ds5@yahoo.
com>,<just
meandmyman
2000@yahoo
.com>,<jus
tmeandmyma
n2002@yaho
o.com>,<ju
stmeandmym
onkey@yaho
o.com>,<ju
stmeandmyp
up@yahoo.c
om>, delay=2+15:29:52, xdelay=00:00:04, mailer=esmtp, pri=467911, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:53:10 mail sendmail[18768]: k9C59EN4009017: to=<kwam800@yahoo.com>,<kw
am_4_apjb@
yahoo.com>
,<kwam_96@
yahoo.com>
, delay=1+20:07:28, xdelay=00:00:05, mailer=esmtp, pri=467916, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 2/1)
Oct 14 06:53:15 mail sendmail[18768]: k98NmEBS013858: to=<jillygalligan@yahoo.co
m>,<jillyg
arcia@yaho
o.com>,<ji
llygator@y
ahoo.com>,
<jillygeee
@yahoo.com
>,<toiyeue
mthatlongn
hungemkoye
utoi@yahoo
.com>, delay=5+01:33:14, xdelay=00:00:05, mailer=esmtp, pri=377919, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:53:20 mail sendmail[18768]: k985BxRJ028930: to=<blackbomber1997@yahoo.
com>,<blac
kbombr@yah
oo.com>,<b
lackbombsh
ell16@yaho
o.com>,<bl
ackbombshe
ll211@yaho
o.com>,<ja
ckienpears
on@yahoo.c
om>, delay=5+20:07:10, xdelay=00:00:05, mailer=esmtp, pri=377920, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:53:23 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 131000
Oct 14 06:53:24 mail sendmail[18768]: k98KCmRA009964: to=<oocoocoocoocoocoocooco
ocoocoocoo
@yahoo.com
>,<oocooke
oo@yahoo.c
om>,<oocoo
kiemonkeyo
o@yahoo.co
m>,<oocook
oonmm@yaho
o.com>,<oo
cool69r@ya
hoo.com>, delay=5+05:09:56, xdelay=00:00:04, mailer=esmtp, pri=377922, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:53:26 mail sendmail[19635]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+19:42:39, xdelay=00:00:42, mailer=esmtp, pri=917839, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:53:26 mail sendmail[19635]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+15:12:46, xdelay=00:00:00, mailer=esmtp, pri=917850, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:26 mail sendmail[19635]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:55:04, xdelay=00:00:00, mailer=esmtp, pri=737860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:26 mail sendmail[19635]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+08:15:24, xdelay=00:00:00, mailer=esmtp, pri=827860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:36:40, xdelay=00:00:00, mailer=esmtp, pri=737865, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:42:18, xdelay=00:00:00, mailer=esmtp, pri=737870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:30:35, xdelay=00:00:00, mailer=esmtp, pri=737870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:13:03, xdelay=00:00:00, mailer=esmtp, pri=647873, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:47:20, xdelay=00:00:00, mailer=esmtp, pri=647874, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:26:48, xdelay=00:00:00, mailer=esmtp, pri=647878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:05:59, xdelay=00:00:00, mailer=esmtp, pri=647879, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:27 mail sendmail[19635]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:30:42, xdelay=00:00:00, mailer=esmtp, pri=647884, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:29 mail sendmail[18768]: k98604KE029619: to=<wainainavictor@yahoo.c
om>,<waina
ink@yahoo.
com>,<wain
air@yahoo.
com>,<wain
aitwbuukih
hajsuwiwq@
yahoo.com>
,<wainamay
ana@yahoo.
com>, delay=5+19:22:39, xdelay=00:00:05, mailer=esmtp, pri=377926, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:53:30 mail sendmail[19635]: k9C6xOfm022449: to=<geo4904@yahoo.com>,<ge
o496614@ya
hoo.com>,<
geo498@yah
oo.com>,<g
eo4_86@yah
oo.com>,<g
eo4adult@y
ahoo.com>,
<geo4c@yah
oo.com>, delay=1+18:23:10, xdelay=00:00:03, mailer=esmtp, pri=377935, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:53:33 mail sendmail[19635]: k9BFHgOX015644: to=<didao_riq@yahoo.com>,<
didao_tren
mang@yahoo
.com>,<did
aochenmay_
hn@yahoo.c
om>,<didao
demkocoanh
@yahoo.com
>,<didaoph
olangthang
@yahoo.com
>,<didaotr
enmay@yaho
o.com>, delay=2+09:58:56, xdelay=00:00:03, mailer=esmtp, pri=377949, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 06:53:34 mail sendmail[18768]: k9C400GM006564: to=<medman069@yahoo.com>,<
medman070@
yahoo.com>
,<medman08
08@yahoo.c
om>,<medma
n0u812@yah
oo.com>,<m
edman1011@
yahoo.com>
,<medman10
1@yahoo.co
m>, delay=1+21:22:19, xdelay=00:00:05, mailer=esmtp, pri=377944, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:53:35 mail sendmail[19635]: k9C8dgkB003214: to=<cotersur@yahoo.com>,<c
otertop@ya
hoo.com>,<
coteruls@y
ahoo.com>,
<coterunr@
yahoo.com>
,<coterwas
@yahoo.com
>,<coterya
n@yahoo.co
m>, delay=1+16:43:15, xdelay=00:00:02, mailer=esmtp, pri=377953, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:53:38 mail sendmail[18768]: k981jHSw026004: to=<milad_khshgelpasande_b
ahal_2004@
yahoo.com>
,<milad_ki
ller@yahoo
.com>,<mil
ad_killer_
cn@yahoo.c
om>,<milad
_king_of_b
oy_2003@ya
hoo.com>,<
milad_king
boy@yahoo.
com>, delay=5+23:36:41, xdelay=00:00:04, mailer=esmtp, pri=377958, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:53:39 mail sendmail[19635]: k9C8VWUr002187: to=<paligirl326@yahoo.com>
,<paligirl
4life@yaho
o.com>,<pa
ligirlus@y
ahoo.com>,
<paligo@ya
hoo.com>,<
paligorski
@yahoo.com
>,<paligre
en@yahoo.c
om>, delay=1+16:51:34, xdelay=00:00:04, mailer=esmtp, pri=377960, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:53:41 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 132000
Oct 14 06:53:41 mail sendmail[19635]: k9C50u6A008750: to=<chronos696969@yahoo.co
m>,<chrono
s696@yahoo
.com>,<chr
onos69@yah
oo.com>,<c
hronos69us
@yahoo.com
>,<chronos
70@yahoo.c
om>,<chron
os7@yahoo.
com>, delay=1+20:20:18, xdelay=00:00:02, mailer=esmtp, pri=377986, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 06:53:41 mail sendmail[19635]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+16:48:17, xdelay=00:00:00, mailer=esmtp, pri=377994, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:41 mail sendmail[19635]: k9C8XjhQ002451: k9DMe1Ye019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:53:44 mail sendmail[18768]: k9C5mo7K014258: to=<sheila429@yahoo.com>,<
sheila4320
04@yahoo.c
om>,<sheil
a4342@yaho
o.com>,<sh
eila4360@y
ahoo.com>,
<sheila437
01@yahoo.c
om>,<sheil
a43@yahoo.
com>, delay=1+19:32:30, xdelay=00:00:06, mailer=esmtp, pri=377969, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:53:45 mail sendmail[19635]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:53:47 mail sendmail[19635]: k9DMe1Ye019635: to=<mbhovjvhheut@caller.co
m>, delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=49250, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as 1851B603A6A)
Oct 14 06:53:47 mail sendmail[19635]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:33:18, xdelay=00:00:00, mailer=esmtp, pri=378006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:47 mail sendmail[19635]: k9C7lIjJ028927: k9DMe1Yf019635: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:53:48 mail sendmail[19635]: k9DMe1Yf019635: to=<gnhksmhd@centrapoint.c
om>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49266, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:53:48 mail sendmail[19635]: k9DMe1Yf019635: k9DMe1Yg019635: return to sender: Local configuration error
Oct 14 06:53:48 mail sendmail[19635]: k9DMe1Yg019635: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50290, dsn=2.0.0, stat=Sent
Oct 14 06:53:49 mail sendmail[18768]: k9C7Fc0I024266: to=<cositajuicy@yahoo.com>
,<cositali
75@yahoo.c
om>,<cosit
alinda1220
@yahoo.com
>,<cosital
inda2027@y
ahoo.com>,
<cositalin
da333@yaho
o.com>,<co
sitalinda5
6@yahoo.co
m>, delay=1+18:07:30, xdelay=00:00:05, mailer=esmtp, pri=377999, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:53:49 mail sendmail[18768]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:33:20, xdelay=00:00:00, mailer=esmtp, pri=468006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:53:51 mail sendmail[19635]: k9C67BX8016545: to=<mr_basketball_va@yahoo
.com>,<mr_
basketball
fl3@yahoo.
com>,<mr_b
asketballg
uy@yahoo.c
om>,<mr_ba
ss_guy@yah
oo.com>,<m
r_bass_man
_2@yahoo.c
om>,<mr_ba
ssguitar@y
ahoo.com>,
delay=1+19:16:15, xdelay=00:00:03, mailer=esmtp, pri=378007, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 06:53:53 mail sendmail[18768]: k9C6lHXQ021240: to=<sylvia_tan1993@yahoo.c
om>,<sylvi
a_tanaya@y
ahoo.com>,
<sylvia_ta
r@yahoo.co
m>,<sylvia
_tarin@yah
oo.com>,<s
ylvia_tech
@yahoo.com
>,<sylvia_
terry@yaho
o.com>, delay=1+18:36:07, xdelay=00:00:04, mailer=esmtp, pri=378008, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:53:55 mail sendmail[19635]: k9C7bi88027463: to=<rickh_623@yahoo.com>,<
rickh_67@y
ahoo.com>,
<rickh_920
57@yahoo.c
om>,<rickh
_ncs@yahoo
.com>,<ric
kha43@yaho
o.com>,<ri
ckhaas@yah
oo.com>, delay=1+17:44:15, xdelay=00:00:04, mailer=esmtp, pri=378012, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:53:58 mail sendmail[19635]: k9C87Qrt031313: to=<yeumai_nguoiay_05@yaho
o.com>,<ye
umai_nguoi
aymathoi@y
ahoo.com>,
<yeumai_ng
uoioi_1761
14@yahoo.c
om>,<yeuma
i_nguoioi_
20042008@y
ahoo.com>,
<yeumai_nh
eanh198420
03@yahoo.c
om>,<yeuma
i_nheanh33
3@yahoo.co
m>, delay=1+17:15:09, xdelay=00:00:02, mailer=esmtp, pri=378036, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 06:53:58 mail sendmail[18768]: k9C8Q1no001166: to=<ifabwana@yahoo.com>,<i
fac@yahoo.
com>,<ifac
coo@yahoo.
com>,<ifac
dp@yahoo.c
om>,<iface
19@yahoo.c
om>,<iface
66@yahoo.c
om>, delay=1+16:54:56, xdelay=00:00:04, mailer=esmtp, pri=378025, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:54:01 mail sendmail[19635]: k9C5PIrL010995: to=<maycophailachokhong@ya
hoo.com>,<
maycophait
hanganmatl
onko_hn200
5@yahoo.co
m>,<maycor
05@yahoo.c
om>,<mayco
ramhoon@ya
hoo.com>,<
maycorina@
yahoo.com>
,<maycorn@
yahoo.com>
, delay=1+19:58:00, xdelay=00:00:03, mailer=esmtp, pri=378051, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:54:02 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 133000
Oct 14 06:54:04 mail sendmail[18768]: k9C6nKSA021438: to=<savasseven@yahoo.com>,
<savasta62
01@yahoo.c
om>,<savas
ta666@yaho
o.com>,<sa
vastano@ya
hoo.com>,<
savastanos
2000@yahoo
.com>,<sav
astao@yaho
o.com>, delay=1+18:34:34, xdelay=00:00:06, mailer=esmtp, pri=378067, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:54:04 mail sendmail[19635]: k9C8AB0f031664: to=<ngoisaocodon6789@yahoo
.com>,<ngo
isaocodon6
7@yahoo.co
m>,<ngoisa
ocodon712@
yahoo.com>
,<ngoisaoc
odon7590@y
ahoo.com>,
<ngoisaoco
don782865@
yahoo.com>
,<ngoisaoc
odon800020
007@yahoo.
com>, delay=1+17:13:06, xdelay=00:00:03, mailer=esmtp, pri=378093, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:54:08 mail sendmail[18768]: k9C4VfXQ007819: to=<cheergirl75418@yahoo.c
om>,<cheer
girl777@ya
hoo.com>,<
cheergirl7
82@yahoo.c
om>,<cheer
girl790703
@yahoo.com
>,<cheergi
rl80@yahoo
.com>,<che
ergirl82@y
ahoo.com>,
delay=1+20:49:57, xdelay=00:00:04, mailer=esmtp, pri=378096, relay=mx2.mail.yahoo.com. [4.79.181.135], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:54:08 mail sendmail[18768]: k93J08ZZ022691: to=<duckkey@bellsouth.net>
,<duckkeys
haron@bell
south.net>
,<duckki@b
ellsouth.n
et>,<duckk
ie@bellsou
th.net>,<d
uckkorea@b
ellsouth.n
et>, delay=10+06:22:01, xdelay=00:00:00, mailer=esmtp, pri=378766, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:54:08 mail sendmail[18768]: k93J08ZZ022691: k9DLe1o7018768: DSN: Cannot send message for 5 days
Oct 14 06:54:08 mail sendmail[19635]: k93FE6O9004418: to=<tim28_99@yahoo.com>,<t
im28buy@ya
hoo.com>, delay=10+10:09:09, xdelay=00:00:04, mailer=esmtp, pri=378760, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:54:10 mail sendmail[18768]: k9DLe1o7018768: to=<tbkvlhahlw@bellauk.com
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79975, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:54:11 mail sendmail[18768]: k9DLe1o7018768: k9DLe1o8018768: return to sender: User unknown
Oct 14 06:54:11 mail sendmail[18768]: k9DLe1o8018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80999, dsn=2.0.0, stat=Sent
Oct 14 06:54:19 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 134000
Oct 14 06:54:26 mail sendmail[9082]: k9C3XOUd005915: to=<kshannon@bna.bellsouth
.net>,<ksh
ep@bna.bel
lsouth.net
>, delay=1+21:50:01, xdelay=00:32:00, mailer=esmtp, pri=1247912, relay=bna.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with bna.bellsouth.net.
Oct 14 06:54:44 mail sendmail[20967]: grew WorkList for /var/spool/mqueue to 135000
Oct 14 06:54:54 mail sendmail[9082]: k9BE6jru012288: to=<robodel@bellsouth.net>
, delay=2+11:17:51, xdelay=00:00:28, mailer=esmtp, pri=1517944, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:54:54 mail sendmail[9082]: k9C7TYQd026282: to=<dabom13579@bellsouth.n
et>,<dabom
1357@bells
outh.net>,
<dabom135@
bellsouth.
net>,<dabo
m1631@bell
south.net>
,<dabom16@
bellsouth.
net>, delay=1+17:48:03, xdelay=00:00:00, mailer=esmtp, pri=1517961, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:07 mail sendmail[18768]: k93Kf3UG030783: to=<sherry0054@yahoo.com>,
<sherry007
2401@yahoo
.com>,<she
rry0072401
us@yahoo.c
om>,<sherr
y007_21@ya
hoo.com>,<
sherry00@y
ahoo.com>,
delay=10+04:43:27, xdelay=00:00:56, mailer=esmtp, pri=378768, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:55:08 mail sendmail[15231]: k9B8EOkm027458: to=<pc1@lig.bellsouth.net>
,<pc3@lig.
bellsouth.
net>,<pc4@
lig.bellso
uth.net>,<
pc93@lig.b
ellsouth.n
et>,<pca@l
ig.bellsou
th.net>, delay=2+17:08:47, xdelay=00:32:00, mailer=esmtp, pri=732070, relay=lig.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 06:55:09 mail sendmail[1042]: k99KOVE2021522: to=<gower@bhm.bellsouth.ne
t>, delay=4+04:58:02, xdelay=00:32:06, mailer=esmtp, pri=642080, relay=bhm.bellsouth.net. [205.152.58.129], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 06:55:11 mail sendmail[18768]: k93ClN4p027870: to=<anagymf@yahoo.com>,<an
agynsyko@y
ahoo.com>,
<anagyrine
@yahoo.com
>,<anagyri
s@yahoo.co
m>,<anagzl
z@yahoo.co
m>, delay=10+12:37:46, xdelay=00:00:04, mailer=esmtp, pri=378769, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:55:15 mail sendmail[18768]: k93Ih0o8021120: to=<lacy1720@yahoo.com>,<l
acy17224@y
ahoo.com>,
<lacy1769@
yahoo.com>
,<lacy17@y
ahoo.com>,
<lacy18390
@yahoo.com
>, delay=10+06:40:57, xdelay=00:00:04, mailer=esmtp, pri=378771, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:55:18 mail sendmail[18768]: k944OtTk026382: to=<kali7833@yahoo.com>,<k
ali789@yah
oo.com>,<k
ali792002@
yahoo.com>
,<kali79ch
ick@yahoo.
com>,<kali
818gurl@ya
hoo.com>, delay=9+20:58:46, xdelay=00:00:03, mailer=esmtp, pri=378774, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:55:21 mail sendmail[18768]: k93FrIWD006188: to=<skamran79@yahoo.com>,<
skamran_19
72@yahoo.c
om>,<skamr
an_pk@yaho
o.com>,<sk
amrani2002
@yahoo.com
>,<skamran
z@yahoo.co
m>, delay=10+09:31:38, xdelay=00:00:02, mailer=esmtp, pri=378774, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta159.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later [#4.16.5].
Oct 14 06:55:22 mail sendmail[18768]: k93FrIWD006188: k9DLe1o9018768: DSN: Cannot send message for 5 days
Oct 14 06:55:28 mail sendmail[1042]: k99HHFTR012517: to=<apa8ball@bellsouth.net
>, delay=4+08:01:48, xdelay=00:00:19, mailer=esmtp, pri=1002082, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:55:28 mail sendmail[1042]: k9AA2oiY028045: to=<mayf29071@bellsouth.ne
t>,<mayf44
05@bellsou
th.net>,<m
ayf5559@be
llsouth.ne
t>,<mayf56
22@bellsou
th.net>,<m
ayf5994@be
llsouth.ne
t>, delay=3+15:21:18, xdelay=00:00:00, mailer=esmtp, pri=1002084, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:28 mail sendmail[1042]: k99DXnpe005827: to=<articglo@bellsouth.net
>, delay=4+11:47:44, xdelay=00:00:00, mailer=esmtp, pri=1092088, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:28 mail sendmail[1042]: k99Kb2cQ022147: to=<jazee@bellsouth.net>, delay=4+04:44:26, xdelay=00:00:00, mailer=esmtp, pri=1092088, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:35 mail sendmail[15231]: k99LDfDn023441: to=<lp1012@bellsouth.net>,
<rhitchco@
bellsouth.
net>, delay=4+04:10:17, xdelay=00:00:27, mailer=esmtp, pri=1092074, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:55:35 mail sendmail[15231]: k9AKXSI1012299: to=<wahligs@bellsouth.net>
,<wahlm@be
llsouth.ne
t>,<wahls@
bellsouth.
net>,<wahl
sd@bellsou
th.net>,<w
ahm@bellso
uth.net>, delay=3+04:48:30, xdelay=00:00:00, mailer=esmtp, pri=1182074, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:35 mail sendmail[15231]: k9AKXSHx012299: to=<wahlen@bellsouth.net>,
<wahlenbr@
bellsouth.
net>,<wahl
er@bellsou
th.net>,<w
ahlf@bells
outh.net>,
<wahlg@bel
lsouth.net
>, delay=3+04:48:54, xdelay=00:00:00, mailer=esmtp, pri=1182078, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:40 mail sendmail[1042]: k99EU7ga008091: to=<assh_jn@yahoo.co.in>, delay=4+10:52:37, xdelay=00:00:12, mailer=esmtp, pri=1092092, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:55:43 mail sendmail[1042]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:55:44 mail sendmail[1042]: k9A8hmKf023136: to=<a_mccall@dell.com>, delay=3+16:40:59, xdelay=00:00:04, mailer=esmtp, pri=1092093, relay=smtp.ins.dell.com. [143.166.224.193], dsn=5.5.4, stat=Service unavailable
Oct 14 06:55:44 mail sendmail[1042]: k9A8hmKf023136: k9D9e18a001042: sender notify: Service unavailable
Oct 14 06:55:56 mail sendmail[1042]: k9D9e18a001042: to=<mbxainqgijwfm@chinabyt
e.com>, delay=00:00:12, xdelay=00:00:11, mailer=esmtp, pri=73340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Resources temporarily not available - Please try again later [#4.16.5].
Oct 14 06:55:56 mail sendmail[1042]: k9AF9sdb005089: to=<lovemuffin@bellsouth.n
et>,<lovem
y44@bellso
uth.net>,<
lovemybaby
@bellsouth
.net>,<lov
emycar@bel
lsouth.net
>,<lovemyc
ritters@be
llsouth.ne
t>, delay=3+10:14:11, xdelay=00:00:00, mailer=esmtp, pri=1092097, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:56 mail sendmail[1042]: k9AHpCA0008807: to=<boy4brothr@bellsouth.n
et>,<boy4b
ug@bellsou
th.net>,<b
oy4buyer@b
ellsouth.n
et>,<boy4d
ad26@bells
outh.net>,
<boy4dad39
0@bellsout
h.net>, delay=3+07:34:37, xdelay=00:00:00, mailer=esmtp, pri=1092103, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:56 mail sendmail[1042]: k9AHhTwd008613: to=<boy4brothr@bellsouth.n
et>,<boy4b
ug@bellsou
th.net>,<b
oy4buyer@b
ellsouth.n
et>,<boy4d
ad26@bells
outh.net>,
<boy4dad39
0@bellsout
h.net>, delay=3+07:36:06, xdelay=00:00:00, mailer=esmtp, pri=1092103, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:56 mail sendmail[1042]: k99MCQTW025345: to=<at09@bellsouth.net>, delay=4+03:12:04, xdelay=00:00:00, mailer=esmtp, pri=1092127, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k99LYwVR024123: to=<mariq@bellsouth.net>, delay=4+03:49:15, xdelay=00:00:00, mailer=esmtp, pri=1003057, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9AKDlCh011818: to=<rdgaines@bellsouth.net
>,<rdgales
@bellsouth
.net>,<rdg
arris@bell
south.net>
,<rdgary@b
ellsouth.n
et>, delay=3+05:10:22, xdelay=00:00:00, mailer=esmtp, pri=1093073, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k99AvE91015389: to=<degas88@bellsouth.net>
, delay=4+14:26:56, xdelay=00:00:00, mailer=esmtp, pri=1003075, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k99KQqxQ021625: to=<gotto@bellsouth.net>, delay=4+04:56:19, xdelay=00:00:00, mailer=esmtp, pri=1093075, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9ACirY0000595: to=<swami23@bellsouth.net>
,<swami2@b
ellsouth.n
et>,<swami
3@bellsout
h.net>,<sw
ami@bellso
uth.net>,<
swamiji@be
llsouth.ne
t>, delay=3+12:40:31, xdelay=00:00:00, mailer=esmtp, pri=1093086, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9AB1UDL029653: to=<ttbaby82499@bellsouth.
net>,<ttba
iley@bells
outh.net>,
<ttbates@b
ellsouth.n
et>,<ttbbc
@bellsouth
.net>,<ttb
c1223@bell
south.net>
, delay=3+14:17:49, xdelay=00:00:00, mailer=esmtp, pri=1003088, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9ABA21o029800: to=<ttbaby82499@bellsouth.
net>,<ttba
iley@bells
outh.net>,
<ttbates@b
ellsouth.n
et>,<ttbbc
@bellsouth
.net>,<ttb
c1223@bell
south.net>
, delay=3+14:15:52, xdelay=00:00:00, mailer=esmtp, pri=1003088, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9B73VHH019960: to=<coacagee@bellsouth.net
>,<coacamp
@bellsouth
.net>, delay=2+18:21:23, xdelay=00:00:00, mailer=esmtp, pri=1003096, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9A9BBYn026621: to=<dsables@bellsouth.net>
,<dsabo@be
llsouth.ne
t>,<dsabog
al@bellsou
th.net>,<d
sabol@bell
south.net>
,<dsabquin
n@bellsout
h.net>, delay=3+16:09:56, xdelay=00:00:00, mailer=esmtp, pri=1093098, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:57 mail sendmail[1042]: k9AEhUVG004592: to=<franklin35344@bellsout
h.net>,<fr
anklin3534
@bellsouth
.net>,<fra
nklin4237@
bellsouth.
net>,<fran
klin42@bel
lsouth.net
>,<frankli
n4@bellsou
th.net>, delay=3+10:41:35, xdelay=00:00:00, mailer=esmtp, pri=1093101, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:58 mail sendmail[1042]: k990vMi8015145: to=<greatgeorge@bellsouth.
net>,<grea
tgetaways@
bellsouth.
net>,<grea
tgifts@bel
lsouth.net
>, delay=5+00:26:59, xdelay=00:00:00, mailer=esmtp, pri=1093621, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:55:58 mail sendmail[1042]: k990vMi8015145: k9D9e18b001042: sender notify: Cannot send message for 5 days
Oct 14 06:55:59 mail sendmail[1042]: k9D9e18b001042: to=<berapul@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=74867, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:56:00 mail sendmail[1042]: k9D9e18b001042: k9D9e18c001042: return to sender: User unknown
Oct 14 06:56:00 mail sendmail[1042]: k9D9e18c001042: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=75891, dsn=2.0.0, stat=Sent
Oct 14 06:56:07 mail sendmail[13928]: k97DQQ1N021703: to=<thegroup@msy.bellsouth
.net>, delay=6+11:58:21, xdelay=00:32:00, mailer=esmtp, pri=377842, relay=msy.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 06:56:07 mail sendmail[13928]: k97DQQ1N021703: k9DDe1nX013928: DSN: Cannot send message for 5 days
Oct 14 06:56:13 mail sendmail[13928]: k9DDe1nX013928: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:56:13 mail sendmail[13928]: k9DDe1nX013928: to=<eiijgdemym@centrapoint
.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79087, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:56:13 mail sendmail[21597]: k9E1QCEZ021597: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:56:13 mail sendmail[13928]: k9DDe1nX013928: k9DDe1nY013928: return to sender: Local configuration error
Oct 14 06:56:13 mail sendmail[13928]: k9DDe1nY013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80111, dsn=2.0.0, stat=Sent
Oct 14 06:56:41 mail sendmail[4249]: k9C8GhFN032519: to=<aogan@cha.bellsouth.ne
t>,<aok@ch
a.bellsout
h.net>,<ao
rlando@cha
.bellsouth
.net>,<aor
tega@cha.b
ellsouth.n
et>,<apa@c
ha.bellsou
th.net>, delay=1+17:05:28, xdelay=00:32:00, mailer=esmtp, pri=889340, relay=cha.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with cha.bellsouth.net.
Oct 14 06:56:56 mail sendmail[20967]: k9DGe1d5015758: to=<dfgkeqh@arabia.com>, delay=00:33:46, xdelay=00:02:00, mailer=esmtp, pri=139087, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:57 mail sendmail[20967]: k9D5e1NK011354: to=<zcgxmsrqlenud@chinabyt
e.com>, delay=00:20:32, xdelay=00:00:01, mailer=esmtp, pri=139113, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:56:57 mail sendmail[20967]: k9DIe1dR017051: to=<eitfxcbkxjehb@chinabyt
e.com>, delay=00:18:40, xdelay=00:00:00, mailer=esmtp, pri=139149, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9DJe10Y018008: to=<nzjtyuhvwvmzh@chinabyt
e.com>, delay=01:45:02, xdelay=00:00:00, mailer=esmtp, pri=165520, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9DIe1d4017051: to=<abmjukkz@chinabyte.com
>, delay=01:34:22, xdelay=00:00:00, mailer=esmtp, pri=166868, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9D5e1Mx011354: to=<ucgefmi@arabia.com>, delay=01:34:21, xdelay=00:00:00, mailer=esmtp, pri=166870, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:57 mail sendmail[20967]: k9D5e1N1011354: to=<bubdvmzaaciw@arabia.co
m>, delay=01:01:56, xdelay=00:00:00, mailer=esmtp, pri=166880, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:57 mail sendmail[20967]: k9DIe1d5017051: to=<rrypbtipmbjgmw@chinaby
te.com>, delay=01:01:56, xdelay=00:00:00, mailer=esmtp, pri=166881, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9DIe1dA017051: to=<jrgxzthayyx@arabia.com
>, delay=01:00:37, xdelay=00:00:00, mailer=esmtp, pri=166907, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:57 mail sendmail[20967]: k9D5e1N2011354: to=<gmmdfnwhgrk@chinabyte.
com>, delay=00:58:23, xdelay=00:00:00, mailer=esmtp, pri=166945, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9D5e1N7011354: to=<mtfranmspbr@chinabyte.
com>, delay=00:57:35, xdelay=00:00:00, mailer=esmtp, pri=167576, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:57 mail sendmail[20967]: k9DIe1dQ017051: to=<xrsebklrdpa@arabia.com
>, delay=00:22:44, xdelay=00:00:00, mailer=esmtp, pri=167592, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:57 mail sendmail[20967]: k9D7e1xt021503: to=<eshcw@arabia.com>, delay=00:46:35, xdelay=00:00:00, mailer=esmtp, pri=168642, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9DMe1YC019635: to=<mcaxmczfhkg@arabia.com
>, delay=00:42:45, xdelay=00:00:00, mailer=esmtp, pri=168687, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9DLe1nv018768: to=<kqivzwxz@arabia.com>, delay=00:44:51, xdelay=00:00:00, mailer=esmtp, pri=168709, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9DMe1YL019635: to=<grpkbjpnda@chinabyte.c
om>, delay=00:37:11, xdelay=00:00:00, mailer=esmtp, pri=168717, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DMe1Y9019635: to=<lheupdp@chinabyte.com>
, delay=00:43:01, xdelay=00:00:00, mailer=esmtp, pri=168734, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DGe1d9015758: to=<hfcflwnpapb@arabia.com
>, delay=00:31:14, xdelay=00:00:00, mailer=esmtp, pri=169096, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9DJe10t018008: to=<jkfjoreplirfrj@arabia.
com>, delay=00:22:11, xdelay=00:00:00, mailer=esmtp, pri=169102, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D5e1NY011354: to=<spcvefwrlsp@chinabyte.
com>, delay=00:17:58, xdelay=00:00:00, mailer=esmtp, pri=169119, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9D5e1Nw011354: to=<zwyxtiojd@arabia.com>,
delay=00:16:51, xdelay=00:00:00, mailer=esmtp, pri=169124, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D5e1N9011354: to=<qisatzh@arabia.com>, delay=00:23:36, xdelay=00:00:00, mailer=esmtp, pri=169131, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D5e1Nd011354: to=<yficeztqv@arabia.com>,
delay=00:17:43, xdelay=00:00:00, mailer=esmtp, pri=169148, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D9e18Z001042: to=<paggyfnecxkgly@chinaby
te.com>, delay=02:15:20, xdelay=00:00:00, mailer=esmtp, pri=251378, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9D7e1xc021503: to=<mbxainqgijwfm@chinabyt
e.com>, delay=02:29:58, xdelay=00:00:00, mailer=esmtp, pri=253340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DDe1mx013928: to=<mbxainqgijwfm@chinabyt
e.com>, delay=01:55:20, xdelay=00:00:00, mailer=esmtp, pri=253340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DDe1n4013928: to=<gbaaukbuqpj@arabia.com
>, delay=01:55:12, xdelay=00:00:00, mailer=esmtp, pri=254344, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D7e1xd021503: to=<fhjbfkdw@arabia.com>, delay=01:57:36, xdelay=00:00:00, mailer=esmtp, pri=254903, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D5e1Mt011354: to=<nyeulcxbud@chinabyte.c
om>, delay=01:42:16, xdelay=00:00:00, mailer=esmtp, pri=254921, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DLe1nq018768: to=<hlyklzyqzc@arabia.com>
, delay=01:55:23, xdelay=00:00:00, mailer=esmtp, pri=254926, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9D7e1xe021503: to=<yqpqkqxl@chinabyte.com
>, delay=01:55:00, xdelay=00:00:00, mailer=esmtp, pri=254964, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:58 mail sendmail[20967]: k9DMe1Xx019635: to=<ungxbkuor@arabia.com>,
delay=01:51:46, xdelay=00:00:00, mailer=esmtp, pri=255475, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:58 mail sendmail[20967]: k9DDe1n8013928: to=<nntfvizpeir@chinabyte.
com>, delay=01:47:59, xdelay=00:00:00, mailer=esmtp, pri=255482, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1nB013928: to=<rzvdse@chinabyte.com>,
delay=01:47:19, xdelay=00:00:00, mailer=esmtp, pri=255490, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1nK013928: to=<akcmdpo@chinabyte.com>
, delay=01:46:04, xdelay=00:00:00, mailer=esmtp, pri=255508, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1nL013928: to=<tidriurrdudp@arabia.co
m>, delay=01:45:56, xdelay=00:00:00, mailer=esmtp, pri=255513, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1n5013928: to=<gdwchbmyb@chinabyte.co
m>, delay=01:48:02, xdelay=00:00:00, mailer=esmtp, pri=255525, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9D5e1Mw011354: to=<uwrfw@arabia.com>, delay=01:36:32, xdelay=00:00:00, mailer=esmtp, pri=256868, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9D5e1N0011354: to=<ersxbpnnutsje@chinabyt
e.com>, delay=01:34:22, xdelay=00:00:00, mailer=esmtp, pri=256869, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DJe10f018008: to=<vuxffchhr@arabia.com>,
delay=01:40:19, xdelay=00:00:00, mailer=esmtp, pri=256907, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9DGe1d2015758: to=<vxitkb@chinabyte.com>,
delay=02:46:58, xdelay=00:00:00, mailer=esmtp, pri=328877, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1ma013928: to=<dpwoddk@arabia.com>, delay=03:42:37, xdelay=00:00:00, mailer=esmtp, pri=341378, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1mb013928: to=<vqahingmzzt@chinabyte.
com>, delay=03:39:57, xdelay=00:00:00, mailer=esmtp, pri=342846, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9D7e1xS021503: to=<axxmkcajoiqaun@arabia.
com>, delay=03:05:46, xdelay=00:00:00, mailer=esmtp, pri=342867, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9DDe1mr013928: to=<hgtzco@chinabyte.com>,
delay=03:04:41, xdelay=00:00:00, mailer=esmtp, pri=342875, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DIe1cv017051: to=<ymrtnxmkjpkoiu@chinaby
te.com>, delay=02:49:26, xdelay=00:00:00, mailer=esmtp, pri=342878, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DJe1xh018008: to=<mxwmimdgvcwxw@arabia.c
om>, delay=03:07:47, xdelay=00:00:00, mailer=esmtp, pri=342882, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:56:59 mail sendmail[20967]: k9D7e1xU021503: to=<luspcpplmjkuma@chinaby
te.com>, delay=03:03:03, xdelay=00:00:00, mailer=esmtp, pri=343304, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DJe1xm018008: to=<kavutzha@chinabyte.com
>, delay=03:02:55, xdelay=00:00:00, mailer=esmtp, pri=343327, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:56:59 mail sendmail[20967]: k9DJe1xw018008: to=<mbxainqgijwfm@chinabyt
e.com>, delay=03:00:05, xdelay=00:00:00, mailer=esmtp, pri=343340, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:57:00 mail sendmail[20967]: k9D7e1xV021503: to=<jmpktpjwrgwijg@arabia.
com>, delay=03:03:03, xdelay=00:00:00, mailer=esmtp, pri=343346, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9D5e1MY011354: to=<gjsjsczfa@chinabyte.co
m>, delay=02:59:04, xdelay=00:00:00, mailer=esmtp, pri=344321, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:57:00 mail sendmail[20967]: k9DJe106018008: to=<ajfyusq@arabia.com>, delay=02:59:06, xdelay=00:00:00, mailer=esmtp, pri=344322, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9DJe10B018008: to=<ztrpyspkjy@chinabyte.c
om>, delay=02:58:43, xdelay=00:00:00, mailer=esmtp, pri=344332, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:57:00 mail sendmail[20967]: k9D5e1Md011354: to=<gbaaukbuqpj@arabia.com
>, delay=02:58:25, xdelay=00:00:00, mailer=esmtp, pri=344344, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9DJe10L018008: to=<szcgqifen@arabia.com>,
delay=02:57:08, xdelay=00:00:00, mailer=esmtp, pri=344846, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9D5e1Me011354: to=<atkayqegkb@arabia.com>
, delay=02:56:22, xdelay=00:00:00, mailer=esmtp, pri=344872, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9DJe10O018008: to=<luldsm@arabia.com>, delay=02:56:12, xdelay=00:00:00, mailer=esmtp, pri=344874, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9DIe1d1017051: to=<ritghsnvyrnj@arabia.co
m>, delay=02:13:44, xdelay=00:00:00, mailer=esmtp, pri=344901, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:00 mail sendmail[20967]: k9DLe1nm018768: to=<nwlqzkfhrjqki@chinabyt
e.com>, delay=02:29:01, xdelay=00:00:00, mailer=esmtp, pri=344902, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:57:00 mail sendmail[20967]: k9DLe1nn018768: to=<obihkborawtl@chinabyte
.com>, delay=02:28:54, xdelay=00:00:00, mailer=esmtp, pri=344903, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:57:22 mail sendmail[18768]: k9DLe1o9018768: to=<aeyppbcxjti@arabia.com
>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=79997, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 06:57:23 mail sendmail[13928]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+15:16:43, xdelay=00:01:10, mailer=esmtp, pri=1007850, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:57:23 mail sendmail[13928]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:59:01, xdelay=00:00:00, mailer=esmtp, pri=827860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+08:19:21, xdelay=00:00:00, mailer=esmtp, pri=917860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:40:36, xdelay=00:00:00, mailer=esmtp, pri=827865, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:46:14, xdelay=00:00:00, mailer=esmtp, pri=827870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:34:31, xdelay=00:00:00, mailer=esmtp, pri=827870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:16:59, xdelay=00:00:00, mailer=esmtp, pri=737873, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:51:16, xdelay=00:00:00, mailer=esmtp, pri=737874, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:23 mail sendmail[13928]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:30:44, xdelay=00:00:00, mailer=esmtp, pri=737878, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:24 mail sendmail[13928]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:09:56, xdelay=00:00:00, mailer=esmtp, pri=737879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:24 mail sendmail[13928]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:34:39, xdelay=00:00:00, mailer=esmtp, pri=737884, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:24 mail sendmail[13928]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+16:52:00, xdelay=00:00:00, mailer=esmtp, pri=467994, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:24 mail sendmail[13928]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:36:55, xdelay=00:00:00, mailer=esmtp, pri=558006, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:27 mail sendmail[18768]: k93FL9nj004744: to=<stinkybutt15@yahoo.com
>,<stinkyb
utt420@yah
oo.com>, delay=10+10:02:58, xdelay=00:00:05, mailer=esmtp, pri=378774, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:57:29 mail sendmail[13928]: k938t5sQ014210: to=<asatyrbfun@yahoo.com>,
<asatyric@
yahoo.com>
,<asatysse
ling@yahoo
.com>,<asa
tz330@yaho
o.com>,<as
atz435@yah
oo.com>, delay=10+16:32:16, xdelay=00:00:05, mailer=esmtp, pri=378774, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:57:30 mail sendmail[18768]: k9466ntj030811: to=<taraneh14000@yahoo.com
>,<taraneh
18sal@yaho
o.com>,<ta
raneh20003
@yahoo.com
>,<taraneh
2008@yahoo
.com>,<tar
aneh20@yah
oo.com>, delay=9+19:20:03, xdelay=00:00:03, mailer=esmtp, pri=378775, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:57:33 mail sendmail[13928]: k945r60j030159: to=<yyuih_hggvh@yahoo.com>
,<yyuijhyy
jiko8uui9@
yahoo.com>
,<yyuing@y
ahoo.com>,
<yyuioooop
ppppppp@ya
hoo.com>,<
yyuioooopp
ppppppp@ya
hoo.com>, delay=9+19:32:43, xdelay=00:00:04, mailer=esmtp, pri=378775, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:57:33 mail sendmail[18768]: k93BDb5J022648: to=<jsrba52000@yahoo.com>,
<jsrba@yah
oo.com>,<j
srbathisis
myfamilyin
shall@yaho
o.com>,<js
rbeanies@y
ahoo.com>,
<jsrbfamil
y@yahoo.co
m>, delay=10+14:11:59, xdelay=00:00:03, mailer=esmtp, pri=378775, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:57:36 mail sendmail[18768]: k93GS6i4008626: to=<sharc21@yahoo.com>,<sh
arc3@yahoo
.com>, delay=10+08:58:41, xdelay=00:00:03, mailer=esmtp, pri=378777, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 06:57:36 mail sendmail[13928]: k9C3sUDm006365: to=<cosmi271@yahoo.com>,<c
osmi_16@ya
hoo.com>,<
cosmi_al@y
ahoo.com>,
<cosmi_cru
z@yahoo.co
m>,<cosmi_
roman@yaho
o.com>,<co
smi_ungur@
yahoo.com>
, delay=1+21:32:39, xdelay=00:00:03, mailer=esmtp, pri=378777, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 06:57:39 mail sendmail[18768]: k9380OEL012483: to=<deotis2003@yahoo.com>,
<deotis22@
yahoo.com>
,<deotis@y
ahoo.com>,
<deotisc@y
ahoo.com>,
<deotisech
22@yahoo.c
om>, delay=10+17:22:03, xdelay=00:00:03, mailer=esmtp, pri=378780, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:57:39 mail sendmail[13928]: k93ERiZn001196: to=<arscou@yahoo.com>,<ars
cout@yahoo
.com>,<ash
w666@yahoo
.com>,<ash
w6gjh99@ya
hoo.com>,<
ashw78@yah
oo.com>, delay=10+10:58:03, xdelay=00:00:03, mailer=esmtp, pri=378780, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:57:43 mail sendmail[13928]: k939nLJV018585: to=<johnkelly68@yahoo.com>
,<johnkell
y_aupol@ya
hoo.com>,<
johnkelly_
irish@yaho
o.com>,<jo
hnkelly_yu
en@yahoo.c
om>,<johnk
ellyasher@
yahoo.com>
, delay=10+15:36:59, xdelay=00:00:04, mailer=esmtp, pri=378781, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:57:44 mail sendmail[18768]: k943Gn5X023015: to=<angelcloud2020@yahoo.c
om>,<angel
cloud20_01
@yahoo.com
>,<angelcl
oud21@yaho
o.com>,<an
gelcloud23
@yahoo.com
>,<angelcl
oud2_2000@
yahoo.com>
, delay=9+22:03:15, xdelay=00:00:05, mailer=esmtp, pri=378781, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:57:47 mail sendmail[13928]: k938YQHO013232: to=<missmissy_lara@yahoo.c
om>,<missm
issy_lynn@
yahoo.com>
, delay=10+16:52:40, xdelay=00:00:04, mailer=esmtp, pri=378781, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 06:57:48 mail sendmail[18768]: k942fTa5021499: to=<john_mac_obrien@yahoo.
com>,<john
_mac_ybt@y
ahoo.com>,
<john_macc
ormack@yah
oo.com>,<j
ohn_macd_w
atson@yaho
o.com>,<jo
hn_macfarl
ane@yahoo.
com>, delay=9+22:40:55, xdelay=00:00:04, mailer=esmtp, pri=378783, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:57:48 mail sendmail[18768]: k946ggII032610: to=<maleval@bellsouth.net>
,<malever@
bellsouth.
net>, delay=9+18:41:14, xdelay=00:00:00, mailer=esmtp, pri=378784, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:48 mail sendmail[18768]: k946ggII032610: k9DLe1oA018768: DSN: Cannot send message for 5 days
Oct 14 06:57:50 mail sendmail[13928]: k93K64pQ028197: to=<bloodcrystal@yahoo.com
>,<bloodcr
yztal86@ya
hoo.com>,<
bloodct@ya
hoo.com>,<
bloodctm@y
ahoo.com>,
<bloodctr@
yahoo.com>
, delay=10+05:21:00, xdelay=00:00:03, mailer=esmtp, pri=378783, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:57:51 mail sendmail[18768]: k9DLe1oA018768: to=<orvjz@arsenal.co.uk>, delay=00:00:03, xdelay=00:00:02, mailer=esmtp, pri=79997, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 06:57:51 mail sendmail[18768]: k9DLe1oA018768: k9DLe1oB018768: return to sender: User unknown
Oct 14 06:57:51 mail sendmail[18768]: k9DLe1oB018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81021, dsn=2.0.0, stat=Sent
Oct 14 06:57:53 mail sendmail[4249]: k9C5btPk012864: to=<cheryl.gilles@bellsout
h.net>,<ch
eryl.holmb
erg@bellso
uth.net>,<
cheryl.las
hinski@bel
lsouth.net
>,<cheryl.
lewis@bell
south.net>
,<cheryl.m
orris@bell
south.net>
, delay=1+19:47:46, xdelay=00:01:12, mailer=esmtp, pri=1339349, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:57:53 mail sendmail[4249]: k9C78dTE023333: to=<epbmatb@bellsouth.net>
,<epbonner
@bellsouth
.net>,<epb
owman@bell
south.net>
,<epboyer@
bellsouth.
net>,<epbo
ykin@bells
outh.net>,
delay=1+18:15:43, xdelay=00:00:00, mailer=esmtp, pri=1339360, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:53 mail sendmail[13928]: k93FOgvR004949: to=<pammie0220@yahoo.com>,
<pammie082
4@yahoo.co
m>,<pammie
0916@yahoo
.com>,<pam
mie0918@ya
hoo.com>,<
pammie101@
yahoo.com>
, delay=10+09:53:50, xdelay=00:00:03, mailer=esmtp, pri=378784, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:57:53 mail sendmail[13928]: k946mkTk000536: to=<maleval@bellsouth.net>
,<malever@
bellsouth.
net>, delay=9+18:38:48, xdelay=00:00:00, mailer=esmtp, pri=378784, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:54 mail sendmail[4249]: k9C3FTN7005443: to=<dgaappr@bellsouth.net>
, delay=1+22:11:33, xdelay=00:00:00, mailer=esmtp, pri=1339783, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:54 mail sendmail[13928]: k946mkTk000536: k9DDe1nZ013928: DSN: Cannot send message for 5 days
Oct 14 06:57:54 mail sendmail[4249]: k9BDufc8011751: to=<bob1222@bellsouth.net>
, delay=2+11:27:49, xdelay=00:00:00, mailer=esmtp, pri=1429791, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:54 mail sendmail[4249]: k9BB4lDT002010: to=<toirealach@bellsouth.n
et>, delay=2+14:20:58, xdelay=00:00:00, mailer=esmtp, pri=1339794, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:54 mail sendmail[4249]: k9C4xicR008645: to=<jean9585@bellsouth.net
>,<jean972
@bellsouth
.net>,<jea
n9838@bell
south.net>
,<jean9877
@bellsouth
.net>,<jea
n9991@bell
south.net>
, delay=1+20:26:18, xdelay=00:00:00, mailer=esmtp, pri=1339802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:54 mail sendmail[4249]: k9C1wlM6003324: to=<hetzlerm@bellsouth.net
>,<hetzman
@bellsouth
.net>, delay=1+23:28:45, xdelay=00:00:00, mailer=esmtp, pri=1339803, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9C1leTs002931: to=<cpk4lyf@bellsouth.net>
,<cpk59@be
llsouth.ne
t>, delay=1+23:40:10, xdelay=00:00:00, mailer=esmtp, pri=1429807, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9BDjMso011041: to=<ashleypreston@bellsout
h.net>,<ce
sfens@bell
south.net>
, delay=2+11:41:37, xdelay=00:00:00, mailer=esmtp, pri=1339809, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9BAnnwM001302: to=<hoffy82@bellsouth.net>
, delay=2+14:35:11, xdelay=00:00:00, mailer=esmtp, pri=1429810, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9C1hb2F002774: to=<dworby@bellsouth.net>,
delay=1+23:43:09, xdelay=00:00:00, mailer=esmtp, pri=1339817, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9BGIvDm018890: to=<wkcuddy@bellsouth.net>
, delay=2+09:06:35, xdelay=00:00:00, mailer=esmtp, pri=1249823, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9BAMpkl032510: to=<ganzon@bellsouth.net>,
delay=2+14:57:32, xdelay=00:00:00, mailer=esmtp, pri=1159831, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9BEvWJt014567: to=<donmcdon@bellsouth.net
>,<donmcdo
nald@bells
outh.net>,
<donmcdowe
ll@bellsou
th.net>,<d
onmce@bell
south.net>
,<donmcgee
@bellsouth
.net>, delay=2+10:29:48, xdelay=00:00:00, mailer=esmtp, pri=1249836, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[18768]: k94AW6Ht008436: to=<safir_743@yahoo.com>,<
safir_atto
ck@yahoo.c
om>,<safir
_gamal@yah
oo.com>,<s
afir_hot_l
ove@yahoo.
com>,<safi
r_mehrabon
_fs@yahoo.
com>, delay=9+14:51:17, xdelay=00:00:04, mailer=esmtp, pri=378784, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:57:55 mail sendmail[4249]: k9BIPumG025770: to=<papsan3@bellsouth.net>
,<papservi
ces@bellso
uth.net>,<
papsgurl@b
ellsouth.n
et>,<papsp
r94@bellso
uth.net>,<
papttyr@be
llsouth.ne
t>, delay=2+07:01:17, xdelay=00:00:00, mailer=esmtp, pri=1339840, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:55 mail sendmail[4249]: k9C1wlMG003324: to=<heubelm@bellsouth.net>
,<heubelr@
bellsouth.
net>, delay=1+23:28:21, xdelay=00:00:00, mailer=esmtp, pri=1249852, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:56 mail sendmail[4249]: k9C1wlMO003324: to=<heuerpandj@bellsouth.n
et>,<heuer
s77@bellso
uth.net>, delay=1+23:28:01, xdelay=00:00:00, mailer=esmtp, pri=1339866, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:57:56 mail sendmail[13928]: k9DDe1nZ013928: to=<orvjz@arsenal.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79996, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 06:57:57 mail sendmail[13928]: k9DDe1nZ013928: k9DDe1na013928: return to sender: User unknown
Oct 14 06:57:57 mail sendmail[13928]: k9DDe1na013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81020, dsn=2.0.0, stat=Sent
Oct 14 06:57:57 mail sendmail[15758]: k989x7rh001061: to=<bell3@clt.bellsouth.ne
t>,<bella@
clt.bellso
uth.net>, delay=5+15:28:46, xdelay=00:32:00, mailer=esmtp, pri=377851, relay=clt.bellsouth.net. [205.152.58.1], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 06:57:57 mail sendmail[15758]: k989x7rh001061: k9DGe1dG015758: DSN: Cannot send message for 5 days
Oct 14 06:57:59 mail sendmail[15758]: k9DGe1dG015758: to=<auvedog@arsenal.co.uk>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79148, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=4.0.0, stat=Deferred: Connection refused by mail14.messagelabs.com.
Oct 14 06:57:59 mail sendmail[18768]: k93GUTs0008935: to=<jayrd@yahoo.com>,<jayr
d_459@yaho
o.com>,<ja
yrdatingui
noo@yahoo.
com>,<jayr
david313@y
ahoo.com>,
<jayrdee43
0@yahoo.co
m>, delay=10+08:56:56, xdelay=00:00:04, mailer=esmtp, pri=378784, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:02 mail sendmail[13928]: k9575Mkb019116: to=<buza18@yahoo.com>,<buz
a20012002@
yahoo.com>
,<buza4@ya
hoo.com>,<
buza69@yah
oo.com>,<b
uza69for_u
@yahoo.com
>, delay=8+18:22:25, xdelay=00:00:05, mailer=esmtp, pri=378785, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:03 mail sendmail[18768]: k93B1hnB021949: to=<bucko3000@yahoo.com>,<
bucko30@ya
hoo.com>, delay=10+14:25:39, xdelay=00:00:04, mailer=esmtp, pri=378785, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 06:58:06 mail sendmail[18768]: k93FrIWV006188: to=<dc7rgh@yahoo.com>,<dc7
rr@yahoo.c
om>,<dc7sh
an@yahoo.c
om>,<dc7t@
yahoo.com>
,<dc7u@yah
oo.com>, delay=10+09:28:27, xdelay=00:00:03, mailer=esmtp, pri=378786, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:06 mail sendmail[13928]: k93Jb5VM026004: to=<gregromine@yahoo.com>,
<gregrooh@
yahoo.com>
,<gregrook
@yahoo.com
>,<gregroo
ks@yahoo.c
om>,<gregr
oosevelt@y
ahoo.com>,
delay=10+05:45:06, xdelay=00:00:04, mailer=esmtp, pri=378786, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:07 mail sendmail[18768]: k9BAe7fb000454: to=<jonescmj@yahoo.com>,<j
onescn21@y
ahoo.com>,
<jonescn@y
ahoo.com>,
<jonescnol
an@yahoo.c
om>,<jones
co24@yahoo
.com>,<jon
esco@yahoo
.com>, delay=2+14:47:42, xdelay=00:00:01, mailer=esmtp, pri=378786, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta177.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 06:58:07 mail sendmail[18768]: k9BAe7fb000454: k9DLe1oC018768: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:58:08 mail sendmail[18768]: k9DLe1oC018768: to=<ivtowxfkp@chinabyte.co
m>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=50072, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:58:09 mail sendmail[13928]: k939KFCe015909: to=<nran74@yahoo.com>,<nra
n8758@yaho
o.com>,<nr
ana26840@y
ahoo.com>,
<nrana33@y
ahoo.com>,
<nrana666@
yahoo.com>
, delay=10+16:05:24, xdelay=00:00:03, mailer=esmtp, pri=378787, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:58:09 mail sendmail[15758]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+19:59:47, xdelay=00:00:10, mailer=esmtp, pri=917860, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 06:58:09 mail sendmail[15758]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+08:20:07, xdelay=00:00:00, mailer=esmtp, pri=1007860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:41:22, xdelay=00:00:00, mailer=esmtp, pri=917865, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:47:00, xdelay=00:00:00, mailer=esmtp, pri=917870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:35:17, xdelay=00:00:00, mailer=esmtp, pri=917870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:17:45, xdelay=00:00:00, mailer=esmtp, pri=827873, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+08:52:02, xdelay=00:00:00, mailer=esmtp, pri=827874, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:31:30, xdelay=00:00:00, mailer=esmtp, pri=827878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:10:41, xdelay=00:00:00, mailer=esmtp, pri=827879, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:35:24, xdelay=00:00:00, mailer=esmtp, pri=827884, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+16:52:45, xdelay=00:00:00, mailer=esmtp, pri=557994, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:09 mail sendmail[15758]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:37:40, xdelay=00:00:00, mailer=esmtp, pri=648006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:11 mail sendmail[18768]: k94MJPPU020941: to=<deanhjr@yahoo.com>,<de
anhkechong
he@yahoo.c
om>,<deanh
laukho_gio
tle_trenmi
_em_nhe@ya
hoo.com>,<
deanhluony
euem_nhoem
@yahoo.com
>,<deanhma
iconem_tro
ngtim@yaho
o.com>, delay=9+03:03:13, xdelay=00:00:03, mailer=esmtp, pri=378788, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:58:12 mail sendmail[13928]: k949XoGM003700: to=<sah_2520@yahoo.com>,<s
ah_35@yaho
o.com>,<sa
h_420@yaho
o.com>,<sa
h_74354@ya
hoo.com>,<
sah_8@yaho
o.com>, delay=9+15:53:37, xdelay=00:00:03, mailer=esmtp, pri=378789, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:12 mail sendmail[13928]: k93Fj2vp005889: to=<biorhthm@bellsouth.net
>,<biorhym
@bellsouth
.net>,<bio
rhythm2@be
llsouth.ne
t>,<biorhy
thm8@bells
outh.net>,
<biorhythm
@bellsouth
.net>, delay=10+09:40:47, xdelay=00:00:00, mailer=esmtp, pri=378789, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:12 mail sendmail[13928]: k93Fj2vp005889: k9DDe1nb013928: DSN: Cannot send message for 5 days
Oct 14 06:58:15 mail sendmail[13928]: k9DDe1nb013928: to=<capmeteflfj@briankenne
dy.co.uk>,
delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80000, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 06:58:16 mail sendmail[18768]: k9493JhB004359: to=<jaserbg@yahoo.com>,<ja
sercajamme
r@yahoo.co
m>,<jaserc
ia@yahoo.c
om>,<jaser
da@yahoo.c
om>,<jaser
dula@yahoo
.com>, delay=9+16:24:24, xdelay=00:00:04, mailer=esmtp, pri=378789, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:16 mail sendmail[15758]: k9BAe7fb000454: to=<jonescmj@yahoo.com>,<j
onescn21@y
ahoo.com>,
<jonescn@y
ahoo.com>,
<jonescnol
an@yahoo.c
om>,<jones
co24@yahoo
.com>,<jon
esco@yahoo
.com>, delay=2+14:47:51, xdelay=00:00:06, mailer=esmtp, pri=468786, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:58:16 mail sendmail[13928]: k9DDe1nb013928: k9DDe1nc013928: return to sender: User unknown
Oct 14 06:58:16 mail sendmail[13928]: k9DDe1nc013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81024, dsn=2.0.0, stat=Sent
Oct 14 06:58:18 mail sendmail[15758]: k9446vla025254: to=<pofitus@yahoo.com>,<po
fiuse@yaho
o.com>,<po
fiuz_e_tak
@yahoo.com
>,<pofive_
liz_bailey
@yahoo.com
>,<pofiyuz
z@yahoo.co
m>, delay=9+21:18:50, xdelay=00:00:02, mailer=esmtp, pri=378790, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 06:58:19 mail sendmail[18768]: k93GdC6s009857: to=<ripper8480@yahoo.com>,
<ripper850
1@yahoo.co
m>,<ripper
8522990@ya
hoo.com>,<
ripper85us
@yahoo.com
>,<ripper8
70@yahoo.c
om>, delay=10+08:48:42, xdelay=00:00:03, mailer=esmtp, pri=378789, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:58:20 mail sendmail[13928]: k941N7Eg018218: to=<ifymok@yahoo.com>,<ify
mom13579@y
ahoo.com>,
<ifymoniqu
e@yahoo.co
m>,<ifymoo
re2003@yah
oo.com>,<i
fymora2003
@yahoo.com
>, delay=10+00:04:08, xdelay=00:00:04, mailer=esmtp, pri=378790, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:23 mail sendmail[13928]: k9C7w96K030152: to=<emdja@yahoo.com>,<emdj
ames@yahoo
.com>,<emd
jdt@yahoo.
com>,<emdj
dw@yahoo.c
om>,<emdji
m@yahoo.co
m>,<emdjj@
yahoo.com>
, delay=1+17:29:00, xdelay=00:00:03, mailer=esmtp, pri=378790, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:58:23 mail sendmail[13928]: k9C7w96K030152: k9DDe1nd013928: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:58:23 mail sendmail[18768]: k9C6nGAF021436: to=<party_chic_335@yahoo.c
om>,<party
_chic_9999
@yahoo.com
>,<party_c
hic_stepha
nie@yahoo.
com>,<part
y_chic_wit
h_booty888
888@yahoo.
com>,<part
y_chica200
3@yahoo.co
m>,<party_
chica77@ya
hoo.com>, delay=1+18:38:51, xdelay=00:00:03, mailer=esmtp, pri=378790, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 06:58:24 mail sendmail[15758]: k93FBZ7W004273: to=<r_kopyc@yahoo.com>,<r_
korani@yah
oo.com>,<r
olendorf@y
ahoo.com>,
<rolends@y
ahoo.com>,
<rolene115
@yahoo.com
>, delay=10+10:15:09, xdelay=00:00:04, mailer=esmtp, pri=378790, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:25 mail sendmail[13928]: k9DDe1nd013928: to=<jhdbcysf@bellauk.com>,
delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=50036, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:58:25 mail sendmail[13928]: k9DDe1nd013928: k9DDe1ne013928: return to sender: User unknown
Oct 14 06:58:25 mail sendmail[13928]: k9DDe1ne013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51060, dsn=2.0.0, stat=Sent
Oct 14 06:58:25 mail sendmail[13928]: k938WNqU013192: to=<calvin2201@yahoo.com>,
<calvin220
995@yahoo.
com>, delay=10+16:51:17, xdelay=00:00:00, mailer=esmtp, pri=378790, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 06:58:25 mail sendmail[13928]: k938WNqU013192: k9DDe1nf013928: DSN: Cannot send message for 5 days
Oct 14 06:58:26 mail sendmail[13928]: k9DDe1nf013928: to=<itgpxmnm@centrapoint.c
om>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79967, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 06:58:26 mail sendmail[13928]: k9DDe1nf013928: k9DDe1ng013928: return to sender: Local configuration error
Oct 14 06:58:26 mail sendmail[13928]: k9DDe1ng013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80991, dsn=2.0.0, stat=Sent
Oct 14 06:58:27 mail sendmail[15758]: k93CdXYk027704: to=<hatemmobasher@yahoo.co
m>,<hatemm
ohamed2002
@yahoo.com
>,<hatemmo
hamedmekky
@yahoo.com
>,<hatemmo
nib@yahoo.
com>,<hate
mmoon@yaho
o.com>, delay=10+12:46:28, xdelay=00:00:03, mailer=esmtp, pri=378790, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:27 mail sendmail[18768]: k93B8ZKd022394: to=<tpmsr2001@yahoo.com>,<
tpmsrctc@y
ahoo.com>,
<tpmsurvey
@yahoo.com
>,<tpmt192
4@yahoo.co
m>,<tpmt6@
yahoo.com>
, delay=10+14:18:52, xdelay=00:00:04, mailer=esmtp, pri=378790, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:29 mail sendmail[15758]: k9C6WGv4019604: to=<hft2001us@yahoo.com>,<
hft226@yah
oo.com>,<h
ft2u@yahoo
.com>,<hft
3152042181
@yahoo.com
>,<hft34@y
ahoo.com>,
<hft4386@y
ahoo.com>,
delay=1+18:56:11, xdelay=00:00:02, mailer=esmtp, pri=378791, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/5)
Oct 14 06:58:29 mail sendmail[13928]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 06:58:30 mail sendmail[13928]: k93F2og0003847: to=<super_stan@dell.com>, delay=10+10:24:46, xdelay=00:00:03, mailer=esmtp, pri=378791, relay=smtp.ins.dell.com. [143.166.83.183], dsn=5.5.4, stat=Service unavailable
Oct 14 06:58:30 mail sendmail[18768]: k944KBdA025911: to=<madisonsg2000@yahoo.co
m>,<madiso
nsg@yahoo.
com>,<madi
sonsgirls@
yahoo.com>
,<madisons
grandpa@ya
hoo.com>,<
madisonshe
lton301s@y
ahoo.com>,
delay=9+21:05:55, xdelay=00:00:03, mailer=esmtp, pri=378791, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:58:31 mail sendmail[13928]: k93F2og0003847: to=<super_star26@dell.com>
, delay=10+10:24:47, xdelay=00:00:04, mailer=esmtp, pri=378791, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:58:31 mail sendmail[13928]: k93F2og0003847: to=<super_star690@dell.com
>, delay=10+10:24:47, xdelay=00:00:04, mailer=esmtp, pri=378791, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:58:31 mail sendmail[13928]: k93F2og0003847: to=<super_star81@dell.com>
, delay=10+10:24:47, xdelay=00:00:04, mailer=esmtp, pri=378791, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:58:31 mail sendmail[13928]: k93F2og0003847: to=<super_star@dell.com>, delay=10+10:24:47, xdelay=00:00:04, mailer=esmtp, pri=378791, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 06:58:34 mail sendmail[13928]: k93F2og0003847: k9DDe1nh013928: DSN: Cannot send message for 5 days
Oct 14 06:58:35 mail sendmail[15758]: k93G2MmL006781: to=<mykidsmomtlbo@yahoo.co
m>,<mykids
mylife05@y
ahoo.com>,
<mykidsnme
48@yahoo.c
om>,<mykid
snuttymom@
yahoo.com>
,<mykidspa
pa@yahoo.c
om>, delay=10+09:20:14, xdelay=00:00:06, mailer=esmtp, pri=378792, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:39 mail sendmail[15758]: k93Mvl8R008688: to=<walkafella2001@yahoo.c
om>,<walka
ftermidnig
ht@yahoo.c
om>,<walka
ftermidnit
esearch4u@
yahoo.com>
,<walkagir
l@yahoo.co
m>,<walkah
ow@yahoo.c
om>, delay=10+02:30:32, xdelay=00:00:04, mailer=esmtp, pri=378792, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 06:58:42 mail sendmail[15758]: k944eqe3027311: to=<mjme93@yahoo.com>,<mjm
each@yahoo
.com>,<mjm
eacham@yah
oo.com>,<m
jmead5334@
yahoo.com>
,<mjmeade2
001@yahoo.
com>, delay=9+20:45:14, xdelay=00:00:03, mailer=esmtp, pri=378792, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 4/1)
Oct 14 06:58:42 mail sendmail[15758]: k93BMSIX023270: to=<bear029@bellsouth.net>
,<bear03@b
ellsouth.n
et>, delay=10+14:05:49, xdelay=00:00:00, mailer=esmtp, pri=378792, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:42 mail sendmail[15758]: k93BMSIX023270: k9DGe1dH015758: DSN: Cannot send message for 5 days
Oct 14 06:58:44 mail sendmail[15758]: k9DGe1dH015758: to=<fdmlstqqoxat@bellauk.c
om>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79990, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:58:44 mail sendmail[15758]: k9DGe1dH015758: k9DGe1dI015758: return to sender: User unknown
Oct 14 06:58:44 mail sendmail[15758]: k9DGe1dI015758: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81014, dsn=2.0.0, stat=Sent
Oct 14 06:58:47 mail sendmail[15758]: k93G5rAO006972: to=<speedracer972005@yahoo
.com>,<spe
edracer977
60@yahoo.c
om>, delay=10+09:20:26, xdelay=00:00:03, mailer=esmtp, pri=378792, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 06:58:51 mail sendmail[15758]: k93NXuQv011595: to=<sammie_18_2002@yahoo.c
om>,<sammi
e_18_99@ya
hoo.com>,<
sammie_194
4@yahoo.co
m>,<sammie
_19461@yah
oo.com>,<s
ammie_1969
@yahoo.com
>, delay=10+01:53:54, xdelay=00:00:04, mailer=esmtp, pri=378792, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:58:52 mail sendmail[18768]: k93EfEoU002221: to=<nickvet@excite.com>, delay=10+10:47:26, xdelay=00:00:21, mailer=esmtp, pri=378792, relay=xmxpita.excite.com. [208.45.133.107], dsn=5.1.1, stat=User unknown
Oct 14 06:58:52 mail sendmail[18768]: k93EfEoU002221: to=<nickwbrady@excite.com>
, delay=10+10:47:26, xdelay=00:00:21, mailer=esmtp, pri=378792, relay=xmxpita.excite.com. [208.45.133.107], dsn=5.1.1, stat=User unknown
Oct 14 06:58:54 mail sendmail[15758]: k93ApAL3021166: to=<sasif26@yahoo.com>,<sa
sif71@yaho
o.com>,<sa
sif_bukhar
i@yahoo.co
m>,<sasif_
hussain@ya
hoo.com>,<
sasifabbas
@yahoo.com
>, delay=10+14:35:53, xdelay=00:00:03, mailer=esmtp, pri=378793, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:58:54 mail sendmail[15758]: k940IsGx014510: to=<jess411@bellsouth.net>
,<jess415@
bellsouth.
net>,<jess
41m@bellso
uth.net>,<
jess421@be
llsouth.ne
t>,<jess42
@bellsouth
.net>, delay=10+01:08:08, xdelay=00:00:00, mailer=esmtp, pri=378793, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:58:54 mail sendmail[15758]: k940IsGx014510: k9DGe1dJ015758: DSN: Cannot send message for 5 days
Oct 14 06:58:54 mail sendmail[18768]: k93EfEoU002221: to=<nicky1070@excite.com>,
delay=10+10:47:28, xdelay=00:00:23, mailer=esmtp, pri=378792, relay=xmxpita.excite.com. [208.45.133.107], dsn=4.0.0, stat=Deferred: 421 xprdmx29.nwk.excite.com Error: too many errors
Oct 14 06:58:55 mail sendmail[15758]: k9DGe1dJ015758: to=<cjrorripu@bellauk.com>
, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=80005, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 06:58:56 mail sendmail[15758]: k9DGe1dJ015758: k9DGe1dK015758: return to sender: User unknown
Oct 14 06:58:56 mail sendmail[15758]: k9DGe1dK015758: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81029, dsn=2.0.0, stat=Sent
Oct 14 06:58:57 mail sendmail[15758]: k93NcjGR011925: to=<apr_phx@dell.com>,<apr
_rma_anza@
dell.com>,
<apr_rma_j
apan@dell.
com>,<apr_
rma_nasia@
dell.com>,
<apr_rma_s
akr@dell.c
om>, delay=10+01:49:56, xdelay=00:00:01, mailer=esmtp, pri=378794, relay=smtp2.ins.dell.com. [143.166.224.134], dsn=5.0.0, stat=Service unavailable
Oct 14 06:58:57 mail sendmail[15758]: k93NcjGR011925: k9DGe1dL015758: DSN: Service unavailable
Oct 14 06:58:58 mail sendmail[15758]: k9DGe1dL015758: to=<nvrvtvzxqsdrgq@chinaby
te.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79970, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:59:04 mail sendmail[15758]: k93AoCba021131: to=<ericakimkwon@yahoo.com
>,<ericaki
mmel@yahoo
.com>,<eri
cakimtrave
l@yahoo.co
m>,<ericak
in@yahoo.c
om>,<erica
kind_horny
@yahoo.com
>, delay=10+14:38:32, xdelay=00:00:05, mailer=esmtp, pri=378794, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:59:04 mail sendmail[15758]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+09:55:29, xdelay=00:00:00, mailer=esmtp, pri=378794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:59:04 mail sendmail[15758]: k9BFTGwn016252: k9DGe1dM015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 06:59:04 mail sendmail[15758]: k9DGe1dM015758: to=<fiybdkdzfzcpl@arsenal.
co.uk>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=50040, relay=mail14.messagelabs.c
om., dsn=4.0.0, stat=Deferred: Connection refused by mail14.messagelabs.com.
Oct 14 06:59:08 mail sendmail[15758]: k962F6Xu029958: to=<m291971@yahoo.com>,<m2
921000@yah
oo.com>,<m
2922@yahoo
.com>,<m29
26@yahoo.c
om>,<m2936
@yahoo.com
>, delay=7+23:12:52, xdelay=00:00:04, mailer=esmtp, pri=378794, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:59:12 mail sendmail[15758]: k93EPAMn000743: to=<yirshaid2000@yahoo.com
>,<yirskka
@yahoo.com
>,<yirso@y
ahoo.com>,
<yirsten08
@yahoo.com
>,<yirsu@y
ahoo.com>,
delay=10+10:59:32, xdelay=00:00:04, mailer=esmtp, pri=378794, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:59:16 mail sendmail[15758]: k944MeW4026276: to=<ortiz1012@yahoo.com>,<
ortiz1020@
yahoo.com>
,<ortiz10_
2000@yahoo
.com>,<ort
iz1354@yah
oo.com>,<o
rtiz13@yah
oo.com>, delay=9+21:04:57, xdelay=00:00:04, mailer=esmtp, pri=378794, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 06:59:20 mail sendmail[15758]: k93AroDD021279: to=<ericakimkwon@yahoo.com
>,<ericaki
mmel@yahoo
.com>,<eri
cakimtrave
l@yahoo.co
m>,<ericak
in@yahoo.c
om>,<erica
kind_horny
@yahoo.com
>, delay=10+14:35:14, xdelay=00:00:04, mailer=esmtp, pri=378794, relay=mx3.mail.yahoo.com. [4.79.181.12], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 06:59:20 mail sendmail[15758]: k94NlNu4024055: to=<jayf432@bellsouth.net>
,<jayfab42
50@bellsou
th.net>,<j
ayfalk@bel
lsouth.net
>,<jayfam@
bellsouth.
net>,<jayf
an@bellsou
th.net>, delay=9+01:41:28, xdelay=00:00:00, mailer=esmtp, pri=378794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 06:59:20 mail sendmail[15758]: k94NlNu4024055: k9DGe1dN015758: DSN: Cannot send message for 5 days
Oct 14 06:59:20 mail sendmail[15758]: k9DGe1dN015758: to=<tfmajozn@arsenal.co.uk
>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79968, relay=mail14.messagelabs.c
om., dsn=4.0.0, stat=Deferred: Connection refused by mail14.messagelabs.com.
Oct 14 06:59:20 mail sendmail[15758]: k9592qw3029867: to=<chena_1@dell.com>,<che
nal_bob@de
ll.com>,<c
henan_1@de
ll.com>,<c
henb_1999@
dell.com>,
<chenc_w@d
ell.com>, delay=8+16:26:02, xdelay=00:00:00, mailer=esmtp, pri=378795, relay=smtp2.ins.dell.com.,
dsn=5.0.0, stat=Service unavailable
Oct 14 06:59:20 mail sendmail[15758]: k9592qw3029867: k9DGe1dO015758: DSN: Service unavailable
Oct 14 06:59:23 mail sendmail[15758]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dO015758: to=<ivdqmwxvobtz@caller.co
m>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79971, relay=mail.global.sprint.c
om. [206.16.192.227], dsn=2.0.0, stat=Sent (Ok: queued as 4CE956F1776)
Oct 14 06:59:26 mail sendmail[15758]: k93DDOvd029210: to=<vipul40@yahoo.co.in>,<
vipul_0121
2003@yahoo
.co.in>,<v
ipul_md200
0@yahoo.co
.in>, delay=10+12:15:48, xdelay=00:00:00, mailer=esmtp, pri=378795, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 06:59:26 mail sendmail[15758]: k93DDOvd029210: k9DGe1dP015758: DSN: Cannot send message for 5 days
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dP015758: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dP015758: to=<flqzadzr@centrapoint.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79969, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 06:59:26 mail sendmail[21606]: k9E1TQWL021606: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dP015758: k9DGe1dQ015758: return to sender: Local configuration error
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dQ015758: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80993, dsn=2.0.0, stat=Sent
Oct 14 06:59:42 mail sendmail[14561]: k9ALBZQm013457: to=<enola@rdu.bellsouth.ne
t>,<enon@r
du.bellsou
th.net>,<e
nona@rdu.b
ellsouth.n
et>,<enor@
rdu.bellso
uth.net>,<
enorris@rd
u.bellsout
h.net>, delay=3+04:13:39, xdelay=00:32:05, mailer=esmtp, pri=730823, relay=rdu.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 06:59:42 mail sendmail[14561]: STARTTLS: write error=syscall error (-1)
Oct 14 07:00:01 mail sendmail[18768]: k93EfEoU002221: to=<nicky1070@excite.com>,
delay=10+10:48:35, xdelay=00:01:30, mailer=esmtp, pri=378792, relay=xmxatip.excite.com. [207.159.120.164], dsn=2.0.0, stat=Sent (Ok: queued as B8CFB4FE78)
Oct 14 07:00:01 mail sendmail[18768]: k93EfEoU002221: k9DLe1oD018768: DSN: User unknown
Oct 14 07:00:01 mail sendmail[14561]: k99Gx781011974: to=<mckeehant@bellsouth.ne
t>, delay=4+08:30:10, xdelay=00:00:19, mailer=esmtp, pri=1270825, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:00:01 mail sendmail[14561]: k99AqCo5015159: to=<bunnellt@bellsouth.net
>,<foforit
o@bellsout
h.net>, delay=4+14:37:17, xdelay=00:00:00, mailer=esmtp, pri=1180825, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:02 mail sendmail[14561]: k9AHhTwX008613: to=<boy46@bellsouth.net>,<
boy47@bell
south.net>
, delay=3+07:42:14, xdelay=00:00:00, mailer=esmtp, pri=1180826, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:02 mail sendmail[14561]: k9B3r91l003924: to=<lingafel@bellsouth.net
>,<lingail
@bellsouth
.net>,<lin
gal@bellso
uth.net>,<
lingale@be
llsouth.ne
t>,<lingal
ls@bellsou
th.net>, delay=2+21:35:43, xdelay=00:00:00, mailer=esmtp, pri=1180841, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:02 mail sendmail[14561]: k99JLbHP017994: to=<hutclub@bellsouth.net>
, delay=4+06:06:38, xdelay=00:00:00, mailer=esmtp, pri=1180845, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:03 mail sendmail[14561]: k991fbpa015949: to=<andrew.ricketts@bellso
uth.net>,<
andrew.rid
dell@bells
outh.net>,
delay=4+23:46:28, xdelay=00:00:00, mailer=esmtp, pri=1091613, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:03 mail sendmail[14561]: k991IeEA015715: to=<kkoski@bellsouth.net>,
<kkosmo@be
llsouth.ne
t>,<kkosni
k@bellsout
h.net>,<kk
ossack@bel
lsouth.net
>,<kkosse@
bellsouth.
net>, delay=5+00:09:45, xdelay=00:00:00, mailer=esmtp, pri=1181619, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:03 mail sendmail[14561]: k991IeEA015715: k9DEe196014561: sender notify: Cannot send message for 5 days
Oct 14 07:00:04 mail sendmail[18768]: k9DLe1oD018768: to=<szqvyd@briankennedy.co
.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80005, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:00:06 mail sendmail[18768]: k9DLe1oD018768: k9DLe1oE018768: return to sender: User unknown
Oct 14 07:00:06 mail sendmail[18768]: k9DLe1oE018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81029, dsn=2.0.0, stat=Sent
Oct 14 07:00:06 mail sendmail[18768]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+09:56:31, xdelay=00:00:00, mailer=esmtp, pri=468794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:09 mail sendmail[14561]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:00:10 mail sendmail[18768]: k9556iLs006612: to=<emsthing@yahoo.com>,<e
mstho@yaho
o.com>,<em
sthuongmin
hnhieu@yah
oo.com>,<e
msti024@ya
hoo.com>,<
emsti@yaho
o.com>, delay=8+20:22:09, xdelay=00:00:04, mailer=esmtp, pri=378796, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:00:11 mail sendmail[14561]: k9DEe196014561: to=<kzymcvilus@caller.com>
, delay=00:00:08, xdelay=00:00:08, mailer=esmtp, pri=72866, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as B45595CABC0)
Oct 14 07:00:11 mail sendmail[14561]: k991fbpg015949: to=<andrew.rolla@bellsouth
.net>,<and
rew.roper@
bellsouth.
net>, delay=4+23:45:59, xdelay=00:00:00, mailer=esmtp, pri=1091619, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:11 mail sendmail[14561]: k9AN551q019861: to=<savarna@bellsouth.net>
,<savarnad
@bellsouth
.net>,<sav
as@bellsou
th.net>,<s
avasg@bell
south.net>
,<savash@b
ellsouth.n
et>, delay=3+02:23:41, xdelay=00:00:00, mailer=esmtp, pri=1272024, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:11 mail sendmail[14561]: k9B1wXg5032365: to=<big1merv@bellsouth.net
>,<big1mom
@bellsouth
.net>, delay=2+23:30:04, xdelay=00:00:00, mailer=esmtp, pri=1272029, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:13 mail sendmail[18768]: k93C0hO3025892: to=<tarntipsett@yahoo.com>
,<tarnue20
01@yahoo.c
om>,<tarnu
e@yahoo.co
m>,<tarnue
howard@yah
oo.com>,<t
arnum13@ya
hoo.com>, delay=10+13:28:42, xdelay=00:00:03, mailer=esmtp, pri=378796, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:15 mail sendmail[14561]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:00:16 mail sendmail[14561]: k9A9Z4Mb027460: to=<flb_frank@dell.com>, delay=3+15:54:36, xdelay=00:00:04, mailer=esmtp, pri=1272056, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:00:16 mail sendmail[18768]: k9556Uxt006597: to=<philmari8@yahoo.com>,<
philmariar
achelle@ya
hoo.com>,<
philmarine
boy@yahoo.
com>,<phil
marion1@ya
hoo.com>,<
philmarion
@yahoo.com
>, delay=8+20:23:44, xdelay=00:00:02, mailer=esmtp, pri=378796, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:00:17 mail sendmail[14561]: k9AJgEkt011307: to=<auskie@bellsouth.net>,
<auskk@bel
lsouth.net
>, delay=3+05:47:02, xdelay=00:00:00, mailer=esmtp, pri=1272058, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:17 mail sendmail[14561]: k9AGVdYV006944: to=<chunghan@bellsouth.net
>,<chungi@
bellsouth.
net>,<chun
gil@bellso
uth.net>,<
chungj@bel
lsouth.net
>,<chungkt
@bellsouth
.net>, delay=3+08:58:31, xdelay=00:00:00, mailer=esmtp, pri=1272058, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:17 mail sendmail[15758]: k942RM33020900: to=<fiaccola31@yahoo.com>,
<fiaccola_
1@yahoo.co
m>,<fiacco
ladoro@yah
oo.com>,<f
iaccolina@
yahoo.com>
,<fiaccosk
@yahoo.com
>, delay=9+23:02:16, xdelay=00:00:51, mailer=esmtp, pri=378795, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:00:18 mail sendmail[18768]: k9C5phA8014778: to=<md4598952@yahoo.com>,<
sorry_p_ca
n@yahoo.co
m>,<sorry_
p_cant@yah
oo.com>,<s
orry_p_can
t_meld@yah
oo.com>,<s
orry_p_im_
drunk@yaho
o.com>,<so
rry_p_no_w
ilds@yahoo
.com>, delay=1+19:38:03, xdelay=00:00:02, mailer=esmtp, pri=378796, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta119.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:00:18 mail sendmail[18768]: k9C5phA8014778: k9DLe1oF018768: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:00:19 mail sendmail[18768]: k9DLe1oF018768: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 07:00:19 mail sendmail[21609]: k9E1UJZu021609: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 07:00:19 mail sendmail[18768]: k9DLe1oF018768: to=<jrfeyks@centrapoint.co
m>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=50079, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 07:00:19 mail sendmail[18768]: k9DLe1oF018768: k9DLe1oG018768: return to sender: Local configuration error
Oct 14 07:00:19 mail sendmail[18768]: k9DLe1oG018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51103, dsn=2.0.0, stat=Sent
Oct 14 07:00:21 mail sendmail[15758]: k93ITRRv019907: to=<jpslvdoc@yahoo.com>,<j
pslvshrt@y
ahoo.com>,
<jpslx@yah
oo.com>,<j
psly@yahoo
.com>,<jps
lynch@yaho
o.com>, delay=10+06:59:36, xdelay=00:00:04, mailer=esmtp, pri=378797, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:21 mail sendmail[15758]: k955HZk7007022: to=<wray_j@bellsouth.net>,
<wray_k@be
llsouth.ne
t>,<wray_l
j@bellsout
h.net>,<wr
ay_p@bells
outh.net>,
<wray_t@be
llsouth.ne
t>, delay=8+20:11:49, xdelay=00:00:00, mailer=esmtp, pri=378798, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:21 mail sendmail[15758]: k955HZk7007022: k9DGe1dR015758: DSN: Cannot send message for 5 days
Oct 14 07:00:23 mail sendmail[18768]: k94Fnphv028911: to=<supakwik03@yahoo.com>,
<supakyd@y
ahoo.com>,
<supal18@y
ahoo.com>,
<supal@yah
oo.com>,<s
upal_shres
tha@yahoo.
com>, delay=9+09:40:26, xdelay=00:00:04, mailer=esmtp, pri=378797, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:25 mail sendmail[15758]: k9DGe1dR015758: to=<csbwwmpyaphda@brianken
nedy.co.uk
>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79975, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:00:26 mail sendmail[15758]: k9DGe1dR015758: k9DGe1dS015758: return to sender: User unknown
Oct 14 07:00:26 mail sendmail[15758]: k9DGe1dS015758: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80999, dsn=2.0.0, stat=Sent
Oct 14 07:00:27 mail sendmail[18768]: k93CGbI1027067: to=<broncohed@yahoo.com>,<
broncohehe
@yahoo.com
>,<broncoh
erb@yahoo.
com>,<bron
cohfan@yah
oo.com>,<b
roncohhh_2
000@yahoo.
com>, delay=10+13:12:43, xdelay=00:00:04, mailer=esmtp, pri=378798, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:00:29 mail sendmail[15758]: k93BvY2b025744: to=<lislar2002@yahoo.com>,
<lislarios
@yahoo.com
>,<lislarr
y@yahoo.co
m>,<lislau
f@yahoo.co
m>,<lislau
gh_01@yaho
o.com>, delay=10+13:31:16, xdelay=00:00:03, mailer=esmtp, pri=378798, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:00:31 mail sendmail[18768]: k93I9bvq018169: to=<boremaker@yahoo.com>,<
boreman201
0@yahoo.co
m>,<borema
n74@yahoo.
com>,<bore
man87@yaho
o.com>,<bo
reman@yaho
o.com>, delay=10+07:20:43, xdelay=00:00:04, mailer=esmtp, pri=378798, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:33 mail sendmail[15758]: k938l2FV013823: to=<iggy_do@yahoo.com>,<ig
gy_dont_wo
rk_dumbass
@yahoo.com
>, delay=10+16:42:13, xdelay=00:00:04, mailer=esmtp, pri=378798, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:00:34 mail sendmail[13928]: k9DDe1nh013928: to=<kvcbaeqmvyox@arabia.co
m>, delay=00:02:00, xdelay=00:02:00, mailer=esmtp, pri=79967, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:00:34 mail sendmail[13928]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+09:56:59, xdelay=00:00:00, mailer=esmtp, pri=558794, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:34 mail sendmail[13928]: k9C5phA8014778: to=<md4598952@yahoo.com>,<
sorry_p_ca
n@yahoo.co
m>,<sorry_
p_cant@yah
oo.com>,<s
orry_p_can
t_meld@yah
oo.com>,<s
orry_p_im_
drunk@yaho
o.com>,<so
rry_p_no_w
ilds@yahoo
.com>, delay=1+19:38:19, xdelay=00:00:00, mailer=esmtp, pri=468796, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:34 mail sendmail[13928]: k941mNPh019278: to=<vancachua12345@yahoo.c
om>,<vanca
chxaem2005
@yahoo.com
>,<vancacr
istian@yah
oo.com>,<v
ancagados@
yahoo.com>
,<vancagia
nhogoc@yah
oo.com>, delay=9+23:40:10, xdelay=00:00:00, mailer=esmtp, pri=378799, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:34 mail sendmail[13928]: k941mNPh019278: k9DDe1ni013928: DSN: Cannot send message for 5 days
Oct 14 07:00:35 mail sendmail[18768]: k93CNj4m027276: to=<waddellpenn@yahoo.com>
,<waddells
2000@yahoo
.com>,<wad
dells@yaho
o.com>,<wa
ddellshagg
y31@yahoo.
com>,<wadd
ellthomas@
yahoo.com>
, delay=10+13:05:51, xdelay=00:00:04, mailer=esmtp, pri=378798, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:35 mail sendmail[15758]: k93LTHW2001854: to=<chelsea1022@yahoo.com>
,<chelsea1
024@yahoo.
com>,<chel
sea10399@y
ahoo.com>,
<chelsea10
3@yahoo.co
m>,<chelse
a104@yahoo
.com>, delay=10+04:00:58, xdelay=00:00:02, mailer=esmtp, pri=378798, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:00:35 mail sendmail[13928]: k9DDe1ni013928: to=<lzvyrrbujmvbdy@bellauk
.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79974, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:00:36 mail sendmail[13928]: k9DDe1ni013928: k9DDe1nj013928: return to sender: User unknown
Oct 14 07:00:36 mail sendmail[13928]: k9DDe1nj013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=80998, dsn=2.0.0, stat=Sent
Oct 14 07:00:36 mail sendmail[13928]: k950qQvZ025928: to=<alaskanchick3570@yahoo
.com>,<ala
skanchipmu
nks@yahoo.
com>,<alas
kanchris@y
ahoo.com>,
<alaskancl
assifieds@
yahoo.com>
,<alaskanc
leantime@y
ahoo.com>,
delay=9+00:37:50, xdelay=00:00:00, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:36 mail sendmail[13928]: k950qQvZ025928: k9DDe1nk013928: DSN: Cannot send message for 5 days
Oct 14 07:00:37 mail sendmail[13928]: k9DDe1nk013928: to=<kzxejfu@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79976, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:00:38 mail sendmail[13928]: k9DDe1nk013928: k9DDe1nl013928: return to sender: User unknown
Oct 14 07:00:38 mail sendmail[13928]: k9DDe1nl013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81000, dsn=2.0.0, stat=Sent
Oct 14 07:00:38 mail sendmail[13928]: k93BO50C023381: to=<sulfakar@yahoo.com>,<s
ulfamate@y
ahoo.com>,
<sulfameta
zol@yahoo.
com>,<sulf
ametoxazol
_tr@yahoo.
com>,<sulf
ametoxazol
_trimetr@y
ahoo.com>,
delay=10+14:01:53, xdelay=00:00:00, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:38 mail sendmail[13928]: k93BO50C023381: k9DDe1nm013928: DSN: Cannot send message for 5 days
Oct 14 07:00:38 mail sendmail[13928]: k9DDe1nm013928: to=<flwkg@centrapoint.com>
, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79977, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:00:38 mail sendmail[13928]: k9DDe1nm013928: k9DDe1nn013928: return to sender: Local configuration error
Oct 14 07:00:38 mail sendmail[13928]: k9DDe1nn013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81001, dsn=2.0.0, stat=Sent
Oct 14 07:00:38 mail sendmail[18768]: k93DR5dh030107: to=<aofa_20100@yahoo.com>,
<aofa_2010
54@yahoo.c
om>,<aofa_
78@yahoo.c
om>,<aofa_
ali2005@ya
hoo.com>,<
aofa_aofa2
000@yahoo.
com>, delay=10+12:03:25, xdelay=00:00:03, mailer=esmtp, pri=378799, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:00:38 mail sendmail[13928]: k946xdeS001133: to=<duldrumz@yahoo.com>,<d
uldrumzo@y
ahoo.com>,
<duldrumzo
ne@yahoo.c
om>,<duldr
undai_san@
yahoo.com>
,<duldrund
ai_sangu@y
ahoo.com>,
delay=9+18:19:36, xdelay=00:00:00, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:38 mail sendmail[13928]: k946xdeS001133: k9DDe1no013928: DSN: Cannot send message for 5 days
Oct 14 07:00:39 mail sendmail[15758]: k93Gbv6P009764: to=<judxs@yahoo.com>,<judx
sef@yahoo.
com>,<judx
xjudxx10@y
ahoo.com>,
<judxy1@ya
hoo.com>,<
judy@yahoo
.com>, delay=10+08:52:39, xdelay=00:00:04, mailer=esmtp, pri=378799, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:00:43 mail sendmail[18768]: k93FrIWJ006188: to=<schung316@yahoo.com>,<
schung6@ya
hoo.com>,<
schung_1@y
ahoo.com>,
<schung_99
@yahoo.com
>,<schunga
th@yahoo.c
om>, delay=10+09:34:53, xdelay=00:00:05, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 4/1)
Oct 14 07:00:43 mail sendmail[13928]: k9DDe1no013928: to=<ogyqzktc@ciudad.com.ar
>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=79976, relay=postino12.prima.com.
ar. [200.42.0.146], dsn=2.0.0, stat=Sent (ok 1160789394 qp 69946)
Oct 14 07:00:43 mail sendmail[13928]: k93MC1WT004847: to=<buybunn@yahoo.com>,<bu
ybuns@yaho
o.com>,<bu
yburke@yah
oo.com>,<b
uyburro@ya
hoo.com>,<
buybutt@ya
hoo.com>, delay=10+03:10:53, xdelay=00:00:00, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:43 mail sendmail[13928]: k93MC1WT004847: k9DDe1np013928: DSN: Cannot send message for 5 days
Oct 14 07:00:45 mail sendmail[15758]: k940Re04015122: to=<smiller00_2001@yahoo.c
om>,<smill
er0182@yah
oo.com>,<s
miller0208
@yahoo.com
>,<smiller
0498@yahoo
.com>,<smi
ller@yahoo
.com>, delay=10+01:02:51, xdelay=00:00:06, mailer=esmtp, pri=378800, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:47 mail sendmail[18768]: k93BwPvN025786: to=<kristie_j2001@yahoo.co
m>,<kristi
e_j@yahoo.
com>,<kris
tie_j_24@y
ahoo.com>,
<kristie_j
_g@yahoo.c
om>,<krist
ie_jane200
2@yahoo.co
m>, delay=10+13:31:33, xdelay=00:00:04, mailer=esmtp, pri=378800, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:00:48 mail sendmail[13928]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 07:00:50 mail sendmail[18768]: k93GN0UE008223: to=<amethyst_light2@yahoo.
com>,<amet
hyst_littl
e@yahoo.co
m>,<amethy
st_lone@ya
hoo.com>,<
amethyst_l
ongisland@
yahoo.com>
,<amethyst
_luv@yahoo
.com>, delay=10+09:07:49, xdelay=00:00:03, mailer=esmtp, pri=378801, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:00:51 mail sendmail[15758]: k9C8NF70000887: to=<nickie2001@yahoo.com>,
<nickie200
1mullis@ya
hoo.com>,<
nickie2002
002@yahoo.
com>,<nick
ie2002@yah
oo.com>,<n
ickie20048
0@yahoo.co
m>,<nickie
2009@yahoo
.com>, delay=1+17:06:01, xdelay=00:00:06, mailer=esmtp, pri=378801, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 07:00:52 mail sendmail[13928]: k9DDe1np013928: to=<jatrw@caller.com>, delay=00:00:09, xdelay=00:00:08, mailer=esmtp, pri=80019, relay=mail.global.sprint.c
om. [207.46.51.86], dsn=2.0.0, stat=Sent (Ok: queued as EEDA91CC8052)
Oct 14 07:00:52 mail sendmail[13928]: k93CeQZk027756: to=<mingtian1111@yahoo.com
>,<mingtia
n123@yahoo
.com>,<min
gtian32@ya
hoo.com>,<
mingtian70
@yahoo.com
>,<mingtia
nni@yahoo.
com>, delay=10+12:50:23, xdelay=00:00:00, mailer=esmtp, pri=378801, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:52 mail sendmail[13928]: k93CeQZk027756: k9DDe1nq013928: DSN: Cannot send message for 5 days
Oct 14 07:00:56 mail sendmail[13928]: k9DDe1nq013928: to=<dujjftfamq@caller.com>
, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79978, relay=mail.global.sprint.c
om. [207.46.51.86], dsn=2.0.0, stat=Sent (Ok: queued as 083E41CC804D)
Oct 14 07:00:56 mail sendmail[13928]: k938bcce013320: to=<raivenzoe@yahoo.com>,<
raiver12@y
ahoo.com>,
<raiver222
000@yahoo.
com>,<raiv
er22@yahoo
.com>,<rai
veraive@ya
hoo.com>, delay=10+16:52:54, xdelay=00:00:00, mailer=esmtp, pri=378801, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:56 mail sendmail[13928]: k938bcce013320: k9DDe1nr013928: DSN: Cannot send message for 5 days
Oct 14 07:00:56 mail sendmail[13928]: k9DDe1nr013928: to=<rbseidl@arabia.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79976, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:00:56 mail sendmail[13928]: k93CfXRR027782: to=<nblossom@bellsouth.net
>,<nblount
@bellsouth
.net>,<nbl
racer@bell
south.net>
,<nblue1@b
ellsouth.n
et>,<nblue
@bellsouth
.net>, delay=10+12:47:58, xdelay=00:00:00, mailer=esmtp, pri=378801, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:56 mail sendmail[13928]: k93CfXRR027782: k9DDe1ns013928: DSN: Cannot send message for 5 days
Oct 14 07:00:56 mail sendmail[13928]: k9DDe1ns013928: to=<eoetntqyg@centrapoint.
com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79978, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:00:56 mail sendmail[13928]: k9DDe1ns013928: k9DDe1nt013928: return to sender: Local configuration error
Oct 14 07:00:56 mail sendmail[13928]: k9DDe1nt013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81002, dsn=2.0.0, stat=Sent
Oct 14 07:00:56 mail sendmail[13928]: k93CWjLF027477: to=<belinda_lai20@yahoo.co
m>,<belind
a_lai@yaho
o.com>, delay=10+12:56:57, xdelay=00:00:00, mailer=esmtp, pri=378802, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:00:56 mail sendmail[13928]: k93CWjLF027477: k9DDe1nu013928: DSN: Cannot send message for 5 days
Oct 14 07:00:57 mail sendmail[18768]: k939twBn018799: to=<lolug@yahoo.com>,<lolu
george@yah
oo.com>,<l
oluh@yahoo
.com>,<lol
uha@yahoo.
com>,<lolu
honey@yaho
o.com>, delay=10+15:32:35, xdelay=00:00:07, mailer=esmtp, pri=378801, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:00:57 mail sendmail[18768]: k942Gei7020508: to=<darrell420@bellsouth.n
et>,<darre
ll426@bell
south.net>
,<darrell4
3@bellsout
h.net>,<da
rrell442@b
ellsouth.n
et>,<darre
ll44@bells
outh.net>,
delay=9+23:12:56, xdelay=00:00:00, mailer=esmtp, pri=378802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:00:57 mail sendmail[18768]: k942Gei7020508: k9DLe1oH018768: DSN: Cannot send message for 5 days
Oct 14 07:00:57 mail sendmail[15758]: k93H7D77012750: to=<cloudjons@yahoo.com>,<
cloudjoy@y
ahoo.com>,
<cloudjq@y
ahoo.com>,
<cloudjr13
@yahoo.com
>,<cloudjr
@yahoo.com
>, delay=10+08:23:23, xdelay=00:00:06, mailer=esmtp, pri=378801, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok Fri Oct 13 18:30:08 2006: ql 27529847, qr 0)
Oct 14 07:01:00 mail sendmail[18768]: k9DLe1oH018768: to=<hxbhfd@briankennedy.co
.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80019, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:01:00 mail sendmail[13928]: k9DDe1nu013928: to=<zxxdrhdaevmxv@arsenal.
co.uk>, delay=00:00:04, xdelay=00:00:02, mailer=esmtp, pri=79976, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 07:01:00 mail sendmail[13928]: k9DDe1nu013928: k9DDe1nv013928: return to sender: User unknown
Oct 14 07:01:00 mail sendmail[13928]: k9DDe1nv013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81000, dsn=2.0.0, stat=Sent
Oct 14 07:01:00 mail sendmail[13928]: k93CBd3I026867: to=<bjandrin98@yahoo.com>,
<bjandruck
o@yahoo.co
m>,<bjandr
us17@yahoo
.com>,<bja
ndrus@yaho
o.com>,<bj
andruss@ya
hoo.com>, delay=10+13:19:19, xdelay=00:00:00, mailer=esmtp, pri=378802, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:01:00 mail sendmail[13928]: k93CBd3I026867: k9DDe1nw013928: DSN: Cannot send message for 5 days
Oct 14 07:01:01 mail sendmail[18768]: k9DLe1oH018768: k9DLe1oI018768: return to sender: User unknown
Oct 14 07:01:01 mail sendmail[18768]: k9DLe1oI018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81043, dsn=2.0.0, stat=Sent
Oct 14 07:01:01 mail sendmail[18768]: k937J7ZK007113: to=<amco22@bellsouth.net>,
<amcoad@be
llsouth.ne
t>,<amcoag
e@bellsout
h.net>,<am
coats@bell
south.net>
,<amcobb@b
ellsouth.n
et>, delay=10+18:10:37, xdelay=00:00:00, mailer=esmtp, pri=378802, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:01:01 mail sendmail[18768]: k937J7ZK007113: k9DLe1oJ018768: DSN: Cannot send message for 5 days
Oct 14 07:01:01 mail sendmail[18768]: k9DLe1oJ018768: to=<jbswmtsgmxmiq@chinabyt
e.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79977, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:01:01 mail sendmail[15758]: k9BI2APl024173: to=<kikam4@yahoo.com>,<kik
am9@yahoo.
com>,<kika
m_90255@ya
hoo.com>,<
kikamac225
5@yahoo.co
m>,<kikama
da@yahoo.c
om>,<kikam
ae@yahoo.c
om>, delay=2+07:26:04, xdelay=00:00:04, mailer=esmtp, pri=378802, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta142.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:01:01 mail sendmail[15758]: k9BI2APl024173: k9DGe1dT015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:01:01 mail sendmail[15758]: k9DGe1dT015758: to=<ygjspjbla@centrapoint.
com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=50048, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:01:01 mail sendmail[15758]: k9DGe1dT015758: k9DGe1dU015758: return to sender: Local configuration error
Oct 14 07:01:01 mail sendmail[15758]: k9DGe1dU015758: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51072, dsn=2.0.0, stat=Sent
Oct 14 07:01:02 mail sendmail[13928]: k9DDe1nw013928: to=<hkvbjn@chinabyte.com>,
delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79977, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:01:02 mail sendmail[13928]: k93Jxm7Y027638: to=<careybell1@yahoo.com>,
<careybell
2002@yahoo
.com>,<car
eybennett3
76@yahoo.c
om>,<carey
bennett@ya
hoo.com>,<
careybenso
n@yahoo.co
m>, delay=10+05:27:47, xdelay=00:00:00, mailer=esmtp, pri=378803, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:01:02 mail sendmail[13928]: k93Jxm7Y027638: k9DDe1nx013928: DSN: Cannot send message for 5 days
Oct 14 07:01:06 mail sendmail[18768]: k941GktG017982: to=<dmaggs01@yahoo.com>,<d
ollar_cent
s95916@yah
oo.com>,<d
ollar_chee
se@yahoo.c
om>,<dolla
r_chephudo
icongai@ya
hoo.com>,<
dollar_d43
@yahoo.com
>, delay=10+00:13:07, xdelay=00:00:05, mailer=esmtp, pri=378802, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:01:06 mail sendmail[18768]: k957U0Tb023162: to=<cmercado4@bellsouth.ne
t>,<cmerca
do@bellsou
th.net>,<c
mercan@bel
lsouth.net
>,<cmercer
1@bellsout
h.net>,<cm
ercer@bell
south.net>
, delay=8+18:01:04, xdelay=00:00:00, mailer=esmtp, pri=378803, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:01:06 mail sendmail[18768]: k957U0Tb023162: k9DLe1oK018768: DSN: Cannot send message for 5 days
Oct 14 07:01:07 mail sendmail[13928]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:01:07 mail sendmail[18768]: k9DLe1oK018768: to=<qnquv@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79979, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:01:08 mail sendmail[18768]: k9DLe1oK018768: k9DLe1oL018768: return to sender: User unknown
Oct 14 07:01:08 mail sendmail[18768]: k9DLe1oL018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81003, dsn=2.0.0, stat=Sent
Oct 14 07:01:10 mail sendmail[13928]: k9DDe1nx013928: to=<mwvxxvpkjgrwx@caller.c
om>, delay=00:00:08, xdelay=00:00:08, mailer=esmtp, pri=79979, relay=mail.global.sprint.c
om. [207.46.163.22], dsn=2.0.0, stat=Sent (Ok: queued as AE81357EC41)
Oct 14 07:01:10 mail sendmail[13928]: k93KLVAB029325: to=<upregulate@yahoo.com>,
<upregulat
or@yahoo.c
om>,<upreh
t@yahoo.co
m>,<uprein
@yahoo.com
>,<upremch
and@yahoo.
com>, delay=10+05:09:34, xdelay=00:00:00, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:01:10 mail sendmail[13928]: k93KLVAB029325: k9DDe1o0013928: DSN: Cannot send message for 5 days
Oct 14 07:01:10 mail sendmail[13928]: k9DDe1o0013928: to=<rhtuemixhfwpa@arabia.c
om>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79979, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:01:10 mail sendmail[13928]: k93DXf03030368: to=<n2010_2587528@yahoo.co
m>,<n2013@
yahoo.com>
,<n2015@ya
hoo.com>,<
n2019@yaho
o.com>,<n2
01bs@yahoo
.com>, delay=10+11:57:06, xdelay=00:00:00, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:01:10 mail sendmail[13928]: k93DXf03030368: k9DDe1o1013928: DSN: Cannot send message for 5 days
Oct 14 07:01:11 mail sendmail[18768]: k943BBHo022700: to=<draius_ford@yahoo.com>
,<draivenn
7@yahoo.co
m>,<draivy
n@yahoo.co
m>,<draixb
ang@yahoo.
com>,<drai
xosprofile
@yahoo.com
>, delay=9+22:19:56, xdelay=00:00:03, mailer=esmtp, pri=378803, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:01:11 mail sendmail[18768]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+10:41:55, xdelay=00:00:00, mailer=esmtp, pri=378804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:01:11 mail sendmail[18768]: k9BElW58014035: k9DLe1oM018768: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:01:11 mail sendmail[13928]: k9DDe1o1013928: to=<jwieea@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=80017, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:01:12 mail sendmail[13928]: k9DDe1o1013928: k9DDe1o2013928: return to sender: User unknown
Oct 14 07:01:12 mail sendmail[13928]: k9DDe1o2013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81041, dsn=2.0.0, stat=Sent
Oct 14 07:01:16 mail sendmail[18768]: k9DLe1oM018768: to=<kmaqskraba@ciudad.com.
ar>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=50050, relay=postino11.prima.com.
ar. [200.42.0.147], dsn=2.0.0, stat=Sent (ok 1160789426 qp 54548)
Oct 14 07:01:19 mail sendmail[18768]: k93GvEmg011797: to=<bbwsub2whp@yahoo.com>,
<bbwsub425
4@yahoo.co
m>,<bbwsub
4bmn@yahoo
.com>,<bbw
sub4doc@ya
hoo.com>,<
bbwsub4dom
@yahoo.com
>, delay=10+08:32:07, xdelay=00:00:03, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:01:21 mail sendmail[18768]: k94024gN013536: to=<jony_98@dell.com>,<jon
y_99@dell.
com>,<jony
_b@dell.co
m>,<jony_c
14@dell.co
m>,<jony_c
art@dell.c
om>, delay=10+01:29:03, xdelay=00:00:02, mailer=esmtp, pri=378804, relay=smtp2.ins.dell.com. [143.166.83.141], dsn=5.0.0, stat=Service unavailable
Oct 14 07:01:21 mail sendmail[18768]: k94024gN013536: k9DLe1oN018768: DSN: Service unavailable
Oct 14 07:01:22 mail sendmail[18768]: k9DLe1oN018768: to=<ytqdcczbpaq@centrapoin
t.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79979, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:01:22 mail sendmail[18768]: k9DLe1oN018768: k9DLe1oO018768: return to sender: Local configuration error
Oct 14 07:01:22 mail sendmail[18768]: k9DLe1oO018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81003, dsn=2.0.0, stat=Sent
Oct 14 07:01:27 mail sendmail[18768]: k93BqtnM025202: to=<dmrud053@yahoo.com>,<d
mrudn@yaho
o.com>,<dm
rudolp@yah
oo.com>,<d
mrudy@yaho
o.com>,<dm
ruff1@yaho
o.com>, delay=10+13:38:30, xdelay=00:00:05, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:01:30 mail sendmail[18768]: k93B1hnR021949: to=<msnbaker29@yahoo.com>,
<msnbaloch
@yahoo.com
>,<msnbark
l@yahoo.co
m>,<msnbar
kley@yahoo
.com>,<msn
basher@yah
oo.com>, delay=10+14:28:10, xdelay=00:00:03, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:01:33 mail sendmail[18768]: k93DIuds029478: to=<pyle24sh@yahoo.com>,<p
yle36@yaho
o.com>,<py
le38@yahoo
.com>,<pyl
e44703@yah
oo.com>,<p
yle4561@ya
hoo.com>, delay=10+12:12:16, xdelay=00:00:03, mailer=esmtp, pri=378804, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:01:37 mail sendmail[18768]: k93MQ6e6005863: to=<laurazhebo@yahoo.com>,
<lauraziel
@yahoo.com
>,<laurazi
leviciute@
yahoo.com>
,<laurazim
@yahoo.com
>,<laurazi
ns@yahoo.c
om>, delay=10+03:02:04, xdelay=00:00:04, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 4/1)
Oct 14 07:01:41 mail sendmail[18768]: k93CeQZu027756: to=<mingtoy86305@yahoo.com
>,<mingtoy
iv@yahoo.c
om>, delay=10+12:48:57, xdelay=00:00:04, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 07:01:41 mail sendmail[18768]: k93GdRho009892: to=<k.frost1@bellsouth.net
>,<k.frost
2@bellsout
h.net>,<k.
frost@bell
south.net>
,<k.fuerst
@bellsouth
.net>,<k.f
ujita@bell
south.net>
, delay=10+08:49:46, xdelay=00:00:00, mailer=esmtp, pri=378805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:01:41 mail sendmail[18768]: k93GdRho009892: k9DLe1oP018768: DSN: Cannot send message for 5 days
Oct 14 07:01:41 mail sendmail[18768]: k9DLe1oP018768: to=<diypgwccr@centrapoint.
com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79980, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:01:41 mail sendmail[18768]: k9DLe1oP018768: k9DLe1oQ018768: return to sender: Local configuration error
Oct 14 07:01:41 mail sendmail[18768]: k9DLe1oQ018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81004, dsn=2.0.0, stat=Sent
Oct 14 07:01:44 mail sendmail[15871]: k9C2uoZl005074: to=<redraw@atl.bellsouth.n
et>,<redri
ver@atl.be
llsouth.ne
t>, delay=1+22:34:27, xdelay=00:32:01, mailer=esmtp, pri=979265, relay=atl.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:01:44 mail sendmail[18768]: k93HpGR6016605: to=<daat575@yahoo.com>,<da
at578@yaho
o.com>,<da
at6232@yah
oo.com>,<d
aat626@yah
oo.com>,<d
aat640@yah
oo.com>, delay=10+07:38:55, xdelay=00:00:03, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:01:50 mail sendmail[18768]: k944nY3W027677: to=<dav55hen@yahoo.com>,<d
av55z28@ya
hoo.com>,<
dav561@yah
oo.com>,<d
av562@yaho
o.com>,<da
v56@yahoo.
com>, delay=9+20:41:46, xdelay=00:00:06, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:01:53 mail sendmail[18768]: k941SY8m018391: to=<anthony2001_33@yahoo.c
om>,<antho
ny2001cali
f@yahoo.co
m>,<anthon
y200211553
us@yahoo.c
om>,<antho
ny20022091
0@yahoo.co
m>,<anthon
y200233170
@yahoo.com
>, delay=10+00:03:11, xdelay=00:00:03, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:01:56 mail sendmail[18768]: k93ACEi4019465: to=<damn63@yahoo.com>,<dam
n655@yahoo
.com>,<dam
n68771@yah
oo.com>,<d
amn691747@
yahoo.com>
,<damn694@
yahoo.com>
, delay=10+15:18:03, xdelay=00:00:03, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:01:56 mail sendmail[18768]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:11:41, xdelay=00:00:00, mailer=esmtp, pri=378805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:01:56 mail sendmail[18768]: k9BGJeXZ018939: k9DLe1oR018768: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:01:58 mail sendmail[18768]: k9DLe1oR018768: to=<ziogjoyuf@bellauk.com>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=50051, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:01:59 mail sendmail[18768]: k9DLe1oR018768: k9DLe1oS018768: return to sender: User unknown
Oct 14 07:01:59 mail sendmail[18768]: k9DLe1oS018768: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51075, dsn=2.0.0, stat=Sent
Oct 14 07:02:01 mail sendmail[27407]: k9C8Oa8v000987: to=<palmyra@lig.bellsouth.
net>,<palo
@lig.bells
outh.net>,
<palombo@l
ig.bellsou
th.net>,<p
alomino@li
g.bellsout
h.net>,<pa
lomo@lig.b
ellsouth.n
et>, delay=1+17:06:19, xdelay=00:32:00, mailer=esmtp, pri=1068938, relay=lig.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 07:02:01 mail sendmail[18768]: k93Bskwx025450: to=<one_man_army_1488@yaho
o.com>,<on
e_man_army
_1965@yaho
o.com>,<on
e_man_army
_cfh@yahoo
.com>,<one
_man_army_
ebk@yahoo.
com>,<one_
man_b1@yah
oo.com>, delay=10+13:36:34, xdelay=00:00:02, mailer=esmtp, pri=378805, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:02:05 mail sendmail[18768]: k93C2gb0026173: to=<resh4lis@yahoo.com>,<r
esh4nish@y
ahoo.com>,
<resh4us@y
ahoo.com>,
<resh51@ya
hoo.com>,<
resh525@ya
hoo.com>, delay=10+13:28:13, xdelay=00:00:03, mailer=esmtp, pri=378806, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:02:12 mail sendmail[27407]: k9C4YtNa007910: to=<satchmo1@bellsouth.net
>,<satchmo
@bellsouth
.net>,<sat
chue@bells
outh.net>,
<satchum@b
ellsouth.n
et>, delay=1+20:57:14, xdelay=00:00:10, mailer=esmtp, pri=1429178, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:02:12 mail sendmail[27407]: k9BDbQOC010677: to=<eisenhowerl@bellsouth.
net>,<silv
acmi@bells
outh.net>,
delay=2+11:48:52, xdelay=00:00:00, mailer=esmtp, pri=1429187, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:02:12 mail sendmail[27407]: k9BEgwHP013803: to=<emegill@bellsouth.net>
,<emegison
@bellsouth
.net>,<eme
grath@bell
south.net>
,<emehls@b
ellsouth.n
et>,<emehm
et@bellsou
th.net>, delay=2+10:49:06, xdelay=00:00:00, mailer=esmtp, pri=1429204, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:02:12 mail sendmail[27407]: k9C8dto2003224: to=<sucky@bellsouth.net>,<
suclesta@b
ellsouth.n
et>,<sucol
lin@bellso
uth.net>,<
sucono@bel
lsouth.net
>,<sucook@
bellsouth.
net>, delay=1+16:50:05, xdelay=00:00:00, mailer=esmtp, pri=1429207, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:02:14 mail sendmail[18768]: k956teqM017786: to=<chinwelife20002002@yah
oo.com>,<c
hinwelife_
21@yahoo.c
om>,<chinw
elife_7@ya
hoo.com>,<
chinwelife
s_y2k@yaho
o.com>,<ch
inwelizzy@
yahoo.com>
, delay=8+18:34:00, xdelay=00:00:09, mailer=esmtp, pri=378806, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:02:14 mail sendmail[18768]: k959j36v032394: to=<labs.missouri@bellsout
h.net>,<la
bs123@bell
south.net>
,<labs42@b
ellsouth.n
et>,<labs4
me@bellsou
th.net>,<l
abs@bellso
uth.net>, delay=8+15:46:58, xdelay=00:00:00, mailer=esmtp, pri=378806, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:02:14 mail sendmail[18768]: k959j36v032394: k9DLe1oT018768: DSN: Cannot send message for 5 days
Oct 14 07:02:14 mail sendmail[18768]: k9DLe1oT018768: to=<fjfyfuee@arabia.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79982, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:02:18 mail sendmail[18768]: k93LdAxO002617: to=<charlesd30@yahoo.com>,
<charlesd3
16@yahoo.c
om>,<charl
esd31@yaho
o.com>,<ch
arlesd34@y
ahoo.com>,
<charlesd4
@yahoo.com
>, delay=10+03:52:05, xdelay=00:00:04, mailer=esmtp, pri=378806, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:02:20 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:02:21 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:02:21 mail sendmail[15871]: k9C1hb29002774: to=<lomurphy@bellsouth.net
>, delay=1+23:48:17, xdelay=00:00:37, mailer=esmtp, pri=1339272, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:02:21 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:02:22 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:02:22 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:02:23 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:03:22 mail sendmail[19957]: k992VtAF016706: to=<cowger@clt.bellsouth.n
et>,<cowgi
rl@clt.bel
lsouth.net
>, delay=4+23:00:32, xdelay=00:32:00, mailer=esmtp, pri=465658, relay=clt.bellsouth.net. [205.152.58.1], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:04:24 mail sendmail[12927]: k9AL57L3013308: to=<hmargo@atl.bellsouth.n
et>,<hmars
h@atl.bell
south.net>
,<hmart@at
l.bellsout
h.net>,<hm
artin@atl.
bellsouth.
net>,<hmb@
atl.bellso
uth.net>, delay=3+04:28:56, xdelay=00:32:00, mailer=esmtp, pri=906838, relay=atl.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:04:32 mail sendmail[5162]: k9BHGKZR021691: to=<schmal@bna.bellsouth.n
et>, delay=2+08:14:56, xdelay=00:32:00, mailer=esmtp, pri=799823, relay=bna.bellsouth.net. [205.152.58.6], dsn=4.0.0, stat=Deferred: Connection timed out with bna.bellsouth.net.
Oct 14 07:04:50 mail sendmail[21644]: k9E1YmjO021644: from=<data@scriptacomsyste
ms.com>, size=12811, class=0, nrcpts=14, msgid=<005201c6ef31$9c6309
90$0301a8c
0@computer
03>, proto=SMTP, daemon=MTA, relay=lan-202-144-86-75.ma
a.sify.net
[202.144.86.75] (may be forged)
Oct 14 07:04:50 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:04:50 mail sendmail[21645]: k9E1YmjO021644: to=<asokan@scriptacomsyste
ms.com>, ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:02, xdelay=00:00:00, mailer=local, pri=433015, dsn=2.0.0, stat=Sent
Oct 14 07:04:54 mail sendmail[21645]: k9E1YmjO021644: to=<kavitha_shinde@hotmail
.com>,<fla
viababy@ho
tmail.com>
,<clairero
cha@hotmai
l.com>,<va
dimb_1@hot
mail.com>,
<nafisahus
ain100@hot
mail.com>,
<sheeba_ai
sh@hotmail
.com>,<opu
stech@hotm
ail.com>,<
trans_oper
ations@hot
mail.com>,
ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:06, xdelay=00:00:04, mailer=esmtp, pri=433015, relay=mx2.hotmail.com. [65.54.244.168], dsn=2.0.0, stat=Sent ( <005201c6ef31$9c630990$030
1a8c0@comp
uter03> Queued mail for delivery)
Oct 14 07:04:56 mail sendmail[21645]: STARTTLS=client, relay=mail.mcmltech.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:04:58 mail sendmail[21645]: k9E1YmjO021644: to=<workflow@mcmltech.com>
, ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:10, xdelay=00:00:04, mailer=esmtp, pri=433015, relay=mail.mcmltech.com. [70.85.17.215], dsn=2.0.0, stat=Sent (13241 bytes received in 00:00:01; Message accepted for delivery)
Oct 14 07:04:59 mail sendmail[21645]: k9E1YmjO021644: to=<aruna_tufchi@rediffmai
l.com>, ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:11, xdelay=00:00:01, mailer=esmtp, pri=433015, relay=mail4.rediffmail.com
. [59.160.240.132], dsn=2.0.0, stat=Sent (ok 1160789464 qp 3694)
Oct 14 07:04:59 mail sendmail[21645]: k9E1YmjO021644: to=<"Jayalakshmi HT" jaya_shyam2002@yahoo.co.in
>, ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:11, xdelay=00:00:00, mailer=esmtp, pri=433015, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:05:00 mail sendmail[5162]: k9BGIvDm018890: to=<wkcuddy@bellsouth.net>
, delay=2+09:13:40, xdelay=00:00:28, mailer=esmtp, pri=1339823, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:05:01 mail sendmail[5162]: k9C3Mcj3005631: to=<crocalot@bellsouth.net
>,<crocamo
@bellsouth
.net>, delay=1+22:11:30, xdelay=00:00:00, mailer=esmtp, pri=439823, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:01 mail sendmail[5162]: k9C2pKTq004877: to=<kaf63@bellsouth.net>,<
kaf8@bells
outh.net>,
delay=1+22:42:45, xdelay=00:00:00, mailer=esmtp, pri=439831, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:02 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:05:02 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:05:03 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:05:03 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:05:04 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:05:05 mail last message repeated 2 times
Oct 14 07:05:06 mail sendmail[5162]: k9BAMpkl032510: to=<ganzon@bellsouth.net>,
delay=2+15:04:43, xdelay=00:00:00, mailer=esmtp, pri=1249831, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9BEvWJt014567: to=<donmcdon@bellsouth.net
>,<donmcdo
nald@bells
outh.net>,
<donmcdowe
ll@bellsou
th.net>,<d
onmce@bell
south.net>
,<donmcgee
@bellsouth
.net>, delay=2+10:36:59, xdelay=00:00:00, mailer=esmtp, pri=1339836, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9BIPumG025770: to=<papsan3@bellsouth.net>
,<papservi
ces@bellso
uth.net>,<
papsgurl@b
ellsouth.n
et>,<papsp
r94@bellso
uth.net>,<
papttyr@be
llsouth.ne
t>, delay=2+07:08:28, xdelay=00:00:00, mailer=esmtp, pri=1429840, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9C1wlMG003324: to=<heubelm@bellsouth.net>
,<heubelr@
bellsouth.
net>, delay=1+23:35:32, xdelay=00:00:00, mailer=esmtp, pri=1339852, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9C1wlMO003324: to=<heuerpandj@bellsouth.n
et>,<heuer
s77@bellso
uth.net>, delay=1+23:35:11, xdelay=00:00:00, mailer=esmtp, pri=1429866, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9B9np04031025: to=<jessica707@bellsouth.n
et>, delay=2+15:43:00, xdelay=00:00:00, mailer=esmtp, pri=1340864, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9C8R6RM001329: to=<dluvlyd@bellsouth.net>
,<dluvlyon
e@bellsout
h.net>,<dl
uvmann@bel
lsouth.net
>,<dluvmas
ter@bellso
uth.net>,<
dluvmd2@be
llsouth.ne
t>, delay=1+17:07:06, xdelay=00:00:00, mailer=esmtp, pri=1340868, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9C7TYQb026282: to=<dabom1240@bellsouth.ne
t>,<dabom1
2562@bells
outh.net>,
<dabom1260
@bellsouth
.net>,<dab
om12@bells
outh.net>,
<dabom1313
3@bellsout
h.net>, delay=1+17:58:56, xdelay=00:00:00, mailer=esmtp, pri=1250869, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:06 mail sendmail[5162]: k9BFpwV1017407: to=<ohyeah1@bellsouth.net>
,<ohyeah43
@bellsouth
.net>,<ohy
ew812@bell
south.net>
,<ohzzqd@b
ellsouth.n
et>,<oi@be
llsouth.ne
t>, delay=2+09:42:31, xdelay=00:00:00, mailer=esmtp, pri=1340870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:07 mail sendmail[5162]: k9BF76al015003: to=<pokeeffe@bellsouth.net
>,<pokehat
e@bellsout
h.net>,<po
kekid@bell
south.net>
,<pokelace
@bellsouth
.net>,<pok
elope@bell
south.net>
, delay=2+10:27:51, xdelay=00:00:00, mailer=esmtp, pri=1340872, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:07 mail sendmail[5162]: k9BBs6Y6004653: to=<mti_in@yahoo.co.in>, delay=2+13:34:23, xdelay=00:00:00, mailer=esmtp, pri=1160880, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=5.0.0, stat=Service unavailable
Oct 14 07:05:07 mail sendmail[5162]: k9BBs6Y6004653: k9CKe1aL005162: sender notify: Service unavailable
Oct 14 07:05:14 mail sendmail[21645]: k9E1YmjO021644: to=<minu_bali@yahoo.com>,<
dr_reshhas
an@yahoo.c
om>, ctladdr=<data@scriptacomsy
stems.com>
(509/509), delay=00:00:26, xdelay=00:00:15, mailer=esmtp, pri=433015, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 07:05:35 mail sendmail[19957]: k9B6weTu019325: to=<slmann1@bellsouth.net>
,<slmannin
@bellsouth
.net>, delay=2+18:35:40, xdelay=00:02:13, mailer=esmtp, pri=1006312, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:37 mail sendmail[19957]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:05:38 mail sendmail[12927]: k9B7qv8H025314: to=<tmledoux@bellsouth.net
>,<tmlee@b
ellsouth.n
et>,<tmlei
ster@bells
outh.net>,
<tmlemay@b
ellsouth.n
et>,<tmlew
is@bellsou
th.net>, delay=2+17:38:24, xdelay=00:01:14, mailer=esmtp, pri=1356848, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:05:38 mail sendmail[12927]: k990KYvK014421: to=<wolfm48@bellsouth.net>
,<wolfmail
@bellsouth
.net>, delay=5+01:12:16, xdelay=00:00:00, mailer=esmtp, pri=1357933, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:38 mail sendmail[12927]: k990KYvK014421: k9DCe1HT012927: sender notify: Cannot send message for 5 days
Oct 14 07:05:38 mail sendmail[12927]: k9DCe1HT012927: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 07:05:38 mail sendmail[12927]: k9DCe1HT012927: to=<liovjaytzrzl@centrapoi
nt.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=69207, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 07:05:38 mail sendmail[12927]: k9DCe1HT012927: k9DCe1HU012927: return to sender: Local configuration error
Oct 14 07:05:38 mail sendmail[21672]: k9E1ZcVw021672: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 07:05:38 mail sendmail[19957]: k9AKhrTx012578: to=<harriet_rook@dell.com>
, delay=3+04:45:49, xdelay=00:00:03, mailer=esmtp, pri=1096318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:05:38 mail sendmail[12927]: k9DCe1HU012927: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=70231, dsn=2.0.0, stat=Sent
Oct 14 07:05:38 mail sendmail[12927]: k990Qo4m014504: to=<melodylord@bellsouth.n
et>,<melod
ym@bellsou
th.net>,<m
elodymay@b
ellsouth.n
et>,<melod
ymichael@b
ellsouth.n
et>,<melod
ymonroe@be
llsouth.ne
t>, delay=5+01:06:45, xdelay=00:00:00, mailer=esmtp, pri=1357936, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:38 mail sendmail[12927]: k990Qo4m014504: k9DCe1HV012927: sender notify: Cannot send message for 5 days
Oct 14 07:05:38 mail sendmail[19957]: k9AKhrTx012578: to=<harriet_ruslan@dell.co
m>, delay=3+04:45:49, xdelay=00:00:03, mailer=esmtp, pri=1096318, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:05:40 mail sendmail[19957]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.ne
t>,<d7ofus
7@bellsout
h.net>,<d7
stars@bell
south.net>
,<d7thstar
@bellsouth
.net>,<d7t
oes@bellso
uth.net>, delay=3+16:02:59, xdelay=00:00:00, mailer=esmtp, pri=1096324, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:40 mail sendmail[19957]: k9AHSbvc008173: to=<ckozy@bellsouth.net>,<
ckp116@bel
lsouth.net
>,<ckp1192
@bellsouth
.net>,<ckp
1@bellsout
h.net>,<ck
p@bellsout
h.net>, delay=3+08:06:58, xdelay=00:00:00, mailer=esmtp, pri=1186328, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:40 mail sendmail[19957]: k9B4iu4j005638: to=<servigon@bellsouth.net
>,<servil@
bellsouth.
net>, delay=2+20:50:01, xdelay=00:00:00, mailer=esmtp, pri=1186330, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:41 mail sendmail[19957]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+20:15:19, xdelay=00:00:00, mailer=esmtp, pri=1096345, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:41 mail sendmail[19957]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+03:21:36, xdelay=00:00:00, mailer=esmtp, pri=1096346, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:41 mail sendmail[19957]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+13:27:40, xdelay=00:00:00, mailer=esmtp, pri=1096358, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:05:42 mail sendmail[19957]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+02:22:27, xdelay=00:00:00, mailer=esmtp, pri=1007394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:05:42 mail sendmail[19957]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+18:22:36, xdelay=00:00:00, mailer=esmtp, pri=917413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:06:06 mail sendmail[6709]: k9BBNPXZ003180: to=<oliver22@bhm.bellsouth
.net>, delay=2+14:12:26, xdelay=00:32:00, mailer=esmtp, pri=1314833, relay=bhm.bellsouth.net. [205.152.58.132], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:06:28 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:06:44 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:07:12 mail sendmail[5162]: k9CKe1aL005162: to=<oquhsat@arabia.com>, delay=00:02:05, xdelay=00:02:05, mailer=esmtp, pri=52155, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:07:12 mail sendmail[5162]: k9BDoUI4011420: to=<fletch2500@bellsouth.n
et>,<fletc
h2508@bell
south.net>
,<fletch26
@bellsouth
.net>,<fle
tch27@bell
south.net>
,<fletch3@
bellsouth.
net>, delay=2+11:44:38, xdelay=00:00:00, mailer=esmtp, pri=1340930, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BDoUI8011420: to=<fletch4@bellsouth.net>
,<fletch50
@bellsouth
.net>,<fle
tch52@bell
south.net>
,<fletch53
@bellsouth
.net>,<fle
tch5@bells
outh.net>,
delay=2+11:44:21, xdelay=00:00:00, mailer=esmtp, pri=1340940, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9C6Iwrr017933: to=<lpark12@bellsouth.net>
,<lpark1@b
ellsouth.n
et>,<lpark
23@bellsou
th.net>,<l
park71@bel
lsouth.net
>,<lparke1
@bellsouth
.net>, delay=1+19:17:49, xdelay=00:00:00, mailer=esmtp, pri=1340978, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BI8wiR024685: to=<ajk003@bellsouth.net>,
delay=2+07:26:03, xdelay=00:00:00, mailer=esmtp, pri=1342372, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BEUkEN013317: to=<elwood116@bellsouth.ne
t>, delay=2+11:05:08, xdelay=00:00:00, mailer=esmtp, pri=1342375, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BBqXaj004577: to=<cmvb58a@bellsouth.net>
, delay=2+13:44:38, xdelay=00:00:00, mailer=esmtp, pri=1342378, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BD8Nsn009061: to=<drepps@bellsouth.net>,
delay=2+12:27:09, xdelay=00:00:00, mailer=esmtp, pri=1342379, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BCWKEO006936: to=<micheada3@bellsouth.ne
t>,<michea
l.boston@b
ellsouth.n
et>,<miche
al@bellsou
th.net>, delay=2+12:59:01, xdelay=00:00:00, mailer=esmtp, pri=1342380, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BHrTxg023666: to=<donnalawson@bellsouth.
net>,<donn
alb@bellso
uth.net>,<
donnalbrow
n@bellsout
h.net>,<do
nnalc@bell
south.net>
,<donnald@
bellsouth.
net>, delay=2+07:42:10, xdelay=00:00:00, mailer=esmtp, pri=1342383, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:13 mail sendmail[5162]: k9BFpwUx017407: to=<ohward3@bellsouth.net>
,<ohwell@b
ellsouth.n
et>,<ohwol
fie@bellso
uth.net>,<
ohya@bells
outh.net>,
<ohyeah@be
llsouth.ne
t>, delay=2+09:44:50, xdelay=00:00:00, mailer=esmtp, pri=1342386, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:18 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 07:07:20 mail last message repeated 3 times
Oct 14 07:07:20 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 07:07:21 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 07:07:21 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 07:07:22 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 07:07:22 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 07:07:22 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 07:07:50 mail sendmail[12927]: k9DCe1HV012927: to=<ylevnvaipsby@brain.net
.pk>, delay=00:02:12, xdelay=00:02:12, mailer=esmtp, pri=69181, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 07:07:51 mail sendmail[12927]: k9DCe1HV012927: k9DCe1HW012927: return to sender: User unknown
Oct 14 07:07:51 mail sendmail[12927]: k9DCe1HW012927: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=70205, dsn=2.0.0, stat=Sent
Oct 14 07:07:51 mail sendmail[12927]: k9A7b7wu016132: to=<evelyn21@bellsouth.net
>, delay=3+18:00:02, xdelay=00:00:00, mailer=esmtp, pri=1358028, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:51 mail sendmail[12927]: k99LDfDf023441: to=<aswan30003@bellsouth.n
et>, delay=4+04:23:13, xdelay=00:00:00, mailer=esmtp, pri=1358969, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:52 mail sendmail[12927]: k99KUqmr021781: to=<lisa7199@bellsouth.net
>, delay=4+04:57:54, xdelay=00:00:00, mailer=esmtp, pri=1358982, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:52 mail sendmail[12927]: k9ANA82Q020355: to=<btmincc@bellsouth.net>
,<btminchl
t@bellsout
h.net>, delay=3+02:23:29, xdelay=00:00:00, mailer=esmtp, pri=1358985, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:52 mail sendmail[12927]: k9AGgwA9007161: to=<devil82184@bellsouth.n
et>,<devil
82468@bell
south.net>
,<devil824
87@bellsou
th.net>,<d
evil824@be
llsouth.ne
t>,<devil8
26@bellsou
th.net>, delay=3+08:52:51, xdelay=00:00:00, mailer=esmtp, pri=1358987, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:52 mail sendmail[12927]: k9AKDlCp011818: to=<rdgo@bellsouth.net>,<r
dgodfre@be
llsouth.ne
t>,<rdgodf
rey@bellso
uth.net>,<
rdgodwin@b
ellsouth.n
et>,<rdgof
f01@bellso
uth.net>, delay=3+05:21:40, xdelay=00:00:00, mailer=esmtp, pri=1358988, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:07:55 mail sendmail[18008]: k9C7TlAL026289: to=<hid@atl.bellsouth.net>
,<hidaka@a
tl.bellsou
th.net>,<h
idalgo@atl
.bellsouth
.net>, delay=1+18:07:45, xdelay=00:32:00, mailer=esmtp, pri=377864, relay=atl.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:07:55 mail sendmail[18008]: k9C7TlAL026289: k9DJe11H018008: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:07:56 mail sendmail[18008]: k9DJe11H018008: to=<bbdswfh@arsenal.co.uk>
, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49144, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:07:57 mail sendmail[18008]: k9DJe11H018008: k9DJe11I018008: return to sender: User unknown
Oct 14 07:07:57 mail sendmail[18008]: k9DJe11I018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=50168, dsn=2.0.0, stat=Sent
Oct 14 07:08:09 mail sendmail[9876]: k9C3XOUv005915: to=<ksnyder@bna.bellsouth.
net>, delay=1+22:01:12, xdelay=00:32:00, mailer=esmtp, pri=1227610, relay=bna.bellsouth.net. [205.152.58.6], dsn=4.0.0, stat=Deferred: Connection timed out with bna.bellsouth.net.
Oct 14 07:08:27 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:09:07 mail sendmail[18008]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+11:52:20, xdelay=00:01:10, mailer=esmtp, pri=1007865, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:09:07 mail sendmail[18008]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+11:57:58, xdelay=00:00:00, mailer=esmtp, pri=1007870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:07 mail sendmail[18008]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+10:46:15, xdelay=00:00:00, mailer=esmtp, pri=1007870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:07 mail sendmail[18008]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:28:43, xdelay=00:00:00, mailer=esmtp, pri=917873, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+09:03:01, xdelay=00:00:00, mailer=esmtp, pri=917874, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:42:29, xdelay=00:00:00, mailer=esmtp, pri=917878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:21:40, xdelay=00:00:00, mailer=esmtp, pri=917879, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:46:23, xdelay=00:00:00, mailer=esmtp, pri=917884, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+17:03:44, xdelay=00:00:00, mailer=esmtp, pri=647994, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:08 mail sendmail[18008]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:48:39, xdelay=00:00:00, mailer=esmtp, pri=738006, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:10 mail sendmail[6709]: k9BIZPEL026504: to=<louwon@bellsouth.net>,
delay=2+07:02:42, xdelay=00:03:03, mailer=esmtp, pri=1674833, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:09:10 mail sendmail[6709]: k9C5RVTG011189: to=<jmf77@bellsouth.net>,<
jmf85@bell
south.net>
,<jmf86@be
llsouth.ne
t>,<jmf8@b
ellsouth.n
et>, delay=1+20:10:27, xdelay=00:00:00, mailer=esmtp, pri=1674833, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:09:10 mail sendmail[6709]: k9BFAA9r015182: to=<barrarb@bellsouth.net>
, delay=2+10:26:48, xdelay=00:00:00, mailer=esmtp, pri=1674834, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:09:10 mail sendmail[6709]: k9BCfjxI007446: to=<donald_justice@bellsou
th.net>,<r
ktigg@bell
south.net>
, delay=2+12:56:57, xdelay=00:00:00, mailer=esmtp, pri=1674835, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:10 mail sendmail[6709]: k9BBgFYJ004071: to=<ddey1@bellsouth.net>, delay=2+13:55:44, xdelay=00:00:00, mailer=esmtp, pri=1584839, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:11 mail sendmail[6709]: k9BDjMt4011041: to=<celebpic@bellsouth.net
>, delay=2+11:51:48, xdelay=00:00:00, mailer=esmtp, pri=1674841, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:11 mail sendmail[6709]: k9BBe7T5003876: to=<nittany24@bellsouth.ne
t>, delay=2+13:58:44, xdelay=00:00:00, mailer=esmtp, pri=1674841, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:11 mail sendmail[6709]: k9BFWLMA016421: to=<aarushi_123@yahoo.co.i
n>, delay=2+10:02:26, xdelay=00:00:00, mailer=esmtp, pri=1674843, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:09:11 mail sendmail[6709]: k9BFnngv017196: to=<bbsloan@bellsouth.net>
, delay=2+09:49:18, xdelay=00:00:00, mailer=esmtp, pri=1674843, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:09:11 mail sendmail[6709]: k9BGJlXl018946: to=<larrell@bellsouth.net>
, delay=2+09:17:36, xdelay=00:00:00, mailer=esmtp, pri=1674844, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx00.mail.bellsouth.net.
Oct 14 07:09:11 mail sendmail[6709]: k9BFC5hP015237: to=<hvberk@bellsouth.net>,
delay=2+10:27:01, xdelay=00:00:00, mailer=esmtp, pri=1674846, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:11 mail sendmail[6709]: k9BDeiIn010851: to=<skutt@bellsouth.net>, delay=2+11:55:33, xdelay=00:00:00, mailer=esmtp, pri=1674847, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:12 mail sendmail[18008]: k9C7w96K030152: to=<emdja@yahoo.com>,<emdj
ames@yahoo
.com>,<emd
jdt@yahoo.
com>,<emdj
dw@yahoo.c
om>,<emdji
m@yahoo.co
m>,<emdjj@
yahoo.com>
, delay=1+17:39:49, xdelay=00:00:04, mailer=esmtp, pri=468790, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 07:09:12 mail sendmail[18008]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+10:05:37, xdelay=00:00:00, mailer=esmtp, pri=648794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:18 mail sendmail[8530]: k9BInxL2027385: to=<kann@rdu.bellsouth.net
>, delay=2+06:48:41, xdelay=00:32:00, mailer=esmtp, pri=1224848, relay=rdu.bellsouth.net. [205.152.58.134], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:09:25 mail sendmail[8530]: k9BCTx6A006812: to=<ajcjfk@bellsouth.net>,
<ajcjimd@b
ellsouth.n
et>,<ajcjk
@bellsouth
.net>,<ajc
jr@bellsou
th.net>, delay=2+13:06:43, xdelay=00:00:07, mailer=esmtp, pri=1584849, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:09:30 mail sendmail[18008]: k9C5phA8014778: to=<md4598952@yahoo.com>,<
sorry_p_ca
n@yahoo.co
m>,<sorry_
p_cant@yah
oo.com>,<s
orry_p_can
t_meld@yah
oo.com>,<s
orry_p_im_
drunk@yaho
o.com>,<so
rry_p_no_w
ilds@yahoo
.com>, delay=1+19:47:15, xdelay=00:00:18, mailer=esmtp, pri=558796, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta158.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:09:34 mail sendmail[18008]: k9BI2APl024173: to=<kikam4@yahoo.com>,<kik
am9@yahoo.
com>,<kika
m_90255@ya
hoo.com>,<
kikamac225
5@yahoo.co
m>,<kikama
da@yahoo.c
om>,<kikam
ae@yahoo.c
om>, delay=2+07:34:37, xdelay=00:00:04, mailer=esmtp, pri=468802, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta158.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:09:34 mail sendmail[18008]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+10:50:18, xdelay=00:00:00, mailer=esmtp, pri=468804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:34 mail sendmail[18008]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:19:19, xdelay=00:00:00, mailer=esmtp, pri=468805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:36 mail sendmail[16393]: k992VtAD016706: to=<cowboys@clt.bellsouth.
net>,<cowd
en@clt.bel
lsouth.net
>,<cowee@c
lt.bellsou
th.net>,<c
owell@clt.
bellsouth.
net>,<cowe
n@clt.bell
south.net>
, delay=4+23:06:56, xdelay=00:32:00, mailer=esmtp, pri=820134, relay=clt.bellsouth.net. [205.152.58.7], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:09:39 mail sendmail[18008]: k93LIDLF000845: to=<bonzoboy002@yahoo.com>
,<bonzoboy
225@yahoo.
com>,<bonz
oboys@yaho
o.com>,<ic
ekid55@yah
oo.com>,<i
cekid_1991
_2000@yaho
o.com>, delay=10+04:20:19, xdelay=00:00:04, mailer=esmtp, pri=378806, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:09:46 mail sendmail[18008]: k942bJY8021309: to=<mikema2004@yahoo.com>,
<mikema200
8@yahoo.co
m>,<mikema
3@yahoo.co
m>,<mikema
4@yahoo.co
m>,<mikema
97@yahoo.c
om>, delay=9+23:00:26, xdelay=00:00:07, mailer=esmtp, pri=378806, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:09:49 mail sendmail[18008]: k93BaPrb023994: to=<nc_blue_dragonfly@yaho
o.com>,<nc
_blue_eyed
_angel_197
4@yahoo.co
m>,<nc_blu
e_eyed_gir
l_32@yahoo
.com>,<nc_
blue_eyedg
uy@yahoo.c
om>,<nc_bl
ue_eyes25@
yahoo.com>
, delay=10+14:00:58, xdelay=00:00:03, mailer=esmtp, pri=378806, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:09:52 mail sendmail[18008]: k942N1Gp020803: to=<hard_to_handle_24@yaho
o.com>,<ha
rd_to_hand
le_31@yaho
o.com>, delay=9+23:16:06, xdelay=00:00:03, mailer=esmtp, pri=378806, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:09:55 mail sendmail[18008]: k93AVuV9020434: to=<jamess_90042@yahoo.com
>,<jamess_
98@yahoo.c
om>,<james
s_baby4eve
r@yahoo.co
m>,<jamess
_bong@yaho
o.com>,<ja
mess_gal17
@yahoo.com
>, delay=10+15:07:42, xdelay=00:00:03, mailer=esmtp, pri=378807, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:09:59 mail sendmail[18008]: k93Ju6bs027362: to=<drew17179@yahoo.com>,<
drew172001
@yahoo.com
>,<drew172
1@yahoo.co
m>,<drew17
31@yahoo.c
om>,<drew1
738@yahoo.
com>, delay=10+05:43:01, xdelay=00:00:04, mailer=esmtp, pri=378807, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:09:59 mail sendmail[18008]: k938taSE014313: to=<bandmiss@bellsouth.net
>,<bandmjo
nes00@bell
south.net>
,<bandmmey
er@bellsou
th.net>,<b
andmo@bell
south.net>
,<bandmoe@
bellsouth.
net>, delay=10+16:43:23, xdelay=00:00:00, mailer=esmtp, pri=378807, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:09:59 mail sendmail[18008]: k938taSE014313: k9DJe11J018008: DSN: Cannot send message for 5 days
Oct 14 07:10:01 mail sendmail[18008]: k9DJe11J018008: to=<sradgcvxmm@arsenal.co.
uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=80018, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:10:01 mail sendmail[18008]: k9DJe11J018008: k9DJe11K018008: return to sender: User unknown
Oct 14 07:10:02 mail sendmail[18008]: k9DJe11K018008: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=81042, dsn=2.0.0, stat=Sent
Oct 14 07:10:02 mail sendmail[18008]: k939GgRZ014994: to=<cplowe@bellsouth.net>,
<cplowild1
s@bellsout
h.net>,<cp
lowman@bel
lsouth.net
>,<cployer
@bellsouth
.net>,<cpl
p@bellsout
h.net>, delay=10+16:23:19, xdelay=00:00:00, mailer=esmtp, pri=378807, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:10:02 mail sendmail[18008]: k939GgRZ014994: k9DJe11L018008: DSN: Cannot send message for 5 days
Oct 14 07:10:02 mail sendmail[18008]: k9DJe11L018008: to=<xlugccucbiuz@chinabyte
.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79998, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:10:06 mail sendmail[18008]: k943GJpH023002: to=<cadman262002@yahoo.com
>,<cadman2
641@yahoo.
com>,<cadm
an26@yahoo
.com>,<cad
man26tr@ya
hoo.com>,<
cadman27@y
ahoo.com>,
delay=9+22:22:42, xdelay=00:00:03, mailer=esmtp, pri=378807, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:10:09 mail sendmail[18008]: k93ACEiC019465: to=<damn78@yahoo.com>,<dam
n79@yahoo.
com>,<damn
82@yahoo.c
om>,<damn8
33662@yaho
o.com>,<ti
ffanymwill
iams@yahoo
.com>, delay=10+15:25:05, xdelay=00:00:03, mailer=esmtp, pri=378807, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:10:20 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 2000
Oct 14 07:10:22 mail sendmail[9876]: k9BDCuHS009350: to=<2mariposa@bellsouth.ne
t>, delay=2+12:24:26, xdelay=00:02:13, mailer=esmtp, pri=1407612, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:10:22 mail sendmail[9876]: k9BI1ece024138: to=<curley77@bellsouth.net
>, delay=2+07:36:06, xdelay=00:00:00, mailer=esmtp, pri=1407613, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:10:23 mail sendmail[9876]: k9BBcaiQ003802: to=<nikki66@bellsouth.net>
, delay=2+14:00:23, xdelay=00:00:00, mailer=esmtp, pri=1407615, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:10:23 mail sendmail[9876]: k9BCL7DM006400: to=<anders24@bellsouth.net
>, delay=2+13:14:55, xdelay=00:00:00, mailer=esmtp, pri=1407615, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:10:41 mail sendmail[6285]: k9BCEnXC005874: to=<jturner@mem.bellsouth.
net>,<juan
@mem.bells
outh.net>,
<juanita@m
em.bellsou
th.net>,<j
ubilee@mem
.bellsouth
.net>,<jud
ge@mem.bel
lsouth.net
>, delay=2+13:24:33, xdelay=00:32:00, mailer=esmtp, pri=714810, relay=mem.bellsouth.net. [205.152.58.2], dsn=4.0.0, stat=Deferred: Connection timed out with mem.bellsouth.net.
Oct 14 07:10:43 mail sendmail[17051]: k98ArYq3001686: to=<aim@msy.bellsouth.net>
,<aima@msy
.bellsouth
.net>, delay=5+14:46:32, xdelay=00:32:14, mailer=esmtp, pri=377870, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 07:10:43 mail sendmail[17051]: k98ArYq3001686: k9DIe1dV017051: DSN: Cannot send message for 5 days
Oct 14 07:10:44 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 3000
Oct 14 07:10:46 mail sendmail[17051]: k9DIe1dV017051: to=<zccikuzqbi@bellauk.com
>, delay=00:00:03, xdelay=00:00:02, mailer=esmtp, pri=79118, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:10:46 mail sendmail[17051]: k9DIe1dV017051: k9DIe1dW017051: return to sender: User unknown
Oct 14 07:10:47 mail sendmail[17051]: k9DIe1dW017051: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=80142, dsn=2.0.0, stat=Sent
Oct 14 07:10:49 mail sendmail[16393]: k9A7WaoE015658: to=<brentwc@bellsouth.net>
, delay=3+18:08:06, xdelay=00:01:13, mailer=esmtp, pri=1270134, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:10:53 mail sendmail[16393]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:10:54 mail sendmail[16393]: k9AA9g0E028206: to=<ap_daisymae@dell.com>,
delay=3+15:30:55, xdelay=00:00:03, mailer=esmtp, pri=1270786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=5.5.4, stat=Service unavailable
Oct 14 07:10:54 mail sendmail[16393]: k9AA9g0E028206: to=<ap_doshi@dell.com>, delay=3+15:30:55, xdelay=00:00:03, mailer=esmtp, pri=1270786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:10:54 mail sendmail[16393]: k9AA9g0E028206: to=<ap_dp103@dell.com>, delay=3+15:30:55, xdelay=00:00:03, mailer=esmtp, pri=1270786, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:10:56 mail sendmail[16393]: k9AA9g0E028206: k9DHe1HI016393: sender notify: Service unavailable
Oct 14 07:10:59 mail sendmail[16393]: k9DHe1HI016393: to=<tdcvoutz@arsenal.co.uk
>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=72033, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 07:10:59 mail sendmail[16393]: k9DHe1HI016393: k9DHe1HJ016393: return to sender: User unknown
Oct 14 07:11:00 mail sendmail[16393]: k9DHe1HJ016393: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=73057, dsn=2.0.0, stat=Sent
Oct 14 07:11:00 mail sendmail[16393]: k99B6Ra2015785: to=<vjriki_4u@yahoo.co.in>
, delay=4+14:33:15, xdelay=00:00:00, mailer=esmtp, pri=1270790, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:11:01 mail sendmail[16393]: k9AA9uV1028209: to=<hawkinsl@bellsouth.net
>,<hawkins
lauren@bel
lsouth.net
>, delay=3+15:30:16, xdelay=00:00:00, mailer=esmtp, pri=1270790, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:01 mail sendmail[16393]: k9B442uJ004255: to=<shibbyguy14@bellsouth.
net>,<shib
bykay05@be
llsouth.ne
t>,<shibee
l@bellsout
h.net>,<sh
ibi@bellso
uth.net>,<
shible@bel
lsouth.net
>, delay=2+21:32:48, xdelay=00:00:00, mailer=esmtp, pri=1270792, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:01 mail sendmail[16393]: k9AFvolb006155: to=<barthmann@bellsouth.ne
t>,<barthm
os@bellsou
th.net>,<b
arthms5@be
llsouth.ne
t>,<barthn
@bellsouth
.net>,<bar
tho@bellso
uth.net>, delay=3+09:41:46, xdelay=00:00:00, mailer=esmtp, pri=1270796, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:02 mail sendmail[16393]: k99EFEwb007597: to=<bjrake@bellsouth.net>,
<frazierr@
bellsouth.
net>,<pday
@bellsouth
.net>, delay=4+11:25:12, xdelay=00:00:00, mailer=esmtp, pri=1180796, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:02 mail sendmail[16393]: k9ACjKOp000680: to=<boxman803@bellsouth.ne
t>,<boxman
8196@bells
outh.net>,
<boxman822
8@bellsout
h.net>,<bo
xman8500@b
ellsouth.n
et>,<boxma
n8@bellsou
th.net>, delay=3+12:53:38, xdelay=00:00:00, mailer=esmtp, pri=1270799, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:03 mail sendmail[16393]: k9ANA82M020355: to=<btmimme@bellsouth.net>
,<btmimrut
op@bellsou
th.net>,<b
tmin22304@
bellsouth.
net>,<btmi
n425@bells
outh.net>,
<btminatlk
9@bellsout
h.net>, delay=3+02:27:11, xdelay=00:00:00, mailer=esmtp, pri=1270801, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:03 mail sendmail[16393]: k9B6LksS014536: to=<birtys@bellsouth.net>,
<birtzy@be
llsouth.ne
t>,<biruby
69@bellsou
th.net>,<b
iruce@bell
south.net>
,<biruchan
@bellsouth
.net>, delay=2+19:18:11, xdelay=00:00:00, mailer=esmtp, pri=1270801, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:03 mail sendmail[16393]: k9AL4xp0013307: to=<ray366@bellsouth.net>,
<ray37212@
bellsouth.
net>,<ray3
79@bellsou
th.net>,<r
ay38@bells
outh.net>,
<ray392@be
llsouth.ne
t>, delay=3+04:33:43, xdelay=00:00:00, mailer=esmtp, pri=1360802, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:04 mail sendmail[16393]: k9AL89Vo013386: to=<ray366@bellsouth.net>,
<ray37212@
bellsouth.
net>,<ray3
79@bellsou
th.net>,<r
ay38@bells
outh.net>,
<ray392@be
llsouth.ne
t>, delay=3+04:32:33, xdelay=00:00:00, mailer=esmtp, pri=1270802, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:04 mail sendmail[16393]: k999scUJ009373: to=<deedell@bellsouth.net>
, delay=4+15:45:30, xdelay=00:00:00, mailer=esmtp, pri=1270802, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k9AC87vt031639: to=<zeg64@bellsouth.net>,<
zeg@bellso
uth.net>,<
zega6553@b
ellsouth.n
et>,<zegg@
bellsouth.
net>,<zegm
@bellsouth
.net>, delay=3+13:31:52, xdelay=00:00:00, mailer=esmtp, pri=1360804, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k9AB1UDH029653: to=<ttaylor1@bellsouth.net
>,<ttaylor
28@bellsou
th.net>,<t
taylor2@be
llsouth.ne
t>,<ttaylo
r4@bellsou
th.net>,<t
taylor5@be
llsouth.ne
t>, delay=3+14:37:21, xdelay=00:00:00, mailer=esmtp, pri=1270805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k99ESURF008065: to=<rdksimm22@bellsouth.ne
t>, delay=4+11:09:29, xdelay=00:00:00, mailer=esmtp, pri=1270807, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k9B1wXg9032365: to=<big2001@bellsouth.net>
,<big2002@
bellsouth.
net>,<big2
1@bellsout
h.net>,<bi
g222@bells
outh.net>,
<big22@bel
lsouth.net
>, delay=2+23:39:37, xdelay=00:00:00, mailer=esmtp, pri=1270811, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k99INT9j015508: to=<alegerno@bellsouth.net
>, delay=4+07:17:23, xdelay=00:00:00, mailer=esmtp, pri=1270811, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:05 mail sendmail[16393]: k9B7wOht025921: to=<gerryatc@bellsouth.net
>,<gerryb1
@bellsouth
.net>,<ger
ryb@bellso
uth.net>,<
gerrybla@b
ellsouth.n
et>,<gerry
blake@bell
south.net>
, delay=2+17:41:30, xdelay=00:00:00, mailer=esmtp, pri=1270812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:06 mail sendmail[16393]: k99JTc1e018428: to=<bcrockett1@bellsouth.n
et>, delay=4+06:09:54, xdelay=00:00:00, mailer=esmtp, pri=1180820, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:10 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 4000
Oct 14 07:11:15 mail sendmail[17051]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:30:51, xdelay=00:00:28, mailer=esmtp, pri=1007873, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:11:15 mail sendmail[17051]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+09:05:08, xdelay=00:00:00, mailer=esmtp, pri=1007874, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:15 mail sendmail[17051]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+22:44:36, xdelay=00:00:00, mailer=esmtp, pri=1007878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:15 mail sendmail[17051]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:23:47, xdelay=00:00:00, mailer=esmtp, pri=1007879, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:16 mail sendmail[17051]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+09:48:31, xdelay=00:00:00, mailer=esmtp, pri=1007884, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:16 mail sendmail[17051]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+17:05:52, xdelay=00:00:00, mailer=esmtp, pri=737994, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:16 mail sendmail[17051]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:50:47, xdelay=00:00:00, mailer=esmtp, pri=828006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:16 mail sendmail[17051]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+10:07:41, xdelay=00:00:00, mailer=esmtp, pri=738794, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:20 mail sendmail[17051]: k9C5phA8014778: to=<md4598952@yahoo.com>,<
sorry_p_ca
n@yahoo.co
m>,<sorry_
p_cant@yah
oo.com>,<s
orry_p_can
t_meld@yah
oo.com>,<s
orry_p_im_
drunk@yaho
o.com>,<so
rry_p_no_w
ilds@yahoo
.com>, delay=1+19:49:05, xdelay=00:00:03, mailer=esmtp, pri=648796, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/6)
Oct 14 07:11:24 mail sendmail[17051]: k9BI2APl024173: to=<kikam4@yahoo.com>,<kik
am9@yahoo.
com>,<kika
m_90255@ya
hoo.com>,<
kikamac225
5@yahoo.co
m>,<kikama
da@yahoo.c
om>,<kikam
ae@yahoo.c
om>, delay=2+07:36:27, xdelay=00:00:04, mailer=esmtp, pri=558802, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 3/3)
Oct 14 07:11:24 mail sendmail[17051]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+10:52:08, xdelay=00:00:00, mailer=esmtp, pri=558804, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:24 mail sendmail[17051]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:21:09, xdelay=00:00:00, mailer=esmtp, pri=558805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:28 mail sendmail[17051]: k938eKu2013439: to=<patoculas11@yahoo.com>
,<patod234
@yahoo.com
>,<patod7@
yahoo.com>
,<patod819
8@yahoo.co
m>,<patod@
yahoo.com>
, delay=10+17:00:47, xdelay=00:00:04, mailer=esmtp, pri=378807, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:11:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 5000
Oct 14 07:11:30 mail sendmail[17051]: k93AKkRK019862: to=<chisjc@yahoo.com>,<chi
sjeff2000@
yahoo.com>
,<chisjeri
cho123@yah
oo.com>,<c
hisjohn@ya
hoo.com>,<
chisk@yaho
o.com>, delay=10+15:17:54, xdelay=00:00:02, mailer=esmtp, pri=378807, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:11:32 mail sendmail[17051]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:11:33 mail sendmail[17051]: k956VgOH014610: to=<i_t_smith@dell.com>, delay=8+19:09:43, xdelay=00:00:03, mailer=esmtp, pri=378808, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:11:33 mail sendmail[17051]: k956VgOH014610: to=<i_tackett@dell.com>, delay=8+19:09:43, xdelay=00:00:03, mailer=esmtp, pri=378808, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:11:34 mail sendmail[17051]: k956VgOH014610: to=<i_takahashi@dell.com>,
delay=8+19:09:44, xdelay=00:00:04, mailer=esmtp, pri=378808, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:11:34 mail sendmail[17051]: k956VgOH014610: to=<i_takeit_inda_ass@dell
.com>, delay=8+19:09:44, xdelay=00:00:04, mailer=esmtp, pri=378808, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:11:35 mail sendmail[17051]: k956VgOH014610: k9DIe1dX017051: DSN: Cannot send message for 5 days
Oct 14 07:11:38 mail sendmail[17051]: k9DIe1dX017051: to=<hqcqiqwhvxtgrb@brianke
nnedy.co.u
k>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80007, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:11:40 mail sendmail[17051]: k9DIe1dX017051: k9DIe1dY017051: return to sender: User unknown
Oct 14 07:11:40 mail sendmail[17051]: k9DIe1dY017051: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81031, dsn=2.0.0, stat=Sent
Oct 14 07:11:40 mail sendmail[17051]: k93MJpEu005412: to=<biggesta@bellsouth.net
>,<biggest
al1@bellso
uth.net>,<
biggestarz
@bellsouth
.net>,<big
gestbo@bel
lsouth.net
>,<biggest
d99@bellso
uth.net>, delay=10+03:20:53, xdelay=00:00:00, mailer=esmtp, pri=378808, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:11:40 mail sendmail[17051]: k93MJpEu005412: k9DIe1dZ017051: DSN: Cannot send message for 5 days
Oct 14 07:11:42 mail sendmail[17051]: k9DIe1dZ017051: to=<pejwchi@chinabyte.com>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79984, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:11:51 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 6000
Oct 14 07:12:07 mail sendmail[17051]: k93B8ZKb022394: to=<tpmsajid@yahoo.com>,<t
pmsep@yaho
o.com>,<tp
msept@yaho
o.com>,<tp
mskid@yaho
o.com>,<tp
msperson@y
ahoo.com>,
delay=10+14:32:59, xdelay=00:00:25, mailer=esmtp, pri=378808, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:12:07 mail sendmail[17051]: k96Mpch4009884: to=<koncepts@bellsouth.net
>,<koncera
k@bellsout
h.net>,<ko
nch@bellso
uth.net>,<
konchman@b
ellsouth.n
et>,<konch
og@bellsou
th.net>, delay=7+02:50:16, xdelay=00:00:00, mailer=esmtp, pri=378809, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:12:08 mail sendmail[17051]: k96Mpch4009884: k9DIe1da017051: DSN: Cannot send message for 5 days
Oct 14 07:12:09 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 7000
Oct 14 07:12:11 mail sendmail[17051]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=DHE-RSA-AES256-SHA,
bits=256/256
Oct 14 07:12:14 mail sendmail[17051]: k9DIe1da017051: to=<kknpwcsjpau@caller.com
>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=80028, relay=mail.global.sprint.c
om. [65.55.251.22], dsn=2.0.0, stat=Sent (Ok: queued as 081B7D1806F)
Oct 14 07:12:14 mail sendmail[17051]: k942a1X1021271: to=<jeremyflint@bellsouth.
net>,<jere
myfrasier@
bellsouth.
net>,<jere
myfrompa@b
ellsouth.n
et>,<jerem
yg1@bellso
uth.net>,<
jeremyg@be
llsouth.ne
t>, delay=9+23:04:00, xdelay=00:00:00, mailer=esmtp, pri=378809, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:12:14 mail sendmail[17051]: k942a1X1021271: k9DIe1db017051: DSN: Cannot send message for 5 days
Oct 14 07:12:15 mail sendmail[17051]: k9DIe1db017051: to=<mfrawp@bellauk.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79985, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:12:16 mail sendmail[17051]: k9DIe1db017051: k9DIe1dc017051: return to sender: User unknown
Oct 14 07:12:17 mail sendmail[17051]: k9DIe1dc017051: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=81009, dsn=2.0.0, stat=Sent
Oct 14 07:12:20 mail sendmail[17051]: k9C4cfWm007995: to=<alex_andria2@yahoo.com
>,<alex_an
dria_0000@
yahoo.com>
,<alex_and
ria_online
@yahoo.com
>,<alex_an
driano@yah
oo.com>,<a
lex_andrio
s@yahoo.co
m>,<alex_a
ndrogyne@y
ahoo.com>,
delay=1+21:02:26, xdelay=00:00:03, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/4)
Oct 14 07:12:24 mail sendmail[17051]: k93HRSRw014544: to=<superwomen90003@yahoo.
com>,<supe
rwomen9087
@yahoo.com
>,<superwo
men92111@y
ahoo.com>,
<superwome
n92585@yah
oo.com>,<s
uperwomen9
5206@yahoo
.com>, delay=10+08:13:46, xdelay=00:00:03, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:12:25 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 8000
Oct 14 07:12:28 mail sendmail[17051]: k93H4vM2012506: to=<normavalencia_82@yahoo
.com>,<nor
mavalenzue
la1@yahoo.
com>,<norm
avallejocr
ystal@yaho
o.com>,<no
rmavallejo
s@yahoo.co
m>,<normav
andemark20
00@yahoo.c
om>, delay=10+08:36:56, xdelay=00:00:04, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:12:28 mail sendmail[17051]: k93BeJR4024231: to=<airelav@bellsouth.net>
,<airelect
@bellsouth
.net>,<air
elibre@bel
lsouth.net
>, delay=10+14:00:58, xdelay=00:00:00, mailer=esmtp, pri=378809, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:12:30 mail sendmail[17051]: k93BeJR4024231: to=<bigw00@yahoo.com>,<big
w@yahoo.co
m>, delay=10+14:01:00, xdelay=00:00:02, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:12:30 mail sendmail[17051]: k93BeJR4024231: k9DIe1dd017051: DSN: Cannot send message for 5 days
Oct 14 07:12:47 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 9000
Oct 14 07:13:02 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 10000
Oct 14 07:13:22 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 11000
Oct 14 07:13:35 mail sendmail[10303]: k9B8EOkq027458: to=<pcalhoun@lig.bellsouth
.net>,<pca
meron@lig.
bellsouth.
net>,<pcam
pbell@lig.
bellsouth.
net>,<pcam
pos@lig.be
llsouth.ne
t>,<pcarey
@lig.bells
outh.net>,
delay=2+17:26:51, xdelay=00:32:00, mailer=esmtp, pri=999020, relay=lig.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 07:13:37 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 12000
Oct 14 07:13:51 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 13000
Oct 14 07:14:01 mail sendmail[10613]: k9BCDqrF005857: to=<joannep@bhm.bellsouth.
net>, delay=2+13:29:06, xdelay=00:32:00, mailer=esmtp, pri=1317595, relay=bhm.bellsouth.net. [205.152.58.132], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:14:05 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 14000
Oct 14 07:14:08 mail sendmail[5678]: k9BFv7MI017691: to=<bubrig@bhm.bellsouth.n
et>, delay=2+09:45:49, xdelay=00:32:00, mailer=esmtp, pri=1316424, relay=bhm.bellsouth.net. [205.152.58.132], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:14:12 mail sendmail[11354]: k987YsKS031133: to=<diedrick@clt.bellsouth
.net>,<die
go@clt.bel
lsouth.net
>,<diehard
@clt.bells
outh.net>,
<diehl@clt
.bellsouth
.net>,<die
hm@clt.bel
lsouth.net
>, delay=5+18:02:39, xdelay=00:32:00, mailer=esmtp, pri=377897, relay=clt.bellsouth.net. [205.152.58.7], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:14:12 mail sendmail[11354]: k987YsKS031133: k9D5e1Oc011354: DSN: Cannot send message for 5 days
Oct 14 07:14:21 mail sendmail[11354]: k9D5e1Oc011354: to=<tcjrgqlsekr@briankenne
dy.co.uk>,
delay=00:00:09, xdelay=00:00:08, mailer=esmtp, pri=79143, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:14:22 mail sendmail[11354]: k9D5e1Oc011354: k9D5e1Od011354: return to sender: User unknown
Oct 14 07:14:24 mail sendmail[11354]: k9D5e1Od011354: to=root, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=80167, dsn=2.0.0, stat=Sent
Oct 14 07:14:26 mail sendmail[21723]: k9E1iMMe021723: ruleset=check_rcpt, arg1=<eric.vip@msa.hinet.n
et>, relay=NK219-91-107-249.ads
l.dynamic.
apol.com.t
w [219.91.107.249], reject=550 5.7.1 <eric.vip@msa.hinet.net>..
. Relaying denied
Oct 14 07:14:27 mail sendmail[21723]: k9E1iMMe021723: lost input channel from NK219-91-107-249.adsl.dyna
mic.apol.c
om.tw [219.91.107.249] to MTA after rcpt
Oct 14 07:14:27 mail sendmail[21723]: k9E1iMMe021723: from=<oipopoip@msa.hinet.n
et>, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=NK219-91-107-249.ads
l.dynamic.
apol.com.t
w [219.91.107.249]
Oct 14 07:14:28 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 15000
Oct 14 07:14:31 mail sendmail[17051]: k9DIe1dd017051: to=<ibtfojerjjwvx@arabia.c
om>, delay=00:02:01, xdelay=00:02:00, mailer=esmtp, pri=79985, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:14:31 mail sendmail[17051]: k93Iqsva022060: to=<johnt43@bellsouth.net>
,<johnt45@
bellsouth.
net>,<john
t57@bellso
uth.net>,<
johnt67@be
llsouth.ne
t>,<johnt6
@bellsouth
.net>, delay=10+06:50:05, xdelay=00:00:00, mailer=esmtp, pri=378809, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:14:31 mail sendmail[17051]: k93Iqsva022060: k9DIe1de017051: DSN: Cannot send message for 5 days
Oct 14 07:14:41 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 16000
Oct 14 07:14:55 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 17000
Oct 14 07:15:02 mail sendmail[10613]: k9BBeccX003917: to=<mbsc@bellsouth.net>, delay=2+14:04:04, xdelay=00:01:01, mailer=esmtp, pri=1497595, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:15:03 mail sendmail[10613]: k9BFUXWm016353: to=<sydwhite@bellsouth.net
>, delay=2+10:12:13, xdelay=00:00:00, mailer=esmtp, pri=1497599, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:03 mail sendmail[10613]: k9BGZ49q019691: to=<aileen33@bellsouth.net
>,<aileen3
7@bellsout
h.net>,<ai
leen39@bel
lsouth.net
>,<aileen4
474@bellso
uth.net>, delay=2+09:08:49, xdelay=00:00:00, mailer=esmtp, pri=1497603, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:15 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 18000
Oct 14 07:15:17 mail sendmail[11354]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+17:09:53, xdelay=00:00:52, mailer=esmtp, pri=827994, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:15:17 mail sendmail[11354]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:54:48, xdelay=00:00:00, mailer=esmtp, pri=918006, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:18 mail sendmail[11354]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+10:11:43, xdelay=00:00:00, mailer=esmtp, pri=828794, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:20 mail sendmail[11354]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+10:56:04, xdelay=00:00:00, mailer=esmtp, pri=648804, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:20 mail sendmail[11354]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:25:05, xdelay=00:00:00, mailer=esmtp, pri=648805, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:27 mail sendmail[10303]: k9ADJqu9001656: to=<debgtrail@bellsouth.ne
t>,<debgui
@bellsouth
.net>,<deb
gurls@bell
south.net>
,<debgurne
y@bellsout
h.net>,<de
bgusal@bel
lsouth.net
>, delay=3+12:21:41, xdelay=00:01:52, mailer=esmtp, pri=1359031, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:15:27 mail sendmail[10303]: k99L0jeT022844: to=<angloumike@bellsouth.n
et>,<riche
rsj@bellso
uth.net>, delay=4+04:42:05, xdelay=00:00:00, mailer=esmtp, pri=1359033, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:27 mail sendmail[10303]: k99IXNFI016142: to=<jckosmala@bellsouth.ne
t>, delay=4+07:11:52, xdelay=00:00:00, mailer=esmtp, pri=1359033, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:28 mail sendmail[10303]: k99KWWuT021821: to=<deckthewalls@bellsouth
.net>,<eju
dys@bellso
uth.net>, delay=4+05:10:39, xdelay=00:00:00, mailer=esmtp, pri=1359056, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:28 mail sendmail[10303]: k99KiwMq022457: to=<auto-responders-owner@
bellsouth.
net>, delay=4+04:59:29, xdelay=00:00:00, mailer=esmtp, pri=1269065, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:15:29 mail sendmail[11354]: k93GV6Ro009069: to=<you_go_aliesha@yahoo.c
om>,<you_g
o_girl504@
yahoo.com>
,<you_go_g
irl_13_99@
yahoo.com>
,<you_go_g
irl_232@ya
hoo.com>,<
you_go_gir
l_7@yahoo.
com>, delay=10+09:04:31, xdelay=00:00:09, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:15:31 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 19000
Oct 14 07:15:32 mail sendmail[11354]: k94IruHM009965: to=<mael_22@yahoo.com>,<ma
el_31@yaho
o.com>,<ma
el_84@yaho
o.com>,<ma
el_8839@ya
hoo.com>,<
mael_969@y
ahoo.com>,
delay=9+06:51:20, xdelay=00:00:03, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:15:37 mail sendmail[11354]: k93JD6aJ023910: to=<bprat22@yahoo.com>,<bp
rat24977@y
ahoo.com>,
delay=10+06:25:04, xdelay=00:00:04, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 07:15:45 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 20000
Oct 14 07:15:45 mail sendmail[11354]: k941ouuv019433: to=<captreno@yahoo.com>,<c
aptrequin@
yahoo.com>
,<captrer@
yahoo.com>
,<captresc
ue@yahoo.c
om>,<captr
esfd@yahoo
.com>, delay=9+23:54:17, xdelay=00:00:03, mailer=esmtp, pri=378809, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:15:49 mail sendmail[11354]: k957IOXd021212: to=<covatch@yahoo.com>,<co
vate@yahoo
.com>,<cov
atel2000@y
ahoo.com>,
<covatel20
76@yahoo.c
om>,<covat
embel@yaho
o.com>, delay=8+18:25:43, xdelay=00:00:04, mailer=esmtp, pri=378810, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:15:50 mail sendmail[2438]: k9C2uoZh005074: to=<redracer@atl.bellsouth
.net>, delay=1+22:48:42, xdelay=00:32:01, mailer=esmtp, pri=1224853, relay=atl.bellsouth.net. [205.152.58.8], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:15:52 mail sendmail[11354]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:15:53 mail sendmail[11354]: k945XXv2029406: to=<tom_osborne@dell.com>,
delay=9+20:11:49, xdelay=00:00:04, mailer=esmtp, pri=378810, relay=smtp.ins.dell.com. [143.166.224.193], dsn=5.5.4, stat=Service unavailable
Oct 14 07:15:53 mail sendmail[11354]: k945XXv2029406: to=<tom_ose@dell.com>, delay=9+20:11:49, xdelay=00:00:04, mailer=esmtp, pri=378810, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:15:55 mail sendmail[11354]: k945XXv2029406: k9D5e1Oe011354: DSN: Cannot send message for 5 days
Oct 14 07:15:58 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 21000
Oct 14 07:16:06 mail sendmail[2438]: k9BEiKbM013879: to=<dbrewer7@bellsouth.net
>,<dbrewer
r@bellsout
h.net>,<db
rewing@bel
lsouth.net
>,<dbrewin
gton@bells
outh.net>,
delay=2+10:58:11, xdelay=00:00:16, mailer=esmtp, pri=1494854, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:16:06 mail sendmail[2438]: k9BGSmsQ019494: to=<judithr@bellsouth.net>
, delay=2+09:15:28, xdelay=00:00:00, mailer=esmtp, pri=1584855, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:07 mail sendmail[2438]: k9BFTGwj016252: to=<hrblount@bellsouth.net
>,<hrboaks
@bellsouth
.net>,<hrb
ob@bellsou
th.net>,<h
rbogus@bel
lsouth.net
>, delay=2+10:13:32, xdelay=00:00:00, mailer=esmtp, pri=1584857, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:07 mail sendmail[2438]: k9BIGdih025228: to=<tannors@bellsouth.net>
, delay=2+07:24:40, xdelay=00:00:00, mailer=esmtp, pri=1494857, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:07 mail sendmail[2438]: k9BBhlBx004207: to=<deharp@bellsouth.net>,
delay=2+14:00:44, xdelay=00:00:00, mailer=esmtp, pri=1584862, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:08 mail sendmail[2438]: k9CELA41012176: to=<aguston_d@yahoo.co.in>
, delay=1+11:24:48, xdelay=00:00:00, mailer=esmtp, pri=1584873, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:16:09 mail sendmail[2438]: k9C2oavB004865: to=<vinos@atl.bellsouth.ne
t>, delay=1+22:55:27, xdelay=00:00:01, mailer=esmtp, pri=1224874, relay=atl.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:16:09 mail sendmail[2438]: k9BCWKEQ006936: to=<micheal.gginder@bellso
uth.net>,<
micheal.tu
rner1@bell
south.net>
,<micheal.
turner@bel
lsouth.net
>,<micheal
1@bellsout
h.net>, delay=2+13:07:37, xdelay=00:00:00, mailer=esmtp, pri=1584875, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:09 mail sendmail[2438]: k9CCnt9o009231: to=<happys_123@yahoo.co.in
>, delay=1+12:55:35, xdelay=00:00:00, mailer=esmtp, pri=1494887, relay=mx1.mail.in.yahoo.co
m., dsn=4.0.0, stat=Deferred
Oct 14 07:16:10 mail sendmail[2438]: k9BE6js3012288: to=<bandfreak1@bellsouth.n
et>, delay=2+11:35:19, xdelay=00:00:00, mailer=esmtp, pri=1584934, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:10 mail sendmail[2438]: k9C7ceMe027632: to=<crco71@bellsouth.net>,
<crcobb@be
llsouth.ne
t>,<crcof@
bellsouth.
net>,<crco
flm@bellso
uth.net>, delay=1+18:04:34, xdelay=00:00:00, mailer=esmtp, pri=1584942, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:10 mail sendmail[2438]: k9BFIjwQ015682: to=<aster12@bellsouth.net>
, delay=2+10:26:15, xdelay=00:00:00, mailer=esmtp, pri=1586046, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:14 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:16:16 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 07:16:18 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 22000
Oct 14 07:16:37 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 23000
Oct 14 07:16:42 mail sendmail[17051]: k9DIe1de017051: to=<zarvwzmfrfp@brain.net.
pk>, delay=00:02:11, xdelay=00:02:11, mailer=esmtp, pri=79986, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 07:16:43 mail sendmail[17051]: k9DIe1de017051: k9DIe1df017051: return to sender: User unknown
Oct 14 07:16:43 mail sendmail[17051]: k9DIe1df017051: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81010, dsn=2.0.0, stat=Sent
Oct 14 07:16:44 mail sendmail[17051]: k952Q2P4028231: to=<brodrick1@bellsouth.ne
t>,<brodri
ck@bellsou
th.net>,<b
rodrickt@b
ellsouth.n
et>,<brodr
ig2@bellso
uth.net>,<
brodrig@be
llsouth.ne
t>, delay=8+23:19:05, xdelay=00:00:00, mailer=esmtp, pri=378810, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:16:44 mail sendmail[17051]: k952Q2P4028231: k9DIe1dg017051: DSN: Cannot send message for 5 days
Oct 14 07:16:44 mail sendmail[17051]: k9DIe1dg017051: to=<tgyacqq@chinabyte.com>
, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79987, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:16:49 mail sendmail[17051]: k93Epb0b003243: to=<m_hicham2@yahoo.com>,<
m_hicham@y
ahoo.com>,
<m_hicke@y
ahoo.com>,
<m_hickenb
ottom@yaho
o.com>,<m_
hickerson@
yahoo.com>
, delay=10+10:54:57, xdelay=00:00:05, mailer=esmtp, pri=378810, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:16:50 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 24000
Oct 14 07:16:52 mail sendmail[17051]: k93GvvIh011889: to=<dora_525@yahoo.com>,<d
ora_54655@
yahoo.com>
, delay=10+08:46:20, xdelay=00:00:03, mailer=esmtp, pri=378810, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:16:55 mail sendmail[17051]: k93AROPL020080: to=<ljvluft@yahoo.com>,<lj
vlzjj@yaho
o.com>,<lj
vm31@yahoo
.com>,<ljv
m@yahoo.co
m>,<ljvmca
llister@ya
hoo.com>, delay=10+15:19:13, xdelay=00:00:03, mailer=esmtp, pri=378811, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:17:08 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 25000
Oct 14 07:17:23 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 26000
Oct 14 07:17:35 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 27000
Oct 14 07:17:47 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 28000
Oct 14 07:18:00 mail sendmail[11354]: k9D5e1Oe011354: to=<jtvijactvoxye@arabia.c
om>, delay=00:02:05, xdelay=00:02:05, mailer=esmtp, pri=79983, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:18:07 mail sendmail[11354]: k944JC4W025733: to=<tigerpk1@yahoo.com>,<t
igerpk2743
@yahoo.com
>,<tigerpk
elly@yahoo
.com>,<tig
erplaw@yah
oo.com>,<t
igerplaybo
y2002@yaho
o.com>, delay=9+21:28:18, xdelay=00:00:07, mailer=esmtp, pri=378811, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:18:08 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 29000
Oct 14 07:18:10 mail sendmail[2438]: k9BAlKhU001230: to=<qoztabtb@arabia.com>, delay=2+03:34:51, xdelay=00:02:00, mailer=esmtp, pri=1496051, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:18:10 mail sendmail[11354]: k93NUZnB011307: to=<strings4_99@yahoo.com>
,<strings4
manoj@yaho
o.com>,<st
rings4real
l@yahoo.co
m>,<string
s4u2000@ya
hoo.com>,<
strings5@y
ahoo.com>,
delay=10+02:16:40, xdelay=00:00:02, mailer=esmtp, pri=378811, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:18:10 mail sendmail[2438]: k9BEvxJE014419: to=<mewqutr@arabia.com>, delay=2+10:50:11, xdelay=00:00:00, mailer=esmtp, pri=1586052, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:18:10 mail sendmail[2438]: k9BDreG3011605: to=<pquhgqov@arabia.com>, delay=2+11:54:30, xdelay=00:00:00, mailer=esmtp, pri=1586055, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:18:14 mail sendmail[11354]: k937ffIt011486: to=<cydai@yahoo.com>,<cyda
ida@yahoo.
com>,<cyda
in@yahoo.c
om>,<cydai
ne@yahoo.c
om>,<cydai
sy@yahoo.c
om>, delay=10+18:05:23, xdelay=00:00:03, mailer=esmtp, pri=378811, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:18:17 mail sendmail[11354]: k946pBaf000693: to=<cwarters@yahoo.com>,<c
warth229@y
ahoo.com>,
delay=9+18:55:53, xdelay=00:00:03, mailer=esmtp, pri=378811, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:18:19 mail sendmail[11354]: k93AZ1Gq020567: to=<bigone4u10@yahoo.com>,
<bigone4u1
3760@yahoo
.com>,<big
one4u13@ya
hoo.com>,<
bigone4u14
837@yahoo.
com>,<bigo
ne4u23@yah
oo.com>, delay=10+15:12:00, xdelay=00:00:02, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:18:20 mail sendmail[11354]: k95843hF026475: to=<flower_tuts11@dell.com
>, delay=8+17:43:03, xdelay=00:00:01, mailer=esmtp, pri=378812, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:18:20 mail sendmail[11354]: k95843hF026475: to=<flowerbeauty_b@dell.co
m>, delay=8+17:43:03, xdelay=00:00:01, mailer=esmtp, pri=378812, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:18:21 mail sendmail[11354]: k95843hF026475: to=<flowerbird_rissy@dell.
com>, delay=8+17:43:04, xdelay=00:00:02, mailer=esmtp, pri=378812, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:18:21 mail sendmail[11354]: k95843hF026475: k9D5e1Of011354: DSN: Cannot send message for 5 days
Oct 14 07:18:21 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 30000
Oct 14 07:18:27 mail sendmail[11354]: k9D5e1Of011354: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 07:18:27 mail sendmail[21731]: k9E1mQ3h021731: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 07:18:27 mail sendmail[11354]: k9D5e1Of011354: to=<ohcbpg@centrapoint.com
>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79988, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 07:18:27 mail sendmail[11354]: k9D5e1Of011354: k9D5e1Og011354: return to sender: Local configuration error
Oct 14 07:18:27 mail sendmail[11354]: k9D5e1Og011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81012, dsn=2.0.0, stat=Sent
Oct 14 07:18:34 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 31000
Oct 14 07:18:50 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 32000
Oct 14 07:19:03 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 33000
Oct 14 07:19:18 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 34000
Oct 14 07:19:24 mail sendmail[11354]: k942YC6S021191: to=<keemo2004@yahoo.com>,<
keemo22@ya
hoo.com>,<
keemo28@ya
hoo.com>,<
keemo29@ya
hoo.com>,<
keemo3@yah
oo.com>, delay=9+23:14:19, xdelay=00:00:57, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:19:24 mail sendmail[11354]: k9BGp3xo020398: to=<pools@mail.bellsouth.n
et>, delay=2+08:56:24, xdelay=00:00:00, mailer=esmtp, pri=378812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:24 mail sendmail[11354]: k9BGp3xo020398: k9D5e1Oh011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:19:28 mail sendmail[11354]: k9D5e1Oh011354: to=<dyisorhibgyph@arsenal.
co.uk>, delay=00:00:04, xdelay=00:00:02, mailer=esmtp, pri=50058, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:19:28 mail sendmail[21503]: k9C8Oa8r000987: to=<palmers@lig.bellsouth.
net>,<palm
etto@lig.b
ellsouth.n
et>,<palmi
eri@lig.be
llsouth.ne
t>, delay=1+17:24:02, xdelay=00:32:00, mailer=esmtp, pri=377917, relay=lig.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 07:19:28 mail sendmail[21503]: k9C8Oa8r000987: k9D7e104021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:19:28 mail sendmail[11354]: k9D5e1Oh011354: k9D5e1Oi011354: return to sender: User unknown
Oct 14 07:19:28 mail sendmail[11354]: k9D5e1Oi011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51082, dsn=2.0.0, stat=Sent
Oct 14 07:19:32 mail sendmail[11354]: k93Ax97p021710: to=<amylis86@yahoo.com>,<a
mylisa1232
000@yahoo.
com>, delay=10+14:49:33, xdelay=00:00:04, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 07:19:33 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 35000
Oct 14 07:19:34 mail sendmail[21503]: k9D7e104021503: to=<xatyzxkpj@ciudad.com.a
r>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49199, relay=postino9.prima.com.a
r. [200.42.0.180], dsn=2.0.0, stat=Sent (ok 1160790524 qp 85397)
Oct 14 07:19:35 mail sendmail[11354]: k93KvHvt031840: to=<starslasher22@yahoo.co
m>,<starsl
ass@yahoo.
com>,<star
slater@yah
oo.com>,<s
tarslaveje
n@yahoo.co
m>,<starsl
ayer@yahoo
.com>, delay=10+04:52:17, xdelay=00:00:03, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:19:37 mail sendmail[11354]: k93ISCTK019808: to=<arshadsimi@indiatimes.
com>, delay=10+07:19:39, xdelay=00:00:01, mailer=esmtp, pri=378812, relay=smtp.indiatimes.com.
[203.199.93.5], dsn=5.5.4, stat=Service unavailable
Oct 14 07:19:37 mail sendmail[11354]: k93ISCTK019808: to=<arsheen82@indiatimes.c
om>, delay=10+07:19:39, xdelay=00:00:01, mailer=esmtp, pri=378812, relay=smtp.indiatimes.com.
[203.199.93.5], dsn=5.5.4, stat=Service unavailable
Oct 14 07:19:37 mail sendmail[11354]: k93ISCTK019808: to=<arshende@indiatimes.co
m>, delay=10+07:19:39, xdelay=00:00:01, mailer=esmtp, pri=378812, relay=smtp.indiatimes.com.
[203.199.93.5], dsn=5.5.4, stat=Service unavailable
Oct 14 07:19:38 mail sendmail[11354]: k93ISCTK019808: to=<arshdeepin@indiatimes.
com>,<arsh
i@indiatim
es.com>, delay=10+07:19:40, xdelay=00:00:02, mailer=esmtp, pri=378812, relay=smtp.indiatimes.com.
[203.199.93.5], dsn=2.0.0, stat=Sent (ok: Message 66822262 accepted)
Oct 14 07:19:38 mail sendmail[11354]: k93ISCTK019808: k9D5e1Oj011354: DSN: Service unavailable
Oct 14 07:19:40 mail sendmail[11354]: k9D5e1Oj011354: to=<tdefcddn@arsenal.co.uk
>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79986, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:19:40 mail sendmail[11354]: k9D5e1Oj011354: k9D5e1Ok011354: return to sender: User unknown
Oct 14 07:19:40 mail sendmail[11354]: k9D5e1Ok011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81010, dsn=2.0.0, stat=Sent
Oct 14 07:19:46 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 36000
Oct 14 07:19:47 mail sendmail[11354]: k939ttUN018801: to=<chrisk_69@yahoo.com>,<
chrisk_6@y
ahoo.com>,
<chrisk_6s
peed@yahoo
.com>,<chr
isk_77375@
yahoo.com>
,<chrisk_8
@yahoo.com
>, delay=10+15:53:04, xdelay=00:00:07, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok Fri Oct 13 18:48:58 2006: ql 7322106, qr 0)
Oct 14 07:19:47 mail sendmail[21503]: k9C8XjhQ002451: to=<cmcobb@bellsouth.net>,
<cmcocca@b
ellsouth.n
et>,<cmcoc
hran@bells
outh.net>,
<cmcodd@be
llsouth.ne
t>,<cmcody
@bellsouth
.net>,<cmc
offee@bell
south.net>
, delay=1+17:14:23, xdelay=00:00:13, mailer=esmtp, pri=917994, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:19:47 mail sendmail[21503]: k9C7lIjJ028927: to=<donnabray@bellsouth.ne
t>,<donnab
rd@bellsou
th.net>,<d
onnabridge
rs@bellsou
th.net>,<d
onnabriggs
@bellsouth
.net>,<don
nabritton@
bellsouth.
net>,<donn
abrns@bell
south.net>
, delay=1+17:59:18, xdelay=00:00:00, mailer=esmtp, pri=1008006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:48 mail sendmail[21503]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+10:16:13, xdelay=00:00:00, mailer=esmtp, pri=918794, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:49 mail sendmail[21503]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+11:00:33, xdelay=00:00:00, mailer=esmtp, pri=738804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:49 mail sendmail[21503]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:29:34, xdelay=00:00:00, mailer=esmtp, pri=738805, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:50 mail sendmail[11354]: k93G7Tvn007020: to=<tmcgar@yahoo.com>,<tmc
garen@yaho
o.com>, delay=10+09:40:37, xdelay=00:00:03, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 1/1)
Oct 14 07:19:54 mail sendmail[11354]: k96BCO7v012571: to=<greiver_of_shadows@yah
oo.com>,<g
reiver_sam
era@yahoo.
com>,<grei
vin3000@ya
hoo.com>,<
greivin32@
yahoo.com>
,<greivin5
587@yahoo.
com>, delay=7+14:37:01, xdelay=00:00:04, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:19:55 mail sendmail[21503]: k9BGp3xo020398: to=<pools@mail.bellsouth.n
et>, delay=2+08:56:55, xdelay=00:00:00, mailer=esmtp, pri=468812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:55 mail sendmail[21503]: k9BItLuo027880: to=<khedger1@bellsouth.net
>,<khedges
@bellsouth
.net>,<khe
dkar1@bell
south.net>
,<khedkar@
bellsouth.
net>,<khed
land1@bell
south.net>
,<khedland
@bellsouth
.net>, delay=2+06:53:44, xdelay=00:00:00, mailer=esmtp, pri=378812, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:19:55 mail sendmail[21503]: k9BItLuo027880: k9D7e105021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:19:57 mail sendmail[11354]: k964Hd5a003054: to=<pimp_10190210@yahoo.co
m>,<pimp_1
01@yahoo.c
om>,<pimp_
101_12@yah
oo.com>,<p
imp_101_4_
u@yahoo.co
m>,<pimp_1
0304@yahoo
.com>, delay=7+21:31:10, xdelay=00:00:03, mailer=esmtp, pri=378812, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:19:58 mail sendmail[21503]: k9D7e105021503: to=<gfktmc@arsenal.co.uk>,
delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=50060, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 07:19:58 mail sendmail[21503]: k9D7e105021503: k9D7e106021503: return to sender: User unknown
Oct 14 07:19:58 mail sendmail[21503]: k9D7e106021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51084, dsn=2.0.0, stat=Sent
Oct 14 07:20:01 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 37000
Oct 14 07:20:02 mail sendmail[11354]: k9BHDlKq021580: to=<hideout@clt.bellsouth.
net>, delay=2+08:35:55, xdelay=00:00:00, mailer=esmtp, pri=378812, relay=clt.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:20:02 mail sendmail[11354]: k9BHDlKq021580: to=<dgaytan@bellsouth.net>
, delay=2+08:35:55, xdelay=00:00:00, mailer=esmtp, pri=378812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:20:02 mail sendmail[11354]: k9BHDlKq021580: k9D5e1Ol011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:20:03 mail sendmail[11354]: k9D5e1Ol011354: to=<slocpl@arabia.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=50092, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:20:05 mail sendmail[21503]: k93Jmg9f026800: to=<kendall115@yahoo.com>,
<kendall11
_2007@yaho
o.com>,<ke
ndall122@y
ahoo.com>,
<kendall12
3@yahoo.co
m>,<kendal
l143@yahoo
.com>, delay=10+06:00:20, xdelay=00:00:06, mailer=esmtp, pri=378813, relay=mx1.mail.yahoo.com. [67.28.113.71], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:20:10 mail sendmail[21503]: k9BHsbtO023714: to=<redheadfemale38@yahoo.
com>, delay=2+07:54:21, xdelay=00:00:05, mailer=esmtp, pri=378813, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: 451 mta399.mail.re4.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:20:10 mail sendmail[21503]: k9BHsbtO023714: k9D7e107021503: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:20:12 mail sendmail[21503]: k9D7e107021503: to=<nebyzemwz@bellauk.com>
, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=50088, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:20:13 mail sendmail[21503]: k9D7e107021503: k9D7e108021503: return to sender: User unknown
Oct 14 07:20:14 mail sendmail[21503]: k9D7e108021503: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=51112, dsn=2.0.0, stat=Sent
Oct 14 07:20:14 mail sendmail[21503]: k93LeNBj002732: to=<we13@bellsouth.net>,<w
e170077@be
llsouth.ne
t>,<we1rd@
bellsouth.
net>,<we21
6t2@bellso
uth.net>,<
we2@bellso
uth.net>, delay=10+04:09:48, xdelay=00:00:00, mailer=esmtp, pri=378813, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:20:14 mail sendmail[21503]: k93LeNBj002732: k9D7e109021503: DSN: Cannot send message for 5 days
Oct 14 07:20:16 mail sendmail[21503]: k9D7e109021503: to=<usydc@arsenal.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=80026, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 07:20:16 mail sendmail[11354]: k9C6NG4I018587: to=<jama_cau07@yahoo.com>,
<jama_dwig
ht@yahoo.c
om>,<jama_
g_2000@yah
oo.com>,<j
ama_garber
@yahoo.com
>,<jama_go
sser@yahoo
.com>,<jam
a_grl@yaho
o.com>, delay=1+19:26:02, xdelay=00:00:12, mailer=esmtp, pri=378813, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 4/2)
Oct 14 07:20:17 mail sendmail[21503]: k9D7e109021503: k9D7e10A021503: return to sender: User unknown
Oct 14 07:20:17 mail sendmail[21503]: k9D7e10A021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81050, dsn=2.0.0, stat=Sent
Oct 14 07:20:17 mail sendmail[21503]: k955psSo009931: to=<reidarms@yahoo.com>,<r
eidaroo@ya
hoo.com>,<
reidarooyi
kmqvgkzsgq
@yahoo.com
>,<reidarp
pmxgtcdqkn
pae@yahoo.
com>,<reid
arqtwhzjrd
qdguulgos@
yahoo.com>
, delay=8+19:58:22, xdelay=00:00:00, mailer=esmtp, pri=378813, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:20:17 mail sendmail[21503]: k955psSo009931: k9D7e10B021503: DSN: Cannot send message for 5 days
Oct 14 07:20:18 mail sendmail[21503]: k9D7e10B021503: to=<wtvabeiolbaoiw@arsenal
.co.uk>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79988, relay=mail14.messagelabs.c
om. [212.125.75.19], dsn=5.1.1, stat=User unknown
Oct 14 07:20:19 mail sendmail[21503]: k9D7e10B021503: k9D7e10C021503: return to sender: User unknown
Oct 14 07:20:19 mail sendmail[21503]: k9D7e10C021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81012, dsn=2.0.0, stat=Sent
Oct 14 07:20:19 mail sendmail[21503]: k93N2AA4009043: to=<caacatc@yahoo.com>,<ca
acatiano@y
ahoo.com>,
<caacaw@ya
hoo.com>,<
caacbandeu
la@yahoo.c
om>,<caacb
ayredith31
6@yahoo.co
m>, delay=10+02:46:41, xdelay=00:00:00, mailer=esmtp, pri=378813, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:20:19 mail sendmail[21503]: k93N2AA4009043: k9D7e10D021503: DSN: Cannot send message for 5 days
Oct 14 07:20:22 mail sendmail[21503]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:20:23 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 38000
Oct 14 07:20:23 mail sendmail[11354]: k9BHsbtO023714: to=<redheadfemale38@yahoo.
com>, delay=2+07:54:34, xdelay=00:00:07, mailer=esmtp, pri=468813, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta133.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:20:25 mail sendmail[21503]: k9D7e10D021503: to=<lyawmcemyhd@caller.com
>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=80025, relay=mail.global.sprint.c
om. [207.46.163.22], dsn=2.0.0, stat=Sent (Ok: queued as 5B30F544084)
Oct 14 07:20:25 mail sendmail[21503]: k93GS4Hj008625: to=<springiris17@yahoo.com
>,<springi
rl17@yahoo
.com>,<spr
ingirl@yah
oo.com>,<s
pringirth@
yahoo.com>
,<springis
drawingon@
yahoo.com>
, delay=10+09:18:10, xdelay=00:00:00, mailer=esmtp, pri=378813, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:20:25 mail sendmail[21503]: k93GS4Hj008625: k9D7e10E021503: DSN: Cannot send message for 5 days
Oct 14 07:20:26 mail sendmail[11354]: k93JxbmZ027633: to=<beteegrl@yahoo.com>,<b
eteejo@yah
oo.com>,<b
eteela@yah
oo.com>,<b
eteelu@yah
oo.com>,<b
eteem@yaho
o.com>, delay=10+05:49:07, xdelay=00:00:02, mailer=esmtp, pri=378813, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:20:31 mail sendmail[11354]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:20:32 mail sendmail[11354]: k9592qw9029867: to=<cheng82_2000@dell.com>
, delay=8+16:46:49, xdelay=00:00:05, mailer=esmtp, pri=378814, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:20:32 mail sendmail[11354]: k9592qw9029867: to=<cheng98_98@dell.com>, delay=8+16:46:49, xdelay=00:00:05, mailer=esmtp, pri=378814, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:20:32 mail sendmail[11354]: k9592qw9029867: to=<cheng_10@dell.com>, delay=8+16:46:49, xdelay=00:00:05, mailer=esmtp, pri=378814, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:20:32 mail sendmail[11354]: k9592qw9029867: to=<cheng_153@dell.com>, delay=8+16:46:49, xdelay=00:00:05, mailer=esmtp, pri=378814, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:20:33 mail sendmail[11354]: k9592qw9029867: to=<cheng_1@dell.com>, delay=8+16:46:50, xdelay=00:00:06, mailer=esmtp, pri=378814, relay=smtp.ins.dell.com. [143.166.224.193], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:20:33 mail sendmail[11354]: k9592qw9029867: k9D5e1Om011354: DSN: Cannot send message for 5 days
Oct 14 07:20:36 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 39000
Oct 14 07:20:37 mail sendmail[11354]: k9D5e1Om011354: to=<xtxwihiua@briankennedy
.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79990, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:20:38 mail sendmail[11354]: k9D5e1Om011354: k9D5e1On011354: return to sender: User unknown
Oct 14 07:20:38 mail sendmail[11354]: k9D5e1On011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81014, dsn=2.0.0, stat=Sent
Oct 14 07:20:48 mail sendmail[11354]: k938kB23013794: to=<comando22@yahoo.com>,<
comando231
@yahoo.com
>,<comando
23@yahoo.c
om>,<coman
do242@yaho
o.com>,<co
mando269@y
ahoo.com>,
delay=10+17:04:27, xdelay=00:00:09, mailer=esmtp, pri=378814, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:20:49 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 40000
Oct 14 07:20:50 mail sendmail[11354]: k93IrvdC022223: to=<freepage_ru@yahoo.com>
,<freepage
ant@yahoo.
com>,<free
pagerdeal@
yahoo.com>
,<freepage
rnet@yahoo
.com>,<fre
epagers200
1@yahoo.co
m>, delay=10+06:55:12, xdelay=00:00:02, mailer=esmtp, pri=378814, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:20:50 mail sendmail[11354]: k944IHCi025683: to=<crazicat69@bellsouth.n
et>,<crazi
cat@bellso
uth.net>,<
crazichibi
@bellsouth
.net>,<cra
zichic@bel
lsouth.net
>,<crazich
ick@bellso
uth.net>, delay=9+21:32:03, xdelay=00:00:00, mailer=esmtp, pri=378814, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:20:50 mail sendmail[11354]: k944IHCi025683: k9D5e1Oo011354: DSN: Cannot send message for 5 days
Oct 14 07:20:51 mail sendmail[11354]: k9D5e1Oo011354: to=<boojefdueifvrk@centrap
oint.com>,
delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=80030, relay=broke.centrapoint.co
m., dsn=5.3.5, stat=Local configuration error
Oct 14 07:20:51 mail sendmail[11354]: k9D5e1Oo011354: k9D5e1Op011354: return to sender: Local configuration error
Oct 14 07:20:51 mail sendmail[11354]: k9D5e1Op011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81054, dsn=2.0.0, stat=Sent
Oct 14 07:20:54 mail sendmail[11354]: k93GhEND010396: to=<dalih1@yahoo.com>,<dal
ih2000@yah
oo.com>,<s
ueh103@yah
oo.com>,<s
ueh1231@ya
hoo.com>,<
sueh@yahoo
.com>, delay=10+09:02:41, xdelay=00:00:03, mailer=esmtp, pri=378814, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:20:57 mail sendmail[11354]: k970teDZ011836: to=<da362328@yahoo.com>,<d
a3624@yaho
o.com>,<da
3627@yahoo
.com>,<da3
628@yahoo.
com>,<da36
3213@yahoo
.com>, delay=7+00:53:41, xdelay=00:00:03, mailer=esmtp, pri=378814, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:21:00 mail sendmail[11354]: k93MQ6e4005863: to=<laurazfoster@yahoo.com
>,<laurazg
onecrazy@y
ahoo.com>,
<laurazguy
@yahoo.com
>,<laurazh
@yahoo.com
>,<laurazh
ang87@yaho
o.com>, delay=10+03:22:40, xdelay=00:00:03, mailer=esmtp, pri=378814, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:21:01 mail sendmail[11354]: k9B9pK0u031086: to=<cindysuesnoflake@yahoo
.com>,<cin
dysuewho_2
@yahoo.com
>,<cindysu
ez2000@yah
oo.com>,<c
indysuhng@
yahoo.com>
,<thesien@
yahoo.com>
,<thesier_
steven@yah
oo.com>, delay=2+15:57:48, xdelay=00:00:01, mailer=esmtp, pri=378815, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred: 451 mta385.mail.re4.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:21:01 mail sendmail[11354]: k9B9pK0u031086: k9D5e1Oq011354: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:21:02 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 41000
Oct 14 07:21:03 mail sendmail[11354]: k9D5e1Oq011354: to=<soxza@arsenal.co.uk>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=50061, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:21:04 mail sendmail[11354]: k9D5e1Oq011354: k9D5e1Or011354: return to sender: User unknown
Oct 14 07:21:04 mail sendmail[11354]: k9D5e1Or011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=51085, dsn=2.0.0, stat=Sent
Oct 14 07:21:04 mail sendmail[11354]: k93ItVA9022334: to=<adoaga@bellsouth.net>,
<adoak@bel
lsouth.net
>,<adoan99
918@bellso
uth.net>,<
adoan@bell
south.net>
,<adoane@b
ellsouth.n
et>, delay=10+06:53:12, xdelay=00:00:00, mailer=esmtp, pri=378815, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:21:04 mail sendmail[11354]: k93ItVA9022334: k9D5e1Os011354: DSN: Cannot send message for 5 days
Oct 14 07:21:04 mail sendmail[11354]: k9D5e1Os011354: to=<euvdrpfkzqtltp@arabia.
com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79992, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:21:08 mail sendmail[11354]: k93F7L4W004023: to=<sqaurebobspongepants@y
ahoo.com>,
<sqaureboo
ts@yahoo.c
om>, delay=10+10:41:15, xdelay=00:00:04, mailer=esmtp, pri=378815, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:21:08 mail sendmail[11354]: k948pj9x003596: to=<bredlin@bellsouth.net>
,<bredlove
@bellsouth
.net>,<bre
dman@bells
outh.net>,
<bredmo@be
llsouth.ne
t>,<bredmo
n@bellsout
h.net>, delay=9+16:55:22, xdelay=00:00:00, mailer=esmtp, pri=378815, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:21:08 mail sendmail[11354]: k948pj9x003596: k9D5e1Ot011354: DSN: Cannot send message for 5 days
Oct 14 07:21:11 mail sendmail[11354]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:21:14 mail sendmail[11354]: k9D5e1Ot011354: to=<pxklzvp@caller.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=80030, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as 214C53C1FEE)
Oct 14 07:21:14 mail sendmail[11354]: k93Afaba020823: to=<comedy1@bellsouth.net>
,<comedyca
ndyr@bells
outh.net>,
<comeford@
bellsouth.
net>,<come
g@bellsout
h.net>,<co
megetsome@
bellsouth.
net>, delay=10+15:09:26, xdelay=00:00:00, mailer=esmtp, pri=378815, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:21:14 mail sendmail[11354]: k93Afaba020823: k9D5e1Ou011354: DSN: Cannot send message for 5 days
Oct 14 07:21:16 mail sendmail[11354]: k9D5e1Ou011354: to=<vhnininygydj@arsenal.c
o.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=80022, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:21:17 mail sendmail[11354]: k9D5e1Ou011354: k9D5e1Ov011354: return to sender: User unknown
Oct 14 07:21:17 mail sendmail[11354]: k9D5e1Ov011354: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81046, dsn=2.0.0, stat=Sent
Oct 14 07:21:17 mail sendmail[11354]: k940if1W016297: to=<crosconnct1@bellsouth.
net>,<cros
connct@bel
lsouth.net
>,<croscor
ner@bellso
uth.net>,<
croscorp@b
ellsouth.n
et>,<crosc
rek@bellso
uth.net>, delay=10+01:05:30, xdelay=00:00:00, mailer=esmtp, pri=378816, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:21:17 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 42000
Oct 14 07:21:18 mail sendmail[11354]: k940if1W016297: k9D5e1Ow011354: DSN: Cannot send message for 5 days
Oct 14 07:21:19 mail sendmail[11354]: k9D5e1Ow011354: to=<mrtwrelmjasn@chinabyte
.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79994, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:21:34 mail sendmail[11354]: k96Nb0wj010607: to=<staceerox@yahoo.com>,<
staceers@y
ahoo.com>,
<stacees@y
ahoo.com>,
<staceesa@
yahoo.com>
,<staceesn
o@yahoo.co
m>, delay=7+02:10:24, xdelay=00:00:15, mailer=esmtp, pri=378816, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:21:37 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 43000
Oct 14 07:21:39 mail sendmail[11354]: k939ChjN014909: to=<jennabeth_1999@yahoo.c
om>,<jenna
beth_21@ya
hoo.com>,<
jennabeth_
33@yahoo.c
om>,<jenna
bethblair@
yahoo.com>
,<jennabh2
21@yahoo.c
om>, delay=10+16:36:47, xdelay=00:00:05, mailer=esmtp, pri=378816, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:21:42 mail sendmail[11354]: k9433o7E022455: to=<klmamos@yahoo.com>,<kl
man26@yaho
o.com>,<kl
man28@yaho
o.com>,<kl
mandaaaa@y
ahoo.com>,
<klmandy@y
ahoo.com>,
delay=9+22:45:38, xdelay=00:00:02, mailer=esmtp, pri=378816, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:21:43 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 07:21:45 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 07:21:46 mail sendmail[11354]: k93IFrGj018684: to=<cindy_kitt@yahoo.com>,
<cindy_kit
ten84@yaho
o.com>,<ci
ndy_kitten
_55@yahoo.
com>,<cind
y_kitten_5
8@yahoo.co
m>,<cindy_
kitty1688@
yahoo.com>
, delay=10+07:31:14, xdelay=00:00:03, mailer=esmtp, pri=378816, relay=mx3.mail.yahoo.com. [67.28.113.74], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:21:46 mail sendmail[11354]: k94EbYLs024668: to=<courtrj@bellsouth.net>
,<courtrox
y@bellsout
h.net>,<co
urts1@bell
south.net>
,<courts3@
bellsouth.
net>,<cour
ts@bellsou
th.net>, delay=9+11:11:21, xdelay=00:00:00, mailer=esmtp, pri=378816, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:21:46 mail sendmail[11354]: k94EbYLs024668: k9D5e1Ox011354: DSN: Cannot send message for 5 days
Oct 14 07:21:46 mail sendmail[11354]: k9D5e1Ox011354: to=<xvjwrgcfiuqsen@chinaby
te.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79992, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:21:47 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 07:21:49 mail imap-login: Login: bt [::ffff:59.92.135.232]
Oct 14 07:21:50 mail sendmail[18400]: k99HTnI5012933: to=<albright@jax.bellsouth
.net>, delay=4+08:21:28, xdelay=00:32:00, mailer=esmtp, pri=466341, relay=jax.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with jax.bellsouth.net.
Oct 14 07:21:51 mail imap-login: Login: btz [::ffff:59.92.135.232]
Oct 14 07:21:52 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 44000
Oct 14 07:21:54 mail imap-login: Login: btz [::ffff:59.92.135.232]
Oct 14 07:21:57 mail last message repeated 2 times
Oct 14 07:21:58 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:21:59 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 07:22:00 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 07:22:02 mail imap-login: Login: data [::ffff:59.92.135.232]
Oct 14 07:22:05 mail last message repeated 2 times
Oct 14 07:22:07 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 45000
Oct 14 07:22:07 mail sendmail[18400]: k9B5IVCZ006723: to=<degray@mail.mia.bellso
uth.net>,<
delgado@ma
il.mia.bel
lsouth.net
>,<denani@
mail.mia.b
ellsouth.n
et>,<denis
23@mail.mi
a.bellsout
h.net>,<de
nnisv@mail
.mia.bells
outh.net>,
delay=2+20:31:45, xdelay=00:00:16, mailer=esmtp, pri=1186345, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:22:07 mail sendmail[18400]: k9AMDveK015048: to=<jhall14@bellsouth.net>
,<jhall15@
bellsouth.
net>, delay=3+03:38:02, xdelay=00:00:00, mailer=esmtp, pri=1186346, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k9AC5scp031576: to=<bizop21@bellsouth.net>
,<bizop4u@
bellsouth.
net>,<bizo
p9495@bell
south.net>
,<bizopman
@bellsouth
.net>,<biz
opp@bellso
uth.net>, delay=3+13:44:07, xdelay=00:00:00, mailer=esmtp, pri=1186358, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k9ANA82I020355: to=<btmguysea@bellsouth.ne
t>,<btmguy
wntd@bells
outh.net>,
<btmgwm@be
llsouth.ne
t>,<btmhal
f@bellsout
h.net>,<bt
mhshaf@bel
lsouth.net
>, delay=3+02:38:53, xdelay=00:00:00, mailer=esmtp, pri=1097394, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k9B7Cuha021151: to=<afry024@bellsouth.net>
,<afry1@be
llsouth.ne
t>,<afry69
@bellsouth
.net>,<afr
y79a@bells
outh.net>,
<afryans@b
ellsouth.n
et>, delay=2+18:39:02, xdelay=00:00:00, mailer=esmtp, pri=1007413, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+21:42:26, xdelay=00:00:00, mailer=esmtp, pri=1097425, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 07:22:08 mail sendmail[18400]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+05:07:06, xdelay=00:00:00, mailer=esmtp, pri=1097436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+08:33:06, xdelay=00:00:00, mailer=esmtp, pri=1097436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:08 mail sendmail[18400]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+03:14:19, xdelay=00:00:00, mailer=esmtp, pri=1007440, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:09 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:09 mail sendmail[18400]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+21:06:53, xdelay=00:00:00, mailer=esmtp, pri=1097441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:09 mail sendmail[18400]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+23:12:12, xdelay=00:00:00, mailer=esmtp, pri=1097442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:09 mail sendmail[18400]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+23:11:09, xdelay=00:00:00, mailer=esmtp, pri=1097442, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:10 mail sendmail[18400]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+20:45:09, xdelay=00:00:00, mailer=esmtp, pri=1097442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:11 mail imap-login: Login: mt [::ffff:59.92.135.232]
Oct 14 07:22:14 mail last message repeated 2 times
Oct 14 07:22:19 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 07:22:21 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 46000
Oct 14 07:22:22 mail imap-login: Disconnected [::ffff:59.92.135.232]
Oct 14 07:22:28 mail last message repeated 2 times
Oct 14 07:22:29 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 07:22:31 mail sendmail[21808]: k9E1qRYq021808: from=<breambedrock@rotaryc
lubromaove
st.org>, size=896, class=0, nrcpts=1, msgid=<39314809516390.4EE6
3C10C2@QYG
3>, bodytype=8BITMIME, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:22:32 mail sendmail[21812]: k9E1qRYq021808: to=<mpatel@scriptacomsyste
ms.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=31095, dsn=2.0.0, stat=Sent
Oct 14 07:22:33 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 07:22:34 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 07:22:36 mail sendmail[21808]: k9E1qRYs021808: <hrd@scriptacomsystems.com
>... User unknown
Oct 14 07:22:36 mail imap-login: Login: outsrc [::ffff:59.92.135.232]
Oct 14 07:22:38 mail sendmail[21503]: k9D7e10E021503: to=<tqebvncmnhbrkn@brain.n
et.pk>, delay=00:02:13, xdelay=00:02:13, mailer=esmtp, pri=79988, relay=mx1.brain.net.pk. [203.128.7.23], dsn=5.1.1, stat=User unknown
Oct 14 07:22:38 mail sendmail[21808]: k9E1qRYs021808: from=<arkcommercial@royalb
lak.com>, size=811, class=0, nrcpts=1, msgid=<12664100070199.F0E2
ED977E@QEE
Y>, bodytype=8BITMIME, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:22:38 mail sendmail[21503]: k9D7e10E021503: k9D7e10F021503: return to sender: User unknown
Oct 14 07:22:39 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:39 mail sendmail[21503]: k9D7e10F021503: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=81012, dsn=2.0.0, stat=Sent
Oct 14 07:22:39 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:22:40 mail sendmail[21824]: k9E1qRYs021808: to=<hrchennai@scriptacomsy
stems.com>
, delay=00:00:04, xdelay=00:00:01, mailer=local, pri=30975, dsn=2.0.0, stat=Sent
Oct 14 07:22:40 mail sendmail[21503]: k9B9pK0u031086: to=<cindysuesnoflake@yahoo
.com>,<cin
dysuewho_2
@yahoo.com
>,<cindysu
ez2000@yah
oo.com>,<c
indysuhng@
yahoo.com>
,<thesien@
yahoo.com>
,<thesier_
steven@yah
oo.com>, delay=2+15:59:27, xdelay=00:00:00, mailer=esmtp, pri=468815, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:22:40 mail sendmail[21503]: k9412oBP017300: to=<j_vijayan@yahoo.com>,<
j_vijaykan
th@yahoo.c
om>,<j_vij
il@yahoo.c
om>,<j_vik
as80@yahoo
.com>,<j_v
iking@yaho
o.com>, delay=10+00:49:11, xdelay=00:00:00, mailer=esmtp, pri=378817, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:22:40 mail sendmail[21503]: k9412oBP017300: k9D7e10G021503: DSN: Cannot send message for 5 days
Oct 14 07:22:43 mail imap-login: Login: data [::ffff:202.144.86.75]
Oct 14 07:22:43 mail sendmail[21808]: k9E1qRYu021808: from=<concavebunkmate@ross
isa.it>, size=748, class=0, nrcpts=2, msgid=<82401787430530.97E2
9A9B67@K7U
MP7I2>, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:22:43 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 47000
Oct 14 07:22:43 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:22:44 mail sendmail[21503]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:22:45 mail sendmail[21834]: k9E1qRYu021808: to=<hr@scriptacomsystems.c
om>, delay=00:00:03, xdelay=00:00:01, mailer=local, pri=60913, dsn=2.0.0, stat=Sent
Oct 14 07:22:45 mail sendmail[21808]: k9E1qRYw021808: <asoka@scriptacomsystems.c
om>... User unknown
Oct 14 07:22:45 mail sendmail[21808]: k9E1qRYw021808: <3dfinance@scriptacomsyste
ms.com>...
User unknown
Oct 14 07:22:45 mail sendmail[21834]: k9E1qRYu021808: to=<finance@scriptacomsyst
ems.com>, delay=00:00:03, xdelay=00:00:00, mailer=local, pri=60913, dsn=2.0.0, stat=Sent
Oct 14 07:22:46 mail sendmail[21808]: k9E1qRYw021808: from=<combinateargumentati
on@rougeho
uston.com>
, size=778, class=0, nrcpts=1, msgid=<08424926009024.1C94
BFCD01@9GR
Q6I8>, bodytype=8BITMIME, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:22:47 mail sendmail[21503]: k9D7e10G021503: to=<ekedvwgfnsc@caller.com
>, delay=00:00:07, xdelay=00:00:06, mailer=esmtp, pri=79993, relay=mail.global.sprint.c
om. [207.46.163.22], dsn=2.0.0, stat=Sent (Ok: queued as CD8B95BFE59)
Oct 14 07:22:47 mail sendmail[21503]: k957qPhb026013: to=<debgarza01@yahoo.com>,
<debgarza2
000@yahoo.
com>,<debg
as52@yahoo
.com>,<deb
gate@yahoo
.com>,<deb
gates72032
@yahoo.com
>, delay=8+17:58:55, xdelay=00:00:00, mailer=esmtp, pri=378817, relay=mta-v1.mail.vip.re3.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:22:48 mail sendmail[21503]: k957qPhb026013: k9D7e10H021503: DSN: Cannot send message for 5 days
Oct 14 07:22:48 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:48 mail sendmail[21503]: k9D7e10H021503: SYSERR(root): broke.centrapoint.com. config error: mail loops back to me (MX problem?)
Oct 14 07:22:48 mail sendmail[21846]: k9E1qmZX021846: localhost.localdomain [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA
Oct 14 07:22:48 mail sendmail[21503]: k9D7e10H021503: to=<lraqsu@centrapoint.com
>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=80024, relay=broke.centrapoint.co
m. [127.0.0.1], dsn=5.3.5, stat=Local configuration error
Oct 14 07:22:48 mail sendmail[21503]: k9D7e10H021503: k9D7e10I021503: return to sender: Local configuration error
Oct 14 07:22:48 mail sendmail[21841]: k9E1qRYw021808: to=<asokan@scriptacomsyste
ms.com>, delay=00:00:03, xdelay=00:00:01, mailer=local, pri=30941, dsn=2.0.0, stat=Sent
Oct 14 07:22:49 mail sendmail[21503]: k9D7e10I021503: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=81048, dsn=2.0.0, stat=Sent
Oct 14 07:22:49 mail sendmail[21503]: k937J7ZG007113: to=<amcnsl@bellsouth.net>,
<amcnsmith
@bellsouth
.net>,<amc
nulty@bell
south.net>
,<amcnutt@
bellsouth.
net>,<amcn
utter@bell
south.net>
, delay=10+18:32:48, xdelay=00:00:00, mailer=esmtp, pri=378817, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:22:49 mail sendmail[21503]: k937J7ZG007113: k9D7e10J021503: DSN: Cannot send message for 5 days
Oct 14 07:22:49 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:51 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:51 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:22:52 mail imap-login: Login: mt [::ffff:202.144.86.75]
Oct 14 07:22:52 mail imap-login: Login: finance [::ffff:202.144.86.75]
Oct 14 07:22:53 mail sendmail[21808]: k9E1qRZ0021808: <3dasokan@scriptacomsystem
s.com>... User unknown
Oct 14 07:22:53 mail sendmail[21503]: k9D7e10J021503: to=<sgwjjpbnxkipp@brianken
nedy.co.uk
>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79992, relay=mailserver.briankenn
edy.co.uk.
[213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:22:54 mail sendmail[21863]: k9E1qrAr021863: from=<support@scriptacomsy
stems.com>
, size=5527, class=0, nrcpts=1, msgid=<004201c6ef34$54abf0
50$6401a8c
0@computer
100>, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 07:22:54 mail sendmail[21864]: k9E1qrAr021863: to=<asokan@scriptacomsyste
ms.com>, ctladdr=<support@scriptaco
msystems.c
om> (525/525), delay=00:00:01, xdelay=00:00:00, mailer=local, pri=35720, dsn=2.0.0, stat=Sent
Oct 14 07:22:55 mail imap-login: Login: finance [::ffff:202.144.86.75]
Oct 14 07:22:55 mail sendmail[21503]: k9D7e10J021503: k9D7e10K021503: return to sender: User unknown
Oct 14 07:22:55 mail imap-login: Login: support [::ffff:59.92.135.232]
Oct 14 07:22:55 mail sendmail[21503]: k9D7e10K021503: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81016, dsn=2.0.0, stat=Sent
Oct 14 07:22:55 mail imap-login: Login: finance [::ffff:202.144.86.75]
Oct 14 07:22:56 mail imap-login: Login: finance [::ffff:202.144.86.75]
Oct 14 07:22:56 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:22:57 mail imap-login: Login: outsrc [::ffff:202.144.86.75]
Oct 14 07:23:03 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 48000
Oct 14 07:23:11 mail sendmail[21808]: k9E1qRZ0021808: from=<besottedadvent@rouch
es-interne
t.com>, size=0, class=0, nrcpts=0, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:23:22 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 49000
Oct 14 07:23:35 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 50000
Oct 14 07:23:42 mail sendmail[7286]: k9BE7oCT012389: to=<greenland@msy.bellsout
h.net>, delay=2+11:43:01, xdelay=00:32:00, mailer=esmtp, pri=1158811, relay=msy.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 07:23:49 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 51000
Oct 14 07:23:55 mail sendmail[7772]: k9BGwXxj020778: to=<carilyn@rdu.bellsouth.
net>, delay=2+08:54:07, xdelay=00:32:01, mailer=esmtp, pri=804841, relay=rdu.bellsouth.net. [205.152.58.134], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:24:02 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 52000
Oct 14 07:24:02 mail sendmail[7772]: k9BE5ml4012245: to=<russ1674@bellsouth.net
>, delay=2+11:47:52, xdelay=00:00:07, mailer=esmtp, pri=1164843, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:24:02 mail sendmail[7772]: k9C1leUC002931: to=<cpkas@bellsouth.net>,<
cpkb@bells
outh.net>,
delay=2+00:05:35, xdelay=00:00:00, mailer=esmtp, pri=1164843, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:24:03 mail sendmail[7772]: k9BHAIvY021424: to=<greeniz1@bellsouth.net
>, delay=2+08:42:24, xdelay=00:00:00, mailer=esmtp, pri=1164847, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:24:15 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 53000
Oct 14 07:24:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 54000
Oct 14 07:24:49 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 55000
Oct 14 07:24:53 mail sendmail[7286]: k9BBhlCB004207: to=<dinorag@bellsouth.net>
, delay=2+14:08:35, xdelay=00:01:10, mailer=esmtp, pri=1428819, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:24:53 mail sendmail[7286]: k9BFEs5T015467: to=<eartman@bellsouth.net>
, delay=2+10:33:28, xdelay=00:00:00, mailer=esmtp, pri=1428821, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:24:53 mail sendmail[7286]: k9BAPkEO032542: to=<andykober@bellsouth.ne
t>, delay=2+15:28:27, xdelay=00:00:00, mailer=esmtp, pri=1428822, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:24:54 mail sendmail[7286]: k9BAPkEO032542: to=<sharmaashish_88@yahoo.
co.in>, delay=2+15:28:28, xdelay=00:00:01, mailer=esmtp, pri=1428822, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:24:54 mail sendmail[7286]: k9BEGVE2012758: to=<crobe76940@bellsouth.n
et>,<djb72
7@bellsout
h.net>, delay=2+11:35:40, xdelay=00:00:00, mailer=esmtp, pri=1248825, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:25:02 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 56000
Oct 14 07:25:15 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 57000
Oct 14 07:25:34 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 58000
Oct 14 07:25:47 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 59000
Oct 14 07:26:00 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 60000
Oct 14 07:26:09 mail sendmail[19635]: k967oc4u022719: to=<schreiber@mia.bellsout
h.net>, delay=7+18:03:31, xdelay=00:32:00, mailer=esmtp, pri=378768, relay=mia.bellsouth.net. [205.152.58.1], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 07:26:10 mail sendmail[19635]: k967oc4u022719: k9DMe1Yh019635: DSN: Cannot send message for 5 days
Oct 14 07:26:17 mail sendmail[19635]: k9DMe1Yh019635: to=<guljryvlvryr@chinabyte
.com>, delay=00:00:07, xdelay=00:00:06, mailer=esmtp, pri=79945, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Resources temporarily not available - Please try again later [#4.16.5].
Oct 14 07:26:19 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 61000
Oct 14 07:26:33 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 62000
Oct 14 07:26:46 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 63000
Oct 14 07:26:56 mail sendmail[9082]: k9C8UWhS001976: to=<agreene@lig.bellsouth.
net>,<agre
iner@lig.b
ellsouth.n
et>,<agrif
f@lig.bell
south.net>
,<agriffin
@lig.bells
outh.net>,
<agriffis@
lig.bellso
uth.net>, delay=1+17:26:00, xdelay=00:32:01, mailer=esmtp, pri=1247990, relay=lig.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 07:27:03 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 64000
Oct 14 07:27:11 mail sendmail[19635]: k9BFTGwn016252: to=<hrbrgr@bellsouth.net>,
<hrbright@
bellsouth.
net>,<hrbr
lite@bells
outh.net>,
<hrbrooks@
bellsouth.
net>,<hrbr
own@bellso
uth.net>,<
hrbunch@be
llsouth.ne
t>, delay=2+10:23:36, xdelay=00:00:52, mailer=esmtp, pri=1008794, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:27:12 mail sendmail[19635]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+11:07:56, xdelay=00:00:00, mailer=esmtp, pri=828804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:27:12 mail sendmail[19635]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:36:57, xdelay=00:00:00, mailer=esmtp, pri=828805, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:27:13 mail sendmail[19635]: k9BGp3xo020398: to=<pools@mail.bellsouth.n
et>, delay=2+09:04:13, xdelay=00:00:00, mailer=esmtp, pri=558812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:27:13 mail sendmail[19635]: k9BItLuo027880: to=<khedger1@bellsouth.net
>,<khedges
@bellsouth
.net>,<khe
dkar1@bell
south.net>
,<khedkar@
bellsouth.
net>,<khed
land1@bell
south.net>
,<khedland
@bellsouth
.net>, delay=2+07:01:02, xdelay=00:00:00, mailer=esmtp, pri=468812, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:27:17 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 65000
Oct 14 07:27:30 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 66000
Oct 14 07:27:36 mail sendmail[15231]: k99KOVE2021522: to=<gower@bhm.bellsouth.ne
t>, delay=4+05:30:29, xdelay=00:32:01, mailer=esmtp, pri=732080, relay=bhm.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:27:49 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 67000
Oct 14 07:28:01 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 68000
Oct 14 07:28:02 mail sendmail[1042]: k992VtA7016706: to=<covitz@clt.bellsouth.n
et>,<covon
e@clt.bell
south.net>
,<cow@clt.
bellsouth.
net>,<cowa
n@clt.bell
south.net>
,<cowans@c
lt.bellsou
th.net>, delay=4+23:25:49, xdelay=00:32:00, mailer=esmtp, pri=553677, relay=clt.bellsouth.net. [205.152.58.8], dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:28:02 mail sendmail[1042]: k992VtAB016706: to=<cowbell@clt.bellsouth.
net>,<cowb
oy@clt.bel
lsouth.net
>, delay=4+23:25:30, xdelay=00:00:00, mailer=esmtp, pri=553678, relay=clt.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with clt.bellsouth.net.
Oct 14 07:28:17 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 69000
Oct 14 07:28:29 mail sendmail[15231]: k99HHFTR012517: to=<apa8ball@bellsouth.net
>, delay=4+08:34:49, xdelay=00:00:52, mailer=esmtp, pri=1092082, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:28:29 mail sendmail[15231]: k9AA2oiY028045: to=<mayf29071@bellsouth.ne
t>,<mayf44
05@bellsou
th.net>,<m
ayf5559@be
llsouth.ne
t>,<mayf56
22@bellsou
th.net>,<m
ayf5994@be
llsouth.ne
t>, delay=3+15:54:19, xdelay=00:00:00, mailer=esmtp, pri=1092084, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:29 mail sendmail[15231]: k99DXnpe005827: to=<articglo@bellsouth.net
>, delay=4+12:20:45, xdelay=00:00:00, mailer=esmtp, pri=1182088, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:29 mail sendmail[15231]: k99Kb2cQ022147: to=<jazee@bellsouth.net>, delay=4+05:17:27, xdelay=00:00:00, mailer=esmtp, pri=1182088, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:30 mail sendmail[15231]: k99EU7ga008091: to=<assh_jn@yahoo.co.in>, delay=4+11:25:27, xdelay=00:00:01, mailer=esmtp, pri=1182092, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:28:30 mail sendmail[15231]: k9AF9sdb005089: to=<lovemuffin@bellsouth.n
et>,<lovem
y44@bellso
uth.net>,<
lovemybaby
@bellsouth
.net>,<lov
emycar@bel
lsouth.net
>,<lovemyc
ritters@be
llsouth.ne
t>, delay=3+10:46:45, xdelay=00:00:00, mailer=esmtp, pri=1182097, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:30 mail sendmail[15231]: k9AHpCA0008807: to=<boy4brothr@bellsouth.n
et>,<boy4b
ug@bellsou
th.net>,<b
oy4buyer@b
ellsouth.n
et>,<boy4d
ad26@bells
outh.net>,
<boy4dad39
0@bellsout
h.net>, delay=3+08:07:11, xdelay=00:00:00, mailer=esmtp, pri=1182103, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:30 mail sendmail[15231]: k9AHhTwd008613: to=<boy4brothr@bellsouth.n
et>,<boy4b
ug@bellsou
th.net>,<b
oy4buyer@b
ellsouth.n
et>,<boy4d
ad26@bells
outh.net>,
<boy4dad39
0@bellsout
h.net>, delay=3+08:08:40, xdelay=00:00:00, mailer=esmtp, pri=1182103, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:30 mail sendmail[15231]: k99MCQTW025345: to=<at09@bellsouth.net>, delay=4+03:44:38, xdelay=00:00:00, mailer=esmtp, pri=1182127, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:30 mail sendmail[15231]: k99LYwVR024123: to=<mariq@bellsouth.net>, delay=4+04:21:48, xdelay=00:00:00, mailer=esmtp, pri=1093057, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k9AKDlCh011818: to=<rdgaines@bellsouth.net
>,<rdgales
@bellsouth
.net>,<rdg
arris@bell
south.net>
,<rdgary@b
ellsouth.n
et>, delay=3+05:42:56, xdelay=00:00:00, mailer=esmtp, pri=1183073, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k99AvE91015389: to=<degas88@bellsouth.net>
, delay=4+14:59:30, xdelay=00:00:00, mailer=esmtp, pri=1093075, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k99KQqxQ021625: to=<gotto@bellsouth.net>, delay=4+05:28:53, xdelay=00:00:00, mailer=esmtp, pri=1183075, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 70000
Oct 14 07:28:31 mail sendmail[15231]: k9ACirY0000595: to=<swami23@bellsouth.net>
,<swami2@b
ellsouth.n
et>,<swami
3@bellsout
h.net>,<sw
ami@bellso
uth.net>,<
swamiji@be
llsouth.ne
t>, delay=3+13:13:05, xdelay=00:00:00, mailer=esmtp, pri=1183086, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k9AB1UDL029653: to=<ttbaby82499@bellsouth.
net>,<ttba
iley@bells
outh.net>,
<ttbates@b
ellsouth.n
et>,<ttbbc
@bellsouth
.net>,<ttb
c1223@bell
south.net>
, delay=3+14:50:23, xdelay=00:00:00, mailer=esmtp, pri=1093088, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k9ABA21o029800: to=<ttbaby82499@bellsouth.
net>,<ttba
iley@bells
outh.net>,
<ttbates@b
ellsouth.n
et>,<ttbbc
@bellsouth
.net>,<ttb
c1223@bell
south.net>
, delay=3+14:48:26, xdelay=00:00:00, mailer=esmtp, pri=1093088, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:31 mail sendmail[15231]: k9B73VHH019960: to=<coacagee@bellsouth.net
>,<coacamp
@bellsouth
.net>, delay=2+18:53:57, xdelay=00:00:00, mailer=esmtp, pri=1093096, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:32 mail sendmail[15231]: k9A9BBYn026621: to=<dsables@bellsouth.net>
,<dsabo@be
llsouth.ne
t>,<dsabog
al@bellsou
th.net>,<d
sabol@bell
south.net>
,<dsabquin
n@bellsout
h.net>, delay=3+16:42:31, xdelay=00:00:00, mailer=esmtp, pri=1183098, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:32 mail sendmail[15231]: k9AEhUVG004592: to=<franklin35344@bellsout
h.net>,<fr
anklin3534
@bellsouth
.net>,<fra
nklin4237@
bellsouth.
net>,<fran
klin42@bel
lsouth.net
>,<frankli
n4@bellsou
th.net>, delay=3+11:14:10, xdelay=00:00:00, mailer=esmtp, pri=1183101, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:28:45 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 71000
Oct 14 07:28:59 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 72000
Oct 14 07:29:00 mail sendmail[20967]: k99IRDUN015772: to=<pmal@bhm.bellsouth.net
>, delay=4+07:30:55, xdelay=00:32:00, mailer=esmtp, pri=466345, relay=bhm.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:29:02 mail sendmail[9082]: k9AElKC7004656: to=<pdyohhsxgqc@arabia.com
>, delay=2+06:39:31, xdelay=00:02:00, mailer=esmtp, pri=1428717, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:29:18 mail sendmail[9082]: k9C1k8Ge002852: to=<vdevore@bellsouth.net>
, delay=2+00:12:47, xdelay=00:00:16, mailer=esmtp, pri=1428780, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:29:18 mail sendmail[9082]: k9BES8va013172: to=<hdianna@bellsouth.net>
, delay=2+11:29:00, xdelay=00:00:00, mailer=esmtp, pri=1518783, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:29:18 mail sendmail[9082]: k9BHIl5J021859: to=<band8@bellsouth.net>, delay=2+08:40:22, xdelay=00:00:00, mailer=esmtp, pri=1518794, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:29:18 mail sendmail[9082]: k9BG8b2b018455: to=<tina66@bellsouth.net>,
delay=2+09:46:51, xdelay=00:00:00, mailer=esmtp, pri=1518799, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:29:18 mail sendmail[9082]: k9BDm45f011230: to=<bklyncoogi@bellsouth.n
et>, delay=2+12:11:00, xdelay=00:00:00, mailer=esmtp, pri=1518800, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:29:18 mail sendmail[9082]: k9BHb0fY022719: to=<g_amy@bellsouth.net>,<
g_ana@bell
south.net>
,<g_and_g@
bellsouth.
net>,<g_an
dre@bellso
uth.net>,<
g_andrea@b
ellsouth.n
et>, delay=2+08:21:09, xdelay=00:00:00, mailer=esmtp, pri=1518809, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:29:19 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 73000
Oct 14 07:29:31 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 74000
Oct 14 07:29:49 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 75000
Oct 14 07:29:56 mail sendmail[4249]: k9C3tTY5006390: to=<fairmount@bhm.bellsout
h.net>,<fa
irplay@bhm
.bellsouth
.net>,<fai
rview@bhm.
bellsouth.
net>,<fair
way@bhm.be
llsouth.ne
t>,<fairwe
ather@bhm.
bellsouth.
net>, delay=1+22:03:02, xdelay=00:32:00, mailer=esmtp, pri=799958, relay=bhm.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:30:04 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 76000
Oct 14 07:30:06 mail sendmail[4249]: k9B9np04031025: to=<jessica707@bellsouth.n
et>, delay=2+16:08:00, xdelay=00:00:10, mailer=esmtp, pri=1430864, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:30:07 mail sendmail[4249]: k9C8R6RM001329: to=<dluvlyd@bellsouth.net>
,<dluvlyon
e@bellsout
h.net>,<dl
uvmann@bel
lsouth.net
>,<dluvmas
ter@bellso
uth.net>,<
dluvmd2@be
llsouth.ne
t>, delay=1+17:32:07, xdelay=00:00:00, mailer=esmtp, pri=1430868, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:07 mail sendmail[4249]: k9C7TYQb026282: to=<dabom1240@bellsouth.ne
t>,<dabom1
2562@bells
outh.net>,
<dabom1260
@bellsouth
.net>,<dab
om12@bells
outh.net>,
<dabom1313
3@bellsout
h.net>, delay=1+18:23:57, xdelay=00:00:00, mailer=esmtp, pri=1340869, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:07 mail sendmail[4249]: k9BFpwV1017407: to=<ohyeah1@bellsouth.net>
,<ohyeah43
@bellsouth
.net>,<ohy
ew812@bell
south.net>
,<ohzzqd@b
ellsouth.n
et>,<oi@be
llsouth.ne
t>, delay=2+10:07:32, xdelay=00:00:00, mailer=esmtp, pri=1430870, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:07 mail sendmail[4249]: k9BF76al015003: to=<pokeeffe@bellsouth.net
>,<pokehat
e@bellsout
h.net>,<po
kekid@bell
south.net>
,<pokelace
@bellsouth
.net>,<pok
elope@bell
south.net>
, delay=2+10:52:51, xdelay=00:00:00, mailer=esmtp, pri=1430872, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:07 mail sendmail[4249]: k9BDoUI4011420: to=<fletch2500@bellsouth.n
et>,<fletc
h2508@bell
south.net>
,<fletch26
@bellsouth
.net>,<fle
tch27@bell
south.net>
,<fletch3@
bellsouth.
net>, delay=2+12:07:33, xdelay=00:00:00, mailer=esmtp, pri=1430930, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:07 mail sendmail[20967]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+12:54:44, xdelay=00:01:07, mailer=esmtp, pri=1097452, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:30:08 mail sendmail[20967]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+03:50:16, xdelay=00:00:00, mailer=esmtp, pri=1097469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:08 mail sendmail[4249]: k9BDoUI8011420: to=<fletch4@bellsouth.net>
,<fletch50
@bellsouth
.net>,<fle
tch52@bell
south.net>
,<fletch53
@bellsouth
.net>,<fle
tch5@bells
outh.net>,
delay=2+12:07:16, xdelay=00:00:00, mailer=esmtp, pri=1430940, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:08 mail sendmail[20967]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+23:46:08, xdelay=00:00:00, mailer=esmtp, pri=1097473, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:08 mail sendmail[4249]: k9C6Iwrr017933: to=<lpark12@bellsouth.net>
,<lpark1@b
ellsouth.n
et>,<lpark
23@bellsou
th.net>,<l
park71@bel
lsouth.net
>,<lparke1
@bellsouth
.net>, delay=1+19:40:44, xdelay=00:00:00, mailer=esmtp, pri=1430978, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:08 mail sendmail[20967]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+13:12:46, xdelay=00:00:00, mailer=esmtp, pri=1097818, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:08 mail sendmail[4249]: k9BI8wiR024685: to=<ajk003@bellsouth.net>,
delay=2+07:48:58, xdelay=00:00:00, mailer=esmtp, pri=1432372, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BEUkEN013317: to=<elwood116@bellsouth.ne
t>, delay=2+11:28:04, xdelay=00:00:00, mailer=esmtp, pri=1432375, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BBqXaj004577: to=<cmvb58a@bellsouth.net>
, delay=2+14:07:34, xdelay=00:00:00, mailer=esmtp, pri=1432378, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BD8Nsn009061: to=<drepps@bellsouth.net>,
delay=2+12:50:05, xdelay=00:00:00, mailer=esmtp, pri=1432379, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BCWKEO006936: to=<micheada3@bellsouth.ne
t>,<michea
l.boston@b
ellsouth.n
et>,<miche
al@bellsou
th.net>, delay=2+13:21:57, xdelay=00:00:00, mailer=esmtp, pri=1432380, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BHrTxg023666: to=<donnalawson@bellsouth.
net>,<donn
alb@bellso
uth.net>,<
donnalbrow
n@bellsout
h.net>,<do
nnalc@bell
south.net>
,<donnald@
bellsouth.
net>, delay=2+08:05:06, xdelay=00:00:00, mailer=esmtp, pri=1432383, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BFpwUx017407: to=<ohward3@bellsouth.net>
,<ohwell@b
ellsouth.n
et>,<ohwol
fie@bellso
uth.net>,<
ohya@bells
outh.net>,
<ohyeah@be
llsouth.ne
t>, delay=2+10:07:46, xdelay=00:00:00, mailer=esmtp, pri=1432386, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:09 mail sendmail[4249]: k9BDI598009682: to=<benhut@bellsouth.net>,
delay=2+12:40:10, xdelay=00:00:00, mailer=esmtp, pri=1342393, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9BI0u2R024072: to=<lovexxx@bellsouth.net>
, delay=2+07:56:45, xdelay=00:00:00, mailer=esmtp, pri=1342394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9C8E8LT032182: to=<gkhpsmth@bellsouth.net
>,<gkhump@
bellsouth.
net>,<gkhu
nt@bellsou
th.net>,<g
khunter@be
llsouth.ne
t>,<gkhurs
t@bellsout
h.net>, delay=1+17:43:50, xdelay=00:00:00, mailer=esmtp, pri=1342396, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9BF76NT015002: to=<ogasm@bellsouth.net>, delay=2+10:51:52, xdelay=00:00:00, mailer=esmtp, pri=1342396, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9C5RVTA011189: to=<jmf1959@bellsouth.net>
,<jmf1968@
bellsouth.
net>,<jmf1
972@bellso
uth.net>,<
jmf2509@be
llsouth.ne
t>,<jmf2@b
ellsouth.n
et>, delay=1+20:32:06, xdelay=00:00:00, mailer=esmtp, pri=1342401, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9BIFCOL025157: to=<cmind@bellsouth.net>,<
cmindel@be
llsouth.ne
t>,<cmindi
ans@bellso
uth.net>,<
cmindigo@b
ellsouth.n
et>,<cmind
ler@bellso
uth.net>, delay=2+07:44:56, xdelay=00:00:00, mailer=esmtp, pri=1342401, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9BC6OvG005494: to=<capnrona@bellsouth.net
>, delay=2+13:51:02, xdelay=00:00:00, mailer=esmtp, pri=1342403, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:10 mail sendmail[4249]: k9BH1DJH020911: to=<antonio_s@bellsouth.ne
t>,<comlea
se@bellsou
th.net>, delay=2+08:57:56, xdelay=00:00:00, mailer=esmtp, pri=1342408, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:11 mail sendmail[4249]: k9BFdhWe016764: to=<pandora7@bellsouth.net
>, delay=2+10:16:31, xdelay=00:00:00, mailer=esmtp, pri=1342409, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:11 mail sendmail[4249]: k9BFTGwh016252: to=<hrbjr@bellsouth.net>,<
hrbksb@bel
lsouth.net
>,<hrbla@b
ellsouth.n
et>,<hrbla
w@bellsout
h.net>,<hr
block@bell
south.net>
, delay=2+10:28:06, xdelay=00:00:00, mailer=esmtp, pri=1342411, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:11 mail sendmail[4249]: k9BFnaT0017192: to=<r97@bellsouth.net>, delay=2+10:08:51, xdelay=00:00:00, mailer=esmtp, pri=1342420, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:14 mail sendmail[21886]: k9E20732021886: from=<whzhao@fireplaceexpr
ess.com>, size=2260, class=0, nrcpts=1, msgid=<000001c6ef33$e91cff
00$0100007
f@localhos
t>, proto=SMTP, daemon=MTA, relay=adsl.hnpt.com.vn [203.210.238.17] (may be forged)
Oct 14 07:30:15 mail sendmail[21887]: k9E20732021886: to=<hr@scriptacomsystems.c
om>, delay=00:00:03, xdelay=00:00:01, mailer=local, pri=32482, dsn=2.0.0, stat=Sent
Oct 14 07:30:21 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 77000
Oct 14 07:30:22 mail sendmail[4249]: k9BH9WEL021390: to=<kiza_the_purple_sparkl
ing_dildo@
yahoo.com>
,<kiza_zg@
yahoo.com>
,<kizaaaaa
aaaaaaaa@y
ahoo.com>,
<noknok27@
yahoo.com>
,<noknok3@
yahoo.com>
, delay=2+08:49:46, xdelay=00:00:11, mailer=esmtp, pri=1342446, relay=mta-v1.mail.vip.re3.
yahoo.com.
[66.196.97.250], dsn=4.0.0, stat=Deferred: 451 mta115.mail.re3.yahoo.com Resources temporarily unavailable. Please try again later. [#4.16.4:70].
Oct 14 07:30:22 mail sendmail[4249]: k9C7ceMg027632: to=<crcoke@bellsouth.net>,
<crcole568
7@bellsout
h.net>,<cr
cole@bells
outh.net>,
<crcoleman
@bellsouth
.net>,<crc
ollings@be
llsouth.ne
t>, delay=1+18:18:26, xdelay=00:00:00, mailer=esmtp, pri=1342461, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:22 mail sendmail[4249]: k9BAO4uY032526: to=<ihringer@bellsouth.net
>, delay=2+15:34:43, xdelay=00:00:00, mailer=esmtp, pri=1342474, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:23 mail sendmail[4249]: k9C8XjhS002451: to=<cmcoggins@bellsouth.ne
t>,<cmcoh@
bellsouth.
net>,<cmco
hen@bellso
uth.net>,<
cmcokmedin
@bellsouth
.net>,<cmc
ole@bellso
uth.net>, delay=1+17:24:49, xdelay=00:00:00, mailer=esmtp, pri=1342488, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:23 mail sendmail[4249]: k9BCYmx9007118: to=<fanslerj@bellsouth.net
>,<fansley
@bellsouth
.net>,<fan
smith@bell
south.net>
,<fansp@be
llsouth.ne
t>,<fanspo
rts10@bell
south.net>
, delay=2+13:23:57, xdelay=00:00:00, mailer=esmtp, pri=1344800, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:23 mail sendmail[4249]: k9BI4wiM024401: to=<achsin@bellsouth.net>,
delay=2+07:52:13, xdelay=00:00:00, mailer=esmtp, pri=1344808, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:30:35 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 78000
Oct 14 07:30:55 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 79000
Oct 14 07:31:01 mail sendmail[21889]: k9E20uCR021889: from=<tloring@server1.scri
ptacomsolu
tions.com>
, size=56001, class=0, nrcpts=3, msgid=<200610140200.k9E205
hr007910@s
erver1.scr
iptacomsol
utions.com
>, proto=ESMTP, daemon=MTA, relay=iad2.emailsrvr.com [207.97.227.212]
Oct 14 07:31:03 mail sendmail[21890]: k9E20uCR021889: to=<asokan@scriptacomsyste
ms.com>, delay=00:00:05, xdelay=00:00:02, mailer=local, pri=176186, dsn=2.0.0, stat=Sent
Oct 14 07:31:03 mail sendmail[21890]: k9E20uCR021889: to=<data@scriptacomsystems
.com>, delay=00:00:05, xdelay=00:00:00, mailer=local, pri=176186, dsn=2.0.0, stat=Sent
Oct 14 07:31:03 mail sendmail[21890]: k9E20uCR021889: to=network@scriptacomsyste
ms.com, delay=00:00:05, xdelay=00:00:00, mailer=local, pri=176186, dsn=2.0.0, stat=Sent
Oct 14 07:31:03 mail sendmail[21890]: k9E20uCR021889: to=<sbs@scriptacomsystems.
com>, delay=00:00:05, xdelay=00:00:00, mailer=local, pri=176186, dsn=2.0.0, stat=Sent
Oct 14 07:31:08 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 80000
Oct 14 07:31:21 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 81000
Oct 14 07:31:33 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 82000
Oct 14 07:31:49 mail sendmail[21895]: k9E21lw5021895: from=<root@orwell.etransme
dia.com>, size=2525, class=0, nrcpts=3, msgid=<20061014020015.D221
31EC086@or
well.voxel
.net>, proto=ESMTP, daemon=MTA, relay=orwell.etransmedia.c
om [69.9.191.170]
Oct 14 07:31:50 mail sendmail[21896]: k9E21lw5021895: to=<jayasri@scriptacomsyst
ems.com>, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=122731, dsn=2.0.0, stat=Sent
Oct 14 07:31:50 mail sendmail[21896]: k9E21lw5021895: to=<mt@scriptacomsystems.c
om>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=122731, dsn=2.0.0, stat=Sent
Oct 14 07:31:50 mail sendmail[21896]: k9E21lw5021895: to=network@scriptacomsyste
ms.com, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=122731, dsn=2.0.0, stat=Sent
Oct 14 07:31:50 mail sendmail[21896]: k9E21lw5021895: to=<support@scriptacomsyst
ems.com>, delay=00:00:02, xdelay=00:00:00, mailer=local, pri=122731, dsn=2.0.0, stat=Sent
Oct 14 07:31:51 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 83000
Oct 14 07:32:04 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 84000
Oct 14 07:32:17 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 85000
Oct 14 07:32:17 mail sendmail[14561]: k9B8EOkm027458: to=<pc1@lig.bellsouth.net>
,<pc3@lig.
bellsouth.
net>,<pc4@
lig.bellso
uth.net>,<
pc93@lig.b
ellsouth.n
et>,<pca@l
ig.bellsou
th.net>, delay=2+17:45:56, xdelay=00:32:00, mailer=esmtp, pri=822070, relay=lig.bellsouth.net. [205.152.58.136], dsn=4.0.0, stat=Deferred: Connection timed out with lig.bellsouth.net.
Oct 14 07:32:18 mail sendmail[14561]: STARTTLS: write error=syscall error (-1)
Oct 14 07:32:38 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 86000
Oct 14 07:32:50 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 87000
Oct 14 07:33:02 mail sendmail[15758]: k9BI8GhQ024627: to=<nflores@bhm.bellsouth.
net>, delay=2+07:54:42, xdelay=00:32:00, mailer=esmtp, pri=378802, relay=bhm.bellsouth.net. [205.152.58.3], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:33:03 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 88000
Oct 14 07:33:12 mail sendmail[13928]: k9BHHV9c021774: to=<creger@rdu.bellsouth.n
et>,<cregg
er@rdu.bel
lsouth.net
>,<creilly
@rdu.bells
outh.net>,
<creiter@r
du.bellsou
th.net>,<c
reitz@rdu.
bellsouth.
net>,<crem
ate@rdu.be
llsouth.ne
t>, delay=2+08:44:15, xdelay=00:32:00, mailer=esmtp, pri=378804, relay=rdu.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:33:13 mail sendmail[13928]: k9BHHV9c021774: k9DDe1o3013928: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:33:13 mail sendmail[14561]: k99LDfDn023441: to=<lp1012@bellsouth.net>,
<rhitchco@
bellsouth.
net>, delay=4+04:47:55, xdelay=00:00:55, mailer=esmtp, pri=1182074, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:33:13 mail sendmail[14561]: k9AKXSI1012299: to=<wahligs@bellsouth.net>
,<wahlm@be
llsouth.ne
t>,<wahls@
bellsouth.
net>,<wahl
sd@bellsou
th.net>,<w
ahm@bellso
uth.net>, delay=3+05:26:08, xdelay=00:00:00, mailer=esmtp, pri=1272074, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:33:13 mail sendmail[14561]: k9AKXSHx012299: to=<wahlen@bellsouth.net>,
<wahlenbr@
bellsouth.
net>,<wahl
er@bellsou
th.net>,<w
ahlf@bells
outh.net>,
<wahlg@bel
lsouth.net
>, delay=3+05:26:32, xdelay=00:00:00, mailer=esmtp, pri=1272078, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:33:16 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 89000
Oct 14 07:33:19 mail sendmail[13928]: k9DDe1o3013928: to=<gmtlrmnjx@chinabyte.co
m>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=50050, relay=mta-v1.mail.vip.cnb.
yahoo.com.
[202.43.216.28], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:33:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 90000
Oct 14 07:33:42 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 91000
Oct 14 07:34:05 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 92000
Oct 14 07:34:12 mail sendmail[27407]: k9BBRkOl003389: to=<glennc@mia.bellsouth.n
et>,<glenn
d@mia.bell
south.net>
,<glenne@m
ia.bellsou
th.net>,<g
lennh@mia.
bellsouth.
net>,<glen
nk@mia.bel
lsouth.net
>, delay=2+14:36:20, xdelay=00:32:00, mailer=esmtp, pri=1069209, relay=mia.bellsouth.net. [205.152.58.1], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 07:34:18 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 93000
Oct 14 07:34:18 mail sendmail[18768]: k969JBYh001791: to=<bultman@atl.bellsouth.
net>, delay=7+16:43:52, xdelay=00:32:00, mailer=esmtp, pri=378806, relay=atl.bellsouth.net. [205.152.58.5], dsn=4.0.0, stat=Deferred: Connection timed out with atl.bellsouth.net.
Oct 14 07:34:19 mail sendmail[18768]: k969JBYh001791: k9DLe1oU018768: DSN: Cannot send message for 5 days
Oct 14 07:34:27 mail sendmail[15871]: k9C38uwx005300: to=<ericad@rdu.bellsouth.n
et>,<erica
g@rdu.bell
south.net>
, delay=1+22:54:31, xdelay=00:32:00, mailer=esmtp, pri=979284, relay=rdu.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:34:31 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 94000
Oct 14 07:34:31 mail sendmail[27407]: k9C5RVTI011189: to=<jmf9033@bellsouth.net>
,<jmf_mlf@
bellsouth.
net>,<jmfa
il@bellsou
th.net>,<j
mfalcon@be
llsouth.ne
t>,<jmfami
ly@bellsou
th.net>, delay=1+20:35:40, xdelay=00:00:19, mailer=esmtp, pri=1429209, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:34:32 mail sendmail[27407]: k9BDZpvd010598: to=<debsparks@bellsouth.ne
t>,<debspa
wn@bellsou
th.net>,<d
ebspear@be
llsouth.ne
t>,<debspe
nc@bellsou
th.net>,<d
ebspence@b
ellsouth.n
et>, delay=2+12:24:11, xdelay=00:00:00, mailer=esmtp, pri=1519220, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:32 mail sendmail[27407]: k9BFfje6016813: to=<accountaxserv@bellsout
h.net>,<ge
nx929@bell
south.net>
, delay=2+10:20:53, xdelay=00:00:00, mailer=esmtp, pri=1519221, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:32 mail sendmail[27407]: k9BCkaMZ007751: to=<bhadry@bellsouth.net>,
delay=2+13:15:36, xdelay=00:00:00, mailer=esmtp, pri=1429222, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:32 mail sendmail[27407]: k9BBtsM0004787: to=<fredp@bellsouth.net>, delay=2+14:05:08, xdelay=00:00:00, mailer=esmtp, pri=1519224, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9BB9Ihe002378: to=<lmj@bellsouth.net>, delay=2+14:51:56, xdelay=00:00:00, mailer=esmtp, pri=1429226, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9BHIl5Q021859: to=<cs500@bellsouth.net>, delay=2+08:42:50, xdelay=00:00:00, mailer=esmtp, pri=1429227, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9BDZHds010511: to=<awj@bellsouth.net>, delay=2+12:27:57, xdelay=00:00:00, mailer=esmtp, pri=1429231, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9B9xuE6031683: to=<m.blaisuis@bellsouth.n
et>, delay=2+16:03:33, xdelay=00:00:00, mailer=esmtp, pri=1519231, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9BBLQM6003052: to=<yuriy@bellsouth.net>, delay=2+14:42:50, xdelay=00:00:00, mailer=esmtp, pri=1519232, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9BI2YBp024199: to=<batacan@bellsouth.net>
,<batachan
@bellsouth
.net>,<bat
aco@bellso
uth.net>,<
batad@bell
south.net>
,<batadsty
@bellsouth
.net>, delay=2+07:56:43, xdelay=00:00:00, mailer=esmtp, pri=1339234, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:33 mail sendmail[27407]: k9C1wlM2003324: to=<hetzer49@bellsouth.net
>,<hetzere
@bellsouth
.net>, delay=2+00:05:34, xdelay=00:00:00, mailer=esmtp, pri=1339236, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:34 mail sendmail[27407]: k9BCL7DQ006400: to=<badboyx008@bellsouth.n
et>, delay=2+13:38:36, xdelay=00:00:00, mailer=esmtp, pri=1429245, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:34:45 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 95000
Oct 14 07:35:06 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 96000
Oct 14 07:35:15 mail sendmail[15758]: k9BI8GhQ024627: to=<dlyman1@bellsouth.net>
, delay=2+07:56:55, xdelay=00:02:13, mailer=esmtp, pri=378802, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:35:15 mail sendmail[15758]: k9BI8GhQ024627: k9DGe1dV015758: sender notify: Warning: could not send message for past 4 hours
Oct 14 07:35:17 mail sendmail[15758]: k9DGe1dV015758: to=<exoioyil@bellauk.com>,
delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=50082, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:35:18 mail sendmail[15758]: k9DGe1dV015758: k9DGe1dW015758: return to sender: User unknown
Oct 14 07:35:19 mail sendmail[15758]: k9DGe1dW015758: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=51106, dsn=2.0.0, stat=Sent
Oct 14 07:35:19 mail sendmail[15758]: k9BElW58014035: to=<blerxacid2@bellsouth.n
et>, delay=2+11:16:03, xdelay=00:00:00, mailer=esmtp, pri=918804, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:35:20 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 97000
Oct 14 07:35:23 mail sendmail[13928]: k9BGJeXZ018939: to=<jdscott2@bellsouth.net
>,<jdscott
_3@bellsou
th.net>,<j
dscpa@bell
south.net>
,<jdscreen
@bellsouth
.net>,<jds
cteele@bel
lsouth.net
>,<jdscuba
@bellsouth
.net>, delay=2+09:45:08, xdelay=00:02:04, mailer=esmtp, pri=918805, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 07:35:24 mail sendmail[13928]: k9BGp3xo020398: to=<pools@mail.bellsouth.n
et>, delay=2+09:12:24, xdelay=00:00:00, mailer=esmtp, pri=648812, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 07:35:24 mail sendmail[13928]: k9BItLuo027880: to=<khedger1@bellsouth.net
>,<khedges
@bellsouth
.net>,<khe
dkar1@bell
south.net>
,<khedkar@
bellsouth.
net>,<khed
land1@bell
south.net>
,<khedland
@bellsouth
.net>, delay=2+07:09:13, xdelay=00:00:00, mailer=esmtp, pri=558812, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 07:35:28 mail sendmail[13928]: k9BHsbtO023714: to=<redheadfemale38@yahoo.
com>, delay=2+08:09:39, xdelay=00:00:04, mailer=esmtp, pri=558813, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=5.0.0, stat=Service unavailable
Oct 14 07:35:28 mail sendmail[13928]: k9BHsbtO023714: k9DDe1o4013928: sender notify: Service unavailable
Oct 14 07:35:30 mail sendmail[13928]: k9DDe1o4013928: to=<nebyzemwz@bellauk.com>
, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=50088, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:35:30 mail sendmail[13928]: k9DDe1o4013928: k9DDe1o5013928: return to sender: User unknown
Oct 14 07:35:31 mail sendmail[13928]: k9DDe1o5013928: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=51112, dsn=2.0.0, stat=Sent
Oct 14 07:35:35 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 98000
Oct 14 07:35:35 mail sendmail[13928]: k9B9pK0u031086: to=<cindysuesnoflake@yahoo
.com>,<cin
dysuewho_2
@yahoo.com
>,<cindysu
ez2000@yah
oo.com>,<c
indysuhng@
yahoo.com>
,<thesien@
yahoo.com>
,<thesier_
steven@yah
oo.com>, delay=2+16:12:22, xdelay=00:00:04, mailer=esmtp, pri=558815, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 5/1)
Oct 14 07:35:39 mail sendmail[13928]: k939gHwm018189: to=<hady_259@yahoo.com>,<h
ady_5004@y
ahoo.com>,
<hady_6664
4@yahoo.co
m>,<hady_9
8@yahoo.co
m>,<hady_9
92002@yaho
o.com>, delay=10+16:22:36, xdelay=00:00:04, mailer=esmtp, pri=378817, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:35:42 mail sendmail[13928]: k942AVZu020237: to=<atyson8694@yahoo.com>,
<atysongar
rett@yahoo
.com>, delay=9+23:54:33, xdelay=00:00:03, mailer=esmtp, pri=378817, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:35:45 mail sendmail[13928]: k93AL45T019868: to=<cscosta@yahoo.com>,<cs
cot@yahoo.
com>, delay=10+15:41:42, xdelay=00:00:03, mailer=esmtp, pri=378817, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 0/2)
Oct 14 07:35:45 mail sendmail[13928]: k956C2HY012429: to=<alysa@rdu.bellsouth.ne
t>,<alyse@
rdu.bellso
uth.net>,<
alysha@rdu
.bellsouth
.net>,<aly
sia@rdu.be
llsouth.ne
t>,<alyson
@rdu.bells
outh.net>,
delay=8+19:53:26, xdelay=00:00:00, mailer=esmtp, pri=378817, relay=rdu.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:35:45 mail sendmail[13928]: k956C2HY012429: k9DDe1o6013928: DSN: Cannot send message for 5 days
Oct 14 07:35:46 mail sendmail[13928]: k9DDe1o6013928: to=<purldbzomhz@bellauk.co
m>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=80024, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:35:46 mail sendmail[13928]: k9DDe1o6013928: k9DDe1o7013928: return to sender: User unknown
Oct 14 07:35:47 mail sendmail[13928]: k9DDe1o7013928: to=root, delay=00:00:01, xdelay=00:00:01, mailer=local, pri=81048, dsn=2.0.0, stat=Sent
Oct 14 07:35:48 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 99000
Oct 14 07:35:50 mail sendmail[13928]: k93E4aO5031988: to=<atadonkosei@yahoo.com>
,<atadonli
ne@yahoo.c
om>,<atado
nroyata@ya
hoo.com>,<
atador@yah
oo.com>,<a
tadora_ama
@yahoo.com
>, delay=10+12:01:09, xdelay=00:00:03, mailer=esmtp, pri=378817, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:35:52 mail sendmail[13928]: k939dU67017550: to=<ibmoore@yahoo.com>,<ib
moovin1@ya
hoo.com>, delay=10+16:24:35, xdelay=00:00:02, mailer=esmtp, pri=378817, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 2/0)
Oct 14 07:35:55 mail sendmail[13928]: k93GClA4007381: to=<maraksot@yahoo.com>,<m
arakuch@ya
hoo.com>,<
marakunna@
yahoo.com>
,<marakuy@
yahoo.com>
,<marakwa@
yahoo.com>
, delay=10+09:52:36, xdelay=00:00:03, mailer=esmtp, pri=378818, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:36:02 mail sendmail[13928]: k93DohDi031460: to=<charmednlife@yahoo.com
>,<charmed
nyangel@ya
hoo.com>,<
charmedofm
oon@yahoo.
com>,<char
medon1jc@y
ahoo.com>,
<charmedon
420@yahoo.
com>, delay=10+12:14:38, xdelay=00:00:05, mailer=esmtp, pri=378818, relay=mx1.mail.yahoo.com. [4.79.181.14], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:36:06 mail sendmail[13928]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:36:06 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 100000
Oct 14 07:36:07 mail sendmail[13928]: k93HuIP8017063: to=<buddy_bradley@dell.com
>, delay=10+08:09:11, xdelay=00:00:03, mailer=esmtp, pri=378818, relay=smtp.ins.dell.com. [143.166.83.183], dsn=5.5.4, stat=Service unavailable
Oct 14 07:36:07 mail sendmail[13928]: k93HuIP8017063: to=<buddy_brewer@dell.com>
, delay=10+08:09:11, xdelay=00:00:03, mailer=esmtp, pri=378818, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:36:07 mail sendmail[13928]: k93HuIP8017063: to=<buddy_bud@dell.com>, delay=10+08:09:11, xdelay=00:00:03, mailer=esmtp, pri=378818, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:36:08 mail sendmail[13928]: k93HuIP8017063: to=<buddy_cat@dell.com>, delay=10+08:09:12, xdelay=00:00:04, mailer=esmtp, pri=378818, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:36:09 mail sendmail[13928]: k93HuIP8017063: k9DDe1o8013928: DSN: Cannot send message for 5 days
Oct 14 07:36:19 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 101000
Oct 14 07:36:31 mail sendmail[15871]: k9C1wlMQ003324: to=<heugene@bellsouth.net>
,<heugenio
@bellsouth
.net>, delay=2+00:06:30, xdelay=00:02:03, mailer=esmtp, pri=1339293, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:36:32 mail sendmail[15871]: k9C2TR98004317: to=<babyblossom@bellsouth.
net>,<baby
blow@bells
outh.net>,
delay=1+23:37:02, xdelay=00:00:00, mailer=esmtp, pri=1429294, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:36:32 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 102000
Oct 14 07:36:33 mail sendmail[18768]: k9DLe1oU018768: to=<fuqoe@brain.net.pk>, delay=00:02:14, xdelay=00:02:14, mailer=esmtp, pri=79983, relay=mx2.brain.net.pk. [203.128.7.15], dsn=5.1.1, stat=User unknown
Oct 14 07:36:34 mail sendmail[18768]: k9DLe1oU018768: k9DLe1oV018768: return to sender: User unknown
Oct 14 07:36:35 mail sendmail[18768]: k9DLe1oV018768: to=root, delay=00:00:01, xdelay=00:00:00, mailer=local, pri=81007, dsn=2.0.0, stat=Sent
Oct 14 07:36:46 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 103000
Oct 14 07:36:51 mail sendmail[18768]: k9BGp3xo020398: to=<pools@mail.bellsouth.n
et>, delay=2+09:13:51, xdelay=00:00:16, mailer=esmtp, pri=738812, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:36:51 mail sendmail[18768]: k9BItLuo027880: to=<khedger1@bellsouth.net
>,<khedges
@bellsouth
.net>,<khe
dkar1@bell
south.net>
,<khedkar@
bellsouth.
net>,<khed
land1@bell
south.net>
,<khedland
@bellsouth
.net>, delay=2+07:10:40, xdelay=00:00:00, mailer=esmtp, pri=648812, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:36:52 mail sendmail[18768]: k964vbxk005004: to=<ericawsn@bellsouth.net
>,<ericax@
bellsouth.
net>,<eric
axox@bells
outh.net>,
<ericay@be
llsouth.ne
t>,<ericay
ala@bellso
uth.net>, delay=7+21:02:48, xdelay=00:00:00, mailer=esmtp, pri=378818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:36:52 mail sendmail[18768]: k964vbxk005004: k9DLe1oW018768: DSN: Cannot send message for 5 days
Oct 14 07:36:54 mail sendmail[18768]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:36:57 mail sendmail[18768]: k9DLe1oW018768: to=<uapwsvl@caller.com>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=80035, relay=mail.global.sprint.c
om. [216.148.222.35], dsn=2.0.0, stat=Sent (Ok: queued as 8941C61AC07)
Oct 14 07:37:04 mail sendmail[18768]: k93C7AiN026674: to=<va_girl1099@yahoo.com>
,<va_girl1
965@yahoo.
com>,<va_g
irl1966@ya
hoo.com>,<
va_girl200
2@yahoo.co
m>,<va_gir
l23@yahoo.
com>, delay=10+13:54:17, xdelay=00:00:04, mailer=esmtp, pri=378819, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:37:08 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 104000
Oct 14 07:37:21 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 105000
Oct 14 07:37:25 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 07:37:29 mail sendmail[21905]: k9E27CMd021905: from=<yrpphwuont@ziagold.n
et>, size=20373, class=0, nrcpts=1, msgid=<000d01c6ef35$730b3f
a0$ecf0ead
d@lfa95747
969fe4>, proto=ESMTP, daemon=MTA, relay=[221.234.248.249]
Oct 14 07:37:29 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 07:37:29 mail sendmail[21910]: k9E27CMd021905: to=<hr@scriptacomsystems.c
om>, delay=00:00:11, xdelay=00:00:00, mailer=local, pri=50573, dsn=2.0.0, stat=Sent
Oct 14 07:37:29 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 07:37:31 mail imap-login: Login: data [::ffff:192.168.1.198]
Oct 14 07:37:31 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 07:37:32 mail imap-login: Login: mt [::ffff:192.168.1.198]
Oct 14 07:37:33 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 07:37:35 mail imap-login: Login: crc [::ffff:192.168.1.198]
Oct 14 07:37:35 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 07:37:37 mail imap-login: Login: outsrc [::ffff:192.168.1.198]
Oct 14 07:37:42 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 106000
Oct 14 07:37:44 mail sendmail[19957]: k99KWuUm021842: to=<hartman5@bhm.bellsouth
.net>, delay=4+05:33:21, xdelay=00:32:00, mailer=esmtp, pri=467424, relay=bhm.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with bhm.bellsouth.net.
Oct 14 07:37:44 mail sendmail[19957]: STARTTLS: write error=syscall error (-1)
Oct 14 07:37:44 mail sendmail[19957]: k99KWuUm021842: to=<anilugle@yahoo.co.in>,
delay=4+05:33:21, xdelay=00:00:00, mailer=esmtp, pri=467424, relay=mx1.mail.in.yahoo.co
m. [202.43.219.49], dsn=4.0.0, stat=Deferred: 451 Message temporarily deferred - 4.16.50
Oct 14 07:37:55 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 107000
Oct 14 07:38:10 mail sendmail[13928]: k9DDe1o8013928: to=<ohsbrd@arabia.com>, delay=00:02:01, xdelay=00:02:00, mailer=esmtp, pri=79994, relay=arabia.com. [212.227.34.3], dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:38:10 mail sendmail[13928]: k940Bg6w014164: to=<oikawa1@bellsouth.net>
,<oikawa@b
ellsouth.n
et>,<oikaw
ak@bellsou
th.net>,<o
ikaway@bel
lsouth.net
>,<oike@be
llsouth.ne
t>, delay=10+01:51:13, xdelay=00:00:00, mailer=esmtp, pri=378819, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:10 mail sendmail[13928]: k940Bg6w014164: k9DDe1o9013928: DSN: Cannot send message for 5 days
Oct 14 07:38:11 mail sendmail[13928]: k9DDe1o9013928: to=<phmxsoxkdqb@chinabyte.
com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79994, relay=mta-v1.mail.vip.cnb.
yahoo.com.
, dsn=4.0.0, stat=Deferred
Oct 14 07:38:11 mail sendmail[13928]: k93JLSnl024644: to=<clavijo@bellsouth.net>
,<clavijoa
@bellsouth
.net>,<cla
vijoo@bell
south.net>
,<clavijos
@bellsouth
.net>,<cla
villej@bel
lsouth.net
>, delay=10+06:45:40, xdelay=00:00:00, mailer=esmtp, pri=378819, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred: Connection timed out with mx01.mail.bellsouth.net.
Oct 14 07:38:11 mail sendmail[13928]: k93JLSnl024644: k9DDe1oA013928: DSN: Cannot send message for 5 days
Oct 14 07:38:13 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 108000
Oct 14 07:38:19 mail sendmail[19957]: k9B442uN004255: to=<shibumi2@bellsouth.net
>,<shibunn
ie30@bells
outh.net>,
<shic@bell
south.net>
,<shica23@
bellsouth.
net>,<shic
ahardy@bel
lsouth.net
>, delay=2+21:58:37, xdelay=00:00:34, mailer=esmtp, pri=1187425, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:38:19 mail sendmail[19957]: k99KiwMk022457: to=<andymale@bellsouth.net
>, delay=4+05:23:17, xdelay=00:00:00, mailer=esmtp, pri=1187436, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k99HHFTH012517: to=<mabraham@bellsouth.net
>, delay=4+08:49:18, xdelay=00:00:00, mailer=esmtp, pri=1187436, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k9AMa2RR019181: to=<chandrika@bellsouth.ne
t>,<chandr
j@bellsout
h.net>,<ch
andruk@bel
lsouth.net
>,<chands@
bellsouth.
net>,<chan
du@bellsou
th.net>, delay=3+03:30:31, xdelay=00:00:00, mailer=esmtp, pri=1097440, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k9B4iu4d005638: to=<servicio1@bellsouth.ne
t>,<servic
io@bellsou
th.net>,<s
ervicios.p
ersonal@be
llsouth.ne
t>,<servic
ios@bellso
uth.net>,<
servicom@b
ellsouth.n
et>, delay=2+21:23:04, xdelay=00:00:00, mailer=esmtp, pri=1187441, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k9B2c2Hn001088: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+23:28:23, xdelay=00:00:00, mailer=esmtp, pri=1187442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k9B2epgE001205: to=<bigbrime@bellsouth.net
>,<bigbrin
@bellsouth
.net>,<big
brinc@bell
south.net>
,<bigbrit@
bellsouth.
net>,<bigb
ritt@bells
outh.net>,
delay=2+23:27:20, xdelay=00:00:00, mailer=esmtp, pri=1187442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:20 mail sendmail[19957]: k9B56gjG006338: to=<himmlerd@bellsouth.net
>,<himmo@b
ellsouth.n
et>,<himmo
ando@bells
outh.net>,
<himmoarcr
@bellsouth
.net>,<him
moered@bel
lsouth.net
>, delay=2+21:01:19, xdelay=00:00:00, mailer=esmtp, pri=1187442, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k99KOVDu021522: to=<jamespate@bellsouth.ne
t>, delay=4+05:41:46, xdelay=00:00:00, mailer=esmtp, pri=1097448, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k9AD2QXE001202: to=<brooks1114@bellsouth.n
et>,<brook
s1119@bell
south.net>
,<brooks11
24@bellsou
th.net>,<b
rooks1128@
bellsouth.
net>,<broo
ks115@bell
south.net>
, delay=3+13:02:58, xdelay=00:00:00, mailer=esmtp, pri=1187452, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k99F0Eij008832: to=<golfers2@bellsouth.net
>, delay=4+11:06:35, xdelay=00:00:00, mailer=esmtp, pri=1097456, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k9AEY5Jj004402: to=<insideout@bellsouth.ne
t>,<inside
p@bellsout
h.net>,<in
sider1@bel
lsouth.net
>,<insider
@bellsouth
.net>,<ins
iders@bell
south.net>
, delay=3+11:31:56, xdelay=00:00:00, mailer=esmtp, pri=1097460, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k99Lwe91024882: to=<spudxx@bellsouth.net>,
delay=4+03:58:29, xdelay=00:00:00, mailer=esmtp, pri=1187469, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k9B2Dffq000376: to=<norris33@bellsouth.net
>,<norris3
4@bellsout
h.net>,<no
rris3@bell
south.net>
,<norris46
@bellsouth
.net>,<nor
ris4@bells
outh.net>,
delay=2+23:54:21, xdelay=00:00:00, mailer=esmtp, pri=1187473, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:21 mail sendmail[19957]: k9BCjml3007633: to=<a111365@bellsouth.net>
, delay=2+13:20:59, xdelay=00:00:00, mailer=esmtp, pri=1187818, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9BJ8egc028413: to=<makgss@bellsouth.net>,
delay=2+06:59:40, xdelay=00:00:00, mailer=esmtp, pri=1097830, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9BJ6qP0028406: to=<makgss@bellsouth.net>,
delay=2+07:00:39, xdelay=00:00:00, mailer=esmtp, pri=1097830, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9BIXuWJ026396: to=<austin9710@bellsouth.n
et>, delay=2+07:33:31, xdelay=00:00:00, mailer=esmtp, pri=1097834, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9C5btPq012864: to=<cheryl04@bellsouth.net
>,<cheryl0
6@bellsout
h.net>,<ch
eryl1012@b
ellsouth.n
et>,<chery
l10209@bel
lsouth.net
>,<cheryl1
0@bellsout
h.net>,<ch
eryl1@bell
south.net>
, delay=1+20:27:35, xdelay=00:00:00, mailer=esmtp, pri=1007839, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9BA7t5q032046: to=<aclaveri@bellsouth.net
>,<avarice
@bellsouth
.net>, delay=2+15:57:42, xdelay=00:00:00, mailer=esmtp, pri=1097850, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:22 mail sendmail[19957]: k9C5RVTC011189: to=<jmf305@bellsouth.net>,
<jmf419@be
llsouth.ne
t>,<jmf50@
bellsouth.
net>,<jmf5
15@bellsou
th.net>,<j
mf54@bells
outh.net>,
<jmf5@bell
south.net>
, delay=1+20:40:00, xdelay=00:00:00, mailer=esmtp, pri=1007860, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BH7aOD021272: to=<boyd35@bellsouth.net>,
<boyd36@be
llsouth.ne
t>,<boyd37
77@bellsou
th.net>,<b
oyd37@bell
south.net>
,<boyd3819
@bellsouth
.net>,<boy
d38@bellso
uth.net>, delay=2+09:00:21, xdelay=00:00:00, mailer=esmtp, pri=1097860, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BDkItq011114: to=<aecops@bellsouth.net>,
delay=2+12:21:36, xdelay=00:00:00, mailer=esmtp, pri=1097865, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BDf4kh010867: to=<gchil@bellsouth.net>, delay=2+12:27:14, xdelay=00:00:00, mailer=esmtp, pri=1097870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BEqF0N014314: to=<reb7@bellsouth.net>, delay=2+11:15:31, xdelay=00:00:00, mailer=esmtp, pri=1097870, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BHAIvU021424: to=<bonniejacobi@bellsouth
.net>, delay=2+08:57:59, xdelay=00:00:00, mailer=esmtp, pri=1097873, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:23 mail sendmail[19957]: k9BGZ49o019691: to=<aileen20542@bellsouth.
net>,<aile
en23@bells
outh.net>,
<aileen25@
bellsouth.
net>,<aile
en317@bell
south.net>
,<aileen32
40@bellsou
th.net>,<a
ileen3@bel
lsouth.net
>, delay=2+09:32:16, xdelay=00:00:00, mailer=esmtp, pri=1097874, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:24 mail sendmail[19957]: k992uRaW017044: to=<walker_3@bellsouth.net
>,<walker_
4@bellsout
h.net>,<wa
lker_b@bel
lsouth.net
>,<walker_
d@bellsout
h.net>,<wa
lker_g@bel
lsouth.net
>, delay=4+23:11:45, xdelay=00:00:00, mailer=esmtp, pri=1097878, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:24 mail sendmail[19957]: k9BHFQIQ021656: to=<carlosmarcelo@bellsout
h.net>, delay=2+08:50:56, xdelay=00:00:00, mailer=esmtp, pri=1097879, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:24 mail sendmail[19957]: k9BFpwV3017407: to=<oi74@bellsouth.net>,<o
i8u2@bells
outh.net>,
<oiada@bel
lsouth.net
>,<oianko@
bellsouth.
net>,<oiar
tza@bellso
uth.net>,<
oib@bellso
uth.net>, delay=2+10:15:39, xdelay=00:00:00, mailer=esmtp, pri=1097884, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:38:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 109000
Oct 14 07:38:42 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 110000
Oct 14 07:39:03 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 111000
Oct 14 07:39:14 mail sendmail[5162]: k9BCxF83008474: to=<jeffd@rdu.bellsouth.ne
t>, delay=2+13:08:27, xdelay=00:32:01, mailer=esmtp, pri=802387, relay=rdu.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:39:16 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 112000
Oct 14 07:39:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 113000
Oct 14 07:39:47 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 114000
Oct 14 07:39:52 mail sendmail[12927]: k9B4BXB6004671: to=<mhb@rdu.bellsouth.net>
,<mhd@rdu.
bellsouth.
net>,<mhea
rd@rdu.bel
lsouth.net
>,<mheath@
rdu.bellso
uth.net>,<
mhenderson
@rdu.bells
outh.net>,
delay=2+21:56:23, xdelay=00:32:00, mailer=esmtp, pri=908989, relay=rdu.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:40:00 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 115000
Oct 14 07:40:06 mail sendmail[5162]: k9BDI598009682: to=<benhut@bellsouth.net>,
delay=2+12:50:07, xdelay=00:00:52, mailer=esmtp, pri=1432393, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:40:06 mail sendmail[5162]: k9BI0u2R024072: to=<lovexxx@bellsouth.net>
, delay=2+08:06:41, xdelay=00:00:00, mailer=esmtp, pri=1432394, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:06 mail sendmail[5162]: k9C8E8LT032182: to=<gkhpsmth@bellsouth.net
>,<gkhump@
bellsouth.
net>,<gkhu
nt@bellsou
th.net>,<g
khunter@be
llsouth.ne
t>,<gkhurs
t@bellsout
h.net>, delay=1+17:53:46, xdelay=00:00:00, mailer=esmtp, pri=1432396, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9BF76NT015002: to=<ogasm@bellsouth.net>, delay=2+11:01:49, xdelay=00:00:00, mailer=esmtp, pri=1432396, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9C5RVTA011189: to=<jmf1959@bellsouth.net>
,<jmf1968@
bellsouth.
net>,<jmf1
972@bellso
uth.net>,<
jmf2509@be
llsouth.ne
t>,<jmf2@b
ellsouth.n
et>, delay=1+20:42:03, xdelay=00:00:00, mailer=esmtp, pri=1432401, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9BIFCOL025157: to=<cmind@bellsouth.net>,<
cmindel@be
llsouth.ne
t>,<cmindi
ans@bellso
uth.net>,<
cmindigo@b
ellsouth.n
et>,<cmind
ler@bellso
uth.net>, delay=2+07:54:53, xdelay=00:00:00, mailer=esmtp, pri=1432401, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9BC6OvG005494: to=<capnrona@bellsouth.net
>, delay=2+14:00:59, xdelay=00:00:00, mailer=esmtp, pri=1432403, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9BH1DJH020911: to=<antonio_s@bellsouth.ne
t>,<comlea
se@bellsou
th.net>, delay=2+09:07:53, xdelay=00:00:00, mailer=esmtp, pri=1432408, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:07 mail sendmail[5162]: k9BFdhWe016764: to=<pandora7@bellsouth.net
>, delay=2+10:26:27, xdelay=00:00:00, mailer=esmtp, pri=1432409, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:08 mail sendmail[5162]: k9BFTGwh016252: to=<hrbjr@bellsouth.net>,<
hrbksb@bel
lsouth.net
>,<hrbla@b
ellsouth.n
et>,<hrbla
w@bellsout
h.net>,<hr
block@bell
south.net>
, delay=2+10:38:03, xdelay=00:00:00, mailer=esmtp, pri=1432411, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:08 mail sendmail[5162]: k9BFnaT0017192: to=<r97@bellsouth.net>, delay=2+10:18:48, xdelay=00:00:00, mailer=esmtp, pri=1432420, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:13 mail sendmail[5162]: k9BH9WEL021390: to=<kiza_the_purple_sparkl
ing_dildo@
yahoo.com>
,<kiza_zg@
yahoo.com>
,<kizaaaaa
aaaaaaaa@y
ahoo.com>,
<noknok27@
yahoo.com>
,<noknok3@
yahoo.com>
, delay=2+08:59:37, xdelay=00:00:04, mailer=esmtp, pri=1432446, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:40:14 mail sendmail[5162]: k9C7ceMg027632: to=<crcoke@bellsouth.net>,
<crcole568
7@bellsout
h.net>,<cr
cole@bells
outh.net>,
<crcoleman
@bellsouth
.net>,<crc
ollings@be
llsouth.ne
t>, delay=1+18:28:18, xdelay=00:00:00, mailer=esmtp, pri=1432461, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:15 mail sendmail[5162]: k9BAO4uY032526: to=<ihringer@bellsouth.net
>, delay=2+15:44:36, xdelay=00:00:00, mailer=esmtp, pri=1432474, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:15 mail sendmail[5162]: k9C8XjhS002451: to=<cmcoggins@bellsouth.ne
t>,<cmcoh@
bellsouth.
net>,<cmco
hen@bellso
uth.net>,<
cmcokmedin
@bellsouth
.net>,<cmc
ole@bellso
uth.net>, delay=1+17:34:41, xdelay=00:00:00, mailer=esmtp, pri=1432488, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:16 mail sendmail[5162]: k9BCYmx9007118: to=<fanslerj@bellsouth.net
>,<fansley
@bellsouth
.net>,<fan
smith@bell
south.net>
,<fansp@be
llsouth.ne
t>,<fanspo
rts10@bell
south.net>
, delay=2+13:33:50, xdelay=00:00:00, mailer=esmtp, pri=1434800, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:17 mail sendmail[5162]: k9BI4wiM024401: to=<achsin@bellsouth.net>,
delay=2+08:02:07, xdelay=00:00:00, mailer=esmtp, pri=1434808, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:17 mail sendmail[5162]: k9BA7ScN032037: to=<ibe@bellsouth.net>, delay=2+16:01:43, xdelay=00:00:00, mailer=esmtp, pri=1254822, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:18 mail sendmail[5162]: k9BDkjcB011138: to=<galleyj@bellsouth.net>
, delay=2+12:23:31, xdelay=00:00:00, mailer=esmtp, pri=1254822, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:18 mail sendmail[5162]: k9C8dtnw003224: to=<suckdick@bellsouth.net
>,<suckdog
@bellsouth
.net>,<suc
ker1@bells
outh.net>,
<sucker@be
llsouth.ne
t>,<suckit
@bellsouth
.net>, delay=1+17:29:27, xdelay=00:00:00, mailer=esmtp, pri=1254824, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:18 mail sendmail[5162]: k9B9xjmA031680: to=<eyes4lda@bellsouth.net
>, delay=2+16:10:18, xdelay=00:00:00, mailer=esmtp, pri=1254827, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:19 mail sendmail[5162]: k9BFdhWQ016764: to=<alisagayle@bellsouth.n
et>,<cypyr
et@bellsou
th.net>,<i
udhforl@be
llsouth.ne
t>, delay=2+10:28:15, xdelay=00:00:00, mailer=esmtp, pri=1254828, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:19 mail sendmail[5162]: k9BFOlLl016044: to=<fmary@bellsouth.net>, delay=2+10:44:10, xdelay=00:00:00, mailer=esmtp, pri=1254829, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:19 mail sendmail[5162]: k9BF76ar015003: to=<pokeone@bellsouth.net>
,<poker1@b
ellsouth.n
et>,<poker
@bellsouth
.net>,<pok
er_21@bell
south.net>
,<pokerbob
@bellsouth
.net>, delay=2+11:02:23, xdelay=00:00:00, mailer=esmtp, pri=1254831, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:20 mail sendmail[5162]: k9BH6Hbx021181: to=<temeka1@bellsouth.net>
, delay=2+09:01:20, xdelay=00:00:00, mailer=esmtp, pri=1254838, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:20 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 116000
Oct 14 07:40:20 mail sendmail[5162]: k9BDr2GB011583: to=<batres@mail.bellsouth.
net>, delay=2+12:16:32, xdelay=00:00:00, mailer=esmtp, pri=1254840, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:21 mail sendmail[5162]: k9BGwXxj020778: to=<carilyn@rdu.bellsouth.
net>, delay=2+09:10:33, xdelay=00:00:00, mailer=esmtp, pri=894841, relay=rdu.bellsouth.net., dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:40:21 mail sendmail[5162]: k9BE5ml4012245: to=<russ1674@bellsouth.net
>, delay=2+12:04:11, xdelay=00:00:00, mailer=esmtp, pri=1254843, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:22 mail sendmail[5162]: k9C1leUC002931: to=<cpkas@bellsouth.net>,<
cpkb@bells
outh.net>,
delay=2+00:21:55, xdelay=00:00:00, mailer=esmtp, pri=1254843, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:22 mail sendmail[5162]: k9BHAIvY021424: to=<greeniz1@bellsouth.net
>, delay=2+08:58:43, xdelay=00:00:00, mailer=esmtp, pri=1254847, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:23 mail sendmail[13928]: k9DDe1oA013928: to=<adjpoy@brain.net.pk>, delay=00:02:12, xdelay=00:02:12, mailer=esmtp, pri=79995, relay=mx3.brain.net.pk. [203.128.7.58], dsn=5.1.1, stat=User unknown
Oct 14 07:40:23 mail sendmail[13928]: k9DDe1oA013928: k9DDe1oB013928: return to sender: User unknown
Oct 14 07:40:25 mail sendmail[13928]: k9DDe1oB013928: to=root, delay=00:00:02, xdelay=00:00:01, mailer=local, pri=81019, dsn=2.0.0, stat=Sent
Oct 14 07:40:31 mail sendmail[13928]: k93CdXZ6027704: to=<jdhuff_03@yahoo.com>,<
jdhuffine2
001@yahoo.
com>,<jdhu
ffman5@yah
oo.com>,<j
dhuffsd@ya
hoo.com>,<
jdhufgibvh
ui@yahoo.c
om>, delay=10+13:23:43, xdelay=00:00:05, mailer=esmtp, pri=378819, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 4/1)
Oct 14 07:40:34 mail sendmail[13928]: k946wjcu001110: to=<im_too_hot200@yahoo.co
m>,<im_too
_hot_123@y
ahoo.com>,
<im_too_ho
t_for_you_
2002@yahoo
.com>,<im_
too_hott_4
_u@yahoo.c
om>,<im_to
o_hott_for
_you65f@ya
hoo.com>, delay=9+19:10:53, xdelay=00:00:03, mailer=esmtp, pri=378819, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:40:37 mail sendmail[13928]: k93MPfMd005814: to=<ken694u2003@yahoo.com>
,<ken69692
005@yahoo.
com>,<ken6
97669@yaho
o.com>,<ke
n6977@yaho
o.com>,<ke
n6990@yaho
o.com>, delay=10+03:38:10, xdelay=00:00:03, mailer=esmtp, pri=378819, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:40:37 mail sendmail[13928]: k96IbhD7000943: to=<ab762@bellsouth.net>,<
ab76ixowsl
@bellsouth
.net>,<ab7
71@bellsou
th.net>,<a
b780@bells
outh.net>,
<ab789@bel
lsouth.net
>, delay=7+07:26:37, xdelay=00:00:00, mailer=esmtp, pri=378819, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:40:37 mail sendmail[13928]: k96IbhD7000943: k9DDe1oC013928: DSN: Cannot send message for 5 days
Oct 14 07:40:39 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 117000
Oct 14 07:40:40 mail sendmail[13928]: STARTTLS=client, relay=mail.global.sprint.c
om., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SH
A, bits=168/168
Oct 14 07:40:42 mail sendmail[13928]: k9DDe1oC013928: to=<wsvfcjl@caller.com>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=79994, relay=mail.global.sprint.c
om. [207.46.163.22], dsn=2.0.0, stat=Sent (Ok: queued as D4F2E5A2C5A)
Oct 14 07:40:46 mail sendmail[13928]: k944Xeqh026866: to=<convas2000@yahoo.com>,
<convas200
1@yahoo.co
m>,<convas
21@yahoo.c
om>,<conva
s@yahoo.co
m>,<convas
a@yahoo.co
m>, delay=9+21:36:40, xdelay=00:00:03, mailer=esmtp, pri=378820, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:40:51 mail sendmail[13928]: k93Jp0BJ026953: to=<lonelygrungerocker@yah
oo.com>,<l
onelygu@ya
hoo.com>,<
lonelyguhf
oeva@yahoo
.com>,<lon
elyguitar1
021@yahoo.
com>,<lone
lyguitaris
t41@yahoo.
com>, delay=10+06:13:09, xdelay=00:00:05, mailer=esmtp, pri=378820, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:40:53 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 118000
Oct 14 07:40:54 mail sendmail[13928]: k93FpYbH006149: to=<bcleary369@yahoo.com>,
<bcleary41
2@yahoo.co
m>,<bclear
y4@yahoo.c
om>,<bclea
ry56@yahoo
.com>,<bcl
eary750@ya
hoo.com>, delay=10+10:19:08, xdelay=00:00:03, mailer=esmtp, pri=378820, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:40:56 mail sendmail[13928]: k9559rxj006794: to=<anett_pool@yahoo.com>,
<x_apoklay
pse@yahoo.
com>,<x_ap
ollyon@yah
oo.com>,<x
_apollyon_
x@yahoo.co
m>,<x_appa
lachaian_l
ady_x@yaho
o.com>, delay=8+20:59:49, xdelay=00:00:02, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:40:59 mail sendmail[13928]: k93HmpnD016421: to=<bowow33624@yahoo.com>,
<bowow6604
0@yahoo.co
m>,<bowow6
9@yahoo.co
m>,<bowow7
68@yahoo.c
om>,<bowow
78@yahoo.c
om>, delay=10+08:22:06, xdelay=00:00:03, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:41:03 mail sendmail[12927]: k9AJsaRm011490: to=<bhi1996@bellsouth.net>
,<bhi420@b
ellsouth.n
et>,<bhi45
69732@bell
south.net>
,<bhi69@be
llsouth.ne
t>,<bhi790
0350@bells
outh.net>,
delay=3+06:13:32, xdelay=00:01:11, mailer=esmtp, pri=1359001, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:41:03 mail sendmail[12927]: k9A7taw7018284: to=<carted1@bellsouth.net>
,<carted2@
bellsouth.
net>,<cart
ed34@bells
outh.net>,
<cartedm@b
ellsouth.n
et>,<carte
ds@bellsou
th.net>, delay=3+18:13:02, xdelay=00:00:00, mailer=esmtp, pri=1359006, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:41:03 mail sendmail[12927]: k9ANBq21020626: to=<famri@bellsouth.net>,<
famrid@bel
lsouth.net
>,<famrod@
bellsouth.
net>,<famr
ogers@bell
south.net>
,<famroots
@bellsouth
.net>, delay=3+02:56:42, xdelay=00:00:00, mailer=esmtp, pri=1359006, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:41:03 mail sendmail[12927]: k9AEhUV8004592: to=<franklii@bellsouth.net
>,<frankli
j@bellsout
h.net>,<fr
anklil@bel
lsouth.net
>,<frankli
ma@bellsou
th.net>,<f
ranklin@be
llsouth.ne
t>, delay=3+11:27:18, xdelay=00:00:00, mailer=esmtp, pri=1359012, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:41:04 mail sendmail[13928]: k93BkQJZ024701: to=<dstriejewske@yahoo.com
>,<dstriew
ski@yahoo.
com>,<dstr
ifeh24@yah
oo.com>,<d
stright@ya
hoo.com>,<
dstrike222
@yahoo.com
>, delay=10+14:23:25, xdelay=00:00:05, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 3/2)
Oct 14 07:41:07 mail sendmail[12927]: k99Db3S0005948: to=<goofus@bellsouth.net>,
<lo600@bel
lsouth.net
>,<wjohnse
y@bellsout
h.net>, delay=4+12:27:39, xdelay=00:00:00, mailer=esmtp, pri=1359012, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:41:10 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 119000
Oct 14 07:41:10 mail sendmail[13928]: k93GQDUL008504: to=<kaykaypay@yahoo.com>,<
kaykayphal
lus@yahoo.
com>,<kayk
aypro@yaho
o.com>,<ka
ykaypw@yah
oo.com>,<k
aykayqtxox
o@yahoo.co
m>, delay=10+09:44:30, xdelay=00:00:03, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:41:13 mail sendmail[13928]: k93D0T8K028382: to=<romanticvillain3001@ya
hoo.com>,<
romanticvi
olet@yahoo
.com>,<rom
anticvisio
ns@yahoo.c
om>,<roman
ticvungtau
@yahoo.com
>,<romanti
cwalksindm
oonlight@y
ahoo.com>,
delay=10+13:09:12, xdelay=00:00:02, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 0/5)
Oct 14 07:41:16 mail sendmail[13928]: STARTTLS=client, relay=smtp.ins.dell.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
Oct 14 07:41:17 mail sendmail[13928]: k939aLw4017251: to=<traderrick_56@dell.com
>, delay=10+16:34:40, xdelay=00:00:04, mailer=esmtp, pri=378821, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:41:17 mail sendmail[13928]: k939aLw4017251: to=<traders_choice@dell.co
m>, delay=10+16:34:40, xdelay=00:00:04, mailer=esmtp, pri=378821, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:41:17 mail sendmail[6709]: k9BBcaic003802: to=<elrio@msy.bellsouth.ne
t>, delay=2+14:30:15, xdelay=00:32:05, mailer=esmtp, pri=1314847, relay=msy.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 07:41:17 mail sendmail[13928]: k939aLw4017251: to=<traders_methods@dell.c
om>, delay=10+16:34:40, xdelay=00:00:04, mailer=esmtp, pri=378821, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:41:18 mail sendmail[13928]: k939aLw4017251: to=<trades_man@dell.com>, delay=10+16:34:41, xdelay=00:00:05, mailer=esmtp, pri=378821, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:41:18 mail sendmail[13928]: k939aLw4017251: to=<traffic_chick@dell.com
>, delay=10+16:34:41, xdelay=00:00:05, mailer=esmtp, pri=378821, relay=smtp.ins.dell.com. [143.166.83.183], dsn=4.3.1, stat=Deferred: 452 Too many recipients received this hour. Connections from this sending hostname lan-202...check your DNS PTR for 202.144.86.74. Forward and reverse DNS entries must match for 202.144.86.74.
Oct 14 07:41:18 mail sendmail[13928]: k939aLw4017251: k9DDe1oD013928: DSN: Cannot send message for 5 days
Oct 14 07:41:18 mail sendmail[13928]: k9DDe1oD013928: to=<arjpeplol@arabia.com>,
delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=80033, relay=arabia.com., dsn=4.0.0, stat=Deferred: Connection timed out with arabia.com.
Oct 14 07:41:22 mail sendmail[13928]: k93GpbJg011242: to=<saman_1380@yahoo.com>,
<saman_147
@yahoo.com
>,<saman_1
61@yahoo.c
om>,<saman
_16_16@yah
oo.com>,<s
aman_1969@
yahoo.com>
, delay=10+09:07:02, xdelay=00:00:04, mailer=esmtp, pri=378821, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 2/3)
Oct 14 07:41:22 mail sendmail[13928]: k952Q2P2028231: to=<brodp@bellsouth.net>,<
brodrarcr@
bellsouth.
net>,<brod
rdain@bell
south.net>
,<brodrfen
@bellsouth
.net>,<bro
dri24@bell
south.net>
, delay=8+23:44:00, xdelay=00:00:00, mailer=esmtp, pri=378821, relay=mx00.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:41:22 mail sendmail[13928]: k952Q2P2028231: k9DDe1oE013928: DSN: Cannot send message for 5 days
Oct 14 07:41:23 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 120000
Oct 14 07:41:24 mail sendmail[13928]: k9DDe1oE013928: to=<dbbuhfdb@bellauk.com>,
delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=79998, relay=ismtp.easyspace.ever
yone.net. [216.200.145.38], dsn=5.1.1, stat=User unknown
Oct 14 07:41:25 mail sendmail[13928]: k9DDe1oE013928: k9DDe1oF013928: return to sender: User unknown
Oct 14 07:41:25 mail sendmail[13928]: k9DDe1oF013928: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81022, dsn=2.0.0, stat=Sent
Oct 14 07:41:25 mail sendmail[8530]: k9BFseVE017550: to=<anhinga@msy.bellsouth.
net>, delay=2+10:14:35, xdelay=00:32:00, mailer=esmtp, pri=1404851, relay=msy.bellsouth.net. [205.152.58.133], dsn=4.0.0, stat=Deferred: Connection timed out with msy.bellsouth.net.
Oct 14 07:41:28 mail sendmail[13928]: k93BBaq8022600: to=<autumn545@yahoo.com>,<
autumn546@
yahoo.com>
,<autumn55
338@yahoo.
com>,<autu
mn5577@yah
oo.com>,<a
utumn55804
@yahoo.com
>, delay=10+14:57:48, xdelay=00:00:03, mailer=esmtp, pri=378822, relay=mx2.mail.yahoo.com. [4.79.181.136], dsn=2.0.0, stat=Sent (ok dirdel 1/4)
Oct 14 07:41:34 mail sendmail[6709]: k9BHX2v2022545: to=<greg500@bellsouth.net>
,<greg505@
bellsouth.
net>,<greg
5166@bells
outh.net>,
<greg51@be
llsouth.ne
t>, delay=2+08:37:26, xdelay=00:00:17, mailer=esmtp, pri=1674847, relay=mx00.mail.bellsouth.
net. [205.152.58.32], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:41:36 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 121000
Oct 14 07:41:57 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 122000
Oct 14 07:42:10 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 123000
Oct 14 07:42:11 mail sendmail[18008]: k954cJR8005313: to=<lady@mia.bellsouth.net
>,<ladybir
d@mia.bell
south.net>
,<ladybug@
mia.bellso
uth.net>,<
ladyd@mia.
bellsouth.
net>,<lady
di@mia.bel
lsouth.net
>, delay=8+21:33:03, xdelay=00:32:01, mailer=esmtp, pri=378807, relay=mia.bellsouth.net. [205.152.58.135], dsn=4.0.0, stat=Deferred: Connection timed out with mia.bellsouth.net.
Oct 14 07:42:11 mail sendmail[18008]: k954cJR8005313: k9DJe11M018008: DSN: Cannot send message for 5 days
Oct 14 07:42:13 mail sendmail[18008]: k9DJe11M018008: to=<jbpefiixfyjrs@arsenal.
co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79979, relay=mail19.messagelabs.c
om. [193.109.254.3], dsn=5.1.1, stat=User unknown
Oct 14 07:42:14 mail sendmail[18008]: k9DJe11M018008: k9DJe11N018008: return to sender: User unknown
Oct 14 07:42:14 mail sendmail[18008]: k9DJe11N018008: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=81003, dsn=2.0.0, stat=Sent
Oct 14 07:42:24 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 124000
Oct 14 07:42:25 mail sendmail[9876]: k9BCEnXA005874: to=<jthompson@mem.bellsout
h.net>,<jt
itus@mem.b
ellsouth.n
et>,<jtrig
@mem.bells
outh.net>,
<jtrust@me
m.bellsout
h.net>, delay=2+13:56:26, xdelay=00:32:01, mailer=esmtp, pri=1317617, relay=mem.bellsouth.net. [205.152.58.1], dsn=4.0.0, stat=Deferred: Connection timed out with mem.bellsouth.net.
Oct 14 07:42:37 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 125000
Oct 14 07:42:43 mail sendmail[6285]: k9BHPF42022180: to=<clarkt@cha.bellsouth.n
et>, delay=2+08:46:15, xdelay=00:32:01, mailer=esmtp, pri=804819, relay=cha.bellsouth.net. [205.152.58.4], dsn=4.0.0, stat=Deferred: Connection timed out with cha.bellsouth.net.
Oct 14 07:42:57 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 126000
Oct 14 07:43:09 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 127000
Oct 14 07:43:11 mail sendmail[16393]: k9ALBZQm013457: to=<enola@rdu.bellsouth.ne
t>,<enon@r
du.bellsou
th.net>,<e
nona@rdu.b
ellsouth.n
et>,<enor@
rdu.bellso
uth.net>,<
enorris@rd
u.bellsout
h.net>, delay=3+04:57:08, xdelay=00:32:05, mailer=esmtp, pri=820823, relay=rdu.bellsouth.net. [205.152.58.130], dsn=4.0.0, stat=Deferred: Connection timed out with rdu.bellsouth.net.
Oct 14 07:43:29 mail sendmail[21716]: grew WorkList for /var/spool/mqueue to 128000
Oct 14 07:43:35 mail sendmail[9876]: k9BIxgHi028218: to=<ewcacc@bellsouth.net>,
delay=2+07:13:41, xdelay=00:01:10, mailer=esmtp, pri=1497617, relay=mx01.mail.bellsouth.
net. [205.152.58.33], dsn=4.0.0, stat=Deferred: 421 Service not available
Oct 14 07:43:35 mail sendmail[9876]: k9BFOlMH016044: to=<albody@bellsouth.net>,
delay=2+10:43:18, xdelay=00:00:00, mailer=esmtp, pri=1497618, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:43:36 mail sendmail[9876]: k9BDVbPY010393: to=<ffcu@bellsouth.net>, delay=2+12:40:48, xdelay=00:00:00, mailer=esmtp, pri=1497618, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred
Oct 14 07:43:36 mail sendmail[9876]: k9BCkaMG007751: to=<wclowdus@bellsouth.net
>, delay=2+13:26:21, xdelay=00:00:00, mailer=esmtp, pri=1497620, relay=mx01.mail.bellsouth.
net., dsn=4.0.0, stat=Deferred