In this case IPtables can be used to retrieve mails.
A model Network setup:
Eth0 : Public N/W
Eth1 : Private N/W
IP Range : 192.168.10.0/24
So hence the Iptables rules for forwarding the packets ,
# iptables --table nat --append POSTROUTING -s 192.168.10.0/24 --out-interface eth1 -j MASQUERADE
# iptables --append FORWARD -s 192.168.10.0/24 --in-interface eth0 -j ACCEPT
# iptables -A INPUT -s 192.168.10.0/24 -j ACCEPT
Insert the above rules,
Save and restart the service
#service iptables save
# service iptables restart
Now you can download your mails in the Outlook express.
Client Side Configuration:
1. Set the Gateway address as Eth1 IP.
2. Open Outlook Express – Tools – Accounts – mail – add new
3. Configure your mail account.
2 comments:
I just read your article dan apply it at my gateway (ubuntu 9.04 + Squid 2.7stable-4.1). It's doesn't work.
To my mind there are a lot of tools which works with mails.But almost all of them couldn't help me in next situation.3 very important mails were deleted from my OE and fortunately I found-outlook express repair tools.Software solved this issue very easy and absolutely free.
Post a Comment