[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

10/13/2006 at 09:36PM PDT, ID: 22024281
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Linux mail server and Iptables

Asked by D_wathi in Linux Networking

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

-----------------------------firewall----------------------------------------------------
#!/bin/sh

#---------------------------------------------------------------------------
#  
#                      
#---------------------------------------------------------------------------

#-------------------------------MODULES-------------------------------------
#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

#----------------------------INTERFACES-------------------------------------
#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/all/rp_filter

#Don't respond to broadcast pings
echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts

#Block source routing
echo 0 >/proc/sys/net/ipv4/conf/all/accept_source_route

#Kill timestamps.  These have been the subject of a recent bugtraq
#thread
echo 0 > /proc/sys/net/ipv4/tcp_timestamps

#Enable SYN Cookies
echo 1 > /proc/sys/net/ipv4/tcp_syncookies

#Kill ICMP redirects
echo 0 >/proc/sys/net/ipv4/conf/all/accept_redirects

#Enable bad error message protection
echo 1 > /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses

#Allow dynamic ip addresses
echo "1" > /proc/sys/net/ipv4/ip_dynaddr

#Set out local port range
echo "32768 61000" >/proc/sys/net/ipv4/ip_local_port_range

#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_keepalive_time
echo 1 > /proc/sys/net/ipv4/tcp_window_scaling
echo 0 > /proc/sys/net/ipv4/tcp_sack
echo 1280 > /proc/sys/net/ipv4/tcp_max_syn_backlog

#---------------------------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


#------------------------------FIREWALL 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_socket
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-1160800984
unix  2      [ ACC ]     STREAM     LISTENING     431892 /tmp/mcop-root/mail_scriptacomsystems_com-61e3-45306af1
unix  2      [ ACC ]     STREAM     LISTENING     431610 /tmp/ksocket-root/klauncherxS8PJa.slave-socket
unix  2      [ ACC ]     STREAM     LISTENING     431999 /tmp/.ICE-unix/25070
unix  2      [ ACC ]     STREAM     LISTENING     432319 /tmp/orbit-root/linc-620a-0-77654a2122651
unix  2      [ ACC ]     STREAM     LISTENING     432338 /tmp/orbit-root/linc-6203-0-3d6db351d96ae
unix  2      [ ACC ]     STREAM     LISTENING     432334 /tmp/orbit-root/linc-6204-0-3d6db35136bca
unix  2      [ ACC ]     STREAM     LISTENING     432511 /tmp/orbit-root/linc-6211-0-49ff245e60738
unix  2      [ ACC ]     STREAM     LISTENING     432611 /tmp/orbit-root/linc-6219-0-783ed06d1f13d
unix  2      [ ACC ]     STREAM     LISTENING     432715 /tmp/orbit-root/linc-6206-0-7895587a97864
unix  2      [ ACC ]     STREAM     LISTENING     433058 /tmp/orbit-root/linc-625c-0-3e3bbb64358b3
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/default


--------------------------var/log/maillog-------------------------------------------------------------
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@scriptacomsystems.com>, 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.02204@sendapp1>, 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@scriptacomsystems.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.01640@sendapp2>, 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@scriptacomsystems.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>,<kshep@bna.bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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>,<pinkgirl20002002@yahoo.com>,<pinkgirl20002004@yahoo.com>,<pinkgirl2000_17@yahoo.com>,<pinkgirl20@yahoo.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>,<cowboy@clt.bellsouth.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>,<donnikadeyonni@yahoo.com>,<donnikawatson@yahoo.com>,<donniker@yahoo.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>,<ntlongandpoor@yahoo.com>,<ntlongley@yahoo.com>,<ntlongtai@yahoo.com>,<ntloo@yahoo.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.net>, 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@centrapoint.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=78693, relay=broke.centrapoint.com. [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_student@yahoo.com>,<bre_sum@yahoo.com>,<bre_sunshine@yahoo.com>,<bre_swain@yahoo.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.net>, 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>,<fritzg@bellsouth.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>,<jillrob@bellsouth.net>,<jillrock@bellsouth.net>,<jillromero@bellsouth.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@bellsouth.net>,<hshotel@bellsouth.net>,<hshots@bellsouth.net>,<hshott@bellsouth.net>, 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>,<kaburagi@bellsouth.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.net>,<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>,<azm20074real@yahoo.com>,<azm20@yahoo.com>,<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@bellsouth.net>,<dolphindiver@bellsouth.net>,<dolphindla@bellsouth.net>,<dolphindude@bellsouth.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.net>,<brooks1066@bellsouth.net>,<brooks106@bellsouth.net>,<brooks1075@bellsouth.net>,<brooks107@bellsouth.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>,<famrose@bellsouth.net>,<famrue@bellsouth.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>,<andrew.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@yahoo.com>,<nhoxaolon_bmt@yahoo.com>,<nhoxinh2005bl@yahoo.com>,<nhoxitrumbuongbinh7301@yahoo.com>,<nhoxiu09_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_walsh_au@yahoo.com>,<mark_walters2001@yahoo.com>,<mark_walters@yahoo.com>,<mark_wambo2@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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.com. [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@yahoo.com>,<anila_chm@yahoo.com>,<anila_choudhry@yahoo.com>,<anila_choudray17@yahoo.com>,<anila_detta_laline@yahoo.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.net>,<dabom1357@bellsouth.net>,<dabom135@bellsouth.net>,<dabom1631@bellsouth.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>,<claudio_clemens@yahoo.com>,<claudio_clod@yahoo.com>,<claudio_cocuzza@yahoo.com>,<claudio_cometta@yahoo.com>, 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>,<saleemtirmizi@yahoo.com>,<saleemtofan@yahoo.com>,<saleemtx@yahoo.com>,<saleemuddinsyed@yahoo.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>,<ermac1827@yahoo.com>,<ermac187@yahoo.com>,<ermac1897@yahoo.com>,<ermac19@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.com>,<poochiethree@yahoo.com>,<poochietoo@yahoo.com>,<poochiety@yahoo.com>,<poochiewoo@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.01608@sendapp1>, 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@scriptacomsystems.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.02004@sendapp2>, 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@scriptacomsystems.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.02196@sendapp1>, 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@scriptacomsystems.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.bellsouth.net>,<juanita@mem.bellsouth.net>,<jubilee@mem.bellsouth.net>,<judge@mem.bellsouth.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.02204@sendapp1>, 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@scriptacomsystems.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.net>, 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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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.com. [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_knicks_will_win@yahoo.com>,<ny_knowles@yahoo.com>,<ny_kudie@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.com>, 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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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@centrapoint.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=78718, relay=broke.centrapoint.com., 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>,<rawnieus@yahoo.com>, 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>,<packer442000@yahoo.com>,<packer45@yahoo.com>,<packer468@yahoo.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>,<apsaalooke_lakota03@yahoo.com>,<apsaalooke_style69@yahoo.com>,<apsaalooke_style6@yahoo.com>,<apsaalookedude@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.net>, 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>,<xxedout34@yahoo.com>,<xxedout77@yahoo.com>,<xxedoxx@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.02204@sendapp1>, 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@scriptacomsystems.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.net>,<cremeens@rdu.bellsouth.net>,<cremins@rdu.bellsouth.net>,<crenner@rdu.bellsouth.net>,<crennie@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.everyone.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@bellsouth.net>,<efs653@bellsouth.net>,<efs73@bellsouth.net>,<efsales@bellsouth.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.com., 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.com. [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>,<lewia@yahoo.com>,<lewiajackey@yahoo.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.net.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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=49076, relay=broke.centrapoint.com., 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>,<emma8483@yahoo.com>,<suleyf@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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=49077, relay=broke.centrapoint.com., 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>,<birdkrap12@yahoo.com>,<birdkrazy4@yahoo.com>,<birdkrazy@yahoo.com>,<birdkristi@yahoo.com>,<birdkuh@yahoo.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.net>, 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.everyone.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.net>,<enon@rdu.bellsouth.net>,<enona@rdu.bellsouth.net>,<enor@rdu.bellsouth.net>,<enorris@rdu.bellsouth.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.01608@sendapp1>, 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.01576@sendapp2>, 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@scriptacomsystems.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@scriptacomsystems.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.net>, 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>,<fritzg@bellsouth.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>,<jillrob@bellsouth.net>,<jillrock@bellsouth.net>,<jillromero@bellsouth.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@bellsouth.net>,<hshotel@bellsouth.net>,<hshots@bellsouth.net>,<hshott@bellsouth.net>, 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>,<kaburagi@bellsouth.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.net>,<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@bellsouth.net>,<dolphindiver@bellsouth.net>,<dolphindla@bellsouth.net>,<dolphindude@bellsouth.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.net>,<brooks1066@bellsouth.net>,<brooks106@bellsouth.net>,<brooks1075@bellsouth.net>,<brooks107@bellsouth.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>,<famrose@bellsouth.net>,<famrue@bellsouth.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>,<andrew.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.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 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.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:15 mail sendmail[15758]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.net>,<d7ofus7@bellsouth.net>,<d7stars@bellsouth.net>,<d7thstar@bellsouth.net>,<d7toes@bellsouth.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@bellsouth.net>,<ckp1192@bellsouth.net>,<ckp1@bellsouth.net>,<ckp@bellsouth.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.bellsouth.net>,<pc93@lig.bellsouth.net>,<pca@lig.bellsouth.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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.02200@sendapp1>, 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@scriptacomsystems.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@bellsouth.net>, 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>,<pajames7@bellsouth.net>,<pajaraca@bellsouth.net>,<pajaro@bellsouth.net>,<pajarrell@bellsouth.net>, 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.net>,<apple45565@bellsouth.net>,<apple4567@bellsouth.net>,<apple4584@bellsouth.net>,<apple45@bellsouth.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>,<pajames7@bellsouth.net>,<pajaraca@bellsouth.net>,<pajaro@bellsouth.net>,<pajarrell@bellsouth.net>, 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@bellsouth.net>,<khed@bellsouth.net>,<kheder@bellsouth.net>,<khedger@bellsouth.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>,<xxedout34@yahoo.com>,<xxedout77@yahoo.com>,<xxedoxx@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.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_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.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:41 mail sendmail[15231]: k99Gx781011974: to=<mckeehant@bellsouth.net>, 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>,<foforito@bellsouth.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@bellsouth.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.net>,<d7ofus7@bellsouth.net>,<d7stars@bellsouth.net>,<d7thstar@bellsouth.net>,<d7toes@bellsouth.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>,<lingal@bellsouth.net>,<lingale@bellsouth.net>,<lingalls@bellsouth.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@bellsouth.net>,<ckp1192@bellsouth.net>,<ckp1@bellsouth.net>,<ckp@bellsouth.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>,<melodymt@bellsouth.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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.com., 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.com. [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@bellsouth.net>,<andrew.riddell@bellsouth.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@bellsouth.net>,<kkosnik@bellsouth.net>,<kkossack@bellsouth.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>,<andrew.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.net>,<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.everyone.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>,<lewia@yahoo.com>,<lewiajackey@yahoo.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>,<savas@bellsouth.net>,<savasg@bellsouth.net>,<savash@bellsouth.net>, 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>,<emma8483@yahoo.com>,<suleyf@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>,<birdkrap12@yahoo.com>,<birdkrazy4@yahoo.com>,<birdkrazy@yahoo.com>,<birdkristi@yahoo.com>,<birdkuh@yahoo.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.net>, 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@bellsouth.net>,<wahls@bellsouth.net>,<wahlsd@bellsouth.net>,<wahm@bellsouth.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>,<wahler@bellsouth.net>,<wahlf@bellsouth.net>,<wahlg@bellsouth.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.com., 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.com. [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@bellsouth.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>,<blacs@yahoo.com>,<blacs_18@yahoo.com>,<blacs_girl_24@yahoo.com>,<blacsabath@yahoo.com>,<blacsabith@yahoo.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>,<chungil@bellsouth.net>,<chungj@bellsouth.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>,<booky007@yahoo.com>,<booky00@yahoo.com>,<booky05@yahoo.com>,<booky@yahoo.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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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.net>,<ericag@rdu.bellsouth.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@effigy.be>, proto=SMTP, daemon=MTA, relay=[58.142.83.19]
Oct 14 06:23:39 mail sendmail[21220]: k9E0rXFa021219: to=<asokan@scriptacomsystems.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.02140@sendapp3>, 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@scriptacomsystems.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>,<xxedout34@yahoo.com>,<xxedout77@yahoo.com>,<xxedoxx@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>,<birdkrap12@yahoo.com>,<birdkrazy4@yahoo.com>,<birdkrazy@yahoo.com>,<birdkristi@yahoo.com>,<birdkuh@yahoo.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.net>, 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>,<ldd2744@yahoo.com>,<ldd296@yahoo.com>,<ldd309@yahoo.com>,<ldd31886648@yahoo.com>,<ldd320@yahoo.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.01576@sendapp2>, 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@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[21227]: k9E0s273021227: from=<send@mail.efax.com>, size=1529, class=0, nrcpts=1, msgid=<453034F8.07EB25.01576@sendapp2>, 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@scriptacomsystems.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.com., 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.com. [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>,<cowden@clt.bellsouth.net>,<cowee@clt.bellsouth.net>,<cowell@clt.bellsouth.net>,<cowen@clt.bellsouth.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>,<babyblow@bellsouth.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.net>,<cowgirl@clt.bellsouth.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.com. [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>,<ldd2744@yahoo.com>,<ldd296@yahoo.com>,<ldd309@yahoo.com>,<ldd31886648@yahoo.com>,<ldd320@yahoo.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@tyndale.org>, proto=SMTP, daemon=MTA, relay=[221.148.192.44]
Oct 14 06:25:19 mail sendmail[21238]: k9E0tEcX021236: to=<outsrc@scriptacomsystems.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>,<daisysm16@yahoo.com>,<daisysm2003@yahoo.com>,<daisysm@yahoo.com>,<daisysmail2004@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>,<clwws69420@yahoo.com>,<clwwtxsp@yahoo.com>,<clwww2003@yahoo.com>,<clwwwwii@yahoo.com>, 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>,<enteractive@bellsouth.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.briankennedy.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>,<falveyjlaw@yahoo.com>,<falveyjp@yahoo.com>,<falviacarletti@yahoo.com>,<falvinator@yahoo.com>,<falvinsonny@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.01576@sendapp2>, 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@scriptacomsystems.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>,<plumnurse@yahoo.com>,<plumnut@yahoo.com>,<plumnutz21@yahoo.com>,<plumnutz24@yahoo.com>,<plumo0322@yahoo.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@chinabyte.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@briankennedy.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=49098, relay=mailserver.briankennedy.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>,<lockhartj91@yahoo.com>,<lockhartjanita@yahoo.com>,<lockhartkye@yahoo.com>,<lockhartlatasha@yahoo.com>,<lockhartlatino@yahoo.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@centrapoint.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49096, relay=broke.centrapoint.com. [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.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: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.com>, 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.net>,<d7ofus7@bellsouth.net>,<d7stars@bellsouth.net>,<d7thstar@bellsouth.net>,<d7toes@bellsouth.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@bellsouth.net>,<ckp1192@bellsouth.net>,<ckp1@bellsouth.net>,<ckp@bellsouth.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.01896@sendapp2>, 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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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@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[18008]: k9AC5scp031576: to=<bizop21@bellsouth.net>,<bizop4u@bellsouth.net>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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>,<xxedout34@yahoo.com>,<xxedout77@yahoo.com>,<xxedoxx@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.net>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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>,<ldd2744@yahoo.com>,<ldd296@yahoo.com>,<ldd309@yahoo.com>,<ldd31886648@yahoo.com>,<ldd320@yahoo.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.com. [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>,<hawkinslauren@bellsouth.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>,<shibbykay05@bellsouth.net>,<shibeel@bellsouth.net>,<shibi@bellsouth.net>,<shible@bellsouth.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>,<falveyjlaw@yahoo.com>,<falveyjp@yahoo.com>,<falviacarletti@yahoo.com>,<falvinator@yahoo.com>,<falvinsonny@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.net>,<barthmos@bellsouth.net>,<barthms5@bellsouth.net>,<barthn@bellsouth.net>,<bartho@bellsouth.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.net>,<boxman8196@bellsouth.net>,<boxman8228@bellsouth.net>,<boxman8500@bellsouth.net>,<boxman8@bellsouth.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>,<btmimrutop@bellsouth.net>,<btmin22304@bellsouth.net>,<btmin425@bellsouth.net>,<btminatlk9@bellsouth.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@bellsouth.net>,<biruby69@bellsouth.net>,<biruce@bellsouth.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>,<ray379@bellsouth.net>,<ray38@bellsouth.net>,<ray392@bellsouth.net>, 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>,<ray379@bellsouth.net>,<ray38@bellsouth.net>,<ray392@bellsouth.net>, 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@bellsouth.net>,<zega6553@bellsouth.net>,<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>,<ttaylor28@bellsouth.net>,<ttaylor2@bellsouth.net>,<ttaylor4@bellsouth.net>,<ttaylor5@bellsouth.net>, 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>,<plumnurse@yahoo.com>,<plumnut@yahoo.com>,<plumnutz21@yahoo.com>,<plumnutz24@yahoo.com>,<plumo0322@yahoo.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.net>, 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>,<big21@bellsouth.net>,<big222@bellsouth.net>,<big22@bellsouth.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>,<gerryb@bellsouth.net>,<gerrybla@bellsouth.net>,<gerryblake@bellsouth.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.net>, 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>,<lockhartj91@yahoo.com>,<lockhartjanita@yahoo.com>,<lockhartkye@yahoo.com>,<lockhartlatasha@yahoo.com>,<lockhartlatino@yahoo.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.com>,<summerlady1946@yahoo.com>,<summerlady1986@yahoo.com>,<summerlady252001@yahoo.com>,<summerlady46@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>,<jensnielsen@bellsouth.net>,<jensnric@bellsouth.net>,<jenso@bellsouth.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@centrapoint.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79097, relay=broke.centrapoint.com. [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>,<bfc1229@yahoo.com>,<bfc1233@yahoo.com>,<bfc1234@yahoo.com>,<bfc123@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@yahoo.com>,<cshs_catv@yahoo.com>,<cshs_catv_2004@yahoo.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.02200@sendapp1>, 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@scriptacomsystems.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@scriptacomsystems.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@scriptacomsystems.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.01608@sendapp1>, 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@scriptacomsystems.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.02004@sendapp2>, 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@scriptacomsystems.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.02196@sendapp1>, 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@scriptacomsystems.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.net>, 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>,<mkiefer@bhm.bellsouth.net>, 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.com. [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@bellsouth.net>,<shadow17@bellsouth.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.net>,<acraig17@bellsouth.net>,<acraig1946@bellsouth.net>,<acraig1@bellsouth.net>,<acraig@bellsouth.net>, 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>,<whit6057@bellsouth.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.net>,<ergot@rdu.bellsouth.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@bellsouth.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>,<cpk721@bellsouth.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@bellsouth.net>,<batabaseball@bellsouth.net>,<batabata@bellsouth.net>,<batabing1@bellsouth.net>, 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.net>,<heu@bellsouth.net>, 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.net>,<jose.ramos@bellsouth.net>,<jose.rangel@bellsouth.net>,<jose.rivera@bellsouth.net>,<jose.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.net>, 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.02204@sendapp1>, 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@scriptacomsystems.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.net>,<pcarroll@lig.bellsouth.net>,<pcarty@lig.bellsouth.net>,<pcaruso@lig.bellsouth.net>,<pcasey@lig.bellsouth.net>, 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.scriptacomsolutions.com>, size=54784, class=0, nrcpts=3, msgid=<200610140100.k9E107xm006232@server1.scriptacomsolutions.com>, proto=ESMTP, daemon=MTA, relay=iad2.emailsrvr.com [207.97.227.212]
Oct 14 06:31:04 mail sendmail[21307]: k9E10wCq021306: to=<asokan@scriptacomsystems.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@scriptacomsystems.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.02192@sendapp1>, 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>,<andrew.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.02004@sendapp2>, proto=ESMTP, daemon=MTA, relay=smtp11.j2.com [204.11.168.113]
Oct 14 06:31:21 mail sendmail[21314]: k9E11J7A021312: to=network@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[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@scriptacomsystems.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.net>,<reeds@atl.bellsouth.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.01608@sendapp1>, 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@scriptacomsystems.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.01576@sendapp2>, 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.ar. [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@scriptacomsystems.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.02004@sendapp2>, 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@scriptacomsystems.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@bellsouth.net>, 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.01576@sendapp2>, 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@scriptacomsystems.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>,<branblkblt@bellsouth.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>,<jean9838@bellsouth.net>,<jean9877@bellsouth.net>,<jean9991@bellsouth.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>,<beanniem@bellsouth.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@bellsouth.net>, 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@bellsouth.net>,<cesfens@bellsouth.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_may@bellsouth.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>,<redone@atl.bellsouth.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.net>, 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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.net>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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.01608@sendapp1>, 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@scriptacomsystems.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>,<ldd2744@yahoo.com>,<ldd296@yahoo.com>,<ldd309@yahoo.com>,<ldd31886648@yahoo.com>,<ldd320@yahoo.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>,<lockhartj91@yahoo.com>,<lockhartjanita@yahoo.com>,<lockhartkye@yahoo.com>,<lockhartlatasha@yahoo.com>,<lockhartlatino@yahoo.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@yahoo.com>,<cshs_catv@yahoo.com>,<cshs_catv_2004@yahoo.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>,<ericacephus@yahoo.com>,<ericacer@yahoo.com>,<ericacesdad2@yahoo.com>,<ericach777@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>,<aa402381@yahoo.com>,<aa402@yahoo.com>,<aa40@yahoo.com>,<aa4@yahoo.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>,<carter2002002@yahoo.com>,<carter2002010101@yahoo.com>,<carter200242633@yahoo.com>,<carter2002@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.com>, size=16824, class=0, nrcpts=1, msgid=<45303736.3000400@premiumprop.com>, proto=SMTP, daemon=MTA, relay=[59.9.193.41]
Oct 14 06:33:41 mail sendmail[21364]: k9E13ZDL021361: to=<bt@scriptacomsystems.com>, 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@scriptacomsystems.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.net>, 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>,<loricoxbfi@yahoo.com>,<loricoxbif@yahoo.com>,<loricpa1229@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>,<biviab@yahoo.com>,<biviam@yahoo.com>,<biviana2000@yahoo.com>,<bivianamartinezalzate@yahoo.com>, 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@briankennedy.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79105, relay=mailserver.briankennedy.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>,<scrumpnasty@yahoo.com>,<scrumponit04@yahoo.com>,<scrumpr@yahoo.com>,<scrumprs@yahoo.com>,<scrumps2004@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.com. [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.net>,<beevers@clt.bellsouth.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>,<caedmonds@yahoo.com>,<caedmonian@yahoo.com>,<caedmonic@yahoo.com>,<caedmonjoc@yahoo.com>,<caedmonlibrary@yahoo.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.uk>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=49155, relay=mail19.messagelabs.com. [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>,<taklahn@yahoo.com>,<taklak1992@yahoo.com>,<taklale@yahoo.com>,<taklalugirl@yahoo.com>,<taklam@yahoo.com>, 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>,<tarolynmrobinson@yahoo.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@briankennedy.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49142, relay=mailserver.briankennedy.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>,<fenixengine81@yahoo.com>,<fenixfeen@yahoo.com>,<fenixfelipe@yahoo.com>,<fenixfever@yahoo.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@briankennedy.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=79104, relay=mailserver.briankennedy.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@yahoo.com>,<liu30@yahoo.com>,<liu322@yahoo.com>,<liu32304@yahoo.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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>,<asianmen_us@yahoo.com>,<asianmenace8@yahoo.com>,<asianmeng4u@yahoo.com>,<asianmeoki@yahoo.com>, 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.co.uk>, delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=79140, relay=mail19.messagelabs.com. [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>,<msgreatdanes@yahoo.com>,<msgreathands@yahoo.com>,<msgreathouse03@yahoo.com>,<msgreathouse03c@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.briankennedy.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>,<cagirl2020@yahoo.com>,<cagirl2038@yahoo.com>,<cagirl209@yahoo.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>,<scrumpnasty@yahoo.com>,<scrumponit04@yahoo.com>,<scrumpr@yahoo.com>,<scrumprs@yahoo.com>,<scrumps2004@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>,<caedmonds@yahoo.com>,<caedmonian@yahoo.com>,<caedmonic@yahoo.com>,<caedmonjoc@yahoo.com>,<caedmonlibrary@yahoo.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.com., 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>,<taklahn@yahoo.com>,<taklak1992@yahoo.com>,<taklale@yahoo.com>,<taklalugirl@yahoo.com>,<taklam@yahoo.com>, 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.com. [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.com>,<bradwolff@yahoo.com>,<bradwolken@yahoo.com>,<bradwolly@yahoo.com>,<bradwoloszyk@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@centrapoint.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79107, relay=broke.centrapoint.com., 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>,<tarolynmrobinson@yahoo.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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.com. [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>,<fatmuha@yahoo.com>,<fatmulano69@yahoo.com>,<fatmum38yrold@yahoo.com>,<fatmunchkin69@yahoo.com>, 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>,<lilsugahuney@yahoo.com>,<lilsugai2@yahoo.com>,<lilsugakiss09@yahoo.com>,<lilsugakisses@yahoo.com>,<lilsugakiwi@yahoo.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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.everyone.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.everyone.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>,<cash_money_4_life_69@yahoo.com>,<cash_money_4_life_99@yahoo.com>,<cash_money_4me@yahoo.com>,<cash_money_4tha99@yahoo.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<lilsugahuney@yahoo.com>,<lilsugai2@yahoo.com>,<lilsugakiss09@yahoo.com>,<lilsugakisses@yahoo.com>,<lilsugakiwi@yahoo.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@bellsouth.net>,<becca023@bellsouth.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>,<slicey01@yahoo.com>,<slicey1@yahoo.com>,<sliceya@yahoo.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@yahoo.com>,<daniel_crowder2001@yahoo.com>,<daniel_crowe2000@yahoo.com>,<daniel_crp@yahoo.com>,<daniel_cruise4@yahoo.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.com. [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.01640@sendapp2>, 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@scriptacomsystems.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@yahoo.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>,<joeybastardo@yahoo.com>,<joeybattaglio@yahoo.com>,<joeybatz2003@yahoo.com>,<joeybauder@yahoo.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.everyone.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@chinabyte.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_tyler_mike@yahoo.com>,<steph_uio@yahoo.com>,<steph_ulrich@yahoo.com>,<steph_ups@yahoo.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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79110, relay=broke.centrapoint.com., 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>,<catnguyen72@yahoo.com>,<catnguyen78@yahoo.com>,<catnguyen_vn@yahoo.com>,<catnguyenngoc@yahoo.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.everyone.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@yahoo.com>,<tprabb@yahoo.com>,<tprabbette@yahoo.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.briankennedy.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.com>,<shafiq01531m@yahoo.com>,<shafiq01@yahoo.com>,<shafiq04@yahoo.com>,<shafiq@yahoo.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.net>, 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.net>, 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>,<pcameron@lig.bellsouth.net>,<pcampbell@lig.bellsouth.net>,<pcampos@lig.bellsouth.net>,<pcarey@lig.bellsouth.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>,<greg5166@bellsouth.net>,<greg51@bellsouth.net>, 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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.net>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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.net>,<debgui@bellsouth.net>,<debgurls@bellsouth.net>,<debgurney@bellsouth.net>,<debgusal@bellsouth.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.net>,<richersj@bellsouth.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.net>, 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>,<ejudys@bellsouth.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>,<melodypak@bellsouth.net>,<melodypelfrey@bellsouth.net>,<melodyq@bellsouth.net>,<melodyrodgers@bellsouth.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@yahoo.com>,<cshs_catv@yahoo.com>,<cshs_catv_2004@yahoo.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.com.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>,<scrumpnasty@yahoo.com>,<scrumponit04@yahoo.com>,<scrumpr@yahoo.com>,<scrumprs@yahoo.com>,<scrumps2004@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>,<taklahn@yahoo.com>,<taklak1992@yahoo.com>,<taklale@yahoo.com>,<taklalugirl@yahoo.com>,<taklam@yahoo.com>, 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>,<tarolynmrobinson@yahoo.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<lilsugahuney@yahoo.com>,<lilsugai2@yahoo.com>,<lilsugakiss09@yahoo.com>,<lilsugakisses@yahoo.com>,<lilsugakiwi@yahoo.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@yahoo.com>,<daniel_crowder2001@yahoo.com>,<daniel_crowe2000@yahoo.com>,<daniel_crp@yahoo.com>,<daniel_cruise4@yahoo.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>,<joeybastardo@yahoo.com>,<joeybattaglio@yahoo.com>,<joeybatz2003@yahoo.com>,<joeybauder@yahoo.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@yahoo.com>,<purple_nipplez@yahoo.com>,<purple_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.com>,<grabe_m@yahoo.com>,<grabe_n_toh@yahoo.com>,<grabe_na_to_2003@yahoo.com>,<grabe_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>,<joe_ram_98@yahoo.com>,<lynnesherie@yahoo.com>,<sdcple@yahoo.com>, 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.com>,<grabe_m@yahoo.com>,<grabe_n_toh@yahoo.com>,<grabe_na_to_2003@yahoo.com>,<grabe_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>,<lonisha2000@yahoo.com>,<lonishagraham@yahoo.com>,<lonishagreen@yahoo.com>,<lonishalton3@yahoo.com>,<lonisheldon@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@chinabyte.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.everyone.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.com., 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.com. [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>,<gkhunt@bellsouth.net>,<gkhunter@bellsouth.net>,<gkhurst@bellsouth.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>,<jmf1972@bellsouth.net>,<jmf2509@bellsouth.net>,<jmf2@bellsouth.net>, 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@bellsouth.net>,<cmindians@bellsouth.net>,<cmindigo@bellsouth.net>,<cmindler@bellsouth.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.net>,<comlease@bellsouth.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@bellsouth.net>,<hrbla@bellsouth.net>,<hrblaw@bellsouth.net>,<hrblock@bellsouth.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.02204@sendapp1>, 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.com. [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@scriptacomsystems.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_sparkling_dildo@yahoo.com>,<kiza_zg@yahoo.com>,<kizaaaaaaaaaaaaa@yahoo.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>,<crcole5687@bellsouth.net>,<crcole@bellsouth.net>,<crcoleman@bellsouth.net>,<crcollings@bellsouth.net>, 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.net>,<cmcoh@bellsouth.net>,<cmcohen@bellsouth.net>,<cmcokmedin@bellsouth.net>,<cmcole@bellsouth.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>,<fansmith@bellsouth.net>,<fansp@bellsouth.net>,<fansports10@bellsouth.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>,<lonisha2000@yahoo.com>,<lonishagraham@yahoo.com>,<lonishagreen@yahoo.com>,<lonishalton3@yahoo.com>,<lonisheldon@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>,<beachedkajun@yahoo.com>,<beachedlia@yahoo.com>,<lobo_guerrero2000@yahoo.com>,<lobo_guerrero_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.com. [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>,<brianna458@yahoo.com>,<brianna4612@yahoo.com>,<brianna469@yahoo.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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79114, relay=broke.centrapoint.com., 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@yahoo.com>,<krety4@yahoo.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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>,<pimpgril192000@yahoo.com>,<pimpgritz@yahoo.com>,<pimpgrl2002@yahoo.com>,<pimpgrl68@yahoo.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.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49153, relay=mailserver.briankennedy.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>,<okorichef@yahoo.com>,<okorie1010@yahoo.com>,<okorie12@yahoo.com>,<okorie@yahoo.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@autodijelovi.com>, relay=rrcs-67-52-209-128.west.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@autodijelovi.com>, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=rrcs-67-52-209-128.west.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.everyone.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>,<carter2000_hk@yahoo.com>,<carter2000_uk@yahoo.com>,<carter2000ctc@yahoo.com>,<carter2000n@yahoo.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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.everyone.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.com>,<princezzdawnz@yahoo.com>,<princezzdd@yahoo.com>,<princezzdezz18@yahoo.com>,<princezzdragon@yahoo.com>,<princezze692001@yahoo.com>, 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.02204@sendapp1>, 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@scriptacomsystems.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_jal_ways@yahoo.com>,<m_jalal_sa@yahoo.com>,<m_jalali59@yahoo.com>,<m_jalalpour75@yahoo.com>,<m_jalalsa@yahoo.com>, 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.com., 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.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49159, relay=mail.global.sprint.com. [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@yahoo.com>,<bwarner8@yahoo.com>,<bwarner90@yahoo.com>,<bwarner911@yahoo.com>,<bwarner99@yahoo.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.everyone.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>,<gtabrian@yahoo.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_148@yahoo.com>,<kinzie_2002@yahoo.com>,<kinzie_brungardt2001@yahoo.com>,<kinzie_meyer_02@yahoo.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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79158, relay=broke.centrapoint.com., 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.com>,<laxmanpc@yahoo.com>,<laxmanprakaash@yahoo.com>,<laxmanprao@yahoo.com>,<laxmanpratap_007@yahoo.com>, 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.net>, 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.com. [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@bellsouth.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@bellsouth.net>,<bdearborn@bellsouth.net>,<bdearbornav@bellsouth.net>,<bdeardorf@bellsouth.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@bellsouth.net>, 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.net>, 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@bellsouth.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>,<kenaichang@bellsouth.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>,<dluvnguyen@bellsouth.net>,<dluvnman4u@bellsouth.net>,<dluvofnkn@bellsouth.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>,<mbwatson@bellsouth.net>,<mbwb@bellsouth.net>,<mbwe@bellsouth.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>,<peterwdp@bellsouth.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.net>,<dabom420@bellsouth.net>,<dabom58@bellsouth.net>,<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.net.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=79124, relay=ismtp.easyspace.everyone.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.net>,<gabulldog23@bellsouth.net>,<gabulldog@bellsouth.net>,<gabulldogs@bellsouth.net>,<gabum@bellsouth.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.net.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>,<glenw55@yahoo.com>,<glenw66@yahoo.com>,<glenw7132003@yahoo.com>,<glenw85716@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@briankennedy.co.uk>, delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=79123, relay=mailserver.briankennedy.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@bellsouth.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>,<vic6string@bellsouth.net>,<vic710@bellsouth.net>,<vic7thsun@bellsouth.net>,<vic900@bellsouth.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.net.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>,<kevin_kuretich@yahoo.com>,<kevin_kusmierz@yahoo.com>,<kevin_kusuma@yahoo.com>,<kevin_kutty@yahoo.com>,<kevin_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.com. [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@yahoo.com>,<aqtan@yahoo.com>,<aqtandpk@yahoo.com>,<aqtangel@yahoo.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@centrapoint.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79128, relay=broke.centrapoint.com., 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.net>,<blueeiz36@bellsouth.net>,<blueeiz4u@bellsouth.net>,<blueeiz79@bellsouth.net>,<blueeize1@bellsouth.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.dynamic.hinet.net [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.hinet.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.dynamic.hinet.net [59.117.116.197]
Oct 14 06:40:49 mail sendmail[11354]: k9D5e1OA011354: to=<ugdcytucrgdtja@briankennedy.co.uk>, delay=00:00:13, xdelay=00:00:13, mailer=esmtp, pri=79128, relay=mailserver.briankennedy.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.com>,<nickie19m@yahoo.com>,<nickie1eye@yahoo.com>,<nickie1one@yahoo.com>,<nickie20008@yahoo.com>,<nickie2000_2000@yahoo.com>, 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.com., 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.com. [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>,<spaz_hulk@yahoo.com>,<spaz_in_out@yahoo.com>,<spaz_inmashorts@yahoo.com>,<spaz_is_a_moocher_lmao@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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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@briankennedy.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=49131, relay=mailserver.briankennedy.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>,<candygirl_126@yahoo.com>,<candygirl_12_1999@yahoo.com>,<candygirl_12_2002@yahoo.com>,<candygirl_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.briankennedy.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>,<kellanchapman2001@yahoo.com>,<kelland08@yahoo.com>,<kelland@yahoo.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.com. [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.com>,<cny007@yahoo.com>,<cny009@yahoo.com>,<cny01eclipse@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.briankennedy.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>,<fthuottewell@yahoo.com>,<fthurber@yahoo.com>,<fthurlbutt_611@yahoo.com>,<fthurman@yahoo.com>,<fthuron@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@briankennedy.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=49169, relay=mailserver.briankennedy.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.com>,<candygirl_037@yahoo.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@bellsouth.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.com., 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.com. [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>,<osvaldoyebirahm@yahoo.com>,<osvaldozapata@yahoo.com>,<osvaldson_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.com. [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>,<osfam@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.com>, 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>,<scottfamily2003@yahoo.com>,<scottfamily2004@yahoo.com>,<scottfamily4@yahoo.com>,<scottfamily5180@yahoo.com>, 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.com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79133, relay=ismtp.easyspace.everyone.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>,<oraliagrza3@yahoo.com>,<oraliaguerrero@yahoo.com>,<oraliaheredia@yahoo.com>,<oraliahh@yahoo.com>, 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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com>, 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.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79136, relay=mail.global.sprint.com. [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@yahoo.com>,<roppa12003@yahoo.com>,<roppa2000uk@yahoo.com>,<roppa3075@yahoo.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.com>, 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.com. [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.com>, 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.com>,<okkeola@yahoo.com>,<okker624@yahoo.com>,<okker69@yahoo.com>,<okker@yahoo.com>, 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.com>, 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.com>, 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.com>, 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.com>, 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.com>, 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@chinabyte.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.com. [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>,<jes519@yahoo.com>,<jes521@yahoo.com>,<jes523@yahoo.com>,<jes525@yahoo.com>,<jes53096@yahoo.com>, 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@chinabyte.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.com>, 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.com. [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.com>,<bgardner_us@yahoo.com>,<bgardnerapp@yahoo.com>,<bgardnerr@yahoo.com>,<bgardnerrn@yahoo.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@chinabyte.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.com>, 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.net>, 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.com. [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.net>, 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.net>,<ourself@mail.bellsouth.net>, 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.net>, 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.net>, 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.everyone.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.com. [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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.net>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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.02140@sendapp3>, 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@scriptacomsystems.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>,<scrumpnasty@yahoo.com>,<scrumponit04@yahoo.com>,<scrumpr@yahoo.com>,<scrumprs@yahoo.com>,<scrumps2004@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>,<taklahn@yahoo.com>,<taklak1992@yahoo.com>,<taklale@yahoo.com>,<taklalugirl@yahoo.com>,<taklam@yahoo.com>, 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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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@scriptacomsystems.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@scriptacomsystems.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>,<lilsugahuney@yahoo.com>,<lilsugai2@yahoo.com>,<lilsugakiss09@yahoo.com>,<lilsugakisses@yahoo.com>,<lilsugakiwi@yahoo.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>,<joeybastardo@yahoo.com>,<joeybattaglio@yahoo.com>,<joeybatz2003@yahoo.com>,<joeybauder@yahoo.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>,<lonisha2000@yahoo.com>,<lonishagraham@yahoo.com>,<lonishagreen@yahoo.com>,<lonishalton3@yahoo.com>,<lonisheldon@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@yahoo.com>,<krety4@yahoo.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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.com>,<princezzdawnz@yahoo.com>,<princezzdd@yahoo.com>,<princezzdezz18@yahoo.com>,<princezzdragon@yahoo.com>,<princezze692001@yahoo.com>, 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.50339296825238@thebat.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_jal_ways@yahoo.com>,<m_jalal_sa@yahoo.com>,<m_jalali59@yahoo.com>,<m_jalalpour75@yahoo.com>,<m_jalalsa@yahoo.com>, 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@yahoo.com>,<bwarner8@yahoo.com>,<bwarner90@yahoo.com>,<bwarner911@yahoo.com>,<bwarner99@yahoo.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<kevin_kuretich@yahoo.com>,<kevin_kusmierz@yahoo.com>,<kevin_kusuma@yahoo.com>,<kevin_kutty@yahoo.com>,<kevin_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.com>,<nickie19m@yahoo.com>,<nickie1eye@yahoo.com>,<nickie1one@yahoo.com>,<nickie20008@yahoo.com>,<nickie2000_2000@yahoo.com>, 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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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>,<candygirl_126@yahoo.com>,<candygirl_12_1999@yahoo.com>,<candygirl_12_2002@yahoo.com>,<candygirl_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>,<fthuottewell@yahoo.com>,<fthurber@yahoo.com>,<fthurlbutt_611@yahoo.com>,<fthurman@yahoo.com>,<fthuron@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.com>,<candygirl_037@yahoo.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.01576@sendapp2>, 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>,<osfam@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@scriptacomsystems.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>,<jes519@yahoo.com>,<jes521@yahoo.com>,<jes523@yahoo.com>,<jes525@yahoo.com>,<jes53096@yahoo.com>, 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.net>, 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_lvz_carolanne@yahoo.com>,<darren_lynn@yahoo.com>,<darren_lytle@yahoo.com>,<darren_m@yahoo.com>, 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@yahoo.com>,<captain_hebert@yahoo.com>,<captain_hecubus@yahoo.com>,<captain_hematite@yahoo.com>,<captain_henry@yahoo.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@hotmail.com>, size=2190, class=0, nrcpts=2, msgid=<BAY122-F10744CB3D589418F89B77AE40B0@phx.gbl>, proto=ESMTP, daemon=MTA, relay=bay0-omc2-s37.bay0.hotmail.com [65.54.246.173]
Oct 14 06:46:57 mail sendmail[21577]: k9E1Gtfp021576: to=<outsrc@scriptacomsystems.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.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[18768]: STARTTLS=client, relay=mail.global.sprint.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
Oct 14 06:46:58 mail sendmail[21503]: k98N5p2H013143: to=<betsylane@yahoo.com>,<betsylangfor@yahoo.com>,<betsylangford7104@yahoo.com>,<betsylangford710@yahoo.com>,<betsylanglais@yahoo.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.com>, delay=00:00:07, xdelay=00:00:07, mailer=esmtp, pri=78717, relay=mail.global.sprint.com. [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>,<donnagail00@yahoo.com>,<donnagail1156@yahoo.com>,<donnagail1956@yahoo.com>,<donnagail195@yahoo.com>,<ecdaddy67801@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>,<cathys1234@bellsouth.net>,<cathys1250@bellsouth.net>,<cathys1@bellsouth.net>,<cathys@bellsouth.net>, 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.com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79147, relay=ismtp.easyspace.everyone.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.com>,<george_moya@yahoo.com>,<george_mpls@yahoo.com>,<george_mro@yahoo.com>,<george_msgt@yahoo.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>,<melodyhead@bellsouth.net>,<melodyj@bellsouth.net>,<melodyjwilliams@bellsouth.net>,<melodyki@bellsouth.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@briankennedy.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=79156, relay=mailserver.briankennedy.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.net>, 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>,<justmeandmykids5@yahoo.com>,<justmeandmyman2000@yahoo.com>,<justmeandmyman2002@yahoo.com>,<justmeandmymonkey@yahoo.com>,<justmeandmypup@yahoo.com>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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.com. [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>,<kwam_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.com., 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.com>, delay=00:00:05, xdelay=00:00:05, mailer=esmtp, pri=49195, relay=mail.global.sprint.com. [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@bhm.bellsouth.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.com., 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.com. [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>,<agreiner@lig.bellsouth.net>,<agriff@lig.bellsouth.net>,<agriffin@lig.bellsouth.net>,<agriffis@lig.bellsouth.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.com>, 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.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: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.com. [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.net>,<d7ofus7@bellsouth.net>,<d7stars@bellsouth.net>,<d7thstar@bellsouth.net>,<d7toes@bellsouth.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@bellsouth.net>,<ckp1192@bellsouth.net>,<ckp1@bellsouth.net>,<ckp@bellsouth.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.net>, 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@scriptacomsystems.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@scriptacomsystems.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@scriptacomsystems.com>, size=7256, class=0, nrcpts=3, msgid=<002801c6ef2f$f3b42a50$6401a8c0@computer100>, 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@scriptacomsystems.com>, ctladdr=<support@scriptacomsystems.com> (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@scriptacomsystems.com>, ctladdr=<support@scriptacomsystems.com> (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.net>, 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@bellsouth.net>,<g_and_g@bellsouth.net>,<g_andre@bellsouth.net>,<g_andrea@bellsouth.net>, 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@scriptacomsystems.com> (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>,<sucker1@bellsouth.net>,<sucker@bellsouth.net>,<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.net>,<cypyret@bellsouth.net>,<iudhforl@bellsouth.net>, 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@bellsouth.net>,<poker@bellsouth.net>,<poker_21@bellsouth.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>,<scrumpnasty@yahoo.com>,<scrumponit04@yahoo.com>,<scrumpr@yahoo.com>,<scrumprs@yahoo.com>,<scrumps2004@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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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@clt.bellsouth.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>,<joeybastardo@yahoo.com>,<joeybattaglio@yahoo.com>,<joeybatz2003@yahoo.com>,<joeybauder@yahoo.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.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79083, relay=broke.centrapoint.com. [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>,<lonisha2000@yahoo.com>,<lonishagraham@yahoo.com>,<lonishagreen@yahoo.com>,<lonishalton3@yahoo.com>,<lonisheldon@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@yahoo.com>,<krety4@yahoo.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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.com>,<princezzdawnz@yahoo.com>,<princezzdd@yahoo.com>,<princezzdezz18@yahoo.com>,<princezzdragon@yahoo.com>,<princezze692001@yahoo.com>, 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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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.com>,<nickie19m@yahoo.com>,<nickie1eye@yahoo.com>,<nickie1one@yahoo.com>,<nickie20008@yahoo.com>,<nickie2000_2000@yahoo.com>, 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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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>,<fthuottewell@yahoo.com>,<fthurber@yahoo.com>,<fthurlbutt_611@yahoo.com>,<fthurman@yahoo.com>,<fthuron@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>,<justmeandmykids5@yahoo.com>,<justmeandmyman2000@yahoo.com>,<justmeandmyman2002@yahoo.com>,<justmeandmymonkey@yahoo.com>,<justmeandmypup@yahoo.com>, 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>,<kwam_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.com>,<jillygarcia@yahoo.com>,<jillygator@yahoo.com>,<jillygeee@yahoo.com>,<toiyeuemthatlongnhungemkoyeutoi@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>,<blackbombr@yahoo.com>,<blackbombshell16@yahoo.com>,<blackbombshell211@yahoo.com>,<jackienpearson@yahoo.com>, 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=<oocoocoocoocoocoocoocoocoocoocoo@yahoo.com>,<oocookeoo@yahoo.com>,<oocookiemonkeyoo@yahoo.com>,<oocookoonmm@yahoo.com>,<oocool69r@yahoo.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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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.com>,<wainaink@yahoo.com>,<wainair@yahoo.com>,<wainaitwbuukihhajsuwiwq@yahoo.com>,<wainamayana@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>,<geo496614@yahoo.com>,<geo498@yahoo.com>,<geo4_86@yahoo.com>,<geo4adult@yahoo.com>,<geo4c@yahoo.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_trenmang@yahoo.com>,<didaochenmay_hn@yahoo.com>,<didaodemkocoanh@yahoo.com>,<didaopholangthang@yahoo.com>,<didaotrenmay@yahoo.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>,<medman0808@yahoo.com>,<medman0u812@yahoo.com>,<medman1011@yahoo.com>,<medman101@yahoo.com>, 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>,<cotertop@yahoo.com>,<coteruls@yahoo.com>,<coterunr@yahoo.com>,<coterwas@yahoo.com>,<coteryan@yahoo.com>, 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_bahal_2004@yahoo.com>,<milad_killer@yahoo.com>,<milad_killer_cn@yahoo.com>,<milad_king_of_boy_2003@yahoo.com>,<milad_kingboy@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>,<paligirl4life@yahoo.com>,<paligirlus@yahoo.com>,<paligo@yahoo.com>,<paligorski@yahoo.com>,<paligreen@yahoo.com>, 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.com>,<chronos696@yahoo.com>,<chronos69@yahoo.com>,<chronos69us@yahoo.com>,<chronos70@yahoo.com>,<chronos7@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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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>,<sheila432004@yahoo.com>,<sheila4342@yahoo.com>,<sheila4360@yahoo.com>,<sheila43701@yahoo.com>,<sheila43@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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
Oct 14 06:53:47 mail sendmail[19635]: k9DMe1Ye019635: to=<mbhovjvhheut@caller.com>, delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=49250, relay=mail.global.sprint.com. [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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=49266, relay=broke.centrapoint.com., 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>,<cositali75@yahoo.com>,<cositalinda1220@yahoo.com>,<cositalinda2027@yahoo.com>,<cositalinda333@yahoo.com>,<cositalinda56@yahoo.com>, 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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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_basketballfl3@yahoo.com>,<mr_basketballguy@yahoo.com>,<mr_bass_guy@yahoo.com>,<mr_bass_man_2@yahoo.com>,<mr_bassguitar@yahoo.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.com>,<sylvia_tanaya@yahoo.com>,<sylvia_tar@yahoo.com>,<sylvia_tarin@yahoo.com>,<sylvia_tech@yahoo.com>,<sylvia_terry@yahoo.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@yahoo.com>,<rickh_92057@yahoo.com>,<rickh_ncs@yahoo.com>,<rickha43@yahoo.com>,<rickhaas@yahoo.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@yahoo.com>,<yeumai_nguoiaymathoi@yahoo.com>,<yeumai_nguoioi_176114@yahoo.com>,<yeumai_nguoioi_20042008@yahoo.com>,<yeumai_nheanh19842003@yahoo.com>,<yeumai_nheanh333@yahoo.com>, 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>,<ifac@yahoo.com>,<ifaccoo@yahoo.com>,<ifacdp@yahoo.com>,<iface19@yahoo.com>,<iface66@yahoo.com>, 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@yahoo.com>,<maycophaithanganmatlonko_hn2005@yahoo.com>,<maycor05@yahoo.com>,<maycoramhoon@yahoo.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>,<savasta6201@yahoo.com>,<savasta666@yahoo.com>,<savastano@yahoo.com>,<savastanos2000@yahoo.com>,<savastao@yahoo.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>,<ngoisaocodon67@yahoo.com>,<ngoisaocodon712@yahoo.com>,<ngoisaocodon7590@yahoo.com>,<ngoisaocodon782865@yahoo.com>,<ngoisaocodon800020007@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.com>,<cheergirl777@yahoo.com>,<cheergirl782@yahoo.com>,<cheergirl790703@yahoo.com>,<cheergirl80@yahoo.com>,<cheergirl82@yahoo.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>,<duckkeysharon@bellsouth.net>,<duckki@bellsouth.net>,<duckkie@bellsouth.net>,<duckkorea@bellsouth.net>, 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>,<tim28buy@yahoo.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.everyone.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>,<kshep@bna.bellsouth.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.net>,<dabom1357@bellsouth.net>,<dabom135@bellsouth.net>,<dabom1631@bellsouth.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>,<sherry0072401@yahoo.com>,<sherry0072401us@yahoo.com>,<sherry007_21@yahoo.com>,<sherry00@yahoo.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.bellsouth.net>,<pc93@lig.bellsouth.net>,<pca@lig.bellsouth.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.net>, 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>,<anagynsyko@yahoo.com>,<anagyrine@yahoo.com>,<anagyris@yahoo.com>,<anagzlz@yahoo.com>, 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>,<lacy17224@yahoo.com>,<lacy1769@yahoo.com>,<lacy17@yahoo.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>,<kali789@yahoo.com>,<kali792002@yahoo.com>,<kali79chick@yahoo.com>,<kali818gurl@yahoo.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_1972@yahoo.com>,<skamran_pk@yahoo.com>,<skamrani2002@yahoo.com>,<skamranz@yahoo.com>, 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.net>,<mayf4405@bellsouth.net>,<mayf5559@bellsouth.net>,<mayf5622@bellsouth.net>,<mayf5994@bellsouth.net>, 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@bellsouth.net>,<wahls@bellsouth.net>,<wahlsd@bellsouth.net>,<wahm@bellsouth.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>,<wahler@bellsouth.net>,<wahlf@bellsouth.net>,<wahlg@bellsouth.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.com. [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@chinabyte.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.net>,<lovemy44@bellsouth.net>,<lovemybaby@bellsouth.net>,<lovemycar@bellsouth.net>,<lovemycritters@bellsouth.net>, 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.net>,<boy4bug@bellsouth.net>,<boy4buyer@bellsouth.net>,<boy4dad26@bellsouth.net>,<boy4dad390@bellsouth.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.net>,<boy4bug@bellsouth.net>,<boy4buyer@bellsouth.net>,<boy4dad26@bellsouth.net>,<boy4dad390@bellsouth.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>,<rdgarris@bellsouth.net>,<rdgary@bellsouth.net>, 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@bellsouth.net>,<swami3@bellsouth.net>,<swami@bellsouth.net>,<swamiji@bellsouth.net>, 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>,<ttbailey@bellsouth.net>,<ttbates@bellsouth.net>,<ttbbc@bellsouth.net>,<ttbc1223@bellsouth.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>,<ttbailey@bellsouth.net>,<ttbates@bellsouth.net>,<ttbbc@bellsouth.net>,<ttbc1223@bellsouth.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@bellsouth.net>,<dsabogal@bellsouth.net>,<dsabol@bellsouth.net>,<dsabquinn@bellsouth.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@bellsouth.net>,<franklin3534@bellsouth.net>,<franklin4237@bellsouth.net>,<franklin42@bellsouth.net>,<franklin4@bellsouth.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>,<greatgetaways@bellsouth.net>,<greatgifts@bellsouth.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.everyone.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.com. [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.net>,<aok@cha.bellsouth.net>,<aorlando@cha.bellsouth.net>,<aortega@cha.bellsouth.net>,<apa@cha.bellsouth.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@chinabyte.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@chinabyte.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@chinabyte.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.com>, 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@chinabyte.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.com>, 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@chinabyte.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@chinabyte.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@chinabyte.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.com>, 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.com>, 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.com>, 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@chinabyte.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@chinabyte.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.com>, 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@chinabyte.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@chinabyte.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.com>, 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.com>, 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.com>, 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@chinabyte.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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>,<stinkybutt420@yahoo.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>,<asatysseling@yahoo.com>,<asatz330@yahoo.com>,<asatz435@yahoo.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>,<taraneh18sal@yahoo.com>,<taraneh20003@yahoo.com>,<taraneh2008@yahoo.com>,<taraneh20@yahoo.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>,<yyuijhyyjiko8uui9@yahoo.com>,<yyuing@yahoo.com>,<yyuioooopppppppp@yahoo.com>,<yyuiooooppppppppp@yahoo.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@yahoo.com>,<jsrbathisismyfamilyinshall@yahoo.com>,<jsrbeanies@yahoo.com>,<jsrbfamily@yahoo.com>, 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>,<sharc3@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>,<cosmi_16@yahoo.com>,<cosmi_al@yahoo.com>,<cosmi_cruz@yahoo.com>,<cosmi_roman@yahoo.com>,<cosmi_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@yahoo.com>,<deotisc@yahoo.com>,<deotisech22@yahoo.com>, 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>,<arscout@yahoo.com>,<ashw666@yahoo.com>,<ashw6gjh99@yahoo.com>,<ashw78@yahoo.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>,<johnkelly_aupol@yahoo.com>,<johnkelly_irish@yahoo.com>,<johnkelly_yuen@yahoo.com>,<johnkellyasher@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.com>,<angelcloud20_01@yahoo.com>,<angelcloud21@yahoo.com>,<angelcloud23@yahoo.com>,<angelcloud2_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.com>,<missmissy_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@yahoo.com>,<john_maccormack@yahoo.com>,<john_macd_watson@yahoo.com>,<john_macfarlane@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>,<bloodcryztal86@yahoo.com>,<bloodct@yahoo.com>,<bloodctm@yahoo.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.com. [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@bellsouth.net>,<cheryl.holmberg@bellsouth.net>,<cheryl.lashinski@bellsouth.net>,<cheryl.lewis@bellsouth.net>,<cheryl.morris@bellsouth.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>,<epbowman@bellsouth.net>,<epboyer@bellsouth.net>,<epboykin@bellsouth.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>,<pammie0824@yahoo.com>,<pammie0916@yahoo.com>,<pammie0918@yahoo.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.net>, 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>,<jean9838@bellsouth.net>,<jean9877@bellsouth.net>,<jean9991@bellsouth.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@bellsouth.net>, 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@bellsouth.net>,<cesfens@bellsouth.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>,<donmcdonald@bellsouth.net>,<donmcdowell@bellsouth.net>,<donmce@bellsouth.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_attock@yahoo.com>,<safir_gamal@yahoo.com>,<safir_hot_love@yahoo.com>,<safir_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>,<papservices@bellsouth.net>,<papsgurl@bellsouth.net>,<papspr94@bellsouth.net>,<papttyr@bellsouth.net>, 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.net>,<heuers77@bellsouth.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.com. [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.net>,<bella@clt.bellsouth.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.com. [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>,<jayrd_459@yahoo.com>,<jayrdatinguinoo@yahoo.com>,<jayrdavid313@yahoo.com>,<jayrdee430@yahoo.com>, 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>,<buza20012002@yahoo.com>,<buza4@yahoo.com>,<buza69@yahoo.com>,<buza69for_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@yahoo.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>,<dc7rr@yahoo.com>,<dc7shan@yahoo.com>,<dc7t@yahoo.com>,<dc7u@yahoo.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>,<gregrooks@yahoo.com>,<gregroosevelt@yahoo.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>,<jonescn21@yahoo.com>,<jonescn@yahoo.com>,<jonescnolan@yahoo.com>,<jonesco24@yahoo.com>,<jonesco@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.com>, 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>,<nran8758@yahoo.com>,<nrana26840@yahoo.com>,<nrana33@yahoo.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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>,<deanhkechonghe@yahoo.com>,<deanhlaukho_giotle_trenmi_em_nhe@yahoo.com>,<deanhluonyeuem_nhoem@yahoo.com>,<deanhmaiconem_trongtim@yahoo.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>,<sah_35@yahoo.com>,<sah_420@yahoo.com>,<sah_74354@yahoo.com>,<sah_8@yahoo.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>,<biorhythm2@bellsouth.net>,<biorhythm8@bellsouth.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@briankennedy.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80000, relay=mailserver.briankennedy.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>,<jasercajammer@yahoo.com>,<jasercia@yahoo.com>,<jaserda@yahoo.com>,<jaserdula@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>,<jonescn21@yahoo.com>,<jonescn@yahoo.com>,<jonescnolan@yahoo.com>,<jonesco24@yahoo.com>,<jonesco@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>,<pofiuse@yahoo.com>,<pofiuz_e_tak@yahoo.com>,<pofive_liz_bailey@yahoo.com>,<pofiyuzz@yahoo.com>, 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>,<ripper8501@yahoo.com>,<ripper8522990@yahoo.com>,<ripper85us@yahoo.com>,<ripper870@yahoo.com>, 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>,<ifymom13579@yahoo.com>,<ifymonique@yahoo.com>,<ifymoore2003@yahoo.com>,<ifymora2003@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>,<emdjames@yahoo.com>,<emdjdt@yahoo.com>,<emdjdw@yahoo.com>,<emdjim@yahoo.com>,<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.com>,<party_chic_9999@yahoo.com>,<party_chic_stephanie@yahoo.com>,<party_chic_with_booty888888@yahoo.com>,<party_chica2003@yahoo.com>,<party_chica77@yahoo.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@yahoo.com>,<rolendorf@yahoo.com>,<rolends@yahoo.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.everyone.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>,<calvin220995@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.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79967, relay=broke.centrapoint.com., 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.com>,<hatemmohamed2002@yahoo.com>,<hatemmohamedmekky@yahoo.com>,<hatemmonib@yahoo.com>,<hatemmoon@yahoo.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@yahoo.com>,<tpmsurvey@yahoo.com>,<tpmt1924@yahoo.com>,<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@yahoo.com>,<hft2u@yahoo.com>,<hft3152042181@yahoo.com>,<hft34@yahoo.com>,<hft4386@yahoo.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.com>,<madisonsg@yahoo.com>,<madisonsgirls@yahoo.com>,<madisonsgrandpa@yahoo.com>,<madisonshelton301s@yahoo.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.com>,<mykidsmylife05@yahoo.com>,<mykidsnme48@yahoo.com>,<mykidsnuttymom@yahoo.com>,<mykidspapa@yahoo.com>, 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.com>,<walkaftermidnight@yahoo.com>,<walkaftermidnitesearch4u@yahoo.com>,<walkagirl@yahoo.com>,<walkahow@yahoo.com>, 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>,<mjmeach@yahoo.com>,<mjmeacham@yahoo.com>,<mjmead5334@yahoo.com>,<mjmeade2001@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@bellsouth.net>, 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.com>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=79990, relay=ismtp.easyspace.everyone.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>,<speedracer97760@yahoo.com>, 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.com>,<sammie_18_99@yahoo.com>,<sammie_1944@yahoo.com>,<sammie_19461@yahoo.com>,<sammie_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>,<sasif71@yahoo.com>,<sasif_bukhari@yahoo.com>,<sasif_hussain@yahoo.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>,<jess41m@bellsouth.net>,<jess421@bellsouth.net>,<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.everyone.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_japan@dell.com>,<apr_rma_nasia@dell.com>,<apr_rma_sakr@dell.com>, 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@chinabyte.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>,<ericakimmel@yahoo.com>,<ericakimtravel@yahoo.com>,<ericakin@yahoo.com>,<ericakind_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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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.com., 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>,<m2921000@yahoo.com>,<m2922@yahoo.com>,<m2926@yahoo.com>,<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@yahoo.com>,<yirsten08@yahoo.com>,<yirsu@yahoo.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>,<ortiz1354@yahoo.com>,<ortiz13@yahoo.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>,<ericakimmel@yahoo.com>,<ericakimtravel@yahoo.com>,<ericakin@yahoo.com>,<ericakind_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>,<jayfab4250@bellsouth.net>,<jayfalk@bellsouth.net>,<jayfam@bellsouth.net>,<jayfan@bellsouth.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.com., 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>,<chenal_bob@dell.com>,<chenan_1@dell.com>,<chenb_1999@dell.com>,<chenc_w@dell.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
Oct 14 06:59:26 mail sendmail[15758]: k9DGe1dO015758: to=<ivdqmwxvobtz@caller.com>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=79971, relay=mail.global.sprint.com. [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_01212003@yahoo.co.in>,<vipul_md2000@yahoo.co.in>, delay=10+12:15:48, xdelay=00:00:00, mailer=esmtp, pri=378795, relay=mx1.mail.in.yahoo.com. [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.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=79969, relay=broke.centrapoint.com. [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.net>,<enon@rdu.bellsouth.net>,<enona@rdu.bellsouth.net>,<enor@rdu.bellsouth.net>,<enorris@rdu.bellsouth.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.net>, 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>,<foforito@bellsouth.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@bellsouth.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>,<lingal@bellsouth.net>,<lingale@bellsouth.net>,<lingalls@bellsouth.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@bellsouth.net>,<andrew.riddell@bellsouth.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@bellsouth.net>,<kkosnik@bellsouth.net>,<kkossack@bellsouth.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.briankennedy.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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
Oct 14 07:00:10 mail sendmail[18768]: k9556iLs006612: to=<emsthing@yahoo.com>,<emstho@yahoo.com>,<emsthuongminhnhieu@yahoo.com>,<emsti024@yahoo.com>,<emsti@yahoo.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.com. [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>,<andrew.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>,<savas@bellsouth.net>,<savasg@bellsouth.net>,<savash@bellsouth.net>, 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>,<tarnue2001@yahoo.com>,<tarnue@yahoo.com>,<tarnuehoward@yahoo.com>,<tarnum13@yahoo.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>,<philmariarachelle@yahoo.com>,<philmarineboy@yahoo.com>,<philmarion1@yahoo.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@bellsouth.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>,<chungil@bellsouth.net>,<chungj@bellsouth.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.com>,<fiaccoladoro@yahoo.com>,<fiaccolina@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_can@yahoo.com>,<sorry_p_cant@yahoo.com>,<sorry_p_cant_meld@yahoo.com>,<sorry_p_im_drunk@yahoo.com>,<sorry_p_no_wilds@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.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=50079, relay=broke.centrapoint.com. [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>,<jpslvshrt@yahoo.com>,<jpslx@yahoo.com>,<jpsly@yahoo.com>,<jpslynch@yahoo.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@bellsouth.net>,<wray_lj@bellsouth.net>,<wray_p@bellsouth.net>,<wray_t@bellsouth.net>, 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@yahoo.com>,<supal18@yahoo.com>,<supal@yahoo.com>,<supal_shrestha@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@briankennedy.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79975, relay=mailserver.briankennedy.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>,<broncoherb@yahoo.com>,<broncohfan@yahoo.com>,<broncohhh_2000@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>,<lislarry@yahoo.com>,<lislauf@yahoo.com>,<lislaugh_01@yahoo.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>,<boreman2010@yahoo.com>,<boreman74@yahoo.com>,<boreman87@yahoo.com>,<boreman@yahoo.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>,<iggy_dont_work_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.com>, 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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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_can@yahoo.com>,<sorry_p_cant@yahoo.com>,<sorry_p_cant_meld@yahoo.com>,<sorry_p_im_drunk@yahoo.com>,<sorry_p_no_wilds@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.com>,<vancachxaem2005@yahoo.com>,<vancacristian@yahoo.com>,<vancagados@yahoo.com>,<vancagianhogoc@yahoo.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>,<waddells2000@yahoo.com>,<waddells@yahoo.com>,<waddellshaggy31@yahoo.com>,<waddellthomas@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>,<chelsea1024@yahoo.com>,<chelsea10399@yahoo.com>,<chelsea103@yahoo.com>,<chelsea104@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.everyone.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>,<alaskanchipmunks@yahoo.com>,<alaskanchris@yahoo.com>,<alaskanclassifieds@yahoo.com>,<alaskancleantime@yahoo.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.everyone.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>,<sulfamate@yahoo.com>,<sulfametazol@yahoo.com>,<sulfametoxazol_tr@yahoo.com>,<sulfametoxazol_trimetr@yahoo.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.com., 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_201054@yahoo.com>,<aofa_78@yahoo.com>,<aofa_ali2005@yahoo.com>,<aofa_aofa2000@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>,<duldrumzo@yahoo.com>,<duldrumzone@yahoo.com>,<duldrundai_san@yahoo.com>,<duldrundai_sangu@yahoo.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>,<judxsef@yahoo.com>,<judxxjudxx10@yahoo.com>,<judxy1@yahoo.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@yahoo.com>,<schung_1@yahoo.com>,<schung_99@yahoo.com>,<schungath@yahoo.com>, 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>,<buybuns@yahoo.com>,<buyburke@yahoo.com>,<buyburro@yahoo.com>,<buybutt@yahoo.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.com>,<smiller0182@yahoo.com>,<smiller0208@yahoo.com>,<smiller0498@yahoo.com>,<smiller@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.com>,<kristie_j@yahoo.com>,<kristie_j_24@yahoo.com>,<kristie_j_g@yahoo.com>,<kristie_jane2002@yahoo.com>, 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.com., 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>,<amethyst_little@yahoo.com>,<amethyst_lone@yahoo.com>,<amethyst_longisland@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>,<nickie2001mullis@yahoo.com>,<nickie2002002@yahoo.com>,<nickie2002@yahoo.com>,<nickie200480@yahoo.com>,<nickie2009@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.com. [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>,<mingtian123@yahoo.com>,<mingtian32@yahoo.com>,<mingtian70@yahoo.com>,<mingtianni@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.com. [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@yahoo.com>,<raiver222000@yahoo.com>,<raiver22@yahoo.com>,<raiveraive@yahoo.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>,<nblracer@bellsouth.net>,<nblue1@bellsouth.net>,<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.com., 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.com>,<belinda_lai@yahoo.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>,<lolugeorge@yahoo.com>,<loluh@yahoo.com>,<loluha@yahoo.com>,<loluhoney@yahoo.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.net>,<darrell426@bellsouth.net>,<darrell43@bellsouth.net>,<darrell442@bellsouth.net>,<darrell44@bellsouth.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@yahoo.com>,<cloudjq@yahoo.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.briankennedy.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.com. [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>,<bjandrucko@yahoo.com>,<bjandrus17@yahoo.com>,<bjandrus@yahoo.com>,<bjandruss@yahoo.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@bellsouth.net>,<amcoage@bellsouth.net>,<amcoats@bellsouth.net>,<amcobb@bellsouth.net>, 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@chinabyte.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>,<kikam9@yahoo.com>,<kikam_90255@yahoo.com>,<kikamac2255@yahoo.com>,<kikamada@yahoo.com>,<kikamae@yahoo.com>, 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.com., 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>,<careybell2002@yahoo.com>,<careybennett376@yahoo.com>,<careybennett@yahoo.com>,<careybenson@yahoo.com>, 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>,<dollar_cents95916@yahoo.com>,<dollar_cheese@yahoo.com>,<dollar_chephudoicongai@yahoo.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.net>,<cmercado@bellsouth.net>,<cmercan@bellsouth.net>,<cmercer1@bellsouth.net>,<cmercer@bellsouth.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.everyone.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.com>, delay=00:00:08, xdelay=00:00:08, mailer=esmtp, pri=79979, relay=mail.global.sprint.com. [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>,<upregulator@yahoo.com>,<upreht@yahoo.com>,<uprein@yahoo.com>,<upremchand@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.com>, 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.com>,<n2013@yahoo.com>,<n2015@yahoo.com>,<n2019@yahoo.com>,<n201bs@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>,<draivenn7@yahoo.com>,<draivyn@yahoo.com>,<draixbang@yahoo.com>,<draixosprofile@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.net>, 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.everyone.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>,<bbwsub4254@yahoo.com>,<bbwsub4bmn@yahoo.com>,<bbwsub4doc@yahoo.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>,<jony_99@dell.com>,<jony_b@dell.com>,<jony_c14@dell.com>,<jony_cart@dell.com>, 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@centrapoint.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=79979, relay=broke.centrapoint.com., 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>,<dmrudn@yahoo.com>,<dmrudolp@yahoo.com>,<dmrudy@yahoo.com>,<dmruff1@yahoo.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>,<msnbarkl@yahoo.com>,<msnbarkley@yahoo.com>,<msnbasher@yahoo.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>,<pyle36@yahoo.com>,<pyle38@yahoo.com>,<pyle44703@yahoo.com>,<pyle4561@yahoo.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>,<laurazileviciute@yahoo.com>,<laurazim@yahoo.com>,<laurazins@yahoo.com>, 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>,<mingtoyiv@yahoo.com>, 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.frost2@bellsouth.net>,<k.frost@bellsouth.net>,<k.fuerst@bellsouth.net>,<k.fujita@bellsouth.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.com., 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.net>,<redriver@atl.bellsouth.net>, 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>,<daat578@yahoo.com>,<daat6232@yahoo.com>,<daat626@yahoo.com>,<daat640@yahoo.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>,<dav55z28@yahoo.com>,<dav561@yahoo.com>,<dav562@yahoo.com>,<dav56@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.com>,<anthony2001calif@yahoo.com>,<anthony200211553us@yahoo.com>,<anthony200220910@yahoo.com>,<anthony200233170@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>,<damn655@yahoo.com>,<damn68771@yahoo.com>,<damn691747@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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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.everyone.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.bellsouth.net>,<palombo@lig.bellsouth.net>,<palomino@lig.bellsouth.net>,<palomo@lig.bellsouth.net>, 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@yahoo.com>,<one_man_army_1965@yahoo.com>,<one_man_army_cfh@yahoo.com>,<one_man_army_ebk@yahoo.com>,<one_man_b1@yahoo.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>,<resh4nish@yahoo.com>,<resh4us@yahoo.com>,<resh51@yahoo.com>,<resh525@yahoo.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>,<satchue@bellsouth.net>,<satchum@bellsouth.net>, 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>,<silvacmi@bellsouth.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>,<emegrath@bellsouth.net>,<emehls@bellsouth.net>,<emehmet@bellsouth.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@bellsouth.net>,<sucollin@bellsouth.net>,<sucono@bellsouth.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@yahoo.com>,<chinwelife_21@yahoo.com>,<chinwelife_7@yahoo.com>,<chinwelifes_y2k@yahoo.com>,<chinwelizzy@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@bellsouth.net>,<labs123@bellsouth.net>,<labs42@bellsouth.net>,<labs4me@bellsouth.net>,<labs@bellsouth.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>,<charlesd316@yahoo.com>,<charlesd31@yahoo.com>,<charlesd34@yahoo.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.net>,<cowgirl@clt.bellsouth.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.net>,<hmarsh@atl.bellsouth.net>,<hmart@atl.bellsouth.net>,<hmartin@atl.bellsouth.net>,<hmb@atl.bellsouth.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.net>, 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@scriptacomsystems.com>, size=12811, class=0, nrcpts=14, msgid=<005201c6ef31$9c630990$0301a8c0@computer03>, proto=SMTP, daemon=MTA, relay=lan-202-144-86-75.maa.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@scriptacomsystems.com>, ctladdr=<data@scriptacomsystems.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>,<flaviababy@hotmail.com>,<clairerocha@hotmail.com>,<vadimb_1@hotmail.com>,<nafisahusain100@hotmail.com>,<sheeba_aish@hotmail.com>,<opustech@hotmail.com>,<trans_operations@hotmail.com>, ctladdr=<data@scriptacomsystems.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$0301a8c0@computer03> 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@scriptacomsystems.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@rediffmail.com>, ctladdr=<data@scriptacomsystems.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@scriptacomsystems.com> (509/509), delay=00:00:11, xdelay=00:00:00, mailer=esmtp, pri=433015, relay=mx1.mail.in.yahoo.com. [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@bellsouth.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>,<donmcdonald@bellsouth.net>,<donmcdowell@bellsouth.net>,<donmce@bellsouth.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>,<papservices@bellsouth.net>,<papsgurl@bellsouth.net>,<papspr94@bellsouth.net>,<papttyr@bellsouth.net>, 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.net>,<heuers77@bellsouth.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.net>, 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>,<dluvlyone@bellsouth.net>,<dluvmann@bellsouth.net>,<dluvmaster@bellsouth.net>,<dluvmd2@bellsouth.net>, 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.net>,<dabom12562@bellsouth.net>,<dabom1260@bellsouth.net>,<dabom12@bellsouth.net>,<dabom13133@bellsouth.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>,<ohyew812@bellsouth.net>,<ohzzqd@bellsouth.net>,<oi@bellsouth.net>, 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>,<pokehate@bellsouth.net>,<pokekid@bellsouth.net>,<pokelace@bellsouth.net>,<pokelope@bellsouth.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.com. [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_reshhasan@yahoo.com>, ctladdr=<data@scriptacomsystems.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@bellsouth.net>,<tmleister@bellsouth.net>,<tmlemay@bellsouth.net>,<tmlewis@bellsouth.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@centrapoint.com>, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=69207, relay=broke.centrapoint.com. [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.net>,<melodym@bellsouth.net>,<melodymay@bellsouth.net>,<melodymichael@bellsouth.net>,<melodymonroe@bellsouth.net>, 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.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:40 mail sendmail[19957]: k9A9Wdjg027423: to=<d7nu0l3jm@bellsouth.net>,<d7ofus7@bellsouth.net>,<d7stars@bellsouth.net>,<d7thstar@bellsouth.net>,<d7toes@bellsouth.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@bellsouth.net>,<ckp1192@bellsouth.net>,<ckp1@bellsouth.net>,<ckp@bellsouth.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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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.net>,<fletch2508@bellsouth.net>,<fletch26@bellsouth.net>,<fletch27@bellsouth.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>,<fletch52@bellsouth.net>,<fletch53@bellsouth.net>,<fletch5@bellsouth.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@bellsouth.net>,<lpark23@bellsouth.net>,<lpark71@bellsouth.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.net>, 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.net>,<micheal.boston@bellsouth.net>,<micheal@bellsouth.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>,<donnalb@bellsouth.net>,<donnalbrown@bellsouth.net>,<donnalc@bellsouth.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@bellsouth.net>,<ohwolfie@bellsouth.net>,<ohya@bellsouth.net>,<ohyeah@bellsouth.net>, 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.net>, 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>,<btminchlt@bellsouth.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.net>,<devil82468@bellsouth.net>,<devil82487@bellsouth.net>,<devil824@bellsouth.net>,<devil826@bellsouth.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>,<rdgodfre@bellsouth.net>,<rdgodfrey@bellsouth.net>,<rdgodwin@bellsouth.net>,<rdgoff01@bellsouth.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@atl.bellsouth.net>,<hidalgo@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.com. [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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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@bellsouth.net>,<jmf86@bellsouth.net>,<jmf8@bellsouth.net>, 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@bellsouth.net>,<rktigg@bellsouth.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.net>, 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.in>, delay=2+10:02:26, xdelay=00:00:00, mailer=esmtp, pri=1674843, relay=mx1.mail.in.yahoo.com. [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>,<emdjames@yahoo.com>,<emdjdt@yahoo.com>,<emdjdw@yahoo.com>,<emdjim@yahoo.com>,<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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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@bellsouth.net>,<ajcjk@bellsouth.net>,<ajcjr@bellsouth.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_can@yahoo.com>,<sorry_p_cant@yahoo.com>,<sorry_p_cant_meld@yahoo.com>,<sorry_p_im_drunk@yahoo.com>,<sorry_p_no_wilds@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>,<kikam9@yahoo.com>,<kikam_90255@yahoo.com>,<kikamac2255@yahoo.com>,<kikamada@yahoo.com>,<kikamae@yahoo.com>, 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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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>,<cowden@clt.bellsouth.net>,<cowee@clt.bellsouth.net>,<cowell@clt.bellsouth.net>,<cowen@clt.bellsouth.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>,<bonzoboy225@yahoo.com>,<bonzoboys@yahoo.com>,<icekid55@yahoo.com>,<icekid_1991_2000@yahoo.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>,<mikema2008@yahoo.com>,<mikema3@yahoo.com>,<mikema4@yahoo.com>,<mikema97@yahoo.com>, 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@yahoo.com>,<nc_blue_eyed_angel_1974@yahoo.com>,<nc_blue_eyed_girl_32@yahoo.com>,<nc_blue_eyedguy@yahoo.com>,<nc_blue_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@yahoo.com>,<hard_to_handle_31@yahoo.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.com>,<jamess_baby4ever@yahoo.com>,<jamess_bong@yahoo.com>,<jamess_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>,<drew1721@yahoo.com>,<drew1731@yahoo.com>,<drew1738@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>,<bandmjones00@bellsouth.net>,<bandmmeyer@bellsouth.net>,<bandmo@bellsouth.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.com. [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>,<cplowild1s@bellsouth.net>,<cplowman@bellsouth.net>,<cployer@bellsouth.net>,<cplp@bellsouth.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>,<cadman2641@yahoo.com>,<cadman26@yahoo.com>,<cadman26tr@yahoo.com>,<cadman27@yahoo.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>,<damn79@yahoo.com>,<damn82@yahoo.com>,<damn833662@yahoo.com>,<tiffanymwilliams@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.net>, 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.bellsouth.net>,<juanita@mem.bellsouth.net>,<jubilee@mem.bellsouth.net>,<judge@mem.bellsouth.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.everyone.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.com. [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.com. [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>,<hawkinslauren@bellsouth.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>,<shibbykay05@bellsouth.net>,<shibeel@bellsouth.net>,<shibi@bellsouth.net>,<shible@bellsouth.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.net>,<barthmos@bellsouth.net>,<barthms5@bellsouth.net>,<barthn@bellsouth.net>,<bartho@bellsouth.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.net>,<boxman8196@bellsouth.net>,<boxman8228@bellsouth.net>,<boxman8500@bellsouth.net>,<boxman8@bellsouth.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>,<btmimrutop@bellsouth.net>,<btmin22304@bellsouth.net>,<btmin425@bellsouth.net>,<btminatlk9@bellsouth.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@bellsouth.net>,<biruby69@bellsouth.net>,<biruce@bellsouth.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>,<ray379@bellsouth.net>,<ray38@bellsouth.net>,<ray392@bellsouth.net>, 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>,<ray379@bellsouth.net>,<ray38@bellsouth.net>,<ray392@bellsouth.net>, 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@bellsouth.net>,<zega6553@bellsouth.net>,<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>,<ttaylor28@bellsouth.net>,<ttaylor2@bellsouth.net>,<ttaylor4@bellsouth.net>,<ttaylor5@bellsouth.net>, 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.net>, 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>,<big21@bellsouth.net>,<big222@bellsouth.net>,<big22@bellsouth.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>,<gerryb@bellsouth.net>,<gerrybla@bellsouth.net>,<gerryblake@bellsouth.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.net>, 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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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_can@yahoo.com>,<sorry_p_cant@yahoo.com>,<sorry_p_cant_meld@yahoo.com>,<sorry_p_im_drunk@yahoo.com>,<sorry_p_no_wilds@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>,<kikam9@yahoo.com>,<kikam_90255@yahoo.com>,<kikamac2255@yahoo.com>,<kikamada@yahoo.com>,<kikamae@yahoo.com>, 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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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>,<patod8198@yahoo.com>,<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>,<chisjeff2000@yahoo.com>,<chisjericho123@yahoo.com>,<chisjohn@yahoo.com>,<chisk@yahoo.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@briankennedy.co.uk>, delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=80007, relay=mailserver.briankennedy.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>,<biggestal1@bellsouth.net>,<biggestarz@bellsouth.net>,<biggestbo@bellsouth.net>,<biggestd99@bellsouth.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>,<tpmsep@yahoo.com>,<tpmsept@yahoo.com>,<tpmskid@yahoo.com>,<tpmsperson@yahoo.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>,<koncerak@bellsouth.net>,<konch@bellsouth.net>,<konchman@bellsouth.net>,<konchog@bellsouth.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.com., 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.com. [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>,<jeremyfrasier@bellsouth.net>,<jeremyfrompa@bellsouth.net>,<jeremyg1@bellsouth.net>,<jeremyg@bellsouth.net>, 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.everyone.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_andria_0000@yahoo.com>,<alex_andria_online@yahoo.com>,<alex_andriano@yahoo.com>,<alex_andrios@yahoo.com>,<alex_androgyne@yahoo.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>,<superwomen9087@yahoo.com>,<superwomen92111@yahoo.com>,<superwomen92585@yahoo.com>,<superwomen95206@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>,<normavalenzuela1@yahoo.com>,<normavallejocrystal@yahoo.com>,<normavallejos@yahoo.com>,<normavandemark2000@yahoo.com>, 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>,<airelibre@bellsouth.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>,<bigw@yahoo.com>, 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>,<pcameron@lig.bellsouth.net>,<pcampbell@lig.bellsouth.net>,<pcampos@lig.bellsouth.net>,<pcarey@lig.bellsouth.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.net>, 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>,<diego@clt.bellsouth.net>,<diehard@clt.bellsouth.net>,<diehl@clt.bellsouth.net>,<diehm@clt.bellsouth.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@briankennedy.co.uk>, delay=00:00:09, xdelay=00:00:08, mailer=esmtp, pri=79143, relay=mailserver.briankennedy.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.net>, relay=NK219-91-107-249.adsl.dynamic.apol.com.tw [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.dynamic.apol.com.tw [219.91.107.249] to MTA after rcpt
Oct 14 07:14:27 mail sendmail[21723]: k9E1iMMe021723: from=<oipopoip@msa.hinet.net>, size=0, class=0, nrcpts=0, proto=SMTP, daemon=MTA, relay=NK219-91-107-249.adsl.dynamic.apol.com.tw [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.com>, 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>,<johnt57@bellsouth.net>,<johnt67@bellsouth.net>,<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>,<aileen37@bellsouth.net>,<aileen39@bellsouth.net>,<aileen4474@bellsouth.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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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.net>,<debgui@bellsouth.net>,<debgurls@bellsouth.net>,<debgurney@bellsouth.net>,<debgusal@bellsouth.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.net>,<richersj@bellsouth.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.net>, 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>,<ejudys@bellsouth.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.com>,<you_go_girl504@yahoo.com>,<you_go_girl_13_99@yahoo.com>,<you_go_girl_232@yahoo.com>,<you_go_girl_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>,<mael_31@yahoo.com>,<mael_84@yahoo.com>,<mael_8839@yahoo.com>,<mael_969@yahoo.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>,<bprat24977@yahoo.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>,<captrequin@yahoo.com>,<captrer@yahoo.com>,<captrescue@yahoo.com>,<captresfd@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>,<covate@yahoo.com>,<covatel2000@yahoo.com>,<covatel2076@yahoo.com>,<covatembel@yahoo.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>,<dbrewerr@bellsouth.net>,<dbrewing@bellsouth.net>,<dbrewington@bellsouth.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>,<hrbob@bellsouth.net>,<hrbogus@bellsouth.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.com. [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.net>, 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@bellsouth.net>,<micheal.turner1@bellsouth.net>,<micheal.turner@bellsouth.net>,<micheal1@bellsouth.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.com., dsn=4.0.0, stat=Deferred
Oct 14 07:16:10 mail sendmail[2438]: k9BE6js3012288: to=<bandfreak1@bellsouth.net>, 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@bellsouth.net>,<crcof@bellsouth.net>,<crcoflm@bellsouth.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.net>,<brodrick@bellsouth.net>,<brodrickt@bellsouth.net>,<brodrig2@bellsouth.net>,<brodrig@bellsouth.net>, 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@yahoo.com>,<m_hicke@yahoo.com>,<m_hickenbottom@yahoo.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>,<dora_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>,<ljvlzjj@yahoo.com>,<ljvm31@yahoo.com>,<ljvm@yahoo.com>,<ljvmcallister@yahoo.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.com>, 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>,<tigerpk2743@yahoo.com>,<tigerpkelly@yahoo.com>,<tigerplaw@yahoo.com>,<tigerplayboy2002@yahoo.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>,<strings4manoj@yahoo.com>,<strings4reall@yahoo.com>,<strings4u2000@yahoo.com>,<strings5@yahoo.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>,<cydaida@yahoo.com>,<cydain@yahoo.com>,<cydaine@yahoo.com>,<cydaisy@yahoo.com>, 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>,<cwarth229@yahoo.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>,<bigone4u13760@yahoo.com>,<bigone4u13@yahoo.com>,<bigone4u14837@yahoo.com>,<bigone4u23@yahoo.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.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: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.com. [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@yahoo.com>,<keemo28@yahoo.com>,<keemo29@yahoo.com>,<keemo3@yahoo.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.net>, 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.com. [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>,<palmetto@lig.bellsouth.net>,<palmieri@lig.bellsouth.net>, 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>,<amylisa1232000@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.ar>, delay=00:00:06, xdelay=00:00:06, mailer=esmtp, pri=49199, relay=postino9.prima.com.ar. [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.com>,<starslass@yahoo.com>,<starslater@yahoo.com>,<starslavejen@yahoo.com>,<starslayer@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.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=<arshende@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:38 mail sendmail[11354]: k93ISCTK019808: to=<arshdeepin@indiatimes.com>,<arshi@indiatimes.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.com. [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@yahoo.com>,<chrisk_6speed@yahoo.com>,<chrisk_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@bellsouth.net>,<cmcochran@bellsouth.net>,<cmcodd@bellsouth.net>,<cmcody@bellsouth.net>,<cmcoffee@bellsouth.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.net>,<donnabrd@bellsouth.net>,<donnabridgers@bellsouth.net>,<donnabriggs@bellsouth.net>,<donnabritton@bellsouth.net>,<donnabrns@bellsouth.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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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>,<tmcgaren@yahoo.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@yahoo.com>,<greiver_samera@yahoo.com>,<greivin3000@yahoo.com>,<greivin32@yahoo.com>,<greivin5587@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.net>, 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>,<khedkar1@bellsouth.net>,<khedkar@bellsouth.net>,<khedland1@bellsouth.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.com>,<pimp_101@yahoo.com>,<pimp_101_12@yahoo.com>,<pimp_101_4_u@yahoo.com>,<pimp_10304@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.com. [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@yahoo.com>,<kendall122@yahoo.com>,<kendall123@yahoo.com>,<kendall143@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.everyone.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>,<we170077@bellsouth.net>,<we1rd@bellsouth.net>,<we216t2@bellsouth.net>,<we2@bellsouth.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.com. [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_dwight@yahoo.com>,<jama_g_2000@yahoo.com>,<jama_garber@yahoo.com>,<jama_gosser@yahoo.com>,<jama_grl@yahoo.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>,<reidaroo@yahoo.com>,<reidarooyikmqvgkzsgq@yahoo.com>,<reidarppmxgtcdqknpae@yahoo.com>,<reidarqtwhzjrdqdguulgos@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.com. [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>,<caacatiano@yahoo.com>,<caacaw@yahoo.com>,<caacbandeula@yahoo.com>,<caacbayredith316@yahoo.com>, 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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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>,<springirl17@yahoo.com>,<springirl@yahoo.com>,<springirth@yahoo.com>,<springisdrawingon@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>,<beteejo@yahoo.com>,<beteela@yahoo.com>,<beteelu@yahoo.com>,<beteem@yahoo.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.briankennedy.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>,<comando23@yahoo.com>,<comando242@yahoo.com>,<comando269@yahoo.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>,<freepageant@yahoo.com>,<freepagerdeal@yahoo.com>,<freepagernet@yahoo.com>,<freepagers2001@yahoo.com>, 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.net>,<crazicat@bellsouth.net>,<crazichibi@bellsouth.net>,<crazichic@bellsouth.net>,<crazichick@bellsouth.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@centrapoint.com>, delay=00:00:01, xdelay=00:00:00, mailer=esmtp, pri=80030, relay=broke.centrapoint.com., 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>,<dalih2000@yahoo.com>,<sueh103@yahoo.com>,<sueh1231@yahoo.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>,<da3624@yahoo.com>,<da3627@yahoo.com>,<da3628@yahoo.com>,<da363213@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>,<laurazgonecrazy@yahoo.com>,<laurazguy@yahoo.com>,<laurazh@yahoo.com>,<laurazhang87@yahoo.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>,<cindysuewho_2@yahoo.com>,<cindysuez2000@yahoo.com>,<cindysuhng@yahoo.com>,<thesien@yahoo.com>,<thesier_steven@yahoo.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.com. [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@bellsouth.net>,<adoan99918@bellsouth.net>,<adoan@bellsouth.net>,<adoane@bellsouth.net>, 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@yahoo.com>,<sqaureboots@yahoo.com>, 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>,<bredman@bellsouth.net>,<bredmo@bellsouth.net>,<bredmon@bellsouth.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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>,<comedycandyr@bellsouth.net>,<comeford@bellsouth.net>,<comeg@bellsouth.net>,<comegetsome@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.co.uk>, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=80022, relay=mail19.messagelabs.com. [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>,<crosconnct@bellsouth.net>,<croscorner@bellsouth.net>,<croscorp@bellsouth.net>,<croscrek@bellsouth.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@yahoo.com>,<stacees@yahoo.com>,<staceesa@yahoo.com>,<staceesno@yahoo.com>, 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.com>,<jennabeth_21@yahoo.com>,<jennabeth_33@yahoo.com>,<jennabethblair@yahoo.com>,<jennabh221@yahoo.com>, 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>,<klman26@yahoo.com>,<klman28@yahoo.com>,<klmandaaaa@yahoo.com>,<klmandy@yahoo.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_kitten84@yahoo.com>,<cindy_kitten_55@yahoo.com>,<cindy_kitten_58@yahoo.com>,<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>,<courtroxy@bellsouth.net>,<courts1@bellsouth.net>,<courts3@bellsouth.net>,<courts@bellsouth.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@chinabyte.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.bellsouth.net>,<delgado@mail.mia.bellsouth.net>,<denani@mail.mia.bellsouth.net>,<denis23@mail.mia.bellsouth.net>,<dennisv@mail.mia.bellsouth.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>,<bizop9495@bellsouth.net>,<bizopman@bellsouth.net>,<bizopp@bellsouth.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.net>,<btmguywntd@bellsouth.net>,<btmgwm@bellsouth.net>,<btmhalf@bellsouth.net>,<btmhshaf@bellsouth.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@bellsouth.net>,<afry69@bellsouth.net>,<afry79a@bellsouth.net>,<afryans@bellsouth.net>, 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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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@rotaryclubromaovest.org>, size=896, class=0, nrcpts=1, msgid=<39314809516390.4EE63C10C2@QYG3>, bodytype=8BITMIME, proto=ESMTP, daemon=MTA, relay=[211.221.56.182]
Oct 14 07:22:32 mail sendmail[21812]: k9E1qRYq021808: to=<mpatel@scriptacomsystems.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.net.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@royalblak.com>, size=811, class=0, nrcpts=1, msgid=<12664100070199.F0E2ED977E@QEEY>, 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@scriptacomsystems.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>,<cindysuewho_2@yahoo.com>,<cindysuez2000@yahoo.com>,<cindysuhng@yahoo.com>,<thesien@yahoo.com>,<thesier_steven@yahoo.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_vijaykanth@yahoo.com>,<j_vijil@yahoo.com>,<j_vikas80@yahoo.com>,<j_viking@yahoo.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@rossisa.it>, size=748, class=0, nrcpts=2, msgid=<82401787430530.97E29A9B67@K7UMP7I2>, 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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
Oct 14 07:22:45 mail sendmail[21834]: k9E1qRYu021808: to=<hr@scriptacomsystems.com>, 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.com>... User unknown
Oct 14 07:22:45 mail sendmail[21808]: k9E1qRYw021808: <3dfinance@scriptacomsystems.com>... User unknown
Oct 14 07:22:45 mail sendmail[21834]: k9E1qRYu021808: to=<finance@scriptacomsystems.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=<combinateargumentation@rougehouston.com>, size=778, class=0, nrcpts=1, msgid=<08424926009024.1C94BFCD01@9GRQ6I8>, 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.com. [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>,<debgarza2000@yahoo.com>,<debgas52@yahoo.com>,<debgate@yahoo.com>,<debgates72032@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.com. [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@scriptacomsystems.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>,<amcnulty@bellsouth.net>,<amcnutt@bellsouth.net>,<amcnutter@bellsouth.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@scriptacomsystems.com>... User unknown
Oct 14 07:22:53 mail sendmail[21503]: k9D7e10J021503: to=<sgwjjpbnxkipp@briankennedy.co.uk>, delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=79992, relay=mailserver.briankennedy.co.uk. [213.171.216.65], dsn=5.1.1, stat=User unknown
Oct 14 07:22:54 mail sendmail[21863]: k9E1qrAr021863: from=<support@scriptacomsystems.com>, size=5527, class=0, nrcpts=1, msgid=<004201c6ef34$54abf050$6401a8c0@computer100>, proto=SMTP, daemon=MTA, relay=[59.92.135.232]
Oct 14 07:22:54 mail sendmail[21864]: k9E1qrAr021863: to=<asokan@scriptacomsystems.com>, ctladdr=<support@scriptacomsystems.com> (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@rouches-internet.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.bellsouth.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@bellsouth.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.net>, 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.com. [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.net>,<djb727@bellsouth.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.bellsouth.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>,<agreiner@lig.bellsouth.net>,<agriff@lig.bellsouth.net>,<agriffin@lig.bellsouth.net>,<agriffis@lig.bellsouth.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>,<hrbrlite@bellsouth.net>,<hrbrooks@bellsouth.net>,<hrbrown@bellsouth.net>,<hrbunch@bellsouth.net>, 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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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.net>, 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>,<khedkar1@bellsouth.net>,<khedkar@bellsouth.net>,<khedland1@bellsouth.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.net>, 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.net>,<covone@clt.bellsouth.net>,<cow@clt.bellsouth.net>,<cowan@clt.bellsouth.net>,<cowans@clt.bellsouth.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>,<cowboy@clt.bellsouth.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.net>,<mayf4405@bellsouth.net>,<mayf5559@bellsouth.net>,<mayf5622@bellsouth.net>,<mayf5994@bellsouth.net>, 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.com. [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.net>,<lovemy44@bellsouth.net>,<lovemybaby@bellsouth.net>,<lovemycar@bellsouth.net>,<lovemycritters@bellsouth.net>, 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.net>,<boy4bug@bellsouth.net>,<boy4buyer@bellsouth.net>,<boy4dad26@bellsouth.net>,<boy4dad390@bellsouth.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.net>,<boy4bug@bellsouth.net>,<boy4buyer@bellsouth.net>,<boy4dad26@bellsouth.net>,<boy4dad390@bellsouth.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>,<rdgarris@bellsouth.net>,<rdgary@bellsouth.net>, 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@bellsouth.net>,<swami3@bellsouth.net>,<swami@bellsouth.net>,<swamiji@bellsouth.net>, 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>,<ttbailey@bellsouth.net>,<ttbates@bellsouth.net>,<ttbbc@bellsouth.net>,<ttbc1223@bellsouth.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>,<ttbailey@bellsouth.net>,<ttbates@bellsouth.net>,<ttbbc@bellsouth.net>,<ttbc1223@bellsouth.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@bellsouth.net>,<dsabogal@bellsouth.net>,<dsabol@bellsouth.net>,<dsabquinn@bellsouth.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@bellsouth.net>,<franklin3534@bellsouth.net>,<franklin4237@bellsouth.net>,<franklin42@bellsouth.net>,<franklin4@bellsouth.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.net>, 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@bellsouth.net>,<g_and_g@bellsouth.net>,<g_andre@bellsouth.net>,<g_andrea@bellsouth.net>, 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.bellsouth.net>,<fairplay@bhm.bellsouth.net>,<fairview@bhm.bellsouth.net>,<fairway@bhm.bellsouth.net>,<fairweather@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.net>, 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>,<dluvlyone@bellsouth.net>,<dluvmann@bellsouth.net>,<dluvmaster@bellsouth.net>,<dluvmd2@bellsouth.net>, 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.net>,<dabom12562@bellsouth.net>,<dabom1260@bellsouth.net>,<dabom12@bellsouth.net>,<dabom13133@bellsouth.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>,<ohyew812@bellsouth.net>,<ohzzqd@bellsouth.net>,<oi@bellsouth.net>, 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>,<pokehate@bellsouth.net>,<pokekid@bellsouth.net>,<pokelace@bellsouth.net>,<pokelope@bellsouth.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.net>,<fletch2508@bellsouth.net>,<fletch26@bellsouth.net>,<fletch27@bellsouth.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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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>,<fletch52@bellsouth.net>,<fletch53@bellsouth.net>,<fletch5@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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@bellsouth.net>,<lpark23@bellsouth.net>,<lpark71@bellsouth.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.net>, 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.net>,<micheal.boston@bellsouth.net>,<micheal@bellsouth.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>,<donnalb@bellsouth.net>,<donnalbrown@bellsouth.net>,<donnalc@bellsouth.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@bellsouth.net>,<ohwolfie@bellsouth.net>,<ohya@bellsouth.net>,<ohyeah@bellsouth.net>, 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>,<gkhunt@bellsouth.net>,<gkhunter@bellsouth.net>,<gkhurst@bellsouth.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>,<jmf1972@bellsouth.net>,<jmf2509@bellsouth.net>,<jmf2@bellsouth.net>, 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@bellsouth.net>,<cmindians@bellsouth.net>,<cmindigo@bellsouth.net>,<cmindler@bellsouth.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.net>,<comlease@bellsouth.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@bellsouth.net>,<hrbla@bellsouth.net>,<hrblaw@bellsouth.net>,<hrblock@bellsouth.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@fireplaceexpress.com>, size=2260, class=0, nrcpts=1, msgid=<000001c6ef33$e91cff00$0100007f@localhost>, 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.com>, 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_sparkling_dildo@yahoo.com>,<kiza_zg@yahoo.com>,<kizaaaaaaaaaaaaa@yahoo.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>,<crcole5687@bellsouth.net>,<crcole@bellsouth.net>,<crcoleman@bellsouth.net>,<crcollings@bellsouth.net>, 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.net>,<cmcoh@bellsouth.net>,<cmcohen@bellsouth.net>,<cmcokmedin@bellsouth.net>,<cmcole@bellsouth.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>,<fansmith@bellsouth.net>,<fansp@bellsouth.net>,<fansports10@bellsouth.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.scriptacomsolutions.com>, size=56001, class=0, nrcpts=3, msgid=<200610140200.k9E205hr007910@server1.scriptacomsolutions.com>, proto=ESMTP, daemon=MTA, relay=iad2.emailsrvr.com [207.97.227.212]
Oct 14 07:31:03 mail sendmail[21890]: k9E20uCR021889: to=<asokan@scriptacomsystems.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@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=<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.etransmedia.com>, size=2525, class=0, nrcpts=3, msgid=<20061014020015.D22131EC086@orwell.voxel.net>, proto=ESMTP, daemon=MTA, relay=orwell.etransmedia.com [69.9.191.170]
Oct 14 07:31:50 mail sendmail[21896]: k9E21lw5021895: to=<jayasri@scriptacomsystems.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.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=network@scriptacomsystems.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@scriptacomsystems.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.bellsouth.net>,<pc93@lig.bellsouth.net>,<pca@lig.bellsouth.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.net>,<cregger@rdu.bellsouth.net>,<creilly@rdu.bellsouth.net>,<creiter@rdu.bellsouth.net>,<creitz@rdu.bellsouth.net>,<cremate@rdu.bellsouth.net>, 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@bellsouth.net>,<wahls@bellsouth.net>,<wahlsd@bellsouth.net>,<wahm@bellsouth.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>,<wahler@bellsouth.net>,<wahlf@bellsouth.net>,<wahlg@bellsouth.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.com>, 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.net>,<glennd@mia.bellsouth.net>,<glenne@mia.bellsouth.net>,<glennh@mia.bellsouth.net>,<glennk@mia.bellsouth.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.net>,<ericag@rdu.bellsouth.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>,<jmfail@bellsouth.net>,<jmfalcon@bellsouth.net>,<jmfamily@bellsouth.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.net>,<debspawn@bellsouth.net>,<debspear@bellsouth.net>,<debspenc@bellsouth.net>,<debspence@bellsouth.net>, 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@bellsouth.net>,<genx929@bellsouth.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.net>, 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>,<bataco@bellsouth.net>,<batad@bellsouth.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.net>, 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.everyone.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.net>, 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@bellsouth.net>,<jdscpa@bellsouth.net>,<jdscreen@bellsouth.net>,<jdscteele@bellsouth.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.net>, 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>,<khedkar1@bellsouth.net>,<khedkar@bellsouth.net>,<khedland1@bellsouth.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.everyone.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>,<cindysuewho_2@yahoo.com>,<cindysuez2000@yahoo.com>,<cindysuhng@yahoo.com>,<thesien@yahoo.com>,<thesier_steven@yahoo.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>,<hady_5004@yahoo.com>,<hady_66644@yahoo.com>,<hady_98@yahoo.com>,<hady_992002@yahoo.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>,<atysongarrett@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>,<cscot@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.net>,<alyse@rdu.bellsouth.net>,<alysha@rdu.bellsouth.net>,<alysia@rdu.bellsouth.net>,<alyson@rdu.bellsouth.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.com>, delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=80024, relay=ismtp.easyspace.everyone.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>,<atadonline@yahoo.com>,<atadonroyata@yahoo.com>,<atador@yahoo.com>,<atadora_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>,<ibmoovin1@yahoo.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>,<marakuch@yahoo.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>,<charmednyangel@yahoo.com>,<charmedofmoon@yahoo.com>,<charmedon1jc@yahoo.com>,<charmedon420@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>,<babyblow@bellsouth.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.net>, 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>,<khedkar1@bellsouth.net>,<khedkar@bellsouth.net>,<khedland1@bellsouth.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>,<ericaxox@bellsouth.net>,<ericay@bellsouth.net>,<ericayala@bellsouth.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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_girl1965@yahoo.com>,<va_girl1966@yahoo.com>,<va_girl2002@yahoo.com>,<va_girl23@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.net>, size=20373, class=0, nrcpts=1, msgid=<000d01c6ef35$730b3fa0$ecf0eadd@lfa95747969fe4>, 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.com>, 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.com. [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@bellsouth.net>,<oikawak@bellsouth.net>,<oikaway@bellsouth.net>,<oike@bellsouth.net>, 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>,<clavijoo@bellsouth.net>,<clavijos@bellsouth.net>,<clavillej@bellsouth.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>,<shibunnie30@bellsouth.net>,<shic@bellsouth.net>,<shica23@bellsouth.net>,<shicahardy@bellsouth.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.net>,<chandrj@bellsouth.net>,<chandruk@bellsouth.net>,<chands@bellsouth.net>,<chandu@bellsouth.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.net>,<servicio@bellsouth.net>,<servicios.personal@bellsouth.net>,<servicios@bellsouth.net>,<servicom@bellsouth.net>, 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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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>,<bigbrinc@bellsouth.net>,<bigbrit@bellsouth.net>,<bigbritt@bellsouth.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@bellsouth.net>,<himmoando@bellsouth.net>,<himmoarcr@bellsouth.net>,<himmoered@bellsouth.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.net>, 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.net>,<brooks1119@bellsouth.net>,<brooks1124@bellsouth.net>,<brooks1128@bellsouth.net>,<brooks115@bellsouth.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.net>,<insidep@bellsouth.net>,<insider1@bellsouth.net>,<insider@bellsouth.net>,<insiders@bellsouth.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>,<norris34@bellsouth.net>,<norris3@bellsouth.net>,<norris46@bellsouth.net>,<norris4@bellsouth.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.net>, 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>,<cheryl06@bellsouth.net>,<cheryl1012@bellsouth.net>,<cheryl10209@bellsouth.net>,<cheryl10@bellsouth.net>,<cheryl1@bellsouth.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@bellsouth.net>,<jmf50@bellsouth.net>,<jmf515@bellsouth.net>,<jmf54@bellsouth.net>,<jmf5@bellsouth.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@bellsouth.net>,<boyd3777@bellsouth.net>,<boyd37@bellsouth.net>,<boyd3819@bellsouth.net>,<boyd38@bellsouth.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>,<aileen23@bellsouth.net>,<aileen25@bellsouth.net>,<aileen317@bellsouth.net>,<aileen3240@bellsouth.net>,<aileen3@bellsouth.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@bellsouth.net>,<walker_b@bellsouth.net>,<walker_d@bellsouth.net>,<walker_g@bellsouth.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@bellsouth.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>,<oi8u2@bellsouth.net>,<oiada@bellsouth.net>,<oianko@bellsouth.net>,<oiartza@bellsouth.net>,<oib@bellsouth.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.net>, 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>,<mheard@rdu.bellsouth.net>,<mheath@rdu.bellsouth.net>,<mhenderson@rdu.bellsouth.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>,<gkhunt@bellsouth.net>,<gkhunter@bellsouth.net>,<gkhurst@bellsouth.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>,<jmf1972@bellsouth.net>,<jmf2509@bellsouth.net>,<jmf2@bellsouth.net>, 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@bellsouth.net>,<cmindians@bellsouth.net>,<cmindigo@bellsouth.net>,<cmindler@bellsouth.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.net>,<comlease@bellsouth.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@bellsouth.net>,<hrbla@bellsouth.net>,<hrblaw@bellsouth.net>,<hrblock@bellsouth.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_sparkling_dildo@yahoo.com>,<kiza_zg@yahoo.com>,<kizaaaaaaaaaaaaa@yahoo.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>,<crcole5687@bellsouth.net>,<crcole@bellsouth.net>,<crcoleman@bellsouth.net>,<crcollings@bellsouth.net>, 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.net>,<cmcoh@bellsouth.net>,<cmcohen@bellsouth.net>,<cmcokmedin@bellsouth.net>,<cmcole@bellsouth.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>,<fansmith@bellsouth.net>,<fansp@bellsouth.net>,<fansports10@bellsouth.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>,<sucker1@bellsouth.net>,<sucker@bellsouth.net>,<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.net>,<cypyret@bellsouth.net>,<iudhforl@bellsouth.net>, 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@bellsouth.net>,<poker@bellsouth.net>,<poker_21@bellsouth.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@bellsouth.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>,<jdhuffine2001@yahoo.com>,<jdhuffman5@yahoo.com>,<jdhuffsd@yahoo.com>,<jdhufgibvhui@yahoo.com>, 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.com>,<im_too_hot_123@yahoo.com>,<im_too_hot_for_you_2002@yahoo.com>,<im_too_hott_4_u@yahoo.com>,<im_too_hott_for_you65f@yahoo.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>,<ken69692005@yahoo.com>,<ken697669@yahoo.com>,<ken6977@yahoo.com>,<ken6990@yahoo.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>,<ab771@bellsouth.net>,<ab780@bellsouth.net>,<ab789@bellsouth.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.com., version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, 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.com. [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>,<convas2001@yahoo.com>,<convas21@yahoo.com>,<convas@yahoo.com>,<convasa@yahoo.com>, 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@yahoo.com>,<lonelygu@yahoo.com>,<lonelyguhfoeva@yahoo.com>,<lonelyguitar1021@yahoo.com>,<lonelyguitarist41@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>,<bcleary412@yahoo.com>,<bcleary4@yahoo.com>,<bcleary56@yahoo.com>,<bcleary750@yahoo.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_apoklaypse@yahoo.com>,<x_apollyon@yahoo.com>,<x_apollyon_x@yahoo.com>,<x_appalachaian_lady_x@yahoo.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>,<bowow66040@yahoo.com>,<bowow69@yahoo.com>,<bowow768@yahoo.com>,<bowow78@yahoo.com>, 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@bellsouth.net>,<bhi4569732@bellsouth.net>,<bhi69@bellsouth.net>,<bhi7900350@bellsouth.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>,<carted34@bellsouth.net>,<cartedm@bellsouth.net>,<carteds@bellsouth.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@bellsouth.net>,<famrod@bellsouth.net>,<famrogers@bellsouth.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>,<franklij@bellsouth.net>,<franklil@bellsouth.net>,<franklima@bellsouth.net>,<franklin@bellsouth.net>, 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>,<dstriewski@yahoo.com>,<dstrifeh24@yahoo.com>,<dstright@yahoo.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@bellsouth.net>,<wjohnsey@bellsouth.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>,<kaykayphallus@yahoo.com>,<kaykaypro@yahoo.com>,<kaykaypw@yahoo.com>,<kaykayqtxoxo@yahoo.com>, 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@yahoo.com>,<romanticviolet@yahoo.com>,<romanticvisions@yahoo.com>,<romanticvungtau@yahoo.com>,<romanticwalksindmoonlight@yahoo.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.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[6709]: k9BBcaic003802: to=<elrio@msy.bellsouth.net>, 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.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: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_161@yahoo.com>,<saman_16_16@yahoo.com>,<saman_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>,<brodrdain@bellsouth.net>,<brodrfen@bellsouth.net>,<brodri24@bellsouth.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.everyone.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>,<autumn55338@yahoo.com>,<autumn5577@yahoo.com>,<autumn55804@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>,<greg5166@bellsouth.net>,<greg51@bellsouth.net>, 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>,<ladybird@mia.bellsouth.net>,<ladybug@mia.bellsouth.net>,<ladyd@mia.bellsouth.net>,<ladydi@mia.bellsouth.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.com. [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.bellsouth.net>,<jtitus@mem.bellsouth.net>,<jtrig@mem.bellsouth.net>,<jtrust@mem.bellsouth.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.net>, 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.net>,<enon@rdu.bellsouth.net>,<enona@rdu.bellsouth.net>,<enor@rdu.bellsouth.net>,<enorris@rdu.bellsouth.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



[+][-]10/15/06 11:21 PM, ID: 17736716

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Linux Networking
Sign Up Now!
Solution Provided By: Nopius
Participating Experts: 1
Solution Grade: A
 
 
[+][-]10/15/06 11:26 PM, ID: 17736731

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/15/06 11:32 PM, ID: 17736752

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/16/06 08:32 PM, ID: 17744711

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/16/06 08:35 PM, ID: 17744721

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/16/06 09:36 PM, ID: 17744869

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/16/06 10:58 PM, ID: 17745053

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/16/06 11:14 PM, ID: 17745106

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/16/06 11:48 PM, ID: 17745229

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/11/06 12:56 PM, ID: 17922597

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]12/03/06 03:05 PM, ID: 18064952

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]12/09/06 03:30 AM, ID: 18107279

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74