1##VERSION: $Id: 0877c2dea580caaeb10e5394cb859fd6ce6e1b5b-20210424122956$
2#
3# pop3d created from pop3d.dist by sysconftool
4#
5# Do not alter lines that begin with ##, they are used when upgrading
6# this configuration.
7#
8#  Copyright 1998 - 2011 Double Precision, Inc.  See COPYING for
9#  distribution information.
10#
11#  Courier POP3 daemon configuration
12#
13##NAME: PIDFILE:0
14#
15
16PIDFILE=@piddir@/pop3d.pid
17
18##NAME: MAXDAEMONS:0
19#
20#  Maximum number of POP3 servers started
21#
22
23MAXDAEMONS=40
24
25##NAME: MAXPERIP:4
26#
27#  Maximum number of connections to accept from the same IP address
28
29MAXPERIP=4
30
31##NAME: POP3AUTH:1
32#
33# To advertise the SASL capability, per RFC 2449, uncomment the POP3AUTH
34# variable:
35#
36# POP3AUTH="LOGIN"
37#
38# If you have configured the CRAM-MD5, CRAM-SHA1 or CRAM-SHA256, set POP3AUTH
39# to something like this:
40#
41# POP3AUTH="LOGIN CRAM-MD5 CRAM-SHA1"
42
43POP3AUTH=""
44
45##NAME: POP3AUTH_ORIG:1
46#
47# For use by webadmin
48
49POP3AUTH_ORIG="PLAIN LOGIN CRAM-MD5 CRAM-SHA1 CRAM-SHA256"
50
51##NAME: POP3AUTH_TLS:1
52#
53# To also advertise SASL PLAIN if SSL is enabled, uncomment the
54# POP3AUTH_TLS environment variable:
55#
56# POP3AUTH_TLS="LOGIN PLAIN"
57
58POP3AUTH_TLS=""
59
60##NAME: POP3AUTH_TLS_ORIG:0
61#
62# For use by webadmin
63
64POP3AUTH_TLS_ORIG="LOGIN PLAIN"
65
66##NAME: POP3_PROXY:0
67#
68# Enable proxying.  See README.proxy
69
70POP3_PROXY=0
71
72##NAME: PROXY_HOSTNAME:0
73#
74# Override value from gethostname() when checking if a proxy connection is
75# required.
76
77# PROXY_HOSTNAME=
78
79##NAME: PORT:1
80#
81# Port to listen on for connections.  The default is port 110.
82#
83#  Multiple port numbers can be separated by commas.  When multiple port
84#  numbers are used it is possibly to select a specific IP address for a
85#  given port as "ip.port".  For example, "127.0.0.1.900,192.68.0.1.900"
86#  accepts connections on port 900 on IP addresses 127.0.0.1 and 192.68.0.1
87#  The ADDRESS setting is a default for ports that do not have a specified
88#  IP address.
89
90PORT=110
91
92##NAME: ADDRESS:0
93#
94# IP address to listen on.  0 means all IP addresses.
95
96ADDRESS=0
97
98##NAME: AUTHSERVICE:0
99#
100#  It's possible to authenticate using a different 'service' parameter
101#  depending on the connection's port.  This only works with authentication
102#  modules that use the 'service' parameter, such as PAM.  Example:
103#
104#  AUTHSERVICE110=pop3
105#  AUTHSERVICE995=pop3s
106
107##NAME: TCPDOPTS:0
108#
109# Other couriertcpd(1) options.  The following defaults should be fine.
110#
111
112TCPDOPTS="-nodnslookup -noidentlookup"
113
114##NAME: LOGGEROPTS:0
115#
116# courierlogger(1) options.
117#
118
119LOGGEROPTS="-name=pop3d"
120
121##NAME: DEFDOMAIN:0
122#
123# Optional default domain. If the username does not contain the
124# first character of DEFDOMAIN, then it is appended to the username.
125# If DEFDOMAIN and DOMAINSEP are both set, then DEFDOMAIN is appended
126# only if the username does not contain any character from DOMAINSEP.
127# You can set different default domains based on the the interface IP
128# address using the -access and -accesslocal options of couriertcpd(1).
129
130#DEFDOMAIN="@example.com"
131
132##NAME: POP3DSTART:0
133#
134# POP3DSTART is not referenced anywhere in the standard Courier programs
135# or scripts.  Rather, this is a convenient flag to be read by your system
136# startup script in /etc/rc.d, like this:
137#
138#  . @sysconfdir@/pop3d
139#  case x$POP3DSTART in
140#  x[yY]*)
141#        @libexecdir@/pop3d.rc start
142#        ;;
143#  esac
144#
145# The default setting is going to be NO, until Courier is shipped by default
146# with enough platforms so that people get annoyed with having to flip it to
147# YES every time.
148
149POP3DSTART=NO
150
151##NAME: POP3_LOG_DELETIONS:0
152#
153#
154# Set POP3_LOG_DELETIONS to log all message deletions to syslog.
155#
156# POP3_LOG_DELETIONS=1
157
158##NAME: AUTH_MKHOMEDIR_SKEL:0
159#
160# Uncomment this setting to automatically create a home directory on first
161# login. if the AUTH_MKHOMEDIR_SKEL environment variable is set, and the
162# home directory does not exist, the home directory gets created, with its
163# initial contents copied from AUTH_MKHOMEDIR_SKEL which must be a directory,
164# typically /etc/skel.
165#
166# Note that this must be a complete home directory structure, including
167# the maildir. Typically:
168#
169# mkdir /etc/skel
170# chmod 700 /etc/skel
171# maildirmak /etc/skel/Maildir
172#
173# This directory gets copied as is, preserving each file/subdirectory's
174# permissions, with only userid/groupid changed to match the account's.
175#
176#
177# AUTH_MKHOMEDIR_SKEL=/etc/skel
178
179##NAME: MAILDIRPATH:0
180#
181# MAILDIRPATH - directory name of the maildir directory.
182#
183MAILDIRPATH=Maildir
184
185##NAME: MIME_UNICODE_MESSAGE_TYPE:0
186#
187# MIME type that wraps Unicode messages for downloading by non-Unicode
188# POP3 clients.
189#
190# This can be changed to "message/rfc822" to accomodate older mail clients.
191
192MIME_UNICODE_MESSAGE_TYPE="message/global"
193