mail
mail 

所属分类Email客户端
开发工具:WINDOWS
文件大小:106KB
下载次数:27
上传日期:2004-07-06 15:11:14
上 传 者guoyahui
说明:  邮件工具,源代码
( Mail tool, source code )

文件列表:
mail (0, 2003-03-10)
mail\popmail (0, 2003-02-28)
mail\popmail\FormPOPMail.frm (21310, 2003-02-28)
mail\popmail\FormPOPMail.frx (157, 2003-02-28)
mail\popmail\FormPOPMail.log (124, 2003-02-28)
mail\popmail\MSSCCPRJ.SCC (192, 2003-02-28)
mail\popmail\POPMAIL.oca (11776, 1998-11-07)
mail\popmail\POPMail.ocx (54272, 1999-07-09)
mail\popmail\POPMail.vbp (845, 2003-02-28)
mail\popmail\POPMail.vbw (56, 2003-03-04)
mail\postmail (0, 2003-03-04)
mail\postmail\postiex-old (0, 2003-03-04)
mail\postmail\postiex-old\changes.txt (22098, 2000-06-14)
mail\postmail\postiex-old\errorcodes.txt (2586, 1999-10-26)
mail\postmail\postiex-old\ipv6.txt (486, 1999-10-27)
mail\postmail\postiex-old\license-commercial.txt (1287, 2000-05-04)
mail\postmail\postiex-old\license-redistribution.txt (1392, 2000-05-04)
mail\postmail\postiex-old\postiex.asp (5045, 2003-03-04)
mail\postmail\postiex-old\postiex.dll (159744, 2000-06-14)
mail\postmail\postiex-old\postiex.tlb (3772, 1999-08-04)

LICENSING: A commercial-use license is available for US$125/server. Other pricing options are available, details are available online, or contact me at... Andrew G. Davison 20 Leighton Street Wavell Heights Brisbane 4012 Australia mailto:info@infradig.com http://www.infradig.com DESCRIPTION Created an OCX with send + receive mail functionality. Copy the file POSTIEX.DLL to your windows system directory and register it with the REGSVR32 program... > cd \winnt\system32 > regsvr32 postiex.dll OR If registering the full release then you must also copy LIBEAY32.DLL and SSLEAY32.DLL to the Windows system directory. You may also need a copy of ATL.DLL from Microsoft which you must FIRST register as above. A copy is not included in the release. Most MS products now come with a copy. The test ASP script POSTIEX.ASP should show you everything needed to get going. In VBScript or JavaScript it's easy, for C++ or other you are more or less on your own. The following is a guide... Invocation... Set postie = Server.CreateObject("Postie.Postie") NOTE: An individiual 'Postie' object can only have one sending connection (SMTP, NNTP or IMAP4) and/or one reading connection (POP3, IMAP4) open at a time. That is, one of each. postie.SetPool(short min_size, short timeout) // NOT IN DEMO RELEASE ... enable IMAP persistent connection pooling. Set 'min-size' to to the minimum number of idle connections to keep in the pool (zero means no pooling). Set 'timeout' to the time in seconds before an idle connection is deleted from the pool (only if more than 'min_size' connections). Connections are always created on demand and added back into the pool after use. This feature is only available with servers that support re-LOGIN after a LOGOUT (such as InfraMail). Translate an ip-address to a name... BSTR postie.Gethostbyaddr(BSTR ip-address) Sending-mail method summary... postie.EnableSSL(short tls, short ssl) // NOT IN DEMO RELEASE ... enable SSL/TLS for servers that 1) support STARTTLS/STLS if 'tls' equals 1 or 2) support SSL special ports if 'ssl' equals 1. The two params are mutually exlusive and by default both are off. Please be aware of your local export/patent laws regarding use and redistribution of SSL enabled products. postie.ConnectImaptp(BSTR host, BSTR service) // NOT IN DEMO RELEASE postie.ConnectSmtp(BSTR host, BSTR service) postie.ConnectNntp(BSTR host, BSTR service) // NOT IN DEMO RELEASE ... where 'host' is the name of a server or a comma-separated list of servers that will queue mail. If a list of servers then they will be tried in the order specified. And 'service' is usually "smtp" or 25 for mail, "nntp" or 119 for news and 'imap' or '143' for Imap. postie.Login(BSTR userid, BSTR password) // NOT IN DEMO RELEASE .. pretty-much self-explanatory. postie.SetMbox(BSTR mailbox) // NOT IN DEMO RELEASE ... set the current IMAP4 mailbox. Use the '/' character (not always, but it's most common) as a mailbox hierarchy separator rather like a URL. For example "docs" or "docs/19***". postie.SetUserHeaders(BSTR headers) // NOT IN DEMO RELEASE ... set user defined headers in an outgoing message. For example... postie.SetUserHeaders("X-MyHeader1: blurdy\r\nX-MyHeader2: bloop\r\n"); and note: each header must be terminated with a CR+LF (as above). postie.SetMimetype(BSTR mimetype) // NOT IN DEMO RELEASE ... where 'mimetype' is the MIME type set int the Content-Type header (default value is 'text/plain'. postie.SetCharset(BSTR charset) // NOT IN DEMO RELEASE ... where 'charset' is the name of a character-set encoding eg. "ISO-8859-5" for Cyrillic, or "ISO-8859-7" for Greek, or "ISO-8859-2" for Central European". The default is "ISO-8859-1" for Western (English). po ... ...

近期下载者

相关文件

评论我要评论

收藏者