aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-01-27 07:31:43 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-01-27 07:31:43 +0000
commit2d4db65cb1117264a869b5a1afa349deb6a26bd2 (patch)
tree5eb4bc19da6ac09947376eefd802333841bfe940 /libsylph
parentc46ac89a27c4efd60921bc075fc79ef7b1a56364 (diff)
made address auto-registration configurable.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2444 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/prefs_common.c2
-rw-r--r--libsylph/prefs_common.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c
index 08091f5f..27109213 100644
--- a/libsylph/prefs_common.c
+++ b/libsylph/prefs_common.c
@@ -55,6 +55,8 @@ static PrefParam param[] = {
/* Send */
{"save_message", "TRUE", &prefs_common.savemsg, P_BOOL},
{"filter_sent_message", "FALSE", &prefs_common.filter_sent, P_BOOL},
+ {"recipients_autoreg", "TRUE", &prefs_common.recipients_autoreg,
+ P_BOOL},
{"encoding_method", "0", &prefs_common.encoding_method, P_ENUM},
{"mime_filename_encoding_method", "0",
diff --git a/libsylph/prefs_common.h b/libsylph/prefs_common.h
index e5bd7f6a..a87613ef 100644
--- a/libsylph/prefs_common.h
+++ b/libsylph/prefs_common.h
@@ -312,6 +312,7 @@ struct _PrefsCommon
/* Append new members here */
gboolean folder_col_visible[4]; /* Display */
gboolean reply_address_only; /* Compose */
+ gboolean recipients_autoreg; /* Send */
};
extern PrefsCommon prefs_common;