diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-03-28 07:15:51 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-03-28 07:15:51 +0000 |
commit | eb8893ef1a4f97c86f0fa4bacb8695f8d26ccb29 (patch) | |
tree | d9cad24a5faf420b73325e6b7eef0df572877b4e /libsylph | |
parent | faa04e6bd711567a9b2437d7d99593baac90fad6 (diff) |
the feature to confirm missing attachments was added.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1968 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r-- | libsylph/prefs_common.c | 4 | ||||
-rw-r--r-- | libsylph/prefs_common.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c index 439fa958..0a990abc 100644 --- a/libsylph/prefs_common.c +++ b/libsylph/prefs_common.c @@ -1,6 +1,6 @@ /* * LibSylph -- E-Mail client library - * Copyright (C) 1999-2007 Hiroyuki Yamamoto + * Copyright (C) 1999-2008 Hiroyuki Yamamoto * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -59,6 +59,8 @@ static PrefParam param[] = { {"encoding_method", "0", &prefs_common.encoding_method, P_ENUM}, {"mime_filename_encoding_method", "0", &prefs_common.mime_fencoding_method, P_ENUM}, + {"check_attach", "FALSE", &prefs_common.check_attach, P_BOOL}, + {"check_attach_str", NULL, &prefs_common.check_attach_str, P_STRING}, {"allow_jisx0201_kana", "FALSE", &prefs_common.allow_jisx0201_kana, P_BOOL}, diff --git a/libsylph/prefs_common.h b/libsylph/prefs_common.h index 79f5cae4..e6205c3c 100644 --- a/libsylph/prefs_common.h +++ b/libsylph/prefs_common.h @@ -1,6 +1,6 @@ /* * LibSylph -- E-Mail client library - * Copyright (C) 1999-2007 Hiroyuki Yamamoto + * Copyright (C) 1999-2008 Hiroyuki Yamamoto * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -70,6 +70,9 @@ struct _PrefsCommon TransferEncodingMethod encoding_method; MIMEFilenameEncodingMethod mime_fencoding_method; + gboolean check_attach; + gchar *check_attach_str; + gboolean allow_jisx0201_kana; /* Compose */ |