From: Antonio Radici Date: Fri, 19 Jun 2009 23:43:25 +0000 (+0100) Subject: Merge branch '531430+imapuser' X-Git-Tag: debian/1.5.20-2~9 X-Git-Url: https://git.llucax.com/software/mutt-debian.git/commitdiff_plain/aa0bc091601849191786b6a6b21d9a3909635fcc?hp=0ead8aa66b21bc03c84c1516ac959d5ecbc664b5 Merge branch '531430+imapuser' --- diff --git a/debian/changelog b/debian/changelog index 90d3e3f..9273c93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,8 +5,10 @@ mutt (1.5.20-2) unstable; urgency=low cannot be opened (Closes: 533209) + upstream/533459-unmailboxes.patch: fixes a segfault with the unmailboxes command (Closes: 533459) - + 533439-mbox-time.patch: do not corrupt the atime/mtime of mboxes when - opened (Closes: 533439) + + upstream/533439-mbox-time.patch: do not corrupt the atime/mtime of + mboxes when opened (Closes: 533439) + + upstream/531430-imapuser.patch: ask the user for the right information + while logging in on IMAP servers (Closes: 531430) + added the right copyright misc/smime_keys-manpage.patch + mutt-patched/sidebar: refreshed + mutt-patched/sidebar-{dotted,sorted} added (Closes: 523774) diff --git a/debian/patches/series b/debian/patches/series index 9924926..e0b2619 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -43,6 +43,7 @@ misc/smime.rc upstream/533209-mutt_perror.patch upstream/533459-unmailboxes.patch upstream/533439-mbox-time.patch +upstream/531430-imapuser.patch misc/hyphen-as-minus.patch #misc/manpage-typos.patch diff --git a/debian/patches/upstream/531430-imapuser.patch b/debian/patches/upstream/531430-imapuser.patch new file mode 100644 index 0000000..a32939a --- /dev/null +++ b/debian/patches/upstream/531430-imapuser.patch @@ -0,0 +1,14 @@ +fixes a problem where the imap->login has the precedence so the user +is asked with wrong informaton, see upstream #3240 + +--- a/account.c ++++ b/account.c +@@ -218,7 +218,7 @@ + else + { + snprintf (prompt, sizeof (prompt), _("Password for %s@%s: "), +- account->flags & M_ACCT_LOGIN ? account->login : account->user, ++ ((account->flags & M_ACCT_LOGIN) && !(account->user)) ? account->login : account->user, + account->host); + account->pass[0] = '\0'; + if (mutt_get_password (prompt, account->pass, sizeof (account->pass))) diff --git a/debian/rules b/debian/rules index 1b5641f..e9154b3 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ include /usr/share/quilt/quilt.make ### # build a separate mutt-patched package? -BUILD_PATCHED := yes +BUILD_PATCHED := no ### # header cache backend # HCACHE_DB := bdb