summaryrefslogtreecommitdiffstats
path: root/src/easy.c
blob: f1dae362ec2f10bb7c3ed8cecb4b221749c25f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* $Id: nmail.c 23 2003-06-04 17:16:43Z lennart $ */

/***
  This file is part of libnewmail

  libnewmail 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 2 of the License, or
  (at your option) any later version.
  
  libnewmail 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 libnewmail; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  USA
***/

#include <stdio.h>
#include <errno.h>

#include <newmail.h>

int main(int argc, char *argv[]) {
    struct nm_spool* s = NULL;
    struct nm_status st;
    int r = 1;

    /* Open mail spool */
    if (!(s = nm_open(argc > 1 ? argv[1] : NULL))) {
        fprintf(stderr, "nm_open(): %s\n", nm_strerror(nm_errno, errno, nm_explanation));
        goto finish;
    }

    /* Query for status */
    if (nm_query(s, NM_QUERY_CUR|NM_QUERY_NEW, &st) < 0) {
        fprintf(stderr, "nm_check(): %s\n", nm_strerror(nm_errno, errno, nm_explanation));
        goto finish;
    }

    /* Print results */
    if (st.new > 0)
        printf("You have new mail\n");
    else if (st.cur > 0)
        printf("You have mail\n");
    else
        printf("No mail\n");
    
    r = 0;
    
finish:

    /* Close mail spool */
    if (s)
        nm_close(s);
        
    return r;
}