Blame view

imap4d/check.c 1.1 KB
1
/* GNU Mailutils -- a suite of utilities for electronic mail
2
   Copyright (C) 1999, 2001 Free Software Foundation, Inc.
Jakob Kaivo authored
3

4
   GNU Mailutils is free software; you can redistribute it and/or modify
Jakob Kaivo authored
5 6 7 8
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

9
   GNU Mailutils is distributed in the hope that it will be useful,
Jakob Kaivo authored
10 11 12 13 14
   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
15
   along with GNU Mailutils; if not, write to the Free Software
Wojciech Polak authored
16
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA  */
Jakob Kaivo authored
17 18 19 20

#include "imap4d.h"

/*
21
 * Do we need to do anything here?
22 23
 * FIXME: This is like noop we need to notify the client of
 *        new mails etc ... and do housekeeping.
Jakob Kaivo authored
24 25 26
 */

int
27
imap4d_check (struct imap4d_command *command, char *arg ARG_UNUSED)
Jakob Kaivo authored
28
{
29
  return util_finish (command, RESP_OK, "Completed");
Jakob Kaivo authored
30
}