sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit a0c7a9fed9f87a2e4c61f13b0a2da623c7f6fd8b
parent 3ef618fb2d32eea7101046409fd84daef976a671
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Wed, 19 Sep 2007 14:55:40 +0000

possibly fix email address mangling in the presence of commas

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@586 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/person.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/person.rb b/lib/sup/person.rb
@@ -114,7 +114,7 @@ class Person
 
   def full_address
     if @name && @email
-      if @name =~ /"/
+      if @name =~ /[",]/
         "#{@name.inspect} <#@email>" # escape quotes
       else
         "#@name <#@email>"