|
[ Order a Server ] [ Server Support ] |
|
[ Getting Started ] [ Server Help ] [ Add on Help ] [ Solution ] [ Trouble Shooting ] PLEASE NOTE, THIS IS VERY OLD ARCHIVE INFORMATION AND MAY NOT FUNCTION ON NEW SERVERS
Configuring Your Exchange Server for Mail-On-DemandTo implement Microsoft Exchange Mail-On-Demand, you will need to configure your Exchange Server to dial-up to the local ISP on demand. How to do this should be documented in your Exchange Server manuals. A great additional resource is provided by Simpler-Webb. In essence you need to:
http://www.swinc.com/files/dequeue.exe In essence, you're connecting to your SMTP port and telling the mail server you want to dequeue your mail. For those people not using Exchange Server, you could write your own script. Here is an example Unix shell script that would do the same (substitute your domain name for my-domain.com).
#!/bin/sh # I got this from: # http://www.swinc.com/resource/exch_smtp.htm # Send ETRN command to sendmail 8.8.x # written by Andy Rabagliati <andyr@wizzy.com> # telnet mail.my-domain.com smtp <<SMTP_EOF ETRN my-domain.com QUIT SMTP_EOF # # End of Shell script # Or alternately #!/bin/sh OURSITE=exchange.isp.com MAILSERVER=mail.sfpsi.com TELNET=/usr/bin/telnet PORT=25 echo "etrn $OURSITE" |$TELNET $MAILSERVER $PORT exit 0
ISP ConfigurationYou must have a dedicated IP address for the Exchange Server dial-up solution to work. There is no other alternative to this (currently). You must do one of the following.The second thing your ISP must do for you is map a domain name to that dedicated IP address. For example, if your local Internet Service Provider has a domain name "my-isp. com" and they were going to give you an IP address of 222.222.222.222, you want them to map 222.222.222.222 to a unique instance of my-isp.com. As an example:
exchange.myisp.com mapped to 222.222.222.222 Here is an example DNS entry for this:
Another alternative would be to use your Virtual Server domain name in the zone file above instead of the name "exchange". For example if I had a Virtual Server and my domain name for the Virtual Server was mycompany.com I might have my ISP set up their DNS zone to point to
mycompany A 222.222.222.222 Now, all mail sent to mycompany.my-isp.com would resolve to the dedicated IP address 222.222.222.222 This is important, you must have a dedicated IP address (one that is uniquely assigned to your Exchange Server), and you must have a domain name pointing to that IP address for the Mail-On-Demand solution to work.
Virtual Server ConfigurationFinally, you must Configure Your Virtual Server for Mail-On-Demand.
PLEASE NOTE, THIS IS OLD ARCHIVE INFORMATION AND MAY NOT FUNCTION ON NEW SERVERS |