~ubuntu-branches/ubuntu/quantal/dovecot/quantal

« back to all changes in this revision

Viewing changes to src/deliver/mail-send.c

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short, Scott Kitterman
  • Date: 2010-06-22 10:33:51 UTC
  • mfrom: (1.13.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100622103351-ifbmnklp8kxrhb30
Tags: 1:1.2.12-0ubuntu1
* New upstream release:
  - deliver: Don't crash when a message with Auto-submitted: header gets
   rejected.
  - lib-storage: Fixed header searches to work correctly when there are
    multiple headers with same name.
  - dict client: Disconnect from dict server after 1 second of idling.
  - dict: If process crashed, it wasn't automatically restarted
  - dict file: If dict file's group permissions equal world permissions,
    don't try to change its gid.
  - maildir: Fixed a memory leak when copying with hardlinks.
  - maildir: Expunging last messages may have assert-crashed if their
    filenames had just changed.
 * Update sieve patch to 0.1.17
 * debian/dovecot-common.postinst: Add warning about expired certificate.
   (Debian Bug: #576455)
 * Silence lintian warnings.

 [Scott Kitterman]
 * Rename dovecot-postfix to mail-stack-delivery per server-maverick-mail-
   integration spec.
   - Update debian/rules
   - Convert existing package to a dummy package and add new binary in debian/control
   - Update maintainer scripts.
   - Move previously installed backups and config files to new package name
     space in preinst
   - Add new debian/mail-stack-delivery.prerm to handle downgrades
   - Rename debian/dovecot-postfix.* to debian/mail-stack-delivery.*

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    size_t size;
62
62
    int ret;
63
63
 
 
64
    if (mail_get_first_header(mail, "Message-ID", &orig_msgid) < 0)
 
65
            orig_msgid = NULL;
 
66
 
64
67
    if (mail_get_first_header(mail, "Auto-Submitted", &value) > 0 &&
65
68
        strcasecmp(value, "no") != 0) {
66
69
            i_info("msgid=%s: Auto-submitted message discarded: %s",
69
72
            return 0;
70
73
    }
71
74
 
72
 
    if (mail_get_first_header(mail, "Message-ID", &orig_msgid) < 0)
73
 
            orig_msgid = NULL;
74
75
    return_addr = deliver_get_return_address(mail);
75
76
    if (return_addr == NULL) {
76
77
            i_info("msgid=%s: Return-Path missing, rejection reason: %s",