[volunteers] Google started refusing mail delivery from us

Rick Moen rick at linuxmafia.com
Wed Nov 23 22:44:06 PST 2016


GMail is refusing mail from lists.svlug.org for 119
svlug at lists.svlug.org subscribers who are on GMail, with the result that
Mailman disabled those subscriptions this evening.  (Update:  In the
time I wrote this, another 268 GMail or Googlemail subscribers likewise
disabled, same reason).  See the 119 'Subscription disabled' notices
below.

(This mailing list may follow soon, depending on how quickly my fixes
take effect.)

This reflects lists.svlug.org encountering a change in Google's antispam
policy some days ago.  How many days?  Hmm, looking up Mailman's
settings for the svlug at lists.svlug.org list, five days of traffic
generating hard bounces must happen.  Archives say we've had traffic
Tuesday (today), Monday, Wednesday the 16th, Tuesday the 15th, Wednesday
the 2nd, Tuesday the 1st.  So, probably right around November 1st was
rollout day.  (Either that, or someone recently enabled IPV6 e-mail
service in Exim on lists.svlug.org and didn't tell anyone else.  More
about that below.  

The 550-5.7.1 Delivery Status Notification (DSN) text, and the
explanation at the provided URL, are a bit misleading.  After reading a
bunch of blog posts and coverage at serverfault.com, etc., I gather that
Google's rule for GMail is:  If your sending MTA has IPV6 transport,
your DNS must have an AAAA record (IPV6 forward lookup) for it and a
matching PTR record (reverse lookup).

https://tanguy.ortolo.eu/blog/article109/google-ipv6-smtp-restrictions
https://blog.zensoftware.co.uk/2016/05/13/gmail-blocking-mdaemon-email-arriving-via-ipv6/
http://serverfault.com/questions/732187/sendmail-can-not-deliver-to-gmail-ipv6-sending-guidelines-regarding-ptr-record
(many others)

GMail's DSN cites our (lists.svlug.org's) IPV6 address as 2605:2700:0:2::4713:900d .  
That is correct, as verified by direct inspection on the lists.svlug.org
host:

root at lists:~# ip -6 addr list 
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qlen 1000
    inet6 2605:2700:0:2::4713:900d/64 scope global 
       valid_lft forever preferred_lft forever
    inet6 fe80::a800:ff:fe13:900d/64 scope link 
       valid_lft forever preferred_lft forever
root at lists:~# 

Checking AAAA forward-lookup record on primary nameserver:

$ dig -t AAAA lists.svlug.org. @ns1.svlug.org. +short
2605:2700:0:2::4713:900d
$

The AAAA record for 'lists.svlug.org' is thus proved correct.  (It
resolves to the desired IPV6 address.)

Checking for matching PTR record:

$ dig -x 2605:2700:0:2::4713:900d       

; <<>> DiG 9.8.1-P1 <<>> -x 2605:2700:0:2::4713:900d
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 56937
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;d.0.0.9.3.1.7.4.0.0.0.0.0.0.0.0.2.0.0.0.0.0.0.0.0.0.7.2.5.0.6.2.ip6.arpa. IN PTR

;; AUTHORITY SECTION:
0.0.7.2.5.0.6.2.ip6.arpa. 3182	IN	SOA	ns.prgmr.com. lsc.prgmr.com. 2012076924 3600 900 3600000 3600

;; Query time: 0 msec
;; SERVER: 74.207.241.5#53(74.207.241.5)
;; WHEN: Wed Nov 23 20:13:55 2016
;; MSG SIZE  rcvd: 142

$


No PTR for that IPV6 address.  (Note 'NXDOMAIN'.)
 

According to this blog post among others, Google/GMail rolled out this
reject rule around _2013_.
https://tanguy.ortolo.eu/blog/article109/google-ipv6-smtp-restrictions
So, it is extremely unclear to me what caused this reject rule to hit us
_now_.  So, that's a mstery.

I can see three ways to make the symptom go away.  I propose to do both
#1 and #2 (reserving #3 as the big hammer if needed):

