Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Mine
Wednesday, May 9th, 2007 at 7:32:08pm UTC 

  1. postconf -n:
  2.  
  3. command_directory = /usr/sbin
  4. config_directory = /etc/postfix
  5. daemon_directory = /usr/libexec/postfix
  6. debug_peer_level = 2
  7. html_directory = /usr/share/doc/html/postfix
  8. inet_interfaces = all
  9. inet_protocols = all
  10. mail_owner = postfix
  11. mail_spool_directory = /var/mail
  12. mailq_path = /usr/bin/mailq
  13. manpage_directory = /usr/share/man
  14. mydestination = myexternaldomain.com, $myhostname, localhost.$mydomain, localhost
  15. mydomain = localdomain
  16. myhostname = altair.home
  17. myorigin = /etc/mailname
  18. newaliases_path = /usr/bin/newaliases
  19. queue_directory = /var/spool/postfix
  20. readme_directory = /usr/share/examples/postfix
  21. sample_directory = /usr/share/examples/postfix
  22. sendmail_path = /usr/sbin/sendmail
  23. setgid_group = maildrop
  24. unknown_local_recipient_reject_code = 550
  25.  
  26. /etc/postfix/main.cf:
  27. #       $NetBSD: main.cf,v 1.11.2.1 2006/07/12 15:06:33 tron Exp $
  28. #
  29. # Global Postfix configuration file. This file lists only a subset
  30. # of all 300+ parameters. See the postconf(5) manual page for a
  31. # complete list.
  32. #
  33. # The general format of each line is: parameter = value. Lines
  34. # that begin with whitespace continue the previous line. A value can
  35. # contain references to other $names or ${name}s.
  36. #
  37. # NOTE - CHANGE NO MORE THAN 2-3 PARAMETERS AT A TIME, AND TEST IF
  38. # POSTFIX STILL WORKS AFTER EVERY CHANGE.
  39.  
  40. # SOFT BOUNCE
  41. #
  42. # The soft_bounce parameter provides a limited safety net for
  43. # testing.  When soft_bounce is enabled, mail will remain queued that
  44. # would otherwise bounce. This parameter disables locally-generated
  45. # bounces, and prevents the SMTP server from rejecting mail permanently
  46. # (by changing 5xx replies into 4xx replies). However, soft_bounce
  47. # is no cure for address rewriting mistakes or mail routing mistakes.
  48. #
  49. #soft_bounce = no
  50.  
  51. # LOCAL PATHNAME INFORMATION
  52. #
  53. # The queue_directory specifies the location of the Postfix queue.
  54. # This is also the root directory of Postfix daemons that run chrooted.
  55. # See the files in examples/chroot-setup for setting up Postfix chroot
  56. # environments on different UNIX systems.
  57. #
  58. queue_directory = /var/spool/postfix
  59.  
  60. # The command_directory parameter specifies the location of all
  61. # postXXX commands.
  62. #
  63. command_directory = /usr/sbin
  64.  
  65. # The daemon_directory parameter specifies the location of all Postfix
  66. # daemon programs (i.e. programs listed in the master.cf file). This
  67. # directory must be owned by root.
  68. #
  69. daemon_directory = /usr/libexec/postfix
  70.  
  71. # QUEUE AND PROCESS OWNERSHIP
  72. #
  73. # The mail_owner parameter specifies the owner of the Postfix queue
  74. # and of most Postfix daemon processes.  Specify the name of a user
  75. # account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
  76. # AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM.  In
  77. # particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
  78. # USER.
  79. #
  80. mail_owner = postfix
  81.  
  82. # The default_privs parameter specifies the default rights used by
  83. # the local delivery agent for delivery to external file or command.
  84. # These rights are used in the absence of a recipient user context.
  85. # DO NOT SPECIFY A PRIVILEGED USER OR THE POSTFIX OWNER.
  86. #
  87. #default_privs = nobody
  88.  
  89. # INTERNET HOST AND DOMAIN NAMES
  90. #
  91. # The myhostname parameter specifies the internet hostname of this
  92. # mail system. The default is to use the fully-qualified domain name
  93. # from gethostname(). $myhostname is used as a default value for many
  94. # other configuration parameters.
  95. #
  96. myhostname = altair.home
  97. #myhostname = virtual.domain.tld
  98.  
  99. # The mydomain parameter specifies the local internet domain name.
  100. # The default is to use $myhostname minus the first component.
  101. # $mydomain is used as a default value for many other configuration
  102. # parameters.
  103. #
  104. #mydomain = domain
  105. #mydomain = domain.tld
  106.  
  107. # SENDING MAIL
  108. #
  109. # The myorigin parameter specifies the domain that locally-posted
  110. # mail appears to come from. The default is to append $myhostname,
  111. # which is fine for small sites.  If you run a domain with multiple
  112. # machines, you should (1) change this to $mydomain and (2) set up
  113. # a domain-wide alias database that aliases each user to
  114. # [email protected]
  115. #
  116. # For the sake of consistency between sender and recipient addresses,
  117. # myorigin also specifies the default domain name that is appended
  118. # to recipient addresses that have no @domain part.
  119. #
  120. myorigin = /etc/mailname
  121. #myorigin = $mydomain
  122.  
  123. # RECEIVING MAIL
  124.  
  125. # The inet_interfaces parameter specifies the network interface
  126. # addresses that this mail system receives mail on.  By default,
  127. # the software claims all active interfaces on the machine. The
  128. # parameter also controls delivery of mail to user@[ip.address].
  129. #
  130. # NOTE: On NetBSD, postfix does not listen on the network by default.
  131. #       To enable inbound mail reception once your configuration is
  132. #       ready, uncomment the smtp service in /etc/postfix/master.cf
  133. #
  134. # See also the proxy_interfaces parameter, for network addresses that
  135. # are forwarded to us via a proxy or network address translator.
  136. #
  137. # Note: you need to stop/start Postfix when this parameter changes.
  138. #
  139. inet_interfaces = all
  140. #inet_interfaces = $myhostname
  141. #inet_interfaces = $myhostname, localhost
  142.  
  143. # NetBSD is IPv6-capable.  Use all available address families.
  144. #
  145. inet_protocols = all
  146.  
  147. # The proxy_interfaces parameter specifies the network interface
  148. # addresses that this mail system receives mail on by way of a
  149. # proxy or network address translation unit. This setting extends
  150. # the address list specified with the inet_interfaces parameter.
  151. #
  152. # You must specify your proxy/NAT addresses when your system is a
  153. # backup MX host for other domains, otherwise mail delivery loops
  154. # will happen when the primary MX host is down.
  155. #
  156. #proxy_interfaces =
  157. #proxy_interfaces = 1.2.3.4
  158.  
  159. # The mydestination parameter specifies the list of domains that this
  160. # machine considers itself the final destination for.
  161. #
  162. # These domains are routed to the delivery agent specified with the
  163. # local_transport parameter setting. By default, that is the UNIX
  164. # compatible delivery agent that lookups all recipients in /etc/passwd
  165. # and /etc/aliases or their equivalent.
  166. #
  167. # The default is $myhostname + localhost.$mydomain.  On a mail domain
  168. # gateway, you should also include $mydomain.
  169. #
  170. # Do not specify the names of virtual domains - those domains are
  171. # specified elsewhere (see VIRTUAL_README).
  172. #
  173. # Do not specify the names of domains that this machine is backup MX
  174. # host for. Specify those names via the relay_domains settings for
  175. # the SMTP server, or use permit_mx_backup if you are lazy (see
  176. # STANDARD_CONFIGURATION_README).
  177. #
  178. # The local machine is always the final destination for mail addressed
  179. # to user@[the.net.work.address] of an interface that the mail system
  180. # receives mail on (see the inet_interfaces parameter).
  181. #
  182. # Specify a list of host or domain names, /file/name or type:table
  183. # patterns, separated by commas and/or whitespace. A /file/name
  184. # pattern is replaced by its contents; a type:table is matched when
  185. # a name matches a lookup key (the right-hand side is ignored).
  186. # Continue long lines by starting the next line with whitespace.
  187. #
  188. # See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
  189. #
  190. mydestination = myexternaldomain.com, $myhostname, localhost.$mydomain, localhost
  191. #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
  192. #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
  193. #       mail.$mydomain, www.$mydomain, ftp.$mydomain
  194.  
  195. # REJECTING MAIL FOR UNKNOWN LOCAL USERS
  196. #
  197. # The local_recipient_maps parameter specifies optional lookup tables
  198. # with all names or addresses of users that are local with respect
  199. # to $mydestination, $inet_interfaces or $proxy_interfaces.
  200. #
  201. # If this parameter is defined, then the SMTP server will reject
  202. # mail for unknown local users. This parameter is defined by default.
  203. #
  204. # To turn off local recipient checking in the SMTP server, specify
  205. # local_recipient_maps = (i.e. empty).
  206. #
  207. # The default setting assumes that you use the default Postfix local
  208. # delivery agent for local delivery. You need to update the
  209. # local_recipient_maps setting if:
  210. #
  211. # - You define $mydestination domain recipients in files other than
  212. #   /etc/passwd, /etc/aliases, or the $virtual_alias_maps files.
  213. #   For example, you define $mydestination domain recipients in   
  214. #   the $virtual_mailbox_maps files.
  215. #
  216. # - You redefine the local delivery agent in master.cf.
  217. #
  218. # - You redefine the "local_transport" setting in main.cf.
  219. #
  220. # - You use the "luser_relay", "mailbox_transport", or "fallback_transport"
  221. #   feature of the Postfix local delivery agent (see local(8)).
  222. #
  223. # Details are described in the LOCAL_RECIPIENT_README file.
  224. #
  225. # Beware: if the Postfix SMTP server runs chrooted, you probably have
  226. # to access the passwd file via the proxymap service, in order to
  227. # overcome chroot restrictions. The alternative, having a copy of
  228. # the system passwd file in the chroot jail is just not practical.
  229. #
  230. # The right-hand side of the lookup tables is conveniently ignored.
  231. # In the left-hand side, specify a bare username, an @domain.tld
  232. # wild-card, or specify a [email protected] address.
  233. #
  234. #local_recipient_maps = unix:passwd.byname $alias_maps
  235. #local_recipient_maps = proxy:unix:passwd.byname $alias_maps
  236. #local_recipient_maps =
  237.  
  238. # The unknown_local_recipient_reject_code specifies the SMTP server
  239. # response code when a recipient domain matches $mydestination or
  240. # ${proxy,inet}_interfaces, while $local_recipient_maps is non-empty
  241. # and the recipient address or address local-part is not found.
  242. #
  243. # The default setting is 550 (reject mail) but it is safer to start
  244. # with 450 (try again later) until you are certain that your
  245. # local_recipient_maps settings are OK.
  246. #
  247. unknown_local_recipient_reject_code = 550
  248.  
  249. # TRUST AND RELAY CONTROL
  250.  
  251. # The mynetworks parameter specifies the list of "trusted" SMTP
  252. # clients that have more privileges than "strangers".
  253. #
  254. # In particular, "trusted" SMTP clients are allowed to relay mail
  255. # through Postfix.  See the smtpd_recipient_restrictions parameter
  256. # in postconf(5).
  257. #
  258. # You can specify the list of "trusted" network addresses by hand
  259. # or you can let Postfix do it for you (which is the default).
  260. #
  261. # By default (mynetworks_style = subnet), Postfix "trusts" SMTP
  262. # clients in the same IP subnetworks as the local machine.
  263. # On Linux, this does works correctly only with interfaces specified
  264. # with the "ifconfig" command.
  265. #
  266. # Specify "mynetworks_style = class" when Postfix should "trust" SMTP
  267. # clients in the same IP class A/B/C networks as the local machine.
  268. # Don't do this with a dialup site - it would cause Postfix to "trust"
  269. # your entire provider's network.  Instead, specify an explicit
  270. # mynetworks list by hand, as described below.
  271. # Specify "mynetworks_style = host" when Postfix should "trust"
  272. # only the local machine.
  273. #
  274. #mynetworks_style = class
  275. #mynetworks_style = subnet
  276. #mynetworks_style = host
  277.  
  278. # Alternatively, you can specify the mynetworks list by hand, in
  279. # which case Postfix ignores the mynetworks_style setting.
  280. #
  281. # Specify an explicit list of network/netmask patterns, where the
  282. # mask specifies the number of bits in the network part of a host
  283. # address.
  284. #
  285. # You can also specify the absolute pathname of a pattern file instead
  286. # of listing the patterns here. Specify type:table for table-based lookups
  287. # (the value on the table right-hand side is not used).
  288. #
  289. #mynetworks = 168.100.189.0/28, 127.0.0.0/8
  290. #mynetworks = $config_directory/mynetworks
  291. #mynetworks = hash:/etc/postfix/network_table
  292.  
  293. # The relay_domains parameter restricts what destinations this system will
  294. # relay mail to.  See the smtpd_recipient_restrictions description in
  295. # postconf(5) for detailed information.
  296. #
  297. # By default, Postfix relays mail
  298. # - from "trusted" clients (IP address matches $mynetworks) to any destination,
  299. # - from "untrusted" clients to destinations that match $relay_domains or
  300. #   subdomains thereof, except addresses with sender-specified routing.
  301. # The default relay_domains value is $mydestination.
  302. #
  303. # In addition to the above, the Postfix SMTP server by default accepts mail
  304. # that Postfix is final destination for:
  305. # - destinations that match $inet_interfaces or $proxy_interfaces,
  306. # - destinations that match $mydestination
  307. # - destinations that match $virtual_alias_domains,
  308. # - destinations that match $virtual_mailbox_domains.
  309. # These destinations do not need to be listed in $relay_domains.
  310. #
  311. # Specify a list of hosts or domains, /file/name patterns or type:name
  312. # lookup tables, separated by commas and/or whitespace.  Continue
  313. # long lines by starting the next line with whitespace. A file name
  314. # is replaced by its contents; a type:name table is matched when a
  315. # (parent) domain appears as lookup key.
  316. #
  317. # NOTE: Postfix will not automatically forward mail for domains that
  318. # list this system as their primary or backup MX host. See the
  319. # permit_mx_backup restriction description in postconf(5).
  320. #
  321. #relay_domains = $mydestination
  322.  
  323. # INTERNET OR INTRANET
  324.  
  325. # The relayhost parameter specifies the default host to send mail to
  326. # when no entry is matched in the optional transport(5) table. When
  327. # no relayhost is given, mail is routed directly to the destination.
  328. #
  329. # On an intranet, specify the organizational domain name. If your
  330. # internal DNS uses no MX records, specify the name of the intranet
  331. # gateway host instead.
  332. #
  333. # In the case of SMTP, specify a domain, host, host:port, [host]:port,
  334. # [address] or [address]:port; the form [host] turns off MX lookups.
  335. #
  336. # If you're connected via UUCP, see also the default_transport parameter.
  337. #
  338. #relayhost = $mydomain
  339. #relayhost = [gateway.my.domain]
  340. #relayhost = [mailserver.isp.tld]
  341. #relayhost = uucphost
  342. #relayhost = [an.ip.add.ress]
  343.  
  344. # REJECTING UNKNOWN RELAY USERS
  345. #
  346. # The relay_recipient_maps parameter specifies optional lookup tables
  347. # with all addresses in the domains that match $relay_domains.
  348. #
  349. # If this parameter is defined, then the SMTP server will reject
  350. # mail for unknown relay users. This feature is off by default.
  351. #
  352. # The right-hand side of the lookup tables is conveniently ignored.
  353. # In the left-hand side, specify an @domain.tld wild-card, or specify
  354. # a [email protected] address.
  355. #
  356. #relay_recipient_maps = hash:/etc/postfix/relay_recipients
  357.  
  358. # INPUT RATE CONTROL
  359. #
  360. # The in_flow_delay configuration parameter implements mail input
  361. # flow control. This feature is turned on by default, although it
  362. # still needs further development (it's disabled on SCO UNIX due
  363. # to an SCO bug).
  364. #
  365. # A Postfix process will pause for $in_flow_delay seconds before
  366. # accepting a new message, when the message arrival rate exceeds the
  367. # message delivery rate. With the default 100 SMTP server process
  368. # limit, this limits the mail inflow to 100 messages a second more
  369. # than the number of messages delivered per second.
  370. #
  371. # Specify 0 to disable the feature. Valid delays are 0..10.
  372. #
  373. #in_flow_delay = 1s
  374.  
  375. # ADDRESS REWRITING
  376. #
  377. # The ADDRESS_REWRITING_README document gives information about
  378. # address masquerading or other forms of address rewriting including
  379. # username->Firstname.Lastname mapping.
  380.  
  381. # ADDRESS REDIRECTION (VIRTUAL DOMAIN)
  382. #
  383. # The VIRTUAL_README document gives information about the many forms
  384. # of domain hosting that Postfix supports.
  385.  
  386. # "USER HAS MOVED" BOUNCE MESSAGES
  387. #
  388. # See the discussion in the ADDRESS_REWRITING_README document.
  389.  
  390. # TRANSPORT MAP
  391. #
  392. # See the discussion in the ADDRESS_REWRITING_README document.
  393.  
  394. # ALIAS DATABASE
  395. #
  396. # The alias_maps parameter specifies the list of alias databases used
  397. # by the local delivery agent. The default list is system dependent.
  398. #
  399. # On systems with NIS, the default is to search the local alias
  400. # database, then the NIS alias database. See aliases(5) for syntax
  401. # details.
  402. #
  403. # If you change the alias database, run "postalias /etc/aliases" (or
  404. # wherever your system stores the mail alias file), or simply run
  405. # "newaliases" to build the necessary DBM or DB file.
  406. #
  407. # It will take a minute or so before changes become visible.  Use
  408. # "postfix reload" to eliminate the delay.
  409. #
  410. #alias_maps = dbm:/etc/aliases
  411. #alias_maps = hash:/etc/aliases
  412. #alias_maps = hash:/etc/aliases, nis:mail.aliases
  413. #alias_maps = netinfo:/aliases
  414.  
  415. # The alias_database parameter specifies the alias database(s) that
  416. # are built with "newaliases" or "sendmail -bi".  This is a separate
  417. # configuration parameter, because alias_maps (see above) may specify
  418. # tables that are not necessarily all under control by Postfix.
  419. #
  420. #alias_database = dbm:/etc/aliases
  421. #alias_database = dbm:/etc/mail/aliases
  422. #alias_database = hash:/etc/aliases
  423. #alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases
  424.  
  425. # ADDRESS EXTENSIONS (e.g., user+foo)
  426. #
  427. # The recipient_delimiter parameter specifies the separator between
  428. # user names and address extensions (user+foo). See canonical(5),
  429. # local(8), relocated(5) and virtual(5) for the effects this has on
  430. # aliases, canonical, virtual, relocated and .forward file lookups.
  431. # Basically, the software tries user+foo and .forward+foo before
  432. # trying user and .forward.
  433. #
  434. #recipient_delimiter = +
  435.  
  436. # DELIVERY TO MAILBOX
  437. #
  438. # The home_mailbox parameter specifies the optional pathname of a
  439. # mailbox file relative to a user's home directory. The default
  440. # mailbox file is /var/spool/mail/user or /var/mail/user.  Specify
  441. # "Maildir/" for qmail-style delivery (the / is required).
  442. #
  443. #home_mailbox = Mailbox
  444. #home_mailbox = Maildir/
  445.  
  446. # The mail_spool_directory parameter specifies the directory where
  447. # UNIX-style mailboxes are kept. The default setting depends on the
  448. # system type.
  449. #
  450. mail_spool_directory = /var/mail
  451. #mail_spool_directory =  /var/spool/mail
  452.  
  453. # The mailbox_command parameter specifies the optional external
  454. # command to use instead of mailbox delivery. The command is run as
  455. # the recipient with proper HOME, SHELL and LOGNAME environment settings.
  456. # Exception:  delivery for root is done as $default_user.
  457. #
  458. # Other environment variables of interest: USER (recipient username),
  459. # EXTENSION (address extension), DOMAIN (domain part of address),
  460. # and LOCAL (the address localpart).
  461. #
  462. # Unlike other Postfix configuration parameters, the mailbox_command
  463. # parameter is not subjected to $parameter substitutions. This is to
  464. # make it easier to specify shell syntax (see example below).
  465. #
  466. # Avoid shell meta characters because they will force Postfix to run
  467. # an expensive shell process. Procmail alone is expensive enough.
  468. #
  469. # IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
  470. # ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
  471. #
  472. #mailbox_command = /some/where/procmail
  473. #mailbox_command = /some/where/procmail -a "$EXTENSION"
  474.  
  475. # The mailbox_transport specifies the optional transport in master.cf
  476. # to use after processing aliases and .forward files. This parameter
  477. # has precedence over the mailbox_command, fallback_transport and
  478. # luser_relay parameters.
  479. #
  480. # Specify a string of the form transport:nexthop, where transport is
  481. # the name of a mail delivery transport defined in master.cf.  The
  482. # :nexthop part is optional. For more details see the sample transport
  483. # configuration file.
  484. #
  485. # NOTE: if you use this feature for accounts not in the UNIX password
  486. # file, then you must update the "local_recipient_maps" setting in
  487. # the main.cf file, otherwise the SMTP server will reject mail for   
  488. # non-UNIX accounts with "User unknown in local recipient table".
  489. #
  490. #mailbox_transport = lmtp:unix:/file/name
  491. #mailbox_transport = cyrus
  492.  
  493. # The fallback_transport specifies the optional transport in master.cf
  494. # to use for recipients that are not found in the UNIX passwd database.
  495. # This parameter has precedence over the luser_relay parameter.
  496. #
  497. # Specify a string of the form transport:nexthop, where transport is
  498. # the name of a mail delivery transport defined in master.cf.  The
  499. # :nexthop part is optional. For more details see the sample transport
  500. # configuration file.
  501. #
  502. # NOTE: if you use this feature for accounts not in the UNIX password
  503. # file, then you must update the "local_recipient_maps" setting in
  504. # the main.cf file, otherwise the SMTP server will reject mail for   
  505. # non-UNIX accounts with "User unknown in local recipient table".
  506. #
  507. #fallback_transport = lmtp:unix:/file/name
  508. #fallback_transport = cyrus
  509. #fallback_transport =
  510.  
  511. # The luser_relay parameter specifies an optional destination address
  512. # for unknown recipients.  By default, mail for unknown@$mydestination,
  513. # unknown@[$inet_interfaces] or unknown@[$proxy_interfaces] is returned
  514. # as undeliverable.
  515. #
  516. # The following expansions are done on luser_relay: $user (recipient
  517. # username), $shell (recipient shell), $home (recipient home directory),
  518. # $recipient (full recipient address), $extension (recipient address
  519. # extension), $domain (recipient domain), $local (entire recipient
  520. # localpart), $recipient_delimiter. Specify ${name?value} or
  521. # ${name:value} to expand value only when $name does (does not) exist.
  522. #
  523. # luser_relay works only for the default Postfix local delivery agent.
  524. #
  525. # NOTE: if you use this feature for accounts not in the UNIX password
  526. # file, then you must specify "local_recipient_maps =" (i.e. empty) in
  527. # the main.cf file, otherwise the SMTP server will reject mail for   
  528. # non-UNIX accounts with "User unknown in local recipient table".
  529. #
  530. #luser_relay = $[email protected]
  531. #luser_relay = $[email protected]
  532. #luser_relay = admin+$local
  533.  
  534. # JUNK MAIL CONTROLS
  535. #
  536. # The controls listed here are only a very small subset. The file
  537. # SMTPD_ACCESS_README provides an overview.
  538.  
  539. # The header_checks parameter specifies an optional table with patterns
  540. # that each logical message header is matched against, including
  541. # headers that span multiple physical lines.
  542. #
  543. # By default, these patterns also apply to MIME headers and to the
  544. # headers of attached messages. With older Postfix versions, MIME and
  545. # attached message headers were treated as body text.
  546. #
  547. # For details, see "man header_checks".
  548. #
  549. #header_checks = regexp:/etc/postfix/header_checks
  550.  
  551. # FAST ETRN SERVICE
  552. #
  553. # Postfix maintains per-destination logfiles with information about
  554. # deferred mail, so that mail can be flushed quickly with the SMTP
  555. # "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
  556. # See the ETRN_README document for a detailed description.
  557. #
  558. # The fast_flush_domains parameter controls what destinations are
  559. # eligible for this service. By default, they are all domains that
  560. # this server is willing to relay mail to.
  561. #
  562. #fast_flush_domains = $relay_domains
  563.  
  564. # SHOW SOFTWARE VERSION OR NOT
  565. #
  566. # The smtpd_banner parameter specifies the text that follows the 220
  567. # code in the SMTP server's greeting banner. Some people like to see
  568. # the mail version advertised. By default, Postfix shows no version.
  569. #
  570. # You MUST specify $myhostname at the start of the text. That is an
  571. # RFC requirement. Postfix itself does not care.
  572. #
  573. #smtpd_banner = $myhostname ESMTP $mail_name
  574. #smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
  575.  
  576. # PARALLEL DELIVERY TO THE SAME DESTINATION
  577. #
  578. # How many parallel deliveries to the same user or domain? With local
  579. # delivery, it does not make sense to do massively parallel delivery
  580. # to the same user, because mailbox updates must happen sequentially,
  581. # and expensive pipelines in .forward files can cause disasters when
  582. # too many are run at the same time. With SMTP deliveries, 10
  583. # simultaneous connections to the same domain could be sufficient to
  584. # raise eyebrows.
  585. #
  586. # Each message delivery transport has its XXX_destination_concurrency_limit
  587. # parameter.  The default is $default_destination_concurrency_limit for
  588. # most delivery transports. For the local delivery agent the default is 2.
  589.  
  590. #local_destination_concurrency_limit = 2
  591. #default_destination_concurrency_limit = 20
  592.  
  593. # DEBUGGING CONTROL
  594. #
  595. # The debug_peer_level parameter specifies the increment in verbose
  596. # logging level when an SMTP client or server host name or address
  597. # matches a pattern in the debug_peer_list parameter.
  598. #
  599. debug_peer_level = 2
  600.  
  601. # The debug_peer_list parameter specifies an optional list of domain
  602. # or network patterns, /file/name patterns or type:name tables. When
  603. # an SMTP client or server host name or address matches a pattern,
  604. # increase the verbose logging level by the amount specified in the
  605. # debug_peer_level parameter.
  606. #
  607. #debug_peer_list = 127.0.0.1
  608. #debug_peer_list = some.domain
  609.  
  610. # The debugger_command specifies the external command that is executed
  611. # when a Postfix daemon program is run with the -D option.
  612. #
  613. # Use "command .. & sleep 5" so that the debugger can attach before
  614. # the process marches on. If you use an X-based debugger, be sure to
  615. # set up your XAUTHORITY environment variable before starting Postfix.
  616. #
  617. debugger_command =
  618.          PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
  619.          xxgdb $daemon_directory/$process_name $process_id & sleep 5
  620.  
  621. # If you can't use X, use this to capture the call stack when a
  622. # daemon crashes. The result is in a file in the configuration
  623. # directory, and is named after the process name and the process ID.
  624. #
  625. # debugger_command =
  626. #       PATH=/bin:/usr/bin:/usr/local/bin; export PATH; (echo cont;
  627. #       echo where) | gdb $daemon_directory/$process_name $process_id 2>&1
  628. #       >$config_directory/$process_name.$process_id.log & sleep 5
  629. #
  630. # Another possibility is to run gdb under a detached screen session.
  631. # To attach to the screen sesssion, su root and run "screen -r
  632. # <id_string>" where <id_string> uniquely matches one of the detached
  633. # sessions (from "screen -list").
  634. #
  635. # debugger_command =
  636. #       PATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH; screen
  637. #       -dmS $process_name gdb $daemon_directory/$process_name
  638. #       $process_id & sleep 1
  639.  
  640. # INSTALL-TIME CONFIGURATION INFORMATION
  641. #
  642. # The following parameters are used when installing a new Postfix version.
  643. #
  644. # sendmail_path: The full pathname of the Postfix sendmail command.
  645. # This is the Sendmail-compatible mail posting interface.
  646. #
  647. sendmail_path = /usr/sbin/sendmail
  648.  
  649. # newaliases_path: The full pathname of the Postfix newaliases command.
  650. # This is the Sendmail-compatible command to build alias databases.
  651. #
  652. newaliases_path = /usr/bin/newaliases
  653.  
  654. # mailq_path: The full pathname of the Postfix mailq command.  This
  655. # is the Sendmail-compatible mail queue listing command.
  656. #
  657. mailq_path = /usr/bin/mailq
  658.  
  659. # setgid_group: The group for mail submission and queue management
  660. # commands.  This must be a group name with a numerical group ID that
  661. # is not shared with other accounts, not even with the Postfix account.
  662. #
  663. setgid_group = maildrop
  664.  
  665. # html_directory: The location of the Postfix HTML documentation.
  666. #
  667. html_directory = /usr/share/doc/html/postfix
  668.  
  669. # manpage_directory: The location of the Postfix on-line manual pages.
  670. #
  671. manpage_directory = /usr/share/man
  672.  
  673. # sample_directory: The location of the Postfix sample configuration files.
  674. # This parameter is obsolete as of Postfix 2.1.
  675. #
  676. sample_directory = /usr/share/examples/postfix
  677.  
  678. # readme_directory: The location of the Postfix README files.
  679. #
  680. readme_directory = /usr/share/examples/postfix

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

comments powered by Disqus
worth-right
worth-right