This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new d17771b Must allow root emails to private@
d17771b is described below
commit d17771b3c0f7341e738b2a2af8e04457026663fa
Author: Sebb <[email protected]>
AuthorDate: Fri Jun 4 10:34:38 2021 +0100
Must allow root emails to private@
---
DEPLOYMENT.md | 1 +
tools/inactive.rb | 16 ++++++++++++++++
2 files changed, 17 insertions(+)
diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md
index 48f8b05..26d2881 100644
--- a/DEPLOYMENT.md
+++ b/DEPLOYMENT.md
@@ -110,6 +110,7 @@ and running - these are only needed for a new deployment.
* Subscribe `[email protected]` to
`[email protected]`.
* Subscribe `[email protected]` to `[email protected]`.
* Subscribe `[email protected]` to `[email protected]`.
+ * Subscribe `[email protected]` to
`[email protected]`.
* Add `[email protected]` to the `[email protected]`
alias.
* Verify that email can be sent to non-apache.org email addresses.
diff --git a/tools/inactive.rb b/tools/inactive.rb
new file mode 100755
index 0000000..a828993
--- /dev/null
+++ b/tools/inactive.rb
@@ -0,0 +1,16 @@
+#!/usr/bin/env ruby
+
+$LOAD_PATH.unshift '/srv/whimsy/lib'
+
+require 'whimsy/asf'
+
+ASF::Person.preload(%w(uid))
+cttees = ASF::Committee.load_committee_info
+cttees.each do |cttee|
+ cttee.info.each do |availid|
+ person = ASF::Person[availid]
+ if person.asf_member?.to_s.start_with? 'Deceased'
+ p [cttee.name,availid,person.asf_member?]
+ end
+ end
+end
\ No newline at end of file