home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20110502.etc.tar.gz / bradford.20110502.etc.tar / etc / sysconfig / postfix < prev    next >
Text File  |  2006-12-18  |  9KB  |  322 lines

  1. ## Path:        Network/Mail/Postfix
  2. ## Description: Basic configuration of the postfix MTA
  3. ## Type:        string
  4. ## Default:     ""
  5. ## Config:      postfix
  6. #
  7. # Should we use a mailrelay?
  8. # NOTE: ALL mail that is not considered to be my destination
  9. # (POSTFIX_LOCALDOMAINS), will be sent to this host.
  10. # If this host is not your MX, then you have to use [square brackets]
  11. # around the hostname, e.g. [relay.example.com]
  12. # You may also specify an alternate port number, e.g.
  13. # relay.example.com:26 or [relay.example.com]:26 to prevent MX lookups.
  14. #
  15. POSTFIX_RELAYHOST=""
  16.  
  17. ## Type:        string
  18. ## Default:     ""
  19. ## Config:      postfix
  20. #
  21. # Comma separated list of domains that must have their subdomain
  22. # structure stripped off.
  23. # NOTE: If set, FROM_HEADER will also be appended to this list
  24. #
  25. POSTFIX_MASQUERADE_DOMAIN=""
  26.  
  27. ## Type:        string
  28. ## Default:     ""
  29. ## Config:      postfix
  30. #
  31. # Comma separated list of host-/domainnames for which postfix
  32. # should accept mail for.
  33. # localhost and the own hostname is the default if POSTFIX_LOCALDOMAINS
  34. # is set empty.
  35. # Examples:
  36. #  POSTFIX_LOCALDOMAINS="\$myhostname, \$mydomain, localhost.\$mydomain"
  37. # if you want to use postfix internal variable substitutes or
  38. #  POSTFIX_LOCALDOMAINS="example.com, host.example.com, localhost.example.com"
  39. #
  40. POSTFIX_LOCALDOMAINS=""
  41.  
  42. ## Type:           yesno
  43. ## Default:        no
  44. ## Config:         postfix
  45. ## ServiceRestart: postfix
  46. #
  47. # A null client is a machine that can only send mail. It receives no
  48. # mail from the network, and it does not deliver any mail locally.
  49. # A null client typically uses POP or NFS for mailbox access.
  50. # NOTE: This overrides the following variable: POSTFIX_LOCALDOMAINS
  51. #
  52. POSTFIX_NULLCLIENT="no"
  53.  
  54. ## Type:        yesno
  55. ## Default:     no
  56. ## Config:      postfix
  57. #
  58. # if set to yes, mail that will be delivered via smtp will stay
  59. # in the queue unless someone issues "sendmail -q" or equivalent.
  60. #
  61. POSTFIX_DIALUP="no"
  62.  
  63. ## Type:        yesno
  64. ## Default:     no
  65. ## Config:      postfix
  66. #
  67. # Some people use Postfix to deliver mail across a LAN that is disconnected
  68. # most of the time. Under such conditions, mail delivery can suffer from
  69. # delays while the Postfix SMTP client performs sender and recipient
  70. # domain DNS lookups in order to be standards-compliant. To prevent these
  71. # delays, set this to yes.
  72. #
  73. POSTFIX_NODNS="no"
  74.  
  75. ## Type:        yesno
  76. ## Default:     no
  77. ## Config:      postfix
  78. #
  79. # Start postfix services chrooted, that are able to run chrooted?
  80. # Note: if you want SuSEconfig to maintain the chroot jail, you
  81. # also have to set POSTFIX_UPDATE_CHROOT_JAIL to yes
  82. #
  83. POSTFIX_CHROOT="no"
  84.  
  85. ## Type:        yesno
  86. ## Default:     no
  87. ## Config:      postfix
  88. #
  89. # Set this to yes, if SuSEconfig should setup the chroot jail itself
  90. #
  91. POSTFIX_UPDATE_CHROOT_JAIL=no
  92.  
  93. ## Type:        yesno
  94. ## Default:     no
  95. ## Config:      postfix
  96. #
  97. # Some of the postfix services require a fifo to operate correctly at least
  98. # when the system load is high. Recurring fifo access will prevent the
  99. # disk to fall asleep, so you might want to use a unix domain socket
  100. # instead, if you are using a laptop.
  101. #
  102. POSTFIX_LAPTOP=no
  103.  
  104. ## Type:        yesno
  105. ## Default:     yes
  106. ## Config:      postfix
  107. #
  108. # Should SuSEconfig update the different .db maps in /etc/postfix?
  109. #
  110. POSTFIX_UPDATE_MAPS=yes
  111.  
  112. ## Type:        string
  113. ## Default:     "virtual transport access canonical sender_canonical relocated sasl_passwd:600 relay_ccerts"
  114. ## Config:      postfix
  115. #
  116. # The list of maps, which should be maintained, if
  117. # POSTFIX_UPDATE_MAPS=yes. POSTFIX_MAP_LIST must be a space seperated list of
  118. # file names without an absolute path. They are all to be exptected
  119. # within the directory /etc/postfix. Optionally a file mode can be appended
  120. # using a colon as separator
  121. #
  122. POSTFIX_MAP_LIST="virtual transport access canonical sender_canonical relocated sasl_passwd:600 relay_ccerts"
  123.  
  124. ## Type:        string
  125. ## Default:     ""
  126. ## Config:      postfix
  127. #
  128. # A comma seperated list of hosts that blacklist client IP addresses
  129. # Note: This only has effect, if POSTFIX_BASIC_SPAM_PREVENTION is set
  130. # to either "medium" or "hard". If left empty, no RBL checks will take place.
  131. #
  132. # Example: POSTFIX_RBL_HOSTS="rbl1.example.com, rbl2.example.com"
  133. #
  134. POSTFIX_RBL_HOSTS=""
  135.  
  136. ## Type:        string(off,medium,hard)
  137. ## Default:     off
  138. ## Config:      postfix
  139. #
  140. # POSTFIX_BASIC_SPAM_PREVENTION possible values:
  141. #    off    : postfix default configuration
  142. #    medium : medium UCE policy checks
  143. #    hard   : hard UCE policy checks
  144. #
  145. # Setting this to medium or hard will activate some basic UCE controls
  146. # supported by postfix. This may lead to mails which are undeliverable
  147. # to your mailserver! USE THAT ON YOUR OWN RISC!!!
  148. # See http://www.postfix.org/uce.html for more details !
  149. #
  150. POSTFIX_BASIC_SPAM_PREVENTION=off
  151.  
  152. ## Type:        list(procmail,cyrus,local)
  153. ## Default:     local
  154. ## Config:      postfix
  155. #
  156. # POSTFIX_MDA possible values:
  157. # procmail: use procmail to deliver mail locally
  158. # cyrus   : use lmtp to deliver to cyrus-imapd
  159. # local   : use postfix local MDA
  160. #
  161. POSTFIX_MDA=local
  162.  
  163. ## Type:        yesno 
  164. ## Default:     no
  165. ## Config:      postfix
  166. #
  167. # Configure postfix to enable users to auth against postfix
  168. # to be able to relay mail independent of being within
  169. # the local network/domain.
  170. # You may want to edit /usr/lib64/sasl2/smtpd.conf to fit
  171. # your needs.
  172. # See /usr/share/doc/packages/postfix/README_FILES/SASL_README
  173. # for more details.
  174. #
  175. POSTFIX_SMTP_AUTH_SERVER=no
  176.  
  177. ## Type:        yesno 
  178. ## Default:     no
  179. ## Config:      postfix
  180. #
  181. # Enable SMTP-AUTH for the postfix smtp client
  182. # you have to edit /etc/postfix/sasl_passwd and call
  183. # SuSEconfig -module postfix afterwards
  184. #
  185. POSTFIX_SMTP_AUTH=no
  186.  
  187. ## Type:        string
  188. ## Default:     ""
  189. ## Config:      postfix
  190. #
  191. # POSTFIX_SMTP_AUTH_OPTIONS possible values:
  192. # comma separated list of one or more of
  193. #
  194. # noplaintext:  disallow methods that use plaintext passwords
  195. # noactive:     disallow methods subject to active (non-dictionary) attack
  196. # nodictionary: disallow methods subject to passive (dictionary) attack
  197. # noanonymous:  disallow methods that allow anonymous authentication
  198. #
  199. POSTFIX_SMTP_AUTH_OPTIONS=""
  200.  
  201. ## Type:        yesno
  202. ## Default:     no
  203. ## Config:      postfix
  204. #
  205. # Do you want to use STARTTLS or SMTP over SSL
  206. #
  207. POSTFIX_SMTP_TLS_SERVER=no
  208.  
  209. ## Type:        yesno
  210. ## Default:     no
  211. ## Config:      postfix
  212. #
  213. # Do you want to enable postfix smtp client to use TLS
  214. #
  215. POSTFIX_SMTP_TLS_CLIENT="no"
  216.  
  217. ## Type:        string
  218. ## Default:     "/etc/postfix/ssl"
  219. ## Config:      postfix
  220. #
  221. # path to the directory where the CA can be found
  222. POSTFIX_SSL_PATH="/etc/postfix/ssl"
  223.  
  224. ## Type:        string
  225. ## Default:     "cacert.pem"
  226. ## Config:      postfix
  227. #
  228. # name of the CA file (below POSTFIX_SSL_PATH)
  229. POSTFIX_TLS_CAFILE="cacert.pem"
  230.  
  231. ## Type:        string
  232. ## Default:     "certs/postfixcert.pem"
  233. ## Config:      postfix
  234. #
  235. # name of the file containing the certificate (below POSTFIX_SSL_PATH)
  236. POSTFIX_TLS_CERTFILE="certs/postfixcert.pem"
  237.  
  238. ## Type:        string
  239. ## Default:     "certs/postfixkey.pem"
  240. ## Config:      postfix
  241. #
  242. # name of the file containing the key (below POSTFIX_SSL_PATH)
  243. POSTFIX_TLS_KEYFILE="certs/postfixkey.pem"
  244.  
  245. #
  246. # The following options are used by SuSEconfig.postix and mkpostfixcert
  247. # to create a CA and certificates
  248. # POSTFIX_SSL_COUNTRY must be a two letter code defined by ISO 3166
  249. #
  250. ## Type:        string
  251. ## Default:     "XX"
  252. POSTFIX_SSL_COUNTRY="XX"
  253.  
  254. ## Type:        string
  255. ## Default:     "Some state"
  256. POSTFIX_SSL_STATE="Some state"
  257.  
  258. ## Type:        string
  259. ## Default:     "Some locality"
  260. POSTFIX_SSL_LOCALITY="Some locality"
  261.  
  262. ## Type:        string
  263. ## Default:     "Some Organization"
  264. POSTFIX_SSL_ORGANIZATION="Some Organization"
  265.  
  266. ## Type:        string
  267. ## Default:     "Some Organizational Unit"
  268. POSTFIX_SSL_ORGANIZATIONAL_UNIT="Some Organizational Unit"
  269.  
  270. ## Type:        string
  271. ## Default:     "A common name"
  272. POSTFIX_SSL_COMMON_NAME="A common name"
  273.  
  274. ## Type:        string
  275. ## Default:     "postmaster"
  276. POSTFIX_SSL_EMAIL_ADDRESS="postmaster"
  277.  
  278. #
  279. # POSTFIX_ADD_*
  280. # You may add any existing postfix parameter here. Just execute the
  281. # postconf command to get a complete list. You then have to uppercase
  282. # the parameter and prepend POSTFIX_ADD_.
  283. # Example:
  284. # Let's say you want to add the postfix parameter mailbox_size_limit.
  285. # Then just add
  286. # POSTFIX_ADD_MAILBOX_SIZE_LIMIT=0
  287. # POSTFIX_ADD_MESSAGE_SIZE_LIMIT=30000000
  288.  
  289. ## Type:        string
  290. ## Default:     0
  291. POSTFIX_ADD_MAILBOX_SIZE_LIMIT=0
  292.  
  293. ## Type:        string
  294. ## Default:     10240000
  295. POSTFIX_ADD_MESSAGE_SIZE_LIMIT=10240000
  296.  
  297. ## Type:        yesno
  298. ## Default:     yes
  299. ## Config:      postfix
  300. #
  301. # Automatically register to slpd, if running?
  302. #
  303. POSTFIX_REGISTER_SLP="yes"
  304.  
  305. ## Type: list(subnet,host,class)
  306. ## Default: subnet
  307. ## Config: postfix
  308. #
  309. #
  310. # The postfix default for this setting is "subnet"
  311. # for security reasons you should use host
  312. # otherwise every user in the same subnet as you, can use
  313. # your postfix server as a mail relay for spam.
  314. # If you set POSTFIX_DIALUP to "yes" mynetworks_style
  315. # will be set to "host" by SuSEconfig.
  316. #
  317. POSTFIX_ADD_MYNETWORKS_STYLE="subnet"
  318.