Click here to Skip to main content
15,887,596 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Generalserial com port communication! Pin
Member 16267074-Jan-05 12:11
Member 16267074-Jan-05 12:11 
GeneralRe: serial com port communication! Pin
Ritesh12347-Jan-05 3:27
Ritesh12347-Jan-05 3:27 
GeneralXML encoding losing special Characters Pin
kikilala4-Jan-05 10:19
kikilala4-Jan-05 10:19 
GeneralPocket PC Application Pin
vksrisridhar4-Jan-05 1:29
vksrisridhar4-Jan-05 1:29 
QuestionWinForms Form with a Win32 Window as a Parent? Pin
Uwe Keim3-Jan-05 2:28
sitebuilderUwe Keim3-Jan-05 2:28 
AnswerRe: WinForms Form with a Win32 Window as a Parent? Pin
Uwe Keim3-Jan-05 18:50
sitebuilderUwe Keim3-Jan-05 18:50 
GeneralRedirecting Mails from one domain to another in Exchange server Pin
Ashutosh j2-Jan-05 20:41
Ashutosh j2-Jan-05 20:41 
GeneralRe: Redirecting Mails from one domain to another in Exchange server Pin
Mike Dimmick6-Jan-05 12:59
Mike Dimmick6-Jan-05 12:59 
Redirecting email: you need to take two steps. I'm assuming your mail is delivered via SMTP to a server you control, rather than being collected via some other protocol.

First, you need to set up your mail servers to handle the messages. If you're running Exchange 2000 or 2003, open Exchange System Manager, expand Recipients and Recipient Policies. If there's only one policy there, double-click it and go to the E-Mail Addresses (Policy) tab. Click New and select SMTP Address, then OK. Type '@domain2.com' in the Address field. Ensure 'This Exchange Organization is responsible for all mail delivery to this address' is checked. Click OK. The Recipient Policy Update process will now process all recipients in the organization (in AD) in the background.

Secondly, you need to tell the world how to send email to domain2.com. Find out who hosts domain2.com's DNS service (the name servers). You can find out if you don't already know by running nslookup:
C:\>nslookup
Default Server:  resolver2.th.eclipse.net.uk
Address:  212.104.130.65
 
> set type=NS
> codeproject.com
Server:  resolver2.th.eclipse.net.uk
Address:  212.104.130.65
 
Non-authoritative answer:
codeproject.com nameserver = ns.dundas.com
codeproject.com nameserver = ns2.dundas.com
although you should know this. You need to tell the name server host what MX records to use.
> set type=MX
> codeproject.com
Server:  resolver2.th.eclipse.net.uk
Address:  212.104.130.65
 
Non-authoritative answer:
codeproject.com MX preference = 10, mail exchanger = mail.codeproject.com
You probably want some redundancy in there, so that if your first-choice mail server is unavailable, messages can still be queued elsewhere (we use a queuing service provided by our ISP). Of course mail.codeproject.com may be a load-balanced front-end Exchange server...

It takes a while for changes to DNS to propogate (servers are allowed - indeed, required - to cache DNS lookup results, and they can be cached at intermediate DNS servers too) so you should consider how you're going to get messages forwarded from the existing servers in the meantime.

Stability. What an interesting concept. -- Chris Maunder
Generalencapsulate a program Pin
Anonymous2-Jan-05 3:23
Anonymous2-Jan-05 3:23 
GeneralRe: encapsulate a program Pin
zagzagzag3-Jan-05 1:04
zagzagzag3-Jan-05 1:04 
General.NET Pocket Framework Pin
zagzagzag1-Jan-05 11:55
zagzagzag1-Jan-05 11:55 
GeneralRe: .NET Pocket Framework Pin
Robert Rohde1-Jan-05 20:40
Robert Rohde1-Jan-05 20:40 
GeneralRe: .NET Pocket Framework Pin
zagzagzag3-Jan-05 1:02
zagzagzag3-Jan-05 1:02 
GeneralImpossibility to start a VB application on another PC Pin
JeepManiac90030-Dec-04 13:49
JeepManiac90030-Dec-04 13:49 
GeneralRe: Impossibility to start a VB application on another PC Pin
Rob Graham30-Dec-04 14:53
Rob Graham30-Dec-04 14:53 
GeneralRe: Impossibility to start a VB application on another PC Pin
Rob Graham30-Dec-04 14:58
Rob Graham30-Dec-04 14:58 
GeneralRe: Impossibility to start a VB application on another PC Pin
Ritesh12347-Jan-05 3:30
Ritesh12347-Jan-05 3:30 
GeneralProblem running release build on non-development machine Pin
rahmanasdf30-Dec-04 7:12
rahmanasdf30-Dec-04 7:12 
GeneralRe: Problem running release build on non-development machine Pin
Mike Dimmick31-Dec-04 4:31
Mike Dimmick31-Dec-04 4:31 
GeneralRe: Problem running release build on non-development machine Pin
rahmanasdf2-Jan-05 5:23
rahmanasdf2-Jan-05 5:23 
GeneralChild windows Form issue Pin
mkennedy7730-Dec-04 6:18
mkennedy7730-Dec-04 6:18 
GeneralRe: Child windows Form issue Pin
Robert Rohde31-Dec-04 2:54
Robert Rohde31-Dec-04 2:54 
GeneralRe: Child windows Form issue Pin
mkennedy7731-Dec-04 12:15
mkennedy7731-Dec-04 12:15 
GeneralRe: Child windows Form issue Pin
Robert Rohde31-Dec-04 16:38
Robert Rohde31-Dec-04 16:38 
GeneralQuestion about the Garbage collector Pin
t_ariel30-Dec-04 2:25
t_ariel30-Dec-04 2:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.