Re: xinetd.d entry for perdition
Rudy Gevaert <[email protected]>
| Newsgroups | gmane.mail.perdition.user |
|---|---|
| Message-ID | <[email protected]> |
On 10/20/2010 11:12 AM, Simon Horman wrote: > On Wed, Oct 20, 2010 at 10:15:08AM +0200, Tobias Reckhard wrote: >> Hi >> >> Sorry for this rather basic and more xinetd-oriented question, but does >> anyone on this list perhaps have an xinetd.conf snippet for perdition >> that they'd be willing to post? I'm having difficulties transferring the >> inetd configuration instructions from the man page to xinetd syntax. > > If anyone has one I would be happy to put it in the tree. Please see the attachment ______________________________________________ Perdition-users mailing list [email protected] http://lists.vergenet.net/listinfo/perdition-users
perdition
(text/plain, 1.6 KB)
# Perdition
service imaps
{
id = imaps
socket_type = stream
protocol = tcp
wait = no
user = nobody
server = /usr/sbin/perdition.imap4s
server_args = -i --ssl_mode ssl_all
disable = no
instances = UNLIMITED
flags = KEEPALIVE
}
service pop3s
{
id = pop3s
socket_type = stream
protocol = tcp
wait = no
user = nobody
server = /usr/sbin/perdition.pop3s
server_args = -i --ssl_mode ssl_all
disable = no
instances = UNLIMITED
flags = KEEPALIVE
}
service imap
{
id = imap
socket_type = stream
protocol = tcp
wait = no
user = nobody
server = /usr/sbin/perdition.imap4
server_args = -i --ssl_mode tls_all,tls_all_force
disable = no
instances = UNLIMITED
flags = KEEPALIVE
}
service pop3
{
id = pop3
socket_type = stream
protocol = tcp
wait = no
user = nobody
server = /usr/sbin/perdition.pop3
server_args = -i --ssl_mode tls_all,tls_all_force
disable = no
instances = UNLIMITED
flags = KEEPALIVE
}