From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.81]) by mx.groups.io with SMTP id smtpd.web10.9202.1595930837222821865 for ; Tue, 28 Jul 2020 03:07:17 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=b6qbxjtb; spf=pass (domain: redhat.com, ip: 207.211.31.81, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1595930836; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/xD4W/ZkhHOwzS3xIZMkVoZWgMJ8YTVv+baFV5FuZ4E=; b=b6qbxjtbgWkLxkkfgJpWjClSxYG+xribA3imyMYrJZPtUR1L+ixY+Osdzimh3P2NG4wdDq S8TfrvHwkUoBFKek3nrp18kRH+bY5XjxZLME42JReyeiB3Dgf2gIPoNY7eOi+Kt4d7Nvpu XcWtdEl6hkGtOEiWslykLCpcNMapxT4= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-319-ZVnLEGINMBmOwQQuW7XE1w-1; Tue, 28 Jul 2020 06:07:12 -0400 X-MC-Unique: ZVnLEGINMBmOwQQuW7XE1w-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CCAFA18C63C0; Tue, 28 Jul 2020 10:07:09 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-113-229.ams2.redhat.com [10.36.113.229]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3C0875F1EA; Tue, 28 Jul 2020 10:07:05 +0000 (UTC) Subject: Re: [edk2-devel] [PATCH v12 00/46] SEV-ES guest support To: Tom Lendacky , devel@edk2.groups.io Cc: Brijesh Singh , Ard Biesheuvel , Eric Dong , Jordan Justen , Liming Gao , Michael D Kinney , Ray Ni , Andrew Fish , Anthony Perard , Benjamin You , Dandan Bi , Guo Dong , Hao A Wu , Jian J Wang , Julien Grall , Leif Lindholm , Maurice Ma References: <78601308-ff64-3af4-ffdd-2fccfd49f64a@redhat.com> <3890a4e7-7095-8570-a4b2-8e4cc6116b49@amd.com> From: "Laszlo Ersek" Message-ID: Date: Tue, 28 Jul 2020 12:07:04 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <3890a4e7-7095-8570-a4b2-8e4cc6116b49@amd.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 07/27/20 19:49, Tom Lendacky wrote: > Yes, I always get an error when I reach 40 emails: > > Reported error: 550 5.0.350 Remote server returned an error -> 500 We have > received more than 40 messages in 30 minutes from you. To guard against > autoresponder mail loops, we must reject additional messages from you > temporarily. Please try again later. > > So I usually have to wait a few hours and resend the last ones so they > make it to groups.io. Sigh. Phil found one way to deal with this non-interactively: see the "sendemail.smtpBatchSize" and "sendemail.smtpReloginDelay" git-config options. From git-send-email(1): --batch-size= Some email servers (e.g. smtp.163.com) limit the number emails to be sent per session (connection) and this will lead to a failure when sending many messages. With this option, send-email will disconnect after sending $ messages and wait for a few seconds (see --relogin-delay) and reconnect, to work around such a limit. You may want to use some form of credential helper to avoid having to retype your password every time this happens. Defaults to the sendemail.smtpBatchSize configuration variable. --relogin-delay= Waiting $ seconds before reconnecting to SMTP server. Used together with --batch-size option. Defaults to the sendemail.smtpReloginDelay configuration variable. That way the "second batch" should need no manual work, hopefully. Thanks Laszlo