Solution 1.  Change Exim to make it IPV4-only for outbound SMTP.
Solution 2.  Request that prgmr.com add a PTR for IP 2605:2700:0:2::4713:900d to
             the reverse DNS zone.
Solution 3.  Remove IPV6 support entirely from the lists.svlug.org virthost.


Solution #1 first:

As a reminder, Exim is one of the lists.svlug.org services with legacy
code/confs in a chroot, the others being Mailman and spamassassin.
(There might be other legacy shit.  Knock yourself out, investigating,
or read the goddamned docs.)

The in-use Exim config is /var/lib/exim4/config.autogenerated, which is
-- surprise! -- autogenerated, based on stuff in /etc/exim4, whenever
you run /usr/sbin/update-exim4.conf .  A critical part of the input set
for that script is /etc/exim4/update-exim4.conf.conf, which despite the
bizarre name is a conffile controlling the behaviour of
/usr/sbin/update-exim4.conf .  It currently includes:  

# Are we listening on port 25, and if so, which interfaces?
#dc_listenonpublic='127.0.0.1:192.168.1.2:10.1.5.3'
dc_listenonpublic=true


In other words, by default, Exim4 is binding to all interfaces including
the public IPV6 one.  We correct this by listing the loopback and IPV4
addresses explicitly, thus omitting the IPV6 one.

Once again, getting those IPs by direct inspection:

1: lo: <LOOPBACK,UP,10000> mtu 65536 qdisc noqueue 
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,10000> mtu 1500 qdisc pfifo_fast qlen 1000
    inet 71.19.144.13/24 brd 71.19.144.255 scope global eth0
       valid_lft forever preferred_lft forever
lists:/etc/exim4# 

So, we're making that stanza be:

#dc_listenonpublic='127.0.0.1:192.168.1.2:10.1.5.3'
#dc_listenonpublic=true
dc_listenonpublic='127.0.0.1:71.19.144.13'

Made safety copy of existing /var/lib/exim4/config.autogenerated in
/usr/local, and examined it.  As expected, it includes:  

# listen on all all interfaces?
# if local_interfaces is unset, we listen on all interfaces


(I also ran /usr/sbin/update-exim4.conf and made sure that
/var/lib/exim4/config.autogenerated is unchanged.)  After making 
the /etc/exim4/update-exim4.conf.conf change, re-ran update-exim4.conf.

diff /var/lib/exim4/config.autogenerated /usr/local/config.autogenerated 
output:

[null]

Well, that didn't do it.

Updating this line in /etc/exim4/update-exim4.conf.conf from
dc_local_interfaces=''
to
dc_local_interfaces='127.0.0.1:71.19.144.13'

Re-running /usr/sbin/update-exim4.conf .
Re-running the diff:

lists:/etc/exim4# diff /var/lib/exim4/config.autogenerated
/usr/local/config.autogenerated
309c309
< local_interfaces = 127.0.0.1:71.19.144.13
---
> # if local_interfaces is unset, we listen on all interfaces
lists:/etc/exim4# 

