~ubuntu-branches/ubuntu/precise/mutt/precise

« back to all changes in this revision

Viewing changes to send.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg, Adeodato Simó, Christoph Berg
  • Date: 2007-11-03 23:00:04 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071103230004-43e36pnhub87junc
Tags: 1.5.17-1
[ Adeodato Simó ]
* Move the packaging back to Bazaar, adjust X-VCS-* accordingly.

[ Christoph Berg ]
* Mention libsasl2-modules-gssapi-mit in README.Debian. (Closes: #433425)
* Call autoreconf at build time, drop the autotools-update patch.
* Update menu file, add lintian override file.
* Refresh patches.

* New upstream version:
  + fix segfaults with single byte 8-bit characters in index_format.
    (Closes: #420598, Mutt: #2882)
  + properly render subject headers with encoded linefeeds.
    (Closes: #264014, Mutt: #1810)
  + only calls gnutls_error_is_fatal when gnutls_record_recv returns a
    negative value. (Closes: #439775, Mutt: #2954)
  + Large file support for mutt_pretty_size().
    (Closes: #352478, #416555, Mutt: #2191)
  + Do not consider empty pipes for filtering in format strings.
    (Closes: #447340)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1210
1210
  }
1211
1211
 
1212
1212
  if (!msg->env->from && option (OPTUSEFROM) && !(flags & (SENDPOSTPONED|SENDRESEND)))
 
1213
  {
1213
1214
    msg->env->from = mutt_default_from ();
 
1215
    killfrom = 1;       /* $use_from will be re-checked after send-hooks */
 
1216
  }
1214
1217
 
1215
1218
  if (flags & SENDBATCH) 
1216
1219
  {
1281
1284
     */
1282
1285
    msg->replied = 0;
1283
1286
 
 
1287
    /* $use_from and/or $from might have changed in a send-hook */
1284
1288
    if (killfrom)
1285
1289
    {
1286
1290
      rfc822_free_address (&msg->env->from);
 
1291
      if (option (OPTUSEFROM) && !(flags & (SENDPOSTPONED|SENDRESEND)))
 
1292
        msg->env->from = mutt_default_from ();
1287
1293
      killfrom = 0;
1288
1294
    }
1289
1295