Remove useless cruft from OpenSSL days
[claws.git] / src / common / defs.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef __DEFS_H__
21 #define __DEFS_H__
22
23 #ifdef HAVE_CONFIG_H
24 #include "claws-features.h"
25 #endif
26
27 #include <glib.h>
28
29 #if HAVE_PATHS_H
30 #  include <paths.h>
31 #endif
32
33 #if HAVE_SYS_PARAM_H
34 #  include <sys/param.h>
35 #endif
36
37 #define INBOX_DIR               "inbox"
38 #define OUTBOX_DIR              "sent"
39 #define QUEUE_DIR               "queue"
40 #define DRAFT_DIR               "draft"
41 #define TRASH_DIR               "trash"
42 #define RC_DIR                  CFG_RC_DIR
43 #define OLD_GTK2_RC_DIR         ".sylpheed-claws"
44 #define OLDER_GTK2_RC_DIR       ".sylpheed-gtk2"
45 #define OLD_GTK1_RC_DIR         ".sylpheed"
46 #define SYLPHEED_RC_DIR         ".sylpheed-2.0"
47 #define NEWS_CACHE_DIR          "newscache"
48 #define IMAP_CACHE_DIR          "imapcache"
49 #define MBOX_CACHE_DIR          "mboxcache"
50 #define HEADER_CACHE_DIR        "headercache" 
51 #define MIME_TMP_DIR            "mimetmp"
52 #define COMMON_RC               "clawsrc"
53 #define OLD_COMMON_RC           "sylpheedrc"
54 #define ACCOUNT_RC              "accountrc"
55 #define CUSTOM_HEADER_RC        "customheaderrc"
56 #define DISPLAY_HEADER_RC       "dispheaderrc"
57 #define FOLDERITEM_RC           "folderitemrc"
58 #define SCORING_RC              "scoringrc"
59 #define FILTERING_RC            "filteringrc"
60 #define MATCHER_RC              "matcherrc"
61 #define MENU_RC                 "menurc"
62 #define RENDERER_RC             "rendererrc"
63 #define TAGS_RC                 "tagsrc"
64 #define QUICKSEARCH_HISTORY     "quicksearch_history"
65 #define SUMMARY_SEARCH_FROM_HISTORY     "summarysearch_from_history"
66 #define SUMMARY_SEARCH_TO_HISTORY       "summarysearch_to_history"
67 #define SUMMARY_SEARCH_SUBJECT_HISTORY  "summarysearch_subject_history"
68 #define SUMMARY_SEARCH_BODY_HISTORY     "summary_searchbody_history"
69 #define SUMMARY_SEARCH_ADV_CONDITION_HISTORY    "summarysearch_adv_history"
70 #define MESSAGE_SEARCH_HISTORY  "messagesearch_history"
71 #define COMPOSE_SAVE_TO_HISTORY "compose_save_to_history"
72 #define ADDRESSBOOK_CUSTOM_ATTRIBUTES "attributesrc"
73 #define TEMPLATE_DIR            "templates"
74 #define TMP_DIR                 "tmp"
75 #define UIDL_DIR                "uidl"
76 #define NEWSGROUP_LIST          ".newsgroup_list"
77 #define ADDRESS_BOOK            "addressbook.xml"
78 #define ADDRBOOK_DIR            "addrbook"
79 #define MANUAL_HTML_INDEX       "claws-mail-manual.html"
80 #define HOMEPAGE_URI            "http://www.claws-mail.org/"
81 #define MANUAL_URI              "http://www.claws-mail.org/documentation.php"
82 #define FAQ_URI                 "http://www.claws-mail.org/faq/index.php"
83 #define PLUGINS_URI             "http://www.claws-mail.org/plugins.php"
84 #define DICTS_URI               "http://www.claws-mail.org/win32/dictionaries.php"
85 #define BUGZILLA_URI            "http://www.thewildbeast.co.uk/claws-mail/bugzilla/enter_bug.cgi"
86 #define THEMES_URI              "http://www.claws-mail.org/themes.php"
87 #define TOOLS_URI               "http://www.claws-mail.org/tools.php"
88 #define MAILING_LIST_URI        "http://www.claws-mail.org/MLs.php"
89 #define USERS_ML_ADDR           "users@lists.claws-mail.org"
90 #define USERS_ML_URI            "http://lists.claws-mail.org/cgi-bin/mailman/listinfo/users"
91 #define GPL_URI                 "http://www.gnu.org/licenses/gpl.html"
92 #define DONATE_URI              "http://www.claws-mail.org/sponsors.php"
93 #define RELEASE_NOTES_FILE      "RELEASE_NOTES"
94 #define THEMEINFO_FILE          ".claws_themeinfo"
95 #define FOLDER_LIST             "folderlist.xml"
96 #define OLD_CACHE_FILE          ".sylpheed_claws_cache"
97 #define CACHE_FILE              ".claws_cache"
98 #define OLD_MARK_FILE           ".sylpheed_mark"
99 #define MARK_FILE               ".claws_mark"
100 #define TAGS_FILE               ".claws_tags"
101 #define PRINTING_PAGE_SETUP_STORAGE_FILE "print_page_setup"
102 #define CACHE_VERSION           24
103 #define MARK_VERSION            2
104 #define TAGS_VERSION            1
105
106 #ifdef G_OS_WIN32
107 #  define ACTIONS_RC            "actionswinrc"
108 #  define COMMAND_HISTORY       "command_history_win"
109 #  define DEFAULT_SIGNATURE     "signature.txt"
110 #  define DEFAULT_W32_GTK_THEME "MS-Windows"
111 #else
112 #  define ACTIONS_RC            "actionsrc"
113 #  define COMMAND_HISTORY       "command_history"
114 #  define DEFAULT_SIGNATURE     ".signature"
115 #endif
116
117 #define DEFAULT_INC_PATH        "/usr/bin/mh/inc"
118 #define DEFAULT_INC_PROGRAM     "inc"
119 /* #define DEFAULT_INC_PATH     "/usr/bin/imget" */
120 /* #define DEFAULT_INC_PROGRAM  "imget" */
121 #define DEFAULT_SENDMAIL_CMD    "/usr/sbin/sendmail -t -i"
122 #define DEFAULT_BROWSER_CMD     "firefox '%s'"
123 #define DEFAULT_EDITOR_CMD      "gedit '%s'"
124 #define DEFAULT_MIME_CMD        "metamail -d -b -x -c %s '%s'"
125 #define DEFAULT_IMAGE_VIEWER_CMD "display '%s'"
126 #define DEFAULT_AUDIO_PLAYER_CMD "play '%s'"
127
128 #ifdef _PATH_MAILDIR
129 #  define DEFAULT_SPOOL_PATH    _PATH_MAILDIR
130 #else
131 #  define DEFAULT_SPOOL_PATH    "/var/spool/mail"
132 #endif
133
134 #define BUFFSIZE                        8192
135
136 #ifndef MAXPATHLEN
137 #  define MAXPATHLEN                    4095
138 #endif
139
140 #define DEFAULT_HEIGHT                  460
141 #define DEFAULT_FOLDERVIEW_WIDTH        179
142 #define DEFAULT_MAINVIEW_WIDTH          600
143 #define DEFAULT_SUMMARY_HEIGHT          140
144 #define DEFAULT_HEADERVIEW_HEIGHT       40
145 #define DEFAULT_COMPOSE_HEIGHT          560
146 #define BORDER_WIDTH                    2
147 #define CTREE_INDENT                    18
148 #define FOLDER_SPACING                  4
149 #define MAX_ENTRY_LENGTH                8191
150 #define COLOR_DIM                       35000
151 #define UI_REFRESH_INTERVAL             50000   /* usec */
152 #define FOLDER_UPDATE_INTERVAL          1500    /* msec */
153 #define PROGRESS_UPDATE_INTERVAL        200     /* msec */
154 #define SESSION_TIMEOUT_INTERVAL        60      /* sec */
155 #define MAX_HISTORY_SIZE                32
156 #define HSPACING_NARROW                 4
157 #define VSPACING                        10
158 #define VSPACING_NARROW                 4
159 #define VSPACING_NARROW_2               2
160 #define VBOX_BORDER                     8
161 #define DEFAULT_ENTRY_WIDTH             80
162 /* labels bigger than this causes crash with the X Window System error:
163    'BadAlloc (insufficient resources for operation)' */
164 #define MAX_MENU_LABEL_LENGTH           5453
165
166 #define BOLD_FONT prefs_common.boldfont
167 #define NORMAL_FONT prefs_common.normalfont
168 #define SMALL_FONT      prefs_common.smallfont
169
170 #define DEFAULT_PIXMAP_THEME    "INTERNAL_DEFAULT"
171 #define PIXMAP_THEME_DIR                "themes"
172
173 #define AVATAR_NONE     0
174 #define AVATAR_XFACE    1
175 #define AVATAR_FACE     2
176
177 #endif /* __DEFS_H__ */