aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-account.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-04-02 03:48:43 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-04-02 03:48:43 +0800
commit6659317c32c0bb03c5559cecd17990c3f1a6721a (patch)
tree90d889a094545ff93b7eb9833c435fddab61a74e /e-util/e-account.h
parent433683fae007ac7effc4418991cbadaf022d205a (diff)
downloadgsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar.gz
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar.bz2
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar.lz
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar.xz
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.tar.zst
gsoc2013-evolution-6659317c32c0bb03c5559cecd17990c3f1a6721a.zip
Reference signatures by their UID rather than by an integer id. Also
2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-account.c: Reference signatures by their UID rather than by an integer id. Also removed the need to have 2 signature settings (no need for the "auto" signature boolean anymore). svn path=/trunk/; revision=25283
Diffstat (limited to 'e-util/e-account.h')
-rw-r--r--e-util/e-account.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/e-util/e-account.h b/e-util/e-account.h
index 3b3398945f..07c0ccd5d7 100644
--- a/e-util/e-account.h
+++ b/e-util/e-account.h
@@ -33,8 +33,7 @@ typedef enum _e_account_item_t {
E_ACCOUNT_ID_ADDRESS,
E_ACCOUNT_ID_REPLY_TO,
E_ACCOUNT_ID_ORGANIZATION,
- E_ACCOUNT_ID_DEF_SIGNATURE, /* why aren't these two options the same? */
- E_ACCOUNT_ID_AUTO_SIGNATURE,
+ E_ACCOUNT_ID_SIGNATURE,
E_ACCOUNT_SOURCE_URL,
E_ACCOUNT_SOURCE_KEEP_ON_SERVER,
@@ -78,9 +77,7 @@ typedef struct _EAccountIdentity {
char *address;
char *reply_to;
char *organization;
-
- int def_signature;
- gboolean auto_signature;
+ char *sig_uid;
} EAccountIdentity;
typedef struct _EAccountService {