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 0a89e0ab Add reply_to secretary where secretary is on cc
0a89e0ab is described below
commit 0a89e0ab2f930ceeaa7a7090b3ce2303392e9998
Author: Sebb <[email protected]>
AuthorDate: Wed Jul 16 00:55:16 2025 +0100
Add reply_to secretary where secretary is on cc
---
www/secretary/workbench/views/actions/ccla.json.rb | 1 +
www/secretary/workbench/views/actions/generic_reject.json.rb | 1 +
www/secretary/workbench/views/actions/grant.json.rb | 1 +
www/secretary/workbench/views/actions/icla2.json.rb | 1 +
www/secretary/workbench/views/actions/incomplete.json.rb | 1 +
www/secretary/workbench/views/actions/pubkey.json.rb | 1 +
www/secretary/workbench/views/actions/resubmit.json.rb | 1 +
www/secretary/workbench/views/actions/withdrawal-request.json.rb | 1 +
8 files changed, 8 insertions(+)
diff --git a/www/secretary/workbench/views/actions/ccla.json.rb
b/www/secretary/workbench/views/actions/ccla.json.rb
index 0af1730c..2e19c91b 100644
--- a/www/secretary/workbench/views/actions/ccla.json.rb
+++ b/www/secretary/workbench/views/actions/ccla.json.rb
@@ -83,6 +83,7 @@ task "email #@email" do
mail = message.reply(
subject: @document,
from: @from,
+ reply_to: '[email protected]',
to: "#{@contact.inspect} <#{@email}>",
cc: [
'[email protected]',
diff --git a/www/secretary/workbench/views/actions/generic_reject.json.rb
b/www/secretary/workbench/views/actions/generic_reject.json.rb
index 3d2ad20b..8afe58e3 100644
--- a/www/secretary/workbench/views/actions/generic_reject.json.rb
+++ b/www/secretary/workbench/views/actions/generic_reject.json.rb
@@ -17,6 +17,7 @@ task "email #{message.from}" do
@email = message.from
mail = message.reply(
from: @from,
+ reply_to: '[email protected]',
cc: [
'[email protected]',
(@pmc.private_mail_list if @pmc), # copy pmc
diff --git a/www/secretary/workbench/views/actions/grant.json.rb
b/www/secretary/workbench/views/actions/grant.json.rb
index 5a945a65..dedf1542 100644
--- a/www/secretary/workbench/views/actions/grant.json.rb
+++ b/www/secretary/workbench/views/actions/grant.json.rb
@@ -77,6 +77,7 @@ task "email #@email" do
mail = message.reply(
subject: @document,
from: @from,
+ reply_to: '[email protected]',
to: "#{@name.inspect} <#{@email}>",
cc: [
'[email protected]',
diff --git a/www/secretary/workbench/views/actions/icla2.json.rb
b/www/secretary/workbench/views/actions/icla2.json.rb
index 808f2298..417b5374 100644
--- a/www/secretary/workbench/views/actions/icla2.json.rb
+++ b/www/secretary/workbench/views/actions/icla2.json.rb
@@ -181,6 +181,7 @@ task "email #{@email}" do
mail = message.reply(
subject: "ICLA for #{@pubname}",
from: @from,
+ reply_to: '[email protected]',
to: "#{@pubname.inspect} <#{@email}>",
cc: cc,
body: template('icla2.erb')
diff --git a/www/secretary/workbench/views/actions/incomplete.json.rb
b/www/secretary/workbench/views/actions/incomplete.json.rb
index 8e29c2a8..1e55530f 100644
--- a/www/secretary/workbench/views/actions/incomplete.json.rb
+++ b/www/secretary/workbench/views/actions/incomplete.json.rb
@@ -51,6 +51,7 @@ task "email #{message.from}" do
@other_items = other_items.join("\n")
mail = message.reply(
from: @from,
+ reply_to: '[email protected]',
cc: [
'[email protected]',
(@pmc.private_mail_list if @pmc), # copy pmc
diff --git a/www/secretary/workbench/views/actions/pubkey.json.rb
b/www/secretary/workbench/views/actions/pubkey.json.rb
index 7d0e0fbb..6a2daf43 100644
--- a/www/secretary/workbench/views/actions/pubkey.json.rb
+++ b/www/secretary/workbench/views/actions/pubkey.json.rb
@@ -17,6 +17,7 @@ task "email #{message.from}" do
@email = message.from
mail = message.reply(
from: @from,
+ reply_to: '[email protected]',
cc: [
'[email protected]',
(@pmc.private_mail_list if @pmc), # copy pmc
diff --git a/www/secretary/workbench/views/actions/resubmit.json.rb
b/www/secretary/workbench/views/actions/resubmit.json.rb
index bd4d924e..0c0d24da 100644
--- a/www/secretary/workbench/views/actions/resubmit.json.rb
+++ b/www/secretary/workbench/views/actions/resubmit.json.rb
@@ -21,6 +21,7 @@ task "email #{message.from}" do
@cttee = "Apache #{@pmc.display_name} PMC" if @pmc
mail = message.reply(
from: @from,
+ reply_to: '[email protected]',
cc: [
'[email protected]',
(@pmc.private_mail_list if @pmc), # copy pmc
diff --git a/www/secretary/workbench/views/actions/withdrawal-request.json.rb
b/www/secretary/workbench/views/actions/withdrawal-request.json.rb
index f83e6ded..f4d9b818 100644
--- a/www/secretary/workbench/views/actions/withdrawal-request.json.rb
+++ b/www/secretary/workbench/views/actions/withdrawal-request.json.rb
@@ -61,6 +61,7 @@ task "email #{message.from}" do
mail = message.reply(
subject: summary,
from: @from,
+ reply_to: '[email protected]',
to: "#{@name.inspect} <#{message.from}>",
cc: '[email protected]',
body: template('withdrawal-request.erb')