]> granicus.if.org Git - mutt/commitdiff
Recheck capabilities after authentication (closes: #2837)
authorBrendan Cully <brendan@kublai.com>
Wed, 14 Mar 2007 20:26:47 +0000 (13:26 -0700)
committerBrendan Cully <brendan@kublai.com>
Wed, 14 Mar 2007 20:26:47 +0000 (13:26 -0700)
ChangeLog
imap/imap.c

index f31ccc454ec33995fa76e02edd16b4b204e21c22..e5e0a54965640650e112cc05db769bc0f62da81c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,41 @@
+2007-03-14 13:09 -0700  Christoph Berg  <cb@df7cb.de>  (cbacb14a837a)
+
+       * doc/mutt.man, main.c: mutt.man and mutt -h updates
+
+       the following patch documents mutt --, removes the reference to
+       flea, and generally updates the mutt.1 manpage.
+
+       (I removed -d from the SYNOPSIS part since it wasn't entirely
+       correct syntactically there and putting it elsewhere seems like
+       unnecessary clutter.)
+
+2007-03-14 12:58 -0700  Brendan Cully  <brendan@kublai.com>  (f20641ecca59)
+
+       * hcache.c: Always give realpath a shot at the hcache folder name.
+       Remove other hacks.
+
+2007-03-14 12:53 -0700  Rocco Rutte  <pdmef@gmx.net>  (18cd9834050d)
+
+       * hcache.c: hcache: prepend current dir to path for local folders If a
+       folder is local (i.e. stat() succeeds), prepend the current working
+       directory if necessary to always fully qualify the path. Otherwise
+       we may end up using different cache files for the same folder when
+       given relative paths. This closes #2845.
+
+2007-03-14 12:50 -0700  TAKIZAWA Takashi  <taki@luna.email.ne.jp>  (600b3466489c)
+
+       * help.c: Complete fix for #1503
+
+2007-03-14 12:39 -0700  Rado S  <regrado@web.de>  (ad2172897839)
+
+       * imap/imap.c: Let imap_conn_find have first crack at completion of
+       root
+
+2007-03-14 12:23 -0700  Brendan Cully  <brendan@kublai.com>  (bb43900e853f)
+
+       * imap/imap.c: Don't skip the last connection in
+       imap_complete_hosts
+
 2007-03-14 11:33 -0700  Rocco Rutte  <pdmef@gmx.net>  (09f73968d97a)
 
        * rfc822.c: Fix return value for rfc822_write_address() The strcat
index 2e5c0417b72b65bb9aa95be926c69c20a42d4108..ab8aad152ae6b72e120853a9477d9b8c09a8b8cf 100644 (file)
@@ -376,6 +376,8 @@ IMAP_DATA* imap_conn_find (const ACCOUNT* account, int flags)
   }
   if (new && idata->state == IMAP_AUTHENTICATED)
   {
+    /* capabilities may have changed */
+    imap_cmd_queue (idata, "CAPABILITY");
     /* get root delimiter, '/' as default */
     idata->delim = '/';
     imap_cmd_queue (idata, "LIST \"\" \"\"");