~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/doveadm/doveadm-dump-dbox.c

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2011-2012 Dovecot authors, see the included COPYING file */
 
1
/* Copyright (c) 2011-2013 Dovecot authors, see the included COPYING file */
2
2
 
3
3
#include "lib.h"
4
4
#include "hex-dec.h"
148
148
                case DBOX_METADATA_POP3_UIDL:
149
149
                        printf("msg.pop3-uidl = %s\n", line + 1);
150
150
                        break;
 
151
                case DBOX_METADATA_POP3_ORDER:
 
152
                        printf("msg.pop3-order = %s\n", line + 1);
 
153
                        break;
151
154
                case DBOX_METADATA_RECEIVED_TIME:
152
155
                        dump_timestamp(input, "msg.received", line + 1);
153
156
                        break;
154
157
                case DBOX_METADATA_PHYSICAL_SIZE:
155
 
                        dump_size(input, "msg.physical-size", line + 1);
 
158
                        (void)dump_size(input, "msg.physical-size", line + 1);
156
159
                        break;
157
160
                case DBOX_METADATA_VIRTUAL_SIZE:
158
 
                        dump_size(input, "msg.virtual-size", line + 1);
 
161
                        (void)dump_size(input, "msg.virtual-size", line + 1);
159
162
                        break;
160
163
                case DBOX_METADATA_EXT_REF:
161
164
                        printf("msg.ext-ref = %s\n", line + 1);