1 /* 2 Open Tracker License 3 4 Terms and Conditions 5 6 Copyright (c) 1991-2001, Be Incorporated. All rights reserved. 7 8 Permission is hereby granted, free of charge, to any person obtaining a copy of 9 this software and associated documentation files (the "Software"), to deal in 10 the Software without restriction, including without limitation the rights to 11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 12 of the Software, and to permit persons to whom the Software is furnished to do 13 so, subject to the following conditions: 14 15 The above copyright notice and this permission notice applies to all licensees 16 and shall be included in all copies or substantial portions of the Software. 17 18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY, 20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION 23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 25 Except as contained in this notice, the name of Be Incorporated shall not be 26 used in advertising or otherwise to promote the sale, use or other dealings in 27 this Software without prior written authorization from Be Incorporated. 28 29 BeMail(TM), Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks 30 of Be Incorporated in the United States and other countries. Other brand product 31 names are registered trademarks or trademarks of their respective holders. 32 All rights reserved. 33 */ 34 35 36 #include "MailSupport.h" 37 38 #include <fcntl.h> 39 #include <stdio.h> 40 #include <stdlib.h> 41 #include <string.h> 42 #include <sys/stat.h> 43 #include <sys/utsname.h> 44 #include <unistd.h> 45 46 #include <Autolock.h> 47 #include <Clipboard.h> 48 #include <Debug.h> 49 #include <E-mail.h> 50 #include <InterfaceKit.h> 51 #include <Roster.h> 52 #include <Screen.h> 53 #include <StorageKit.h> 54 #include <String.h> 55 #include <TextView.h> 56 #include <UTF8.h> 57 58 #include <fs_index.h> 59 #include <fs_info.h> 60 61 #include <MailMessage.h> 62 #include <MailSettings.h> 63 #include <MailDaemon.h> 64 #include <mail_util.h> 65 #include <MDRLanguage.h> 66 67 #include <CharacterSetRoster.h> 68 69 #include "Utilities.h" 70 71 72 using namespace BPrivate ; 73 74 #ifdef HAIKU_TARGET_PLATFORM_BEOS 75 #include <netdb.h> 76 #endif 77 78 79 #include "Words.h" 80 81 // global variables 82 Words* gWords[MAX_DICTIONARIES]; 83 Words* gExactWords[MAX_DICTIONARIES]; 84 85 int32 gUserDict; 86 BFile* gUserDictFile; 87 int32 gDictCount = 0; 88 89 // int32 level = L_BEGINNER; 90 91 const char* kSpamServerSignature = 92 "application/x-vnd.agmsmith.AGMSBayesianSpamServer"; 93 const char* kDraftPath = "mail/draft"; 94 const char* kDraftType = "text/x-vnd.Be-MailDraft"; 95 const char* kMailFolder = "mail"; 96 const char* kMailboxFolder = "mail/mailbox"; 97 98 99 int32 100 header_len(BFile *file) 101 { 102 char *buffer; 103 int32 length; 104 int32 result = 0; 105 off_t size; 106 107 if (file->ReadAttr(B_MAIL_ATTR_HEADER, B_INT32_TYPE, 0, &result, 108 sizeof(int32)) != sizeof(int32)) { 109 file->GetSize(&size); 110 buffer = (char *)malloc(size); 111 if (buffer) { 112 file->Seek(0, 0); 113 if (file->Read(buffer, size) == size) { 114 while ((length = linelen(buffer + result, size - result, true)) > 2) 115 result += length; 116 117 result += length; 118 } 119 free(buffer); 120 file->WriteAttr(B_MAIL_ATTR_HEADER, B_INT32_TYPE, 0, &result, sizeof(int32)); 121 } 122 } 123 return result; 124 } 125 126 127 int32 128 add_query_menu_items(BMenu* menu, const char* attribute, uint32 what, 129 const char* format, bool popup) 130 { 131 BVolume volume; 132 BVolumeRoster().GetBootVolume(&volume); 133 134 BQuery query; 135 query.SetVolume(&volume); 136 query.PushAttr(attribute); 137 query.PushString("*"); 138 query.PushOp(B_EQ); 139 query.Fetch(); 140 141 int32 index = 0; 142 BEntry entry; 143 while (query.GetNextEntry(&entry) == B_OK) { 144 BFile file(&entry, B_READ_ONLY); 145 if (file.InitCheck() == B_OK) { 146 BMessage* message = new BMessage(what); 147 148 entry_ref ref; 149 entry.GetRef(&ref); 150 message->AddRef("ref", &ref); 151 152 BString value; 153 if (file.ReadAttrString(attribute, &value) < B_OK) 154 continue; 155 156 message->AddString("attribute", value.String()); 157 158 char name[256]; 159 if (format != NULL) 160 snprintf(name, sizeof(name), format, value.String()); 161 else 162 strlcpy(name, value.String(), sizeof(name)); 163 164 if (index < 9 && !popup) 165 menu->AddItem(new BMenuItem(name, message, '1' + index)); 166 else 167 menu->AddItem(new BMenuItem(name, message)); 168 index++; 169 } 170 } 171 172 return index; 173 } 174 175