mirror of
https://github.com/curl/curl.git
synced 2026-08-25 23:53:43 +03:00
introducing IMAP, POP3 and SMTP support (still lots of polish left to do)
This commit is contained in:
parent
463d2d395c
commit
ec3bb8f727
23 changed files with 4531 additions and 753 deletions
|
|
@ -158,6 +158,27 @@ static const char * const protocols[] = {
|
|||
"sftp",
|
||||
#endif
|
||||
|
||||
#ifndef CURL_DISABLE_IMAP
|
||||
"imap",
|
||||
#ifdef USE_SSL
|
||||
"imaps",
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef CURL_DISABLE_POP3
|
||||
"pop3",
|
||||
#ifdef USE_SSL
|
||||
"pop3s",
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef CURL_DISABLE_SMTP
|
||||
"smtp",
|
||||
#ifdef USE_SSL
|
||||
"smtps",
|
||||
#endif
|
||||
#endif
|
||||
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue