2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2021 the Claws Mail team and Hiroyuki Yamamoto
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.
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.
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/>.
23 #include "claws-features.h"
33 # include <sys/param.h>
36 #define INBOX_DIR "inbox"
37 #define OUTBOX_DIR "sent"
38 #define QUEUE_DIR "queue"
39 #define DRAFT_DIR "draft"
40 #define TRASH_DIR "trash"
41 #define TAGS_DIR "tagsdb"
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 HEADER_CACHE_DIR "headercache"
50 #define MIME_TMP_DIR "mimetmp"
51 #define COMMON_RC "clawsrc"
52 #define OLD_COMMON_RC "sylpheedrc"
53 #define ACCOUNT_RC "accountrc"
54 #define CUSTOM_HEADER_RC "customheaderrc"
55 #define DISPLAY_HEADER_RC "dispheaderrc"
56 #define FOLDERITEM_RC "folderitemrc"
57 #define FILTERING_RC "filteringrc"
58 #define MATCHER_RC "matcherrc"
59 #define MENU_RC "menurc"
60 #define TAGS_RC "tagsrc"
61 #define PASSWORD_STORE_RC "passwordstorerc"
62 #define QUICKSEARCH_HISTORY "quicksearch_history"
63 #define SUMMARY_SEARCH_FROM_HISTORY "summarysearch_from_history"
64 #define SUMMARY_SEARCH_TO_HISTORY "summarysearch_to_history"
65 #define SUMMARY_SEARCH_SUBJECT_HISTORY "summarysearch_subject_history"
66 #define SUMMARY_SEARCH_BODY_HISTORY "summary_searchbody_history"
67 #define SUMMARY_SEARCH_ADV_CONDITION_HISTORY "summarysearch_adv_history"
68 #define MESSAGE_SEARCH_HISTORY "messagesearch_history"
69 #define COMPOSE_SAVE_TO_HISTORY "compose_save_to_history"
70 #define ADDRESSBOOK_CUSTOM_ATTRIBUTES "attributesrc"
71 #define TEMPLATE_DIR "templates"
73 #define UIDL_DIR "uidl"
74 #define NEWSGROUP_LIST ".newsgroup_list"
75 #define ADDRESS_BOOK "addressbook.xml"
76 #define ADDRBOOK_DIR "addrbook"
77 #define MANUAL_HTML_INDEX "claws-mail-manual.html"
78 #define HOMEPAGE_URI "https://www.claws-mail.org/"
79 #define MANUAL_URI "https://www.claws-mail.org/documentation.php"
80 #define FAQ_URI "https://www.claws-mail.org/faq/index.php"
81 #define PLUGINS_URI "https://www.claws-mail.org/plugins.php"
82 #define DICTS_URI "https://www.claws-mail.org/win32/dictionaries.php"
83 #define BUGZILLA_URI "https://www.thewildbeast.co.uk/claws-mail/bugzilla/enter_bug.cgi"
84 #define THEMES_URI "https://www.claws-mail.org/themes.php"
85 #define TOOLS_URI "https://www.claws-mail.org/tools.php"
86 #define MAILING_LIST_URI "https://www.claws-mail.org/MLs.php"
87 #define WELCOME_MSG_ADDR "noreply@claws-mail.org"
88 #define USERS_ML_URI "https://lists.claws-mail.org/cgi-bin/mailman/listinfo/users"
89 #define GPL_URI "https://www.gnu.org/licenses/gpl.html"
90 #define DONATE_URI "https://www.claws-mail.org/donations.php"
91 #define CONFIG_VERSIONS_URI "https://www.claws-mail.org/cvc.php"
92 #define RELEASE_NOTES_FILE "RELEASE_NOTES"
93 #define THEMEINFO_FILE ".claws_themeinfo"
94 #define FOLDER_LIST "folderlist.xml"
95 #define OLD_CACHE_FILE ".sylpheed_claws_cache"
96 #define CACHE_FILE ".claws_cache"
97 #define OLD_MARK_FILE ".sylpheed_mark"
98 #define MARK_FILE ".claws_mark"
99 #define TAGS_FILE ".claws_tags"
100 #define PRINTING_PAGE_SETUP_STORAGE_FILE "print_page_setup"
101 #define CACHE_VERSION 24
102 #define MARK_VERSION 2
103 #define TAGS_VERSION 1
106 # define ACTIONS_RC "actionswinrc"
107 # define COMMAND_HISTORY "command_history_win"
108 # define DEFAULT_SIGNATURE "signature.txt"
109 # define DEFAULT_W32_GTK_THEME "MS-Windows"
111 # define ACTIONS_RC "actionsrc"
112 # define COMMAND_HISTORY "command_history"
113 # define DEFAULT_SIGNATURE ".signature"
116 #define DEFAULT_INC_PATH "/usr/bin/mh/inc"
117 #define DEFAULT_INC_PROGRAM "inc"
118 /* #define DEFAULT_INC_PATH "/usr/bin/imget" */
119 /* #define DEFAULT_INC_PROGRAM "imget" */
120 #define DEFAULT_SENDMAIL_CMD "/usr/sbin/sendmail -t -i"
121 #define DEFAULT_BROWSER_CMD "firefox '%s'"
122 #define DEFAULT_EDITOR_CMD "gedit '%s'"
123 #define DEFAULT_MIME_CMD "metamail -d -b -x -c %s '%s'"
124 #define DEFAULT_IMAGE_VIEWER_CMD "display '%s'"
125 #define DEFAULT_AUDIO_PLAYER_CMD "play '%s'"
128 # define DEFAULT_SPOOL_PATH _PATH_MAILDIR
130 # define DEFAULT_SPOOL_PATH "/var/spool/mail"
133 #define BUFFSIZE 8192
135 #define RFC822_DATE_BUFFSIZE 128
138 # define MAXPATHLEN 4095
141 #define BORDER_WIDTH 2
142 #define CTREE_INDENT 18
143 #define FOLDER_SPACING 4
144 #define MAX_ENTRY_LENGTH 8191
145 #define COLOR_DIM ((gdouble)35000 / 65535)
146 #define UI_REFRESH_INTERVAL 50000 /* usec */
147 #define FOLDER_UPDATE_INTERVAL 1500 /* msec */
148 #define PROGRESS_UPDATE_INTERVAL 200 /* msec */
149 #define SESSION_TIMEOUT_INTERVAL 60 /* sec */
150 #define MAX_HISTORY_SIZE 32
151 #define HSPACING_NARROW 4
153 #define VSPACING_NARROW 4
154 #define VSPACING_NARROW_2 2
155 #define VBOX_BORDER 8
156 #define DEFAULT_ENTRY_WIDTH 80
157 /* labels bigger than this causes crash with the X Window System error:
158 'BadAlloc (insufficient resources for operation)' */
159 #define MAX_MENU_LABEL_LENGTH 5453
161 #define BOLD_FONT prefs_common.boldfont
162 #define NORMAL_FONT prefs_common.normalfont
163 #define SMALL_FONT prefs_common.smallfont
165 #define DEFAULT_PIXMAP_THEME "INTERNAL_DEFAULT"
166 #define PIXMAP_THEME_DIR "themes"
172 #define AVATAR_NONE 0
173 #define AVATAR_XFACE 1
174 #define AVATAR_FACE 2
176 #endif /* __DEFS_H__ */