~ubuntu-branches/ubuntu/wily/steam/wily

« back to all changes in this revision

Viewing changes to server/include/mail.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//flags for mails
2
 
#define SEEN     (1<<0)
3
 
#define ANSWERED (1<<1)
4
 
#define FLAGGED  (1<<2)
5
 
#define DELETED  (1<<3)
6
 
#define DRAFT    (1<<4)
7
 
 
8
 
//states for the imap-server
9
 
#define STATE_NONAUTHENTICATED 1
10
 
#define STATE_AUTHENTICATED 2
11
 
#define STATE_SELECTED 3
12
 
#define STATE_LOGOUT 4
13
 
 
14
 
//states for the smtp-server
15
 
#define STATE_INITIAL 1
16
 
#define STATE_IDENTIFIED 2
17
 
#define STATE_TRANSACTION 3
18
 
#define STATE_RECIPIENT 4
19
 
#define STATE_DATA 5
20
 
#define STATE_QUIT 6