/* * Copyright (C), 2000-2007 by the monit project group. * All Rights Reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #ifdef HAVE_STDIO_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_STRINGS_H #include #endif #include "protocol.h" /** * Check the server for greeting code '* OK' and then send LOGOUT and * check for code '* BYE'. If alive return TRUE, else, return FALSE. * * @author Jan-Henrik Haukeland, * * @version \$Id: imap.c,v 1.22 2007/07/25 12:54:33 hauk Exp $ * * @file */ int check_imap(Socket_T s) { char buf[STRLEN]; const char *ok= "* OK"; const char *bye= "* BYE"; ASSERT(s); if(!socket_readln(s, buf, sizeof(buf))) { LogError("IMAP: error receiving data -- %s\n", STRERROR); return FALSE; } Util_chomp(buf); if(strncasecmp(buf, ok, strlen(ok)) != 0) { LogError("IMAP error: %s\n", buf); return FALSE; } if(socket_print(s, "001 LOGOUT\r\n") < 0) { LogError("IMAP: error sending data -- %s\n", STRERROR); return FALSE; } if(!socket_readln(s, buf, sizeof(buf))) { LogError("IMAP: error receiving data -- %s\n", STRERROR); return FALSE; } Util_chomp(buf); if(strncasecmp(buf, bye, strlen(bye)) != 0) { LogError("IMAP error: %s\n", buf); return FALSE; } return TRUE; }