···11+2017-12-15 12:09:42 -0800 Kevin McCarthy <kevin@8t8.us> (9eedfd4e)
22+33+ * Fix s/mime certificate deletion bug. (closes #3982)
44+55+ Commit c1bcf4ba exposed a bug in the s/mime encryption code. It was
66+ errorneously calling unlink on the list of generated cert files to
77+ use.
88+99+ Prior to that commit, the list had an initial space, which apparently
1010+ made the unlink fail. After that commit, encrypting to a single
1111+ certificate would end up deleting the certificate.
1212+1313+ Remove the calls to unlink the cert file. Add some missing cleanup if
1414+ the call to openssl fails.
1515+1616+M smime.c
1717+1818+2017-12-14 16:16:27 -0800 Kevin McCarthy <kevin@8t8.us> (841f7101)
1919+2020+ * Update mkchangelog.sh to use git.
2121+2222+ The output isn't quite as nice as the hg generated version, but is
2323+ close.
2424+2525+ With Mercurial, and now Git, I'm not sure of the usefulness of
2626+ maintaining a ChangeLog file in the repos, but that is another
2727+ discussion.
2828+2929+D hg-changelog-map
3030+M mkchangelog.sh
3131+3232+2017-12-12 19:09:42 -0800 Kevin McCarthy <kevin@8t8.us> (ecbd86c9)
3333+3434+ * Remove hg-commit and Makefile commit target.
3535+3636+ I haven't ever used this script, and we only update the ChangeLog
3737+ during releases now.
3838+3939+ doc/devel-notes already mentions running check_sec.sh. Add a mention
4040+ of the 'make validate' target too.
4141+4242+M Makefile.am
4343+M doc/devel-notes.txt
4444+D hg-commit
4545+4646+2017-12-12 18:17:10 -0800 Kevin McCarthy <kevin@8t8.us> (a4d08d25)
4747+4848+ * Minor tweaks to the version.sh fixes from last commit.
4949+5050+ Add back a check for whether the git program exists.
5151+5252+ Don't show distance if it is zero.
5353+5454+ Remove the dirty flag.
5555+5656+ Remove the initial "g" prefix from the commitid. This is added by git
5757+ describe, but I don't think we need to preserve it.
5858+5959+M version.sh
6060+6161+2017-12-11 21:46:30 -0500 Aaron Schrab <aaron+mutt@schrab.com> (8648db83)
6262+6363+ * Change version.sh to manually compute version and distance.
6464+6565+ In some cases `git describe` gives bizarre results (see URL below),
6666+ instead get the highest version-numbered tag contained in HEAD then
6767+ count the number of commits that aren't included in it.
6868+6969+ https://public-inbox.org/git/20161205232712.GA23868@pug.qqx.org/
7070+7171+M version.sh
7272+7373+2017-12-10 20:03:30 -0800 Kevin McCarthy <kevin@8t8.us> (7b65f780)
7474+7575+ * Update some of the documentation to refer to git.
7676+7777+ Also update the repos URL.
7878+7979+M COPYRIGHT
8080+M README
8181+M doc/devel-notes.txt
8282+8383+2017-12-03 17:55:59 -0800 Kevin McCarthy <kevin@8t8.us> (6df931c8)
8484+8585+ * Convert version.sh to work with git.
8686+8787+ Use the built-in `git describe` to get the tag, distance, and
8888+ revision id.
8989+9090+M version.sh
9191+9292+2017-12-02 19:27:14 -0800 Kevin McCarthy <kevin@8t8.us> (0ad4c11d)
9393+9494+ * Convert to .gitignore file.
9595+9696+A .gitignore
9797+D .hgignore
9898+9999+2017-09-30 19:15:08 -0700 Kevin McCarthy <kevin@8t8.us> (1f4a6c67)
100100+101101+ * Fix address group terminator "exact address" printing to display trailing semicolon.
102102+103103+ The exact-address handling for comma and colon are different because
104104+ those are added outside the exact-address printing.
105105+106106+ The semicolon needs to be inside the address->val field of the address
107107+ group terminator.
108108+109109+M rfc822.c
110110+111111+2017-09-26 19:44:11 -0700 Kevin McCarthy <kevin@8t8.us> (0bcb77a6)
112112+113113+ * Fix uses of context->changed as a counter.
114114+115115+ The first was in mx_update_tables(), but only when "not committing".
116116+ This is used by mh/maildir during an "occult" update, and in imap when
117117+ expunging the mailbox. It meant to simply turn on changed when a
118118+ single changed header is seen.
119119+120120+ The second use was in imap_sync_message_for_copy(). Previously this
121121+ was used for a server side copy/save, but is now also used for
122122+ fast-trash copying. Remove the code that was trying to decrement the
123123+ counter: this function is not capable of properly setting a status
124124+ bit.
125125+126126+M imap/imap.c
127127+M mx.c
128128+129129+2017-09-23 11:40:44 -0700 Kevin McCarthy <kevin@8t8.us> (b333df6d)
130130+131131+ * mutt-1.9.1 signed
132132+133133+M .hgsigs
134134+135135+2017-09-23 11:39:54 -0700 Kevin McCarthy <kevin@8t8.us> (5e007dac)
136136+137137+ * Added tag mutt-1-9-1-rel for changeset 869633ef393e
138138+139139+M .hgtags
140140+141141+2017-09-23 11:39:45 -0700 Kevin McCarthy <kevin@8t8.us> (8473efa7)
142142+143143+ * automatic post-release commit for mutt-1.9.1
144144+145145+M ChangeLog
146146+M UPDATING
147147+M VERSION
11482017-09-22 11:14 -0700 Kevin McCarthy <kevin@8t8.us> (19c81a140c6e)
21493150 * imap/imap.c: Add missing IMAP_CMD_POLL flag in imap buffy check.