aboutsummaryrefslogtreecommitdiffstats
path: root/mail.c
diff options
context:
space:
mode:
authorltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 14:25:05 +0000
committerltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 14:25:05 +0000
commitcafef33d38d19a9075897b7484a5cb2c594da1da (patch)
tree4c16c32fcf95beb1bfef9bbac846dd183e83a43b /mail.c
parent05ed83934da5b17841c34009456e9e27073a488a (diff)
downloadlcd4linux-cafef33d38d19a9075897b7484a5cb2c594da1da.tar.gz
[lcd4linux @ 2001-03-15 14:25:05 by ltoetsch]
added unread/total news git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@124 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'mail.c')
-rw-r--r--mail.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mail.c b/mail.c
index 7621449..1815809 100644
--- a/mail.c
+++ b/mail.c
@@ -1,4 +1,4 @@
-/* $Id: mail.c,v 1.6 2001/03/14 13:19:29 ltoetsch Exp $
+/* $Id: mail.c,v 1.7 2001/03/15 14:25:05 ltoetsch Exp $
*
* email specific functions
*
@@ -20,6 +20,9 @@
*
*
* $Log: mail.c,v $
+ * Revision 1.7 2001/03/15 14:25:05 ltoetsch
+ * added unread/total news
+ *
* Revision 1.6 2001/03/14 13:19:29 ltoetsch
* Added pop3/imap4 mail support
*
@@ -121,9 +124,9 @@ int Mail (int index, int *num, int *unseen)
rc=stat(fnp1, &fst);
if ( rc != 0 ) {
/*
- is it pop3 or imap4?
+ is it pop3, imap4 or nntp?
*/
- rc = Mail_pop_imap(fnp1, num, unseen);
+ rc = Mail_pop_imap_news(fnp1, num, unseen);
if (rc == 0)
return 0;
else