Statistics
| Revision:

root / src / defs.h @ 243

History | View | Annotate | Download (3.3 kB)

1
/*
2
 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3
 * Copyright (C) 1999-2005 Hiroyuki Yamamoto
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 2 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, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
 */
19
20
#ifndef __DEFS_H__
21
#define __DEFS_H__
22
23
#ifdef HAVE_CONFIG_H
24
#  include "config.h"
25
#endif
26
27
#if HAVE_PATHS_H
28
#  include <paths.h>
29
#endif
30
31
#if HAVE_SYS_PARAM_H
32
#  include <sys/param.h>
33
#endif
34
35
#define INBOX_DIR                "inbox"
36
#define OUTBOX_DIR                "sent"
37
#define QUEUE_DIR                "queue"
38
#define DRAFT_DIR                "draft"
39
#define TRASH_DIR                "trash"
40
#define RC_DIR                        ".sylpheed-2.0"
41
#define OLD_RC_DIR                ".sylpheed"
42
#define NEWS_CACHE_DIR                "newscache"
43
#define IMAP_CACHE_DIR                "imapcache"
44
#define MIME_TMP_DIR                "mimetmp"
45
#define COMMON_RC                "sylpheedrc"
46
#define ACCOUNT_RC                "accountrc"
47
#define FILTER_RC                "filterrc"
48
#define FILTER_LIST                "filter.xml"
49
#define FILTER_HEADER_RC        "filterheaderrc"
50
#define CUSTOM_HEADER_RC        "customheaderrc"
51
#define DISPLAY_HEADER_RC        "dispheaderrc"
52
#define MENU_RC                        "menurc"
53
#define ACTIONS_RC                "actionsrc"
54
#define COMMAND_HISTORY                "command_history"
55
#define TEMPLATE_DIR                "templates"
56
#define TMP_DIR                        "tmp"
57
#define UIDL_DIR                "uidl"
58
#define NEWSGROUP_LIST                ".newsgroup_list"
59
#define ADDRESS_BOOK                "addressbook.xml"
60
#define MANUAL_HTML_INDEX        "sylpheed.html"
61
#define FAQ_HTML_INDEX                "sylpheed-faq.html"
62
#define HOMEPAGE_URI                "http://sylpheed.good-day.net/"
63
#define FOLDER_LIST                "folderlist.xml"
64
#define CACHE_FILE                ".sylpheed_cache"
65
#define MARK_FILE                ".sylpheed_mark"
66
#define CACHE_VERSION                0x21
67
#define MARK_VERSION                2
68
69
#define DEFAULT_SIGNATURE        ".signature"
70
#define DEFAULT_INC_PATH        "/usr/bin/mh/inc"
71
#define DEFAULT_INC_PROGRAM        "inc"
72
/* #define DEFAULT_INC_PATH        "/usr/bin/imget" */
73
/* #define DEFAULT_INC_PROGRAM        "imget" */
74
#define DEFAULT_SENDMAIL_CMD        "/usr/sbin/sendmail -t -i"
75
#define DEFAULT_BROWSER_CMD        "mozilla-firefox -remote 'openURL(%s,new-window)'"
76
77
#ifdef _PATH_MAILDIR
78
#  define DEFAULT_SPOOL_PATH        _PATH_MAILDIR
79
#else
80
#  define DEFAULT_SPOOL_PATH        "/var/spool/mail"
81
#endif
82
83
#define BUFFSIZE                        8192
84
85
#ifndef MAXPATHLEN
86
#  define MAXPATHLEN                        4095
87
#endif
88
89
#define DEFAULT_HEIGHT                        460
90
#define DEFAULT_FOLDERVIEW_WIDTH        179
91
#define DEFAULT_MAINVIEW_WIDTH                600
92
#define DEFAULT_SUMMARY_HEIGHT                140
93
#define DEFAULT_HEADERVIEW_HEIGHT        40
94
#define DEFAULT_COMPOSE_HEIGHT                560
95
#define BORDER_WIDTH                        2
96
#define CTREE_INDENT                        18
97
#define FOLDER_SPACING                        4
98
#define MAX_ENTRY_LENGTH                8191
99
#define COLOR_DIM                        35000
100
#define UI_REFRESH_INTERVAL                50000        /* usec */
101
#define FOLDER_UPDATE_INTERVAL                1500        /* msec */
102
#define PROGRESS_UPDATE_INTERVAL        200        /* msec */
103
#define SESSION_TIMEOUT_INTERVAL        60        /* sec */
104
#define MAX_HISTORY_SIZE                16
105
106
#define DEFAULT_MESSAGE_FONT        "Monospace 12"
107
108
#endif /* __DEFS_H__ */