Guest User!

You are not Sophos Staff.

POP3 downloader hack possible?

Hey Guys...  I dont think this has been asked before so here goes

I am aware the full advantages of running a direct email server but I have a few smaller clients who POP3 accounts from the ISP.  They do run an exchange server behind an Astaro box which helps a ton for many reasons.

Is there a way to make Astaro a POP3 downloader and forward the accounts through the SMTP for virus scaning?  I currenlty have the Win2k server doing it but the emails dont get scanned so forth?

Any idea or hacks?  Just a thought
thanks
Resistance
Parents Reply
  • Connect, 

    As far as my knowledge goes you'll need some sort of internal storagepoint for your pop3 boxes, so that the internal pc's access that box to receive mail. You can then use a suitable tool to fetch the external pop-mail, do with it what you want, and then deliver it to your internal mail system.

    A search on Google makes me wonder if my theorie is correct. Try pop3.proxy. Maybe that is what you are looking for?

    [ 28 March 2002: Message edited by: adminVMW ]

Children
  • A .fetchmailrc like this should get you going:-

    #
    #
    #
    set logfile /home/mailadm/dm/fetchmail.log
    #
    # Retrieve email from ISP using POP3 (you may need the following
    # if your LAN has a different Domain name to that of your email address).
    # poll pop3.myisp.com proto pop3 localdomains MYDOMAIN.COM:
    poll POP3.MYISP.COM proto pop3 :
            user USERNAME with pass PASSWORD
            to * here
    #
    # Deliver via smtp to real mail server (e.g. MS Exchange)
    #
            smtphost SMTPHOSTNAME
            smtpaddress MYDOMAIN.COM

    Be sure to test it well with the fetchmail keep mail option before using it in a live environment.
    Replace the entries in CAPITALS with your own specific values.

    John

    [ 28 March 2002: Message edited by: johna ]