Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / MFC

The Ultimate TCP/IP Home Page

Rate me:
Please Sign up or sign in to vote.
4.98/5 (77 votes)
25 Aug 2007CPOL13 min read 2.6M   45.4K   267  
Ultimate TCP-IP is now Open Source
/***********************************************
Email Server Information
************************************************/

Registry Entries 

REG_SZ		RootPath		root path for the que and user mail    

REG_DWORD	NumberDomainNames
REG_SZ		DomainNameXXX	local domain name(s), where XXX is a number 
							starting from 0    

REG_DWORD	NumberDNSNames	
REG_SZ		DNSNameXXX		Name server name(s), whre XXX starts from 0

REG_DWORD	MaxOut			max. mail out at once
REG_DWORD	MaxIn			max. mail to receive at once

REG_DWORD	MaxRetries		max. times to try and resend the mail
REG_DWORD	RetryInterval	seconds between retries

REG_DWORD	NumberUsers		number of users in the system
REG_SZ		XXXUser			username where XXX starts from 0
REG_SZ		XXXPassword		password where XXX starts from 0
REG_DWORD	XXXNumberEmail	Addresses	number of email addresses 
							where XXX starts from 0
REG_SZ		XXXEmailAddressYYY		email address(s) where XXX starts from 0  
									YYY starts from 0




Que header format:

time_t	last time written
DWORD	retryCount
DWORD	toLength - includes termination
LPSTR	to
DWORD	fromLength  - includes termination
LPSTR	from
DWORD	returnMail - 0 not returning 1- invalid domain 2-invalid user 3 - max retires
-The message follows immediatly after the header


Directory structure

ROOTPATH  - email server directory

ROOTPATH\QUE	- outbound que directory

ROOTPATH\XXX	- user directory, where XXX is the user number which
				  matches the user entry in the registry

the names of the files in the directories are use numbers only

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
In January 2005, David Cunningham and Chris Maunder created TheUltimateToolbox.com, a new group dedicated to the continued development, support and growth of Dundas Software’s award winning line of MFC, C++ and ActiveX control products.

Ultimate Grid for MFC, Ultimate Toolbox for MFC, and Ultimate TCP/IP have been stalwarts of C++/MFC development for a decade. Thousands of developers have used these products to speed their time to market, improve the quality of their finished products, and enhance the reliability and flexibility of their software.
This is a Organisation

476 members

Comments and Discussions