(Looking at the process table, it seems that running
/usr/sbin/update-exim4.conf restarted the Exim4 daemon.  I forgot it
would do that.

Sent test mail to test at lists.svlug.org.  Received a copy back.  There is
nothing in the envelope or regular SMTP headers talking about an IPV6
address, only the IPV4 one, though it might not be shown on a delivery
to my MTA, which is IPV4-only on an IPV4-only host.

Of course, I don't really know what GMail's reject rule tests for
_exactly_.  Could be it checks IPV6 DNS for all delivering MTAs that
declare IPV6 information during delivery, but instead it might triggered
somehow by the delivering host having IPV6 connectivity at a basic
network stack level.  I hope it's the former, otherwise Solution #1
wouldn't work.


I will set in motion Solution #2 by sending a PTR request to Sarah and
Luke at our friends and benefactors prgmr.com .  

And then, I'll re-enable Mailman delivery for hundreds of
GMail/Googlemail users, and then we'll see what happens.


I'd like Google, Inc. to please refund my evening wasted on this
mishegoss.


----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     kenobi at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diU-0000lz-Qr
	for <svlug-bounces+kenobi=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:26 -0800
X-Failed-Recipients: kenobi at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+kenobi=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diU-0000lz-Qr at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:26 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  kenobi at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . e70si4206719wmc.129 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     jeffgo888 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kp-Rr
	for <svlug-bounces+jeffgo888=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: jeffgo888 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+jeffgo888=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kp-Rr at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  jeffgo888 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . k9si4227339wmk.86 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     joe.jaszkowiak at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diU-0000m6-Sy
	for <svlug-bounces+joe.jaszkowiak=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:26 -0800
X-Failed-Recipients: joe.jaszkowiak at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+joe.jaszkowiak=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diU-0000m6-Sy at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:26 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  joe.jaszkowiak at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . t84si4235308wmt.86 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     heatxsink at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000ju-28
	for <svlug-bounces+heatxsink=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: heatxsink at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+heatxsink=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000ju-28 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  heatxsink at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . a128si35400672pfa.23 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     waiharoirungum at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000k7-4X
	for <svlug-bounces+waiharoirungum=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: waiharoirungum at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+waiharoirungum=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000k7-4X at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  waiharoirungum at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . p3si6756952pld.87 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     alireza.mashayekhi at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kX-MJ
	for <svlug-bounces+alireza.mashayekhi=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: alireza.mashayekhi at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+alireza.mashayekhi=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kX-MJ at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  alireza.mashayekhi at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . c5si32857902wjv.264 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     nuboon2age at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kf-Pi
	for <svlug-bounces+nuboon2age=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: nuboon2age at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+nuboon2age=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kf-Pi at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  nuboon2age at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . c74si4254437wme.33 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     7balaji at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kV-LH
	for <svlug-bounces+7balaji=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: 7balaji at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+7balaji=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kV-LH at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  7balaji at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . dh9si32940860wjc.125 - gsmtp

------ This is a copy of the message, including all the headers. ------
[...]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     oceansaliven at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kQ-JW
	for <svlug-bounces+oceansaliven=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: oceansaliven at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+oceansaliven=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kQ-JW at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  oceansaliven at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . i6si4249289wmf.38 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     rbaker9500 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000k6-4K
	for <svlug-bounces+rbaker9500=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: rbaker9500 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+rbaker9500=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000k6-4K at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  rbaker9500 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . y27si35337671pfj.161 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     hmscott at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kG-Bb
	for <svlug-bounces+hmscott=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: hmscott at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+hmscott=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kG-Bb at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  hmscott at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . zd10si24536820wjb.294 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:06 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     trussell at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000kH-Bv
	for <svlug-bounces+trussell=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: trussell at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+trussell=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000kH-Bv at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  trussell at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . t198si4276115wmd.13 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     kyle at freesoft.org
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fw-MW
	for <svlug-bounces+kyle=freesoft.org at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: kyle at freesoft.org
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+kyle=freesoft.org at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fw-MW at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  kyle at freesoft.org
    SMTP error from remote mailer after end of data:
    host aspmx.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . r12si35344169pfg.7 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip
]
----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     linuxusersgroupgh at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000g2-Mo
	for <svlug-bounces+linuxusersgroupgh=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: linuxusersgroupgh at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+linuxusersgroupgh=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000g2-Mo at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  linuxusersgroupgh at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . e21si25975879pgh.311 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     linuxhngg at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000g0-MD
	for <svlug-bounces+linuxhngg=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: linuxhngg at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+linuxhngg=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000g0-MD at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  linuxhngg at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . n5si13212956pgh.152 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     mohdsubhan at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000gO-Qf
	for <svlug-bounces+mohdsubhan=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: mohdsubhan at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+mohdsubhan=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000gO-Qf at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  mohdsubhan at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . b126si34186336pgc.125 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     psglinux at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000ga-Vj
	for <svlug-bounces+psglinux=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: psglinux at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+psglinux=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000ga-Vj at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  psglinux at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . v10si6095667pgc.217 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     ambuj.desktop at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000gb-05
	for <svlug-bounces+ambuj.desktop=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: ambuj.desktop at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+ambuj.desktop=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000gb-05 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  ambuj.desktop at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 61si6765119plq.302 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     mirko at buholzer.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000iU-IA
	for <svlug-bounces+mirko=buholzer.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: mirko at buholzer.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+mirko=buholzer.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000iU-IA at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  mirko at buholzer.com
    SMTP error from remote mailer after end of data:
    host aspmx.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . d7si6763781plj.257 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     pdc909 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000h1-Mo
	for <svlug-bounces+pdc909=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: pdc909 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+pdc909=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000h1-Mo at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  pdc909 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . c63si4221951wmf.97 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     bcobarrubia23 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000iZ-Jt
	for <svlug-bounces+bcobarrubia23=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: bcobarrubia23 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+bcobarrubia23=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000iZ-Jt at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  bcobarrubia23 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . a4si6754819pli.5 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     zeelog at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000iC-Cg
	for <svlug-bounces+zeelog=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: zeelog at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+zeelog=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000iC-Cg at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  zeelog at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . k11si2625217pgp.150 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     vk.raghavendra at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000iA-Be
	for <svlug-bounces+vk.raghavendra=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: vk.raghavendra at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+vk.raghavendra=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000iA-Be at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  vk.raghavendra at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . a91si6758121pld.50 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     mwendall at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000h2-Mu
	for <svlug-bounces+mwendall=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: mwendall at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+mwendall=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000h2-Mu at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  mwendall at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . h132si4204999wmd.145 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     prathapml at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000h6-NK
	for <svlug-bounces+prathapml=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: prathapml at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+prathapml=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000h6-NK at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  prathapml at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . w15si4230067wmw.89 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     orubens at undo-software.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diI-0000hb-RQ
	for <svlug-bounces+orubens=undo-software.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:14 -0800
