LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Zenwalk: need help enabling ports 25 & 110 to make thunderbird's webmail ext. work (https://www.linuxquestions.org/questions/linux-newbie-8/zenwalk-need-help-enabling-ports-25-and-110-to-make-thunderbirds-webmail-ext-work-566808/)

frazum 07-05-2007 07:18 AM

Zenwalk: need help enabling ports 25 & 110 to make thunderbird's webmail ext. work
 
Hi All!
I have just installed webmail extension (webmail.mozdev.org) for Thunderbird and I am having a problem. When I was configuring the server option, I noticed that port 110 and 25 generated error message. In other words, these two ports are not open. I verify this with nmap. I noticed on that configuration screen that it said "some OS's block ports below 1024". I am running this at the user level, so certainly some ports will be blocked.

How do I open these two ports for the user? I have done the iptables at the root level, but it doesn't seem to solve the problem.

Code:

iptables -A INPUT -s 0/0 -p tcp -m state --state NEW -m tcp -d 127.0.0.1 --dport 25 -j ACCEPT
iptables -A OUTPUT -s 127.0.0.1 -p tcp -m state --state NEW -m tcp -d 0/0 --dport 25 -j ACCEPT
iptables -A INPUT -s 0/0 -p tcp -m state --state NEW -m tcp -d 127.0.0.1 --dport 110 -j ACCEPT
iptables -A OUTPUT -s 127.0.0.1 -p tcp -m state --state NEW -m tcp -d 0/0 --dport 110 -j ACCEPT

I am running Zenwalk 4.6.1 and I am not running any servers. I am just using it as a desktop OS.

TIA

frazum 07-05-2007 10:16 AM

Sorry for the double post. When it didn't show up the first time I did it after about 15 minutes. I decided to redo it. Anyways... I am looking forward to any answers who can lead me to solving this problem of mine.


All times are GMT -5. The time now is 06:18 AM.