1aea240763
Thu Dec 21 2000 Nalin Dahyabhai <nalin@redhat.com> - update to 3.10 - more 64-bit clean changes, hopefully the last bunch Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com> - change piddir from the default /var/stunnel to /var/run - clean out pid file on SIGHUP Fri Dec 15 2000 Nalin Dahyabhai <nalin@redhat.com> - update to 3.9 to get a security fix Wed Oct 25 2000 Matt Wilson <msw@redhat.com> - change all unsigned longs to u_int32_t when dealing with network addresses
18 lines
607 B
Plaintext
18 lines
607 B
Plaintext
# default: off
|
|
# description: The POP3 redirector allows client software which does not have \
|
|
# native support for SSL to connect to the local machine's POP3 \
|
|
# port and have the connection forwarded over the network using \
|
|
# SSL. You will need to modify /etc/xinetd.d/pop3-redirect to \
|
|
# specify the server to connect to in order for this to be useful.
|
|
service pop3
|
|
{
|
|
disable = yes
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = /usr/sbin/stunnel
|
|
server_args = -c -r pop3s-server.example.com:pop3s
|
|
log_on_success += USERID
|
|
log_on_failure += USERID
|
|
}
|