Skip navigation

How do I download to Exchange from multiple POP3 mail boxes?

A. Exchange does not really support the downloading of mail from POP3 since you would be asking a Server to act like a client. A 3rd party piece of software called PULLMAIL which can be downloaded from http://www.swsoft.co.uk/index.asp?page=freesoftware can be used to download from a POP3 mailbox and deposit in an Exchange mailbox. Using the command procedure below it can be made to download from multiple POP3 mailboxes and depost in the correct mailbox.

Enter the following into file getmail.cmd and save.

@ECHO OFF
TITLE GetMail

REM getmail.cmd 20-Aug-1997 Luke Brennan
REM
REM Get the POP3 mail in POP3 accounts and deposit into
REM EXCHANGE accounts
REM
REM uses the PULLMAIL program from -> http://www.swsoft.co.uk/pullmail
REM PULLMAIL specific Info/support -> [email protected]
REM general enquiries -> [email protected]
REM

SET POPUSERS=%SystemRoot%\POPUSERS.DAT
SET PARSEARG="eol=; tokens=1,2,3,4* delims=, "

REM RASPHONE -d OzEmail
For /F %PARSEARG% %%i in (%POPUSERS%) Do PULLMAIL %%i %%j %%k /to:%%l
REM RASPHONE -h OzEmail

REM
TITLE Command Prompt

The next step is to create the file that GETMAIL.CMD will read in, POPUSERS.DAT. Below is an example. GETMAIL.CMD expects to find the file in the %systemroot% directory (e.g. d:\winnt) however you can change that by altering the "SET POPUSERS=.." line.

POPusers.dat
; space or comma delimited file
; 1. ISP pop server 2. POP3 account 3. POP3 password 4. EXCHANGE username
;
savcom.demon.co.uk rita pass savillr
cello.cchs.usyd.edu.au brennan ###### LDB
savill.pipex.co.uk johnsavill pass savillj


Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish