You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2017/07/18 14:33:34 UTC

[whimsy] 01/02: fix reply to headers

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git

commit ec5de37b0a75f6ddadf4967a676260faeac9c14b
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Jul 18 10:30:17 2017 -0400

    fix reply to headers
---
 www/secretary/workbench/views/actions/icla.json.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/secretary/workbench/views/actions/icla.json.rb b/www/secretary/workbench/views/actions/icla.json.rb
index c5f1165..a65f0d0 100644
--- a/www/secretary/workbench/views/actions/icla.json.rb
+++ b/www/secretary/workbench/views/actions/icla.json.rb
@@ -148,9 +148,9 @@ task "email #@email" do
 
   # set Reply-To header to podling or pmc private mailing list 
   if @podling
-    mail.headers['Reply-To'] = @podling.private_mail_list
+    mail.header['Reply-To'] = @podling.private_mail_list
   elsif @pmc
-    mail.headers['Reply-To'] = "private@#{@pmc.mail_list}.apache.org"
+    mail.header['Reply-To'] = "private@#{@pmc.mail_list}.apache.org"
   end
 
   # echo email

-- 
To stop receiving notification emails like this one, please contact
"commits@whimsical.apache.org" <co...@whimsical.apache.org>.