aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 11:10:53 +0000
committerltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 11:10:53 +0000
commit05ed83934da5b17841c34009456e9e27073a488a (patch)
treeef79db12a04eb342ce0c60eb002c1911fc3fbb95
parent1bbd55d6180fc18c16b401eafae2fa7ab84d01fa (diff)
downloadlcd4linux-05ed83934da5b17841c34009456e9e27073a488a.tar.gz
[lcd4linux @ 2001-03-15 11:10:53 by ltoetsch]
added quit/logout to pop/imap git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@123 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
-rw-r--r--mail2.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/mail2.c b/mail2.c
index 19b80c3..4e974e5 100644
--- a/mail2.c
+++ b/mail2.c
@@ -1,4 +1,4 @@
-/* $Id: mail2.c,v 1.1 2001/03/14 13:19:29 ltoetsch Exp $
+/* $Id: mail2.c,v 1.2 2001/03/15 11:10:53 ltoetsch Exp $
*
* mail: pop3, imap functions
*
@@ -20,6 +20,9 @@
*
*
* $Log: mail2.c,v $
+ * Revision 1.2 2001/03/15 11:10:53 ltoetsch
+ * added quit/logout to pop/imap
+ *
* Revision 1.1 2001/03/14 13:19:29 ltoetsch
* Added pop3/imap4 mail support
*
@@ -203,6 +206,8 @@ static int check_imap4(char *user, char *pass, char *machine,
close(fd);
return -1;
}
+ strcpy(buf,". LOGOUT\r\n");
+ wr_rd(fd, buf, "", "LOGOUT", machine, port);
close(fd);
return 0;
}
@@ -248,6 +253,8 @@ static int check_pop3(char *user, char *pass, char *machine,
sscanf(buf, "+OK %d", unseen);
*unseen = *total - *unseen;
}
+ strcpy(buf, "QUIT\r\n");
+ wr_rd(fd, buf, "+OK", "Quit", machine, port);
close(fd);
return 0;
}