pls ignore this email.
Thanks, Luan Shengde
On Thu, Jan 14, 2021 at 11:22:52AM +0800, Luan Shengde wrote:
daily timing work: reset email rate limit queues everyday at 00:00
Signed-off-by: Luan Shengde shdluan@163.com
lib/mail-post/email_init.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 lib/mail-post/email_init.rb
diff --git a/lib/mail-post/email_init.rb b/lib/mail-post/email_init.rb new file mode 100755 index 0000000..d3f8323 --- /dev/null +++ b/lib/mail-post/email_init.rb @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. +# frozen_string_literal: true
+require 'rufus-scheduler' +require 'redis'
+redis = Redis.new(host: REDIS_HOST, port: REDIS_PORT) +email_init = Rufus::Scheduler.new
+# Timing work for email counting everyday. +# the email counts queues will be reset everyday +# to ensure can send mail in the new day to user. +email_init.cron '0 0 * * *' do
- redis.del 'email_in_limit'
- redis.del 'email_out_limit'
+end
2.23.0