X-Failed-Recipients: orubens at undo-software.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+orubens=undo-software.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diI-0000hb-RQ at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:14 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  orubens at undo-software.com
    SMTP error from remote mailer after end of data:
    host aspmx.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . o29si35364826pfk.197 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     gpope111 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000ij-Vb
	for <svlug-bounces+gpope111=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: gpope111 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+gpope111=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000ij-Vb at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  gpope111 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . i2si32949363wjw.89 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     penguinstudy at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diF-0000hM-Tg
	for <svlug-bounces+penguinstudy=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:11 -0800
X-Failed-Recipients: penguinstudy at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+penguinstudy=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diF-0000hM-Tg at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:11 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  penguinstudy at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . tc14si32846390wjb.136 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     nel242 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000gy-LO
	for <svlug-bounces+nel242=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: nel242 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+nel242=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000gy-LO at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  nel242 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . bd8si26015657wjb.101 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     binitamshah at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000hl-0F
	for <svlug-bounces+binitamshah=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: binitamshah at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+binitamshah=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000hl-0F at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  binitamshah at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . d23si6756788plj.286 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     rbrtsullivan5 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diE-0000gx-LK
	for <svlug-bounces+rbrtsullivan5=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:10 -0800
X-Failed-Recipients: rbrtsullivan5 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+rbrtsullivan5=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diE-0000gx-LK at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:10 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  rbrtsullivan5 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . io7si32849510wjb.58 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     yarish at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diK-0000io-39
	for <svlug-bounces+yarish=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:16 -0800
X-Failed-Recipients: yarish at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+yarish=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diK-0000io-39 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:16 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  yarish at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . i191si4249647wme.61 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     nocturnalwarz at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diJ-0000ie-Nj
	for <svlug-bounces+nocturnalwarz=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:15 -0800
X-Failed-Recipients: nocturnalwarz at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+nocturnalwarz=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diJ-0000ie-Nj at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:15 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  nocturnalwarz at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . r62si30937576pgr.192 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     mikerushford at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diK-0000it-T4
	for <svlug-bounces+mikerushford=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:16 -0800
