Guest User

Untitled

a guest
May 21st, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. # cat /etc/courier/pop3d
  2. ##VERSION: $Id: pop3d.dist.in,v 1.16 2005/07/05 12:42:51 mrsam Exp $
  3. #
  4. # pop3d created from pop3d.dist by sysconftool
  5. #
  6. # Do not alter lines that begin with ##, they are used when upgrading
  7. # this configuration.
  8. #
  9. # Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
  10. # distribution information.
  11. #
  12. # Courier POP3 daemon configuration
  13. #
  14. ##NAME: PIDFILE:0
  15. #
  16.  
  17. PIDFILE=/var/run/courier/pop3d.pid
  18.  
  19. ##NAME: MAXDAEMONS:0
  20. #
  21. # Maximum number of POP3 servers started
  22. #
  23.  
  24. MAXDAEMONS=40
  25.  
  26. ##NAME: MAXPERIP:4
  27. #
  28. # Maximum number of connections to accept from the same IP address
  29.  
  30. MAXPERIP=4
  31.  
  32. ##NAME: POP3AUTH:1
  33. #
  34. # To advertise the SASL capability, per RFC 2449, uncomment the POP3AUTH
  35. # variable:
  36. #
  37. # POP3AUTH="LOGIN"
  38. #
  39. # If you have configured the CRAM-MD5, CRAM-SHA1 or CRAM-SHA256, set POP3AUTH
  40. # to something like this:
  41. #
  42. # POP3AUTH="LOGIN CRAM-MD5 CRAM-SHA1"
  43.  
  44. POP3AUTH=""
  45.  
  46. ##NAME: POP3AUTH_ORIG:1
  47. #
  48. # For use by webadmin
  49.  
  50. POP3AUTH_ORIG="PLAIN LOGIN CRAM-MD5 CRAM-SHA1 CRAM-SHA256"
  51.  
  52. ##NAME: POP3AUTH_TLS:1
  53. #
  54. # To also advertise SASL PLAIN if SSL is enabled, uncomment the
  55. # POP3AUTH_TLS environment variable:
  56. #
  57. # POP3AUTH_TLS="LOGIN PLAIN"
  58.  
  59. POP3AUTH_TLS=""
  60.  
  61. ##NAME: POP3AUTH_TLS_ORIG:0
  62. #
  63. # For use by webadmin
  64.  
  65. POP3AUTH_TLS_ORIG="LOGIN PLAIN"
  66.  
  67. ##NAME: POP3_PROXY:0
  68. #
  69. # Enable proxying. See README.proxy
  70.  
  71. POP3_PROXY=0
  72.  
  73. ##NAME: PROXY_HOSTNAME:0
  74. #
  75. # Override value from gethostname() when checking if a proxy connection is
  76. # required.
  77.  
  78. # PROXY_HOSTNAME=
  79.  
  80. ##NAME: PORT:1
  81. #
  82. # Port to listen on for connections. The default is port 110.
  83. #
  84. # Multiple port numbers can be separated by commas. When multiple port
  85. # numbers are used it is possibly to select a specific IP address for a
  86. # given port as "ip.port". For example, "127.0.0.1.900,192.68.0.1.900"
  87. # accepts connections on port 900 on IP addresses 127.0.0.1 and 192.68.0.1
  88. # The ADDRESS setting is a default for ports that do not have a specified
  89. # IP address.
  90.  
  91. PORT=110
  92.  
  93. ##NAME: ADDRESS:0
  94. #
  95. # IP address to listen on. 0 means all IP addresses.
  96.  
  97. ADDRESS=0
  98.  
  99. ##NAME: TCPDOPTS:0
  100. #
  101. # Other couriertcpd(1) options. The following defaults should be fine.
  102. #
  103.  
  104. TCPDOPTS="-nodnslookup -noidentlookup"
  105.  
  106. ##NAME: LOGGEROPTS:0
  107. #
  108. # courierlogger(1) options.
  109. #
  110.  
  111. LOGGEROPTS="-name=pop3d"
  112.  
  113. ##NAME: DEFDOMAIN:0
  114. #
  115. # Optional default domain. If the username does not contain the
  116. # first character of DEFDOMAIN, then it is appended to the username.
  117. # If DEFDOMAIN and DOMAINSEP are both set, then DEFDOMAIN is appended
  118. # only if the username does not contain any character from DOMAINSEP.
  119. # You can set different default domains based on the the interface IP
  120. # address using the -access and -accesslocal options of couriertcpd(1).
  121.  
  122. #DEFDOMAIN="@example.com"
  123.  
  124. ##NAME: POP3DSTART:0
  125. #
  126. # POP3DSTART is not referenced anywhere in the standard Courier programs
  127. # or scripts. Rather, this is a convenient flag to be read by your system
  128. # startup script in /etc/rc.d, like this:
  129. #
  130. # . /etc/courier/pop3d
  131. # case x$POP3DSTART in
  132. # x[yY]*)
  133. # /usr/lib/courier/pop3d.rc start
  134. # ;;
  135. # esac
  136. #
  137. # The default setting is going to be NO, until Courier is shipped by default
  138. # with enough platforms so that people get annoyed with having to flip it to
  139. # YES every time.
  140.  
  141. POP3DSTART=YES
  142.  
  143. ##NAME: MAILDIRPATH:0
  144. #
  145. # MAILDIRPATH - directory name of the maildir directory.
  146. #
  147. MAILDIRPATH=Maildir
Add Comment
Please, Sign In to add comment