Link to home
Start Free TrialLog in
Avatar of dcarrion
dcarrion

asked on

POP to Postfix

Hello

Okay this is what I want to do. One of our clients internet service provider provides mailboxes via pop. We want to download those messages using POP on our mail gateway and relay it through to our exchange server. I have no intentions of using a POP connector for our exchange server as the server is all ready burdened enough. Any ideas? Currently running Debian as our mail gateway with Postfix and a few other filtering software such as mailscanner. Is there something I can put on there to download mail via pop send it through to Postfix via SMTP and then use relaying configs i all ready have to pass it through to our exchange server?

Thanks

Daniel
Avatar of slyong
slyong

Hi Daniel,

You might want to check that your clients ISP mailbox has got forwarding option.  If not, fetchmail is your friend.  Use fetchmail and create .fetchmailrc as:

poll pop.isp.com with proto POP3
    user "pop_userid" with pass "pop_password"  
    smtpname "email@to.forward.com"
    is * here
    smtphost localhost
Avatar of dcarrion

ASKER

That sounds good. I've just run apt-get install fetchmail. Does the config file go in /etc/ ?
ASKER CERTIFIED SOLUTION
Avatar of slyong
slyong

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Okay thank you :)
no worries.  Thanks for the points