aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-04-02 01:17:06 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-04-02 01:17:06 +0800
commitc1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a (patch)
tree39a4e7bc4ea9db2ac9f6c60932295eacd437c9a7 /shell
parent5cda225087bfdc66e19edb703689e8af655e171c (diff)
downloadgsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar.gz
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar.bz2
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar.lz
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar.xz
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.tar.zst
gsoc2013-evolution-c1ffcc4af4c9d2fa7c50efe0cf6dc239a5e8610a.zip
[#40590]
2003-04-02 Not Zed <NotZed@Ximian.com> [#40590] * e-config-upgrade.c (identity_map[]): Move the signature stuff to a child node. (identity_sig_map[]): Define the signature node. Fix *autogenerated_signature_%i to map to "auto". svn path=/trunk/; revision=20615
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/e-config-upgrade.c9
2 files changed, 16 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index d4f8e00991..b850372e89 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,12 @@
+2003-04-02 Not Zed <NotZed@Ximian.com>
+
+ [#40590]
+
+ * e-config-upgrade.c (identity_map[]): Move the signature stuff to
+ a child node.
+ (identity_sig_map[]): Define the signature node. Fix
+ *autogenerated_signature_%i to map to "auto".
+
2003-04-01 Not Zed <NotZed@Ximian.com>
[#40474]
diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c
index 2cbcad315b..a3f8e32573 100644
--- a/shell/e-config-upgrade.c
+++ b/shell/e-config-upgrade.c
@@ -642,13 +642,18 @@ struct _map_table smime_map[] = {
{ NULL },
};
+struct _map_table identity_sig_map[] = {
+ { "identity_autogenerated_signature_%i", "auto", MAP_BOOL },
+ { "identity_def_signature_%i", "default", MAP_LONG },
+ { NULL },
+};
+
struct _map_table identity_map[] = {
{ "identity_name_%i", "name", MAP_STRING|MAP_CONTENT },
{ "identity_address_%i", "addr-spec", MAP_STRING|MAP_CONTENT },
{ "identity_reply_to_%i", "reply-to", MAP_STRING|MAP_CONTENT },
{ "identity_organization_%i", "organization", MAP_STRING|MAP_CONTENT },
- { "identity_autogenerated_signature_%i", "signature", MAP_BOOL },
- { "identity_def_signature_%i", "default", MAP_LONG },
+ { NULL, "signature", MAP_CHILD, identity_sig_map },
{ NULL },
};