X-Failed-Recipients: mikerushford at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+mikerushford=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diK-0000it-T4 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:16 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  mikerushford at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2a00:1450:4013:c06::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . ll4si11812421wjc.32 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     neel20 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diO-0000jH-KJ
	for <svlug-bounces+neel20=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:20 -0800
X-Failed-Recipients: neel20 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+neel20=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diO-0000jH-KJ at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:20 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  neel20 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . u21si35313614pgh.307 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     chitrakojhacns at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diO-0000jm-Py
	for <svlug-bounces+chitrakojhacns=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:20 -0800
X-Failed-Recipients: chitrakojhacns at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+chitrakojhacns=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diO-0000jm-Py at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:20 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  chitrakojhacns at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . f192si35324344pfa.60 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     bikle101 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diO-0000ja-Nh
	for <svlug-bounces+bikle101=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:20 -0800
X-Failed-Recipients: bikle101 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+bikle101=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diO-0000ja-Nh at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:20 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  bikle101 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 60si6761931ple.301 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     les.faby.78 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000js-1g
	for <svlug-bounces+les.faby.78=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: les.faby.78 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+les.faby.78=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000js-1g at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  les.faby.78 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . r13si6767891pli.327 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     al.linux.info at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diO-0000jQ-Lx
	for <svlug-bounces+al.linux.info=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:20 -0800
X-Failed-Recipients: al.linux.info at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+al.linux.info=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diO-0000jQ-Lx at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:20 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  al.linux.info at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . g80si35336094pfg.11 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     emg at edwardmgoldberg.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diP-0000jr-1I
	for <svlug-bounces+emg=edwardmgoldberg.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:21 -0800
X-Failed-Recipients: emg at edwardmgoldberg.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+emg=edwardmgoldberg.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diP-0000jr-1I at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:21 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  emg at edwardmgoldberg.com
    SMTP error from remote mailer after end of data:
    host ASPMX.L.GOOGLE.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . y4si35350594pgc.54 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     kamath.anil at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fV-GZ
	for <svlug-bounces+kamath.anil=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: kamath.anil at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+kamath.anil=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fV-GZ at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  kamath.anil at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 189si35352968pgi.82 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     cappy2112 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fj-Jm
	for <svlug-bounces+cappy2112=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: cappy2112 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+cappy2112=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fj-Jm at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  cappy2112 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . e6si6762699plj.245 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]


----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     tapio.tolvanen at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fK-C0
	for <svlug-bounces+tapio.tolvanen=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: tapio.tolvanen at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+tapio.tolvanen=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fK-C0 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  tapio.tolvanen at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 84si35340921pgg.198 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     paulz at ieee.org
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000ea-Cl
	for <svlug-bounces+paulz=ieee.org at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: paulz at ieee.org
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+paulz=ieee.org at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000ea-Cl at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  paulz at ieee.org
    SMTP error from remote mailer after end of data:
    host aspmx.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 33si6756890plg.145 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     linuxgeek4u at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fM-EC
	for <svlug-bounces+linuxgeek4u=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: linuxgeek4u at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+linuxgeek4u=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fM-EC at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  linuxgeek4u at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . x16si35345189pff.226 - gsmtp

