2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
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 2 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, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 #include <glibconfig.h>
30 # include <glib/gwin32.h>
38 # include <sys/param.h>
41 #define INBOX_DIR "inbox"
42 #define OUTBOX_DIR "sent"
43 #define QUEUE_DIR "queue"
44 #define DRAFT_DIR "draft"
45 #define TRASH_DIR "trash"
46 #define RC_DIR CFG_RC_DIR
47 #define OLD_GTK2_RC_DIR ".sylpheed-gtk2"
48 #define OLD_GTK1_RC_DIR ".sylpheed"
49 #define NEWS_CACHE_DIR "newscache"
50 #define IMAP_CACHE_DIR "imapcache"
51 #define MBOX_CACHE_DIR "mboxcache"
52 #define HEADER_CACHE_DIR "headercache"
53 #define MIME_TMP_DIR "mimetmp"
54 #define COMMON_RC "sylpheedrc"
55 #define ACCOUNT_RC "accountrc"
56 #define CUSTOM_HEADER_RC "customheaderrc"
57 #define DISPLAY_HEADER_RC "dispheaderrc"
58 #define FOLDERITEM_RC "folderitemrc"
59 #define SCORING_RC "scoringrc"
60 #define FILTERING_RC "filteringrc"
61 #define MATCHER_RC "matcherrc"
62 #define MENU_RC "menurc"
63 #define RENDERER_RC "rendererrc"
64 #define QUICKSEARCH_HISTORY "quicksearch_history"
65 #define TEMPLATE_DIR "templates"
67 #define UIDL_DIR "uidl"
68 #define NEWSGROUP_LIST ".newsgroup_list"
69 #define ADDRESS_BOOK "addressbook.xml"
70 #define MANUAL_HTML_INDEX "sylpheed-claws-manual.html"
71 #define HOMEPAGE_URI "http://www.sylpheed-claws.net/"
72 #define MANUAL_URI "http://www.sylpheed-claws.net/documentation.php"
73 #define FAQ_URI "http://www.sylpheed-claws.net/faq/index.php"
74 #define PLUGINS_URI "http://www.sylpheed-claws.net/plugins.php"
75 #define BUGZILLA_URI "http://www.thewildbeast.co.uk/sylpheed-claws/bugzilla/enter_bug.cgi"
76 #define THEMES_URI "http://www.sylpheed-claws.net/themes.php"
77 #define MAILING_LIST_URI "http://www.sylpheed-claws.net/MLs.php"
78 #define USERS_ML_ADDR "sylpheed-claws-users@dotsrc.org"
79 #define GPL_URI "http://www.gnu.org/licenses/gpl.html"
80 #define DONATE_URI "https://sourceforge.net/donate/index.php?group_id=25528"
81 #define OPENSSL_URI "http://www.openssl.org/"
82 #define THEMEINFO_FILE ".sylpheed_themeinfo"
83 #define FOLDER_LIST "folderlist.xml"
84 #define CACHE_FILE ".sylpheed_claws_cache"
85 #define MARK_FILE ".sylpheed_mark"
86 #define CACHE_VERSION 24
87 #define MARK_VERSION 2
90 # define ACTIONS_RC "actionswinrc"
91 # define COMMAND_HISTORY "command_history_win"
92 # define DEFAULT_SIGNATURE "signature.txt"
94 # define ACTIONS_RC "actionsrc"
95 # define COMMAND_HISTORY "command_history"
96 # define DEFAULT_SIGNATURE ".signature"
99 #define DEFAULT_INC_PATH "/usr/bin/mh/inc"
100 #define DEFAULT_INC_PROGRAM "inc"
101 /* #define DEFAULT_INC_PATH "/usr/bin/imget" */
102 /* #define DEFAULT_INC_PROGRAM "imget" */
103 #define DEFAULT_SENDMAIL_CMD "/usr/sbin/sendmail -t -i"
104 #define DEFAULT_BROWSER_CMD "firefox '%s'"
105 #define DEFAULT_EDITOR_CMD "gedit '%s'"
106 #define DEFAULT_MIME_CMD "metamail -d -b -x -c %s '%s'"
107 #define DEFAULT_IMAGE_VIEWER_CMD "display '%s'"
108 #define DEFAULT_AUDIO_PLAYER_CMD "play '%s'"
111 # define DEFAULT_SPOOL_PATH _PATH_MAILDIR
113 # define DEFAULT_SPOOL_PATH "/var/spool/mail"
116 #define BUFFSIZE 8192
119 # define MAXPATHLEN 4095
122 #define DEFAULT_HEIGHT 460
123 #define DEFAULT_FOLDERVIEW_WIDTH 179
124 #define DEFAULT_MAINVIEW_WIDTH 600
125 #define DEFAULT_SUMMARY_HEIGHT 140
126 #define DEFAULT_HEADERVIEW_HEIGHT 40
127 #define DEFAULT_COMPOSE_HEIGHT 560
128 #define BORDER_WIDTH 2
129 #define CTREE_INDENT 18
130 #define FOLDER_SPACING 4
131 #define MAX_ENTRY_LENGTH 8191
132 #define COLOR_DIM 35000
133 #define UI_REFRESH_INTERVAL 50000 /* usec */
134 #define FOLDER_UPDATE_INTERVAL 1500 /* msec */
135 #define PROGRESS_UPDATE_INTERVAL 200 /* msec */
136 #define SESSION_TIMEOUT_INTERVAL 60 /* sec */
137 #define MAX_HISTORY_SIZE 16
139 #define NORMAL_FONT prefs_common.normalfont
140 #define SMALL_FONT prefs_common.smallfont
142 #define DEFAULT_PIXMAP_THEME "INTERNAL_DEFAULT"
143 #define PIXMAP_THEME_DIR "themes"
145 #endif /* __DEFS_H__ */