maildir-select.cc (1962B)
1 /* -*- Mode: c++; -*- */ 2 /* -------------------------------------------------------------------- 3 * Filename: 4 * maildir-select.cc 5 * 6 * Description: 7 * Implementation of the Maildir class. 8 * 9 * Authors: 10 * Andreas Aardal Hanssen <andreas-binc curly bincimap spot org> 11 * 12 * Bugs: 13 * 14 * ChangeLog: 15 * 16 * -------------------------------------------------------------------- 17 * Copyright 2002-2005 Andreas Aardal Hanssen 18 * 19 * This program is free software; you can redistribute it and/or modify 20 * it under the terms of the GNU General Public License as published by 21 * the Free Software Foundation; either version 2 of the License, or 22 * (at your option) any later version. 23 * 24 * This program is distributed in the hope that it will be useful, 25 * but WITHOUT ANY WARRANTY; without even the implied warranty of 26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 27 * GNU General Public License for more details. 28 * 29 * You should have received a copy of the GNU General Public License 30 * along with this program; if not, write to the Free Software 31 * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. 32 * -------------------------------------------------------------------- 33 */ 34 #ifdef HAVE_CONFIG_H 35 #include <config.h> 36 #endif 37 38 #include "io.h" 39 #include "maildir.h" 40 41 #include <fcntl.h> 42 #include <unistd.h> 43 44 using namespace ::std; 45 using namespace Binc; 46 47 //------------------------------------------------------------------------ 48 bool Binc::Maildir::selectMailbox(const std::string &name, 49 const std::string &s_in) 50 { 51 setName(name); 52 53 if (selected) { 54 closeMailbox(); 55 selected = false; 56 } 57 58 oldrecent = 0; 59 oldexists = 0; 60 61 uidnextchanged = false; 62 mailboxchanged = false; 63 64 setPath(s_in); 65 66 switch (scan()) { 67 case Success: 68 break; 69 case TemporaryError: 70 if (scan() == Success) 71 break; 72 case PermanentError: 73 return false; 74 } 75 76 selected = true; 77 return true; 78 }