sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 57f196c1ad4c36fa68a97f549b3fd33261a7688a
parent 79f6994b79593bb3db2014ef4b0625efdc3f1ac4
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Thu, 24 Jan 2008 21:40:51 -0800

Merge branch 'rfc2047-name-fix' into next

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
@@ -21,7 +21,7 @@ class PersonManager
     File.open(@fn, "w") do |f|
       @@people.each do |email, p|
         next if p.email == p.name
-        next if p.email =~ /=/ # drop rfc2047-encoded, and lots of other useless emails. definitely a heuristic.
+        next if p.name =~ /=/ # drop rfc2047-encoded, and lots of other useless emails. definitely a heuristic.
         f.puts "#{p.email}: #{p.timestamp} #{p.name}"
       end
     end