------ This is a copy of the message, including all the headers. ------
[...]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     new2xen at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dy-4W
	for <svlug-bounces+new2xen=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: new2xen at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+new2xen=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dy-4W at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  new2xen at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . z96si6772125plh.236 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     diakkaml at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dz-45
	for <svlug-bounces+diakkaml=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: diakkaml at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+diakkaml=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dz-45 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  diakkaml at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . z102si6755944plh.253 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     charlieruss2128 at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fS-D4
	for <svlug-bounces+charlieruss2128=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: charlieruss2128 at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+charlieruss2128=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fS-D4 at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  charlieruss2128 at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . v11si35350110pfd.199 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     shreepadma.venugopalan at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fE-9S
	for <svlug-bounces+shreepadma.venugopalan=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: shreepadma.venugopalan at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+shreepadma.venugopalan=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fE-9S at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  shreepadma.venugopalan at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . b141si35357182pfb.177 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     validus at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000eY-Bh
	for <svlug-bounces+validus=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: validus at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+validus=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000eY-Bh at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  validus at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . f17si35344709pgi.11 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     jameskirk.taylor at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dn-2b
	for <svlug-bounces+jameskirk.taylor=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: Jameskirk.taylor at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+jameskirk.taylor=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dn-2b at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  Jameskirk.taylor at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . a62si35345659pfg.245 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     paul.franklin.smith at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dq-2l
	for <svlug-bounces+paul.franklin.smith=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: paul.franklin.smith at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+paul.franklin.smith=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dq-2l at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  paul.franklin.smith at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . u17si35332803pgo.250 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     jmsvalderrama at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000e5-5K
	for <svlug-bounces+jmsvalderrama=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: jmsvalderrama at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+jmsvalderrama=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000e5-5K at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  jmsvalderrama at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . c41si6765602plj.134 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     regex.fu at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000e7-5Z
	for <svlug-bounces+regex.fu=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: regex.fu at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+regex.fu=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000e7-5Z at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  regex.fu at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . n34si512728pld.250 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     linux.dnk at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000e4-5P
	for <svlug-bounces+linux.dnk=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: linux.dnk at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+linux.dnk=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000e4-5P at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  linux.dnk at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . h15si6756711pli.270 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     sherwinl at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9diD-0000fQ-Gz
	for <svlug-bounces+sherwinl=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:09 -0800
X-Failed-Recipients: sherwinl at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+sherwinl=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9diD-0000fQ-Gz at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:09 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  sherwinl at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . r62si30937145pgr.192 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     cyrus.sage at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dm-2L
	for <svlug-bounces+cyrus.sage=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: cyrus.sage at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+cyrus.sage=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dm-2L at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  cyrus.sage at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . b62si35373155pfl.65 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:15:05 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     bitsaddict at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dk-1h
	for <svlug-bounces+bitsaddict=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: bitsaddict at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+bitsaddict=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dk-1h at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  bitsaddict at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . w67si35319562pgb.145 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]

----- Forwarded message from mailman-owner at lists.svlug.org -----

Date: Wed, 23 Nov 2016 12:00:04 -0800
From: mailman-owner at lists.svlug.org
To: svlug-owner at lists.svlug.org
Subject: [Mailman-owner] Bounce action notification

This is a Mailman mailing list bounce action notice:

    List:       svlug
    Member:     allabtdata at gmail.com
    Action:     Subscription disabled.
    Reason:     Excessive or fatal bounces.
    


The triggering bounce notice is attached below.

Questions? Contact the Mailman site administrator at
mailman-owner at lists.svlug.org.

Received: from Debian-exim by mail.svlug.org with local (Exim 4.44 #1)
	id 1c9di8-0000dl-1i
	for <svlug-bounces+allabtdata=gmail.com at lists.svlug.org>;
	Wed, 23 Nov 2016 12:00:04 -0800
X-Failed-Recipients: allabtdata at gmail.com
Auto-Submitted: auto-generated
From: Mail Delivery System <Mailer-Daemon at svlug.org>
To: svlug-bounces+allabtdata=gmail.com at lists.svlug.org
Subject: Mail delivery failed: returning message to sender
Message-Id: <E1c9di8-0000dl-1i at mail.svlug.org>
Date: Wed, 23 Nov 2016 12:00:04 -0800

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  allabtdata at gmail.com
    SMTP error from remote mailer after end of data:
    host gmail-smtp-in.l.google.com [2607:f8b0:400e:c04::1a]:
    550-5.7.1 [2605:2700:0:2::4713:900d] Our system has detected that this message
    550-5.7.1 does not meet IPv6 sending guidelines regarding PTR records and
    550-5.7.1 authentication. Please review
    550-5.7.1  https://support.google.com/mail/?p=IPv6AuthError for more information
    550 5.7.1 . 68si22898268pga.235 - gsmtp

------ This is a copy of the message, including all the headers. ------
[snip]



More information about the volunteers mailing list