~james-page/ubuntu/raring/dovecot/autopkgtest

« back to all changes in this revision

Viewing changes to src/lib-index/mail-transaction-log.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 11:11:54 UTC
  • mfrom: (1.15.2) (4.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20120611111154-678cwbdj6ktgsv1h
Tags: 1:2.1.7-1ubuntu1
* Merge from Debian unstable, remaining changes:
  + Add mail-stack-delivery package:
    - Update d/rules
    - d/control: convert existing dovecot-postfix package to a dummy
      package and add new mail-stack-delivery package.
    - Update maintainer scripts.
    - Rename d/dovecot-postfix.* to debian/mail-stack-delivery.*
    - d/mail-stack-delivery.preinst: Move previously installed backups and
      config files to a new package namespace.
    - d/mail-stack-delivery.prerm: Added to handle downgrades.
  + Use Snakeoil SSL certificates by default:
    - d/control: Depend on ssl-cert.
    - d/dovecot-core.postinst: Relax grep for SSL_* a bit.
  + Add autopkgtest to debian/tests/*.
  + Add ufw integration:
    - d/dovecot-core.ufw.profile: new ufw profile.
    - d/rules: install profile in dovecot-core.
    - d/control: dovecot-core - suggest ufw.
  + d/{control,rules}: enable PIE hardening.
  + d/dovecot-core.dirs: Added usr/share/doc/dovecot-core
  + Add apport hook:
    - d/rules, d/source_dovecot.py
  + Add upstart job:
    - d/rules, d/dovecot-core.dovecot.upstart, d/control,
      d/dovecot-core.dirs, dovecot-imapd.{postrm, postinst, prerm},
      d/dovecot-pop3d.{postinst, postrm, prerm}.
      d/mail-stack-deliver.postinst: Convert init script to upstart.
  + d/control: Added Pre-Depends: dpkg (>= 1.15.6) to dovecot-dbg to support
    xz compression in Ubuntu.
  + d/control: Demote dovecot-common Recommends: to Suggests: to prevent
    install of extra packages on upgrade.
  + d/patches/dovecot-drac.patch: Updated with version for dovecot >= 2.0.0.
  + d/control: Drop B-D on systemd.
* Dropped changes:
  + d/patches/fix-racey-restart.patch: part of 2.1.x, no longer required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
};
81
81
struct mail_transaction_expunge_guid {
82
82
        uint32_t uid;
83
 
        uint8_t guid_128[MAIL_GUID_128_SIZE];
 
83
        guid_128_t guid_128;
84
84
};
85
85
 
86
86
struct mail_transaction_flag_update {
253
253
bool
254
254
mail_transaction_log_view_is_corrupted(struct mail_transaction_log_view *view);
255
255
 
256
 
void mail_transaction_log_views_close(struct mail_transaction_log *log);
257
 
 
258
256
int mail_transaction_log_append_begin(struct mail_index *index, bool external,
259
257
                                      struct mail_transaction_log_append_ctx **ctx_r);
260
258
void mail_transaction_log_append_add(struct mail_transaction_log_append_ctx *ctx,
284
282
   If it doesn't exist, mtime_r is set to 0. */
285
283
int mail_transaction_log_get_mtime(struct mail_transaction_log *log,
286
284
                                   time_t *mtime_r);
 
285
/* Unlink transaction log files */
 
286
int mail_transaction_log_unlink(struct mail_transaction_log *log);
287
287
 
288
288
#endif