Hello Mark, 1) Where can I find full documentation on c-client functions? For example, smtp_open_full() is not listed in the documents located in /docs or at http://www.washington.edu/imap/documentation/
2) Are there any POP3 client examples available? We would like to use c-client library with our C++ app to send emails using SMTP protocol and retrieve emails using IMAP and POP3 protocols. Thank you, Alla -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Crispin Sent: Friday, March 07, 2008 7:34 PM To: Alla Bogolubov Cc: [email protected] Subject: RE: unsatisfied symbols when linking with c-client lib On Fri, 7 Mar 2008, Alla Bogolubov wrote: > 1) Is there a way to specify smtp port ? There are multiple ways: a) The smtp_open_full() function accepts a port argument. b) The smtp_open_full() function accepts a service argument which can be either "smtp" or "submission"/"submit" (the latter uses 587). c) The strings in the hostlist argument can accept the port number and some of the flags described in section III of docs/naming.txt, specifically the /user=, /authuser=, /anonymous, /debug, /secure, /ssl, /validate-cert, /novalidate-cert, /tls, /tls-sslv23, /notls, and /loser flags. d) The default SMTP port can be set using the SET_SMTPPORT function of mail_parameters(). > 2) Do we understand correctly that MAPI protocol is not supported? Correct. MAPI is not an IETF open standards protocol. -- Mark -- http://staff.washington.edu/mrc Science does not emerge from voting, party politics, or public debate. Si vis pacem, para bellum. _______________________________________________ Imap-uw mailing list [email protected] https://mailman1.u.washington.edu/mailman/listinfo/imap-uw
