defs.h (2239B)
1 /* 2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client 3 * Copyright (C) 1999-2024 the Claws Mail team and 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 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 #ifndef __DEFS_H__ 20 #define __DEFS_H__ 21 22 #define INBOX_DIR "inbox" 23 #define OUTBOX_DIR "sent" 24 #define QUEUE_DIR "queue" 25 #define DRAFT_DIR "draft" 26 #define TRASH_DIR "trash" 27 #define RC_DIR ".claws-mail" 28 #define COMMON_RC "clawsrc" 29 #define ACCOUNT_RC "accountrc" 30 #define DISPLAY_HEADER_RC "dispheaderrc" 31 #define FOLDERITEM_RC "folderitemrc" 32 #define MENU_RC "menurc" 33 #define PASSWORD_STORE_RC "passwordstorerc" 34 #define COMPOSE_SAVE_TO_HISTORY "compose_save_to_history" 35 #define ADDRESS_BOOK "addressbook.xml" 36 #define ADDRBOOK_DIR "addrbook" 37 #define HOMEPAGE_URI "https://www.claws-mail.org/" 38 #define USERS_ML_URI "https://lists.claws-mail.org/cgi-bin/mailman/listinfo/users" 39 #define DONATE_URI "https://www.claws-mail.org/donations.php" 40 #define RELEASE_NOTES_FILE "RELEASE_NOTES" 41 #define FOLDER_LIST "folderlist.xml" 42 #define CACHE_VERSION 24 43 #define MARK_VERSION 2 44 45 #define COMMAND_HISTORY "command_history" 46 47 #define DEFAULT_BROWSER_CMD "firefox '%s'" 48 #define DEFAULT_EDITOR_CMD "gedit '%s'" 49 50 #define BUFFSIZE 8192 51 52 #define RFC822_DATE_BUFFSIZE 128 53 54 #define BORDER_WIDTH 2 55 #define CTREE_INDENT 18 56 #define FOLDER_SPACING 4 57 #define COLOR_DIM ((double)35000 / 65535) 58 #define UI_REFRESH_INTERVAL 50000 /* usec */ 59 #define HSPACING_NARROW 4 60 #define VSPACING 10 61 #define VSPACING_NARROW 4 62 #define VSPACING_NARROW_2 2 63 #define VBOX_BORDER 8 64 65 #define DEFAULT_PIXMAP_THEME "INTERNAL_DEFAULT" 66 67 #endif /* __DEFS_H__ */