[PATCH] lib: Fix name reordering to handle commas without spaces
authorAdam Wolfe Gordon <awg+notmuch@xvx.ca>
Wed, 30 Jan 2013 23:28:30 +0000 (16:28 +1700)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:53:27 +0000 (09:53 -0800)
d0/c25f9dfe1df9ee67b2a78b1a56441825cd667a [new file with mode: 0644]

diff --git a/d0/c25f9dfe1df9ee67b2a78b1a56441825cd667a b/d0/c25f9dfe1df9ee67b2a78b1a56441825cd667a
new file mode 100644 (file)
index 0000000..f106d9a
--- /dev/null
@@ -0,0 +1,83 @@
+Return-Path: <awg@lagos.xvx.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 25FCE431FAF\r
+       for <notmuch@notmuchmail.org>; Wed, 30 Jan 2013 15:38:27 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id FAaJzPWGC3t3 for <notmuch@notmuchmail.org>;\r
+       Wed, 30 Jan 2013 15:38:25 -0800 (PST)\r
+X-Greylist: delayed 581 seconds by postgrey-1.32 at olra;\r
+       Wed, 30 Jan 2013 15:38:25 PST\r
+Received: from smtp-out-05.shaw.ca (smtp-out-05.shaw.ca [64.59.134.13])\r
+       by olra.theworths.org (Postfix) with ESMTP id CDA7F431FAE\r
+       for <notmuch@notmuchmail.org>; Wed, 30 Jan 2013 15:38:25 -0800 (PST)\r
+X-Cloudmark-SP-Filtered: true\r
+X-Cloudmark-SP-Result: v=1.1 cv=/OolT88hxzZB4/D8S1pLLnpaRVcdzwgG3HupJc0czqk=\r
+       c=1 sm=1\r
+       a=flFsAdDc1OsA:10 a=BLceEmwcHowA:10 a=gumk1giGF0obp6xRQyl7Yg==:17\r
+       a=A1X0JdhQAAAA:8 a=m7NE1Zox25VmYJf3OS4A:9 a=9Mll2h4CvCUA:10\r
+       a=Y6qChIQXU1wA:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117\r
+Received: from unknown (HELO lagos.xvx.ca) ([68.150.39.45])\r
+       by smtp-out-05.shaw.ca with ESMTP; 30 Jan 2013 16:28:41 -0700\r
+Received: by lagos.xvx.ca (Postfix, from userid 1000)\r
+       id E48B4800214E; Wed, 30 Jan 2013 16:28:37 -0700 (MST)\r
+From: Adam Wolfe Gordon <awg+notmuch@xvx.ca>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH] lib: Fix name reordering to handle commas without spaces\r
+Date: Wed, 30 Jan 2013 16:28:30 -0700\r
+Message-Id: <1359588510-20106-1-git-send-email-awg+notmuch@xvx.ca>\r
+X-Mailer: git-send-email 1.7.9.5\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 30 Jan 2013 23:38:27 -0000\r
+\r
+Notmuch automatically re-orders names of the format "Last, First" to\r
+"First Last" when the associated email address is\r
+First.Last@example.com. But, if a name is of the format "Last,First"\r
+then notmuch will format the name as "irst Last". Fix this by checking\r
+for a space when doing the reordering.\r
+---\r
+ lib/thread.cc |    9 +++++++--\r
+ 1 file changed, 7 insertions(+), 2 deletions(-)\r
+\r
+diff --git a/lib/thread.cc b/lib/thread.cc\r
+index e976d64..005b355 100644\r
+--- a/lib/thread.cc\r
++++ b/lib/thread.cc\r
+@@ -186,8 +186,13 @@ _thread_cleanup_author (notmuch_thread_t *thread,\r
+     if (comma && strlen(comma) > 1) {\r
+       /* let's assemble what we think is the correct name */\r
+       lname = comma - author;\r
+-      fname = strlen(author) - lname - 2;\r
+-      strncpy(clean_author, comma + 2, fname);\r
++      if (*(comma + 1) == ' ') {\r
++          fname = strlen(author) - lname - 2;\r
++          strncpy(clean_author, comma + 2, fname);\r
++      } else {\r
++          fname = strlen(author) - lname - 1;\r
++          strncpy(clean_author, comma + 1, fname);\r
++      }\r
+       *(clean_author+fname) = ' ';\r
+       strncpy(clean_author + fname + 1, author, lname);\r
+       *(clean_author+fname+1+lname) = '\0';\r
+-- \r
+1.7.9.5\r
+\r