1 |
# default: off |
2 |
# description: The POP3 redirector allows client software which does not have \ |
3 |
# native support for SSL to connect to the local machine's POP3 \ |
4 |
# port and have the connection forwarded over the network using \ |
5 |
# SSL. You will need to modify /etc/xinetd.d/pop3-redirect to \ |
6 |
# specify the server to connect to in order for this to be useful. |
7 |
service pop3 |
8 |
{ |
9 |
disable = yes |
10 |
socket_type = stream |
11 |
wait = no |
12 |
user = root |
13 |
server = /usr/sbin/stunnel |
14 |
server_args = -c -r pop3s-server.example.com:pop3s |
15 |
log_on_success += USERID |
16 |
log_on_failure += USERID |
17 |
} |