summaryrefslogtreecommitdiff
path: root/pico/osdep/newmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'pico/osdep/newmail.c')
-rw-r--r--pico/osdep/newmail.c66
1 files changed, 66 insertions, 0 deletions
diff --git a/pico/osdep/newmail.c b/pico/osdep/newmail.c
new file mode 100644
index 00000000..f900a634
--- /dev/null
+++ b/pico/osdep/newmail.c
@@ -0,0 +1,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 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
+}