blob: 1a89b977ee22d42665b4df0be2f866913dd53f22 (
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
62
63
64
65
66
|
#if !defined(lint) && !defined(DOS)
static char rcsid[] = "$Id: newmail.c 769 2007-10-24 00:15:40Z hubert@u.washington.edu $";
#endif
/*
* ========================================================================
* Copyright 2006-2007 University of Washington
* Copyright 2013-2014 Eduardo Chappa
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* ========================================================================
*/
#include <system.h>
#include <general.h>
#include "../estruct.h"
#include "../mode.h"
#include "../pico.h"
#include "../edef.h"
#include "../efunc.h"
#include "../keydefs.h"
#include "../../pith/charconv/filesys.h"
#include "newmail.h"
/*
* pico_new_mail - just checks mtime and atime of mail file and notifies user
* if it's possible that they have new mail.
*/
int
pico_new_mail(void)
{
#ifndef _WINDOWS
int ret = 0;
static time_t lastchk = 0;
struct stat sbuf;
char inbox[256], *p;
if((p = (char *)getenv("MAIL")) != NULL)
/* fix unsafe sprintf - noticed by petter wahlman <petter@bluezone.no> */
snprintf(inbox, sizeof(inbox), "%s", p);
else
snprintf(inbox, sizeof(inbox), "%s/%s", MAILDIR, (char *) getlogin());
if(our_stat(inbox, &sbuf) == 0){
ret = sbuf.st_atime <= sbuf.st_mtime &&
(lastchk < sbuf.st_mtime && lastchk < sbuf.st_atime);
lastchk = sbuf.st_mtime;
return(ret);
}
else
return(ret);
#else /* _WINDOWS */
return(0);
#endif
}
|