XFOR: IMS/IMC Will not Dial an ISP as Specified (175410)
The information in this article applies to:
- Microsoft Exchange Server 4.0
- Microsoft Exchange Server 5.0
This article was previously published under Q175410 SYMPTOMS
The Microsoft Exchange Server version 5.0 Internet Mail Service (IMS) and
the Microsoft Exchange Server version 4.0 Internet Mail Connector (IMC)
may stop periodically when dialing an Internet Service Provider (ISP).
The dial-up schedule is specified in the Dial-up Connections property page
in the Microsoft Exchange Administrator program.
RESOLUTION
To avoid this situation, a script will need to be written or modified that
has specific timeout parameters for each 'waitfor' command. The success of
each 'waitfor' command should also be tested before the script proceeds to
the next command. If the situation arises where the ISP does not respond
to the script, the script will stop processing after the timeout has been
reached and when the IMS or IMC disconnects, the RAS port will not remain
locked thus allowing the IMS or IMC to redial as scheduled.
Here is a sample script with the additional timeout logic added. Please
note that this script is specific to the OzEmail ISP in Australia and may
not work with any other ISP. Please contact your ISP for further
information as to the script requirements.
; OzEmail Script for PPP Access
;
; Last revised: October 10 1997
; Main entry point to script
proc main
waitfor "ervice?" until 90
if $SUCCESS then ; Checking whether this is successful...
transmit "p^M"
waitfor "sername:" until 60
if $SUCCESS then ; Checking whether this is successful...
transmit $USERID, raw
transmit "^M"
waitfor "assword:" until 60
if $SUCCESS then ; Checking whether this is successful...
transmit $PASSWORD, raw
transmit "^M"
endif
endif
endif
endproc
Modification Type: | Minor | Last Reviewed: | 4/21/2005 |
---|
Keywords: | kbprb KB175410 |
---|
|