LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   POPFile and xinetd (https://www.linuxquestions.org/questions/linux-software-2/popfile-and-xinetd-127494/)

codedv 12-20-2003 04:09 AM

POPFile and xinetd
 
I am trying to get POPFile to work on my linux box. I am using xinetd to listen on the ports but I am not having any luck. POPFile is a Pop3 Server which comes with a HTTP UI. I have the following services defined in the xinetd.conf file:
Code:

#
# Service POPFile Server HTTP UI
#
service unlisted
{
        type                = UNLISTED
        socket_type        = stream
        potocol            = http
        wait                = no
        server              = perl
        server_args        = /home/adam/popfile/popfile.pl -pop3_port 1110 -html_port 8081
        user                = adam
        port                = 8081
}

#
# Service POPFile Server POP3 Server
#
service unlisted
{
        type                = UNLISTED
        socket_type        = stream
        potocol            = pop3
        wait                = no
        server              = perl
        server_args        = /home/adam/popfile/popfile.pl -pop3_port 1110 -html_port 8081
        user                = adam
        port                = 1110
}

Unfortunatly this is not working at all. Does anyone have any ideas why. I've never used xinetd before so I'm hoping its osomething simple.


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