+ doc update: clarify what attach_charset does (Closes: 502628)
* patches/upstream/504530-stunnel-account_hook-doc.patch
+ doc update: mention account-hook in the docs for $tunnel (Closes: 504530)
+ * patches/upstream/530887-dovecot-imap.patch
+ + fixes two problems with subdirs on dovecot (Closes: 530671, 530887)
-- Antonio Radici <antonio@dyne.org> Tue, 26 May 2009 23:42:51 +0100
.B mutt_dotlock
--- a/init.h
+++ b/init.h
-@@ -2867,7 +2867,7 @@
+@@ -2874,7 +2874,7 @@
** smtp[s]://[user[:pass]@]host[:port]/
** .te
** .pp
upstream/350957-postponed-to-bcc.patch
upstream/502628-attach_charset-doc.patch
upstream/504530-stunnel-account_hook-doc.patch
+upstream/530887-dovecot-imap.patch
misc/hyphen-as-minus.patch
misc/manpage-typos.patch
--- /dev/null
+--- a/imap/util.c
++++ b/imap/util.c
+@@ -393,19 +393,19 @@
+ size_t plen)
+ {
+ int i = 0;
+- char delim;
++ char delim = '\0';
+
+ if (idata)
+ delim = idata->delim;
+- else if (ImapDelimChars && ImapDelimChars[0])
+- delim = ImapDelimChars[0];
+- else
+- delim = '/';
+
+ while (mailbox && *mailbox && i < plen - 1)
+ {
+- if (strchr(ImapDelimChars, *mailbox) || *mailbox == delim)
++ if ((ImapDelimChars && strchr(ImapDelimChars, *mailbox))
++ || *mailbox == delim)
+ {
++ /* use connection delimiter if known. Otherwise use user delimiter */
++ if (!idata)
++ delim = *mailbox;
+ while (*mailbox &&
+ (strchr(ImapDelimChars, *mailbox) || *mailbox == delim))
+ mailbox++;