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

main_cf
Sunday, May 20th, 2007 at 5:16:45pm UTC 

  1. # Global Postfix configuration file. This file lists only a subset
  2. # of all 100+ parameters. See the sample-xxx.cf files for a full list.
  3. #
  4. # The general format is lines with parameter = value pairs. Lines
  5. # that begin with whitespace continue the previous line. A value can
  6. # contain references to other $names or ${name}s.
  7. #
  8. # NOTE - CHANGE NO MORE THAN 2-3 PARAMETERS AT A TIME, AND TEST IF
  9. # POSTFIX STILL WORKS AFTER EVERY CHANGE.
  10.  
  11. # SOFT BOUNCE
  12. #
  13. # The soft_bounce parameter provides a limited safety net for
  14. # testing.  When soft_bounce is enabled, mail will remain queued that
  15. # would otherwise bounce. This parameter disables locally-generated
  16. # bounces, and prevents the SMTP server from rejecting mail permanently
  17. # (by changing 5xx replies into 4xx replies). However, soft_bounce
  18. # is no cure for address rewriting mistakes or mail routing mistakes.
  19. #
  20. #soft_bounce = no
  21.  
  22. # LOCAL PATHNAME INFORMATION
  23. #
  24. # The queue_directory specifies the location of the Postfix queue.
  25. # This is also the root directory of Postfix daemons that run chrooted.
  26. # See the files in examples/chroot-setup for setting up Postfix chroot
  27. # environments on different UNIX systems.
  28. #
  29. queue_directory = /var/spool/postfix
  30.  
  31. # The command_directory parameter specifies the location of all
  32. # postXXX commands.  The default value is $program_directory.
  33. #
  34. command_directory = /usr/sbin
  35.  
  36. # The daemon_directory parameter specifies the location of all Postfix
  37. # daemon programs (i.e. programs listed in the master.cf file). The
  38. # default value is $program_directory. This directory must be owned
  39. # by root.
  40. #
  41. daemon_directory = /usr/lib/postfix
  42.  
  43. # QUEUE AND PROCESS OWNERSHIP
  44. #
  45. # The mail_owner parameter specifies the owner of the Postfix queue
  46. # and of most Postfix daemon processes.  Specify the name of a user
  47. # account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
  48. # AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM.  In
  49. # particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
  50. # USER.
  51. #
  52. mail_owner = postfix
  53.  
  54. # The default_privs parameter specifies the default rights used by
  55. # the local delivery agent for delivery to external file or command.
  56. # These rights are used in the absence of a recipient user context.
  57. # DO NOT SPECIFY A PRIVILEGED USER OR THE POSTFIX OWNER.
  58. #
  59. #default_privs = nobody
  60.  
  61. # INTERNET HOST AND DOMAIN NAMES
  62. #
  63. # The myhostname parameter specifies the internet hostname of this
  64. # mail system. The default is to use the fully-qualified domain name
  65. # from gethostname(). $myhostname is used as a default value for many
  66. # other configuration parameters.
  67. #
  68. myhostname = mail.cena.sn
  69. #myhostname = virtual.domain.tld
  70.  
  71. # The mydomain parameter specifies the local internet domain name.
  72. # The default is to use $myhostname minus the first component.
  73. # $mydomain is used as a default value for many other configuration
  74. # parameters.
  75. #
  76. mydomain = cena.sn
  77.  
  78. # SENDING MAIL
  79. #
  80. # The myorigin parameter specifies the domain that locally-posted
  81. # mail appears to come from. The default is to append $myhostname,
  82. # which is fine for small sites.  If you run a domain with multiple
  83. # machines, you should (1) change this to $mydomain and (2) set up
  84. # a domain-wide alias database that aliases each user to
  85. # [email protected]
  86. #
  87. #myorigin = $myhostname
  88. myorigin = $mydomain
  89.  
  90. # RECEIVING MAIL
  91.  
  92. # The inet_interfaces parameter specifies the network interface
  93. # addresses that this mail system receives mail on.  By default,
  94. # the software claims all active interfaces on the machine. The
  95. # parameter also controls delivery of mail to user@[ip.address].
  96. #
  97. #inet_interfaces = localhost
  98. inet_interfaces = all
  99. #inet_interfaces = $myhostname
  100. #inet_interfaces = $myhostname, localhost
  101.  
  102. # The mydestination parameter specifies the list of domains that this
  103. # machine considers itself the final destination for. That includes
  104. # Sendmail-style virtual domains hosted on this machine.
  105. #
  106. # Do not include Postfix-style virtual domains - those domains are
  107. # specified elsewhere (see sample-virtual.cf, and sample-transport.cf).
  108. #
  109. # The default is $myhostname + localhost.$mydomain.  On a mail domain
  110. # gateway, you should also include $mydomain. Do not specify the
  111. # names of domains that this machine is backup MX host for. Specify
  112. # those names via the relay_domains or permit_mx_backup settings for
  113. # the SMTP server (see sample-smtpd.cf).
  114. #
  115. # The local machine is always the final destination for mail addressed
  116. # to user@[the.net.work.address] of an interface that the mail system
  117. # receives mail on (see the inet_interfaces parameter).
  118. #
  119. # Specify a list of host or domain names, /file/name or type:table
  120. # patterns, separated by commas and/or whitespace. A /file/name
  121. # pattern is replaced by its contents; a type:table is matched when
  122. # a name matches a lookup key.  Continue long lines by starting the
  123. # next line with whitespace.
  124. #
  125. mydestination = $myhostname, localhost.$mydomain
  126. #mydestination = $myhostname, localhost.$mydomain $mydomain
  127. mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
  128.         mail.$mydomain, www.$mydomain,ftp.$mydomain,localhost,
  129.         cena.sn,172.16.0.1,sirius.cena.sn,mail.cena.sn,
  130.         inscriptions.cena.sn, www.cena.sn, forum.cena.sn,irc.cena.sn,elections.cena.sn
  131.  
  132. # TRUST AND RELAY CONTROL
  133.  
  134. # The mynetworks parameter specifies the list of "trusted" SMTP
  135. # clients that have more privileges than "strangers".
  136. #
  137. # In particular, "trusted" SMTP clients are allowed to relay mail
  138. # through Postfix.  See the smtpd_recipient_restrictions parameter
  139. # in file sample-smtpd.cf.
  140. #
  141. # You can specify the list of "trusted" network addresses by hand
  142. # or you can let Postfix do it for you (which is the default).
  143. #
  144. # By default (mynetworks_style = subnet), Postfix "trusts" SMTP
  145. # clients in the same IP subnetworks as the local machine.
  146. # On Linux, this does works correctly only with interfaces specified
  147. # with the "ifconfig" command.
  148. #
  149. # Specify "mynetworks_style = class" when Postfix should "trust" SMTP
  150. # clients in the same IP class A/B/C networks as the local machine.
  151. # Don't do this with a dialup site - it would cause Postfix to "trust"
  152. # your entire provider's network.  Instead, specify an explicit
  153. # mynetworks list by hand, as described below.
  154. # Specify "mynetworks_style = host" when Postfix should "trust"
  155. # only the local machine.
  156. #
  157. #mynetworks_style = class
  158. #mynetworks_style = subnet
  159. #mynetworks_style = host
  160.  
  161. # Alternatively, you can specify the mynetworks list by hand, in
  162. # which case Postfix ignores the mynetworks_style setting.
  163. #
  164. # Specify an explicit list of network/netmask patterns, where the
  165. # mask specifies the number of bits in the network part of a host
  166. # address.
  167. #
  168. # You can also specify the absolute pathname of a pattern file instead
  169. # of listing the patterns here. Specify type:table for table-based lookups
  170. # (the value on the table right-hand side is not used).
  171. #
  172. mynetworks = 10.0.0.0/24,172.16.0.0/24, 127.0.0.0/8,41.208.150.112/29
  173. #mynetworks = 168.100.189.0/28, 127.0.0.0/8
  174. #mynetworks = $config_directory/mynetworks
  175. #mynetworks = hash:/etc/postfix/network_table
  176.  
  177. # The relay_domains parameter restricts what clients this mail system
  178. # will relay mail from, or what destinations this system will relay
  179. # mail to.  See the smtpd_recipient_restrictions restriction in the
  180. # file sample-smtpd.cf for detailed information.
  181. #
  182. # By default, Postfix relays mail
  183. # - from "trusted" clients whose IP address matches $mynetworks,
  184. # - from "trusted" clients matching $relay_domains or subdomains thereof,
  185. # - from untrusted clients to destinations that match $relay_domains
  186. #   or subdomains thereof, except addresses with sender-specified routing.
  187. # The default relay_domains value is $mydestination.
  188. #
  189. # In addition to the above, the Postfix SMTP server by default accepts mail
  190. # that Postfix is final destination for:
  191. # - destinations that match $inet_interfaces,
  192. # - destinations that match $mydestination
  193. # - destinations that match $virtual_maps.
  194. # These destinations do not need to be listed in $relay_domains.
  195. #
  196. # Specify a list of hosts or domains, /file/name patterns or type:name
  197. # lookup tables, separated by commas and/or whitespace.  Continue
  198. # long lines by starting the next line with whitespace. A file name
  199. # is replaced by its contents; a type:name table is matched when a
  200. # (parent) domain appears as lookup key.
  201. #
  202. # NOTE: Postfix will not automatically forward mail for domains that
  203. # list this system as their primary or backup MX host. See the
  204. # permit_mx_backup restriction in the file sample-smtpd.cf.
  205. #
  206. relay_domains = $mydestination
  207.  
  208. # INTERNET OR INTRANET
  209.  
  210. # The relayhost parameter specifies the default host to send mail to
  211. # when no entry is matched in the optional transport(5) table. When
  212. # no relayhost is given, mail is routed directly to the destination.
  213. #
  214. # On an intranet, specify the organizational domain name. If your
  215. # internal DNS uses no MX records, specify the name of the intranet
  216. # gateway host instead.
  217. #
  218. # In the case of SMTP, specify a domain, host, host:port, [host]:port,
  219. # [address] or [address]:port; the form [host] turns off MX lookups.
  220. #
  221. # If you're connected via UUCP, see also the default_transport parameter.
  222. #
  223.  
  224. content_filter = smtp-amavis:[127.0.0.1]:10024
  225. relayhost = 172.16.0.254
  226.  
  227. #relayhost = gateway.my.domain
  228. #relayhost = uucphost
  229. #relayhost = [an.ip.add.ress]
  230.  
  231. # REJECTING UNKNOWN LOCAL USERS
  232. #
  233. # The local_recipient_maps parameter specifies optional lookup tables
  234. # with all names (not addresses) of users that are local with respect
  235. # to $mydestination and $inet_interfaces.  If this parameter is
  236. # defined, then the SMTP server will reject mail for unknown local
  237. # users.
  238. #
  239. # If you use the default Postfix local delivery agent for local
  240. # delivery, uncomment the definition below.
  241. #
  242. # Beware: if the Postfix SMTP server runs chrooted, you may have to
  243. # copy the passwd (not shadow) database into the jail. This is
  244. # system dependent.
  245. #
  246. #local_recipient_maps = $alias_maps unix:passwd.byname
  247.  
  248. # INPUT RATE CONTROL
  249. #
  250. # The in_flow_delay configuration parameter implements mail input
  251. # flow control. This feature is turned on by default, although it
  252. # still needs further development (it's disabled on SCO UNIX due
  253. # to an SCO bug).
  254. #
  255. # A Postfix process will pause for $in_flow_delay seconds before
  256. # accepting a new message, when the message arrival rate exceeds the
  257. # message delivery rate. With the default 50 SMTP server process
  258. # limit, this limits the mail inflow to 50 messages a second more
  259. # than the number of messages delivered per second.
  260. #
  261. # Specify 0 to disable the feature. Valid delays are 0..10.
  262. #
  263. #in_flow_delay = 1s
  264.  
  265. # ADDRESS REWRITING
  266. #
  267. # Insert text from sample-rewrite.cf if you need to do address
  268. # masquerading.
  269. #
  270. # Insert text from sample-canonical.cf if you need to do address
  271. # rewriting, or if you need username->Firstname.Lastname mapping.
  272.  
  273. # ADDRESS REDIRECTION (VIRTUAL DOMAIN)
  274. #
  275. # Insert text from sample-virtual.cf if you need virtual domain support.
  276.  
  277. # "USER HAS MOVED" BOUNCE MESSAGES
  278. #
  279. # Insert text from sample-relocated.cf if you need "user has moved"
  280. # style bounce messages. Alternatively, you can bounce recipients
  281. # with an SMTP server access table. See sample-smtpd.cf.
  282.  
  283. # TRANSPORT MAP
  284. #
  285. # Insert text from sample-transport.cf if you need explicit routing.
  286.  
  287. # ALIAS DATABASE
  288. #
  289. # The alias_maps parameter specifies the list of alias databases used
  290. # by the local delivery agent. The default list is system dependent.
  291. # On systems with NIS, the default is to search the local alias
  292. # database, then the NIS alias database. See aliases(5) for syntax
  293. # details.
  294. #
  295. # If you change the alias database, run "postalias /etc/aliases" (or
  296. # wherever your system stores the mail alias file), or simply run
  297. # "newaliases" to build the necessary DBM or DB file.
  298. #
  299. # It will take a minute or so before changes become visible.  Use
  300. # "postfix reload" to eliminate the delay.
  301. #
  302. #alias_maps = dbm:/etc/aliases
  303. alias_maps = hash:/etc/postfix/aliases
  304. sender_canonical_maps = hash:/etc/postfix/sender_canonical
  305. recipient_canonical_maps = hash:/etc/postfix/recipient_canonical
  306. #transport_maps = hash:/etc/postfix/transport
  307. #local_transport = local
  308. #alias_maps = hash:/etc/postfix/aliases
  309. #alias_maps = hash:/etc/aliases, nis:mail.aliases
  310. #alias_maps = netinfo:/aliases
  311.  
  312. # The alias_database parameter specifies the alias database(s) that
  313. # are built with "newaliases" or "sendmail -bi".  This is a separate
  314. # configuration parameter, because alias_maps (see above) may specify
  315. # tables that are not necessarily all under control by Postfix.
  316. #
  317. #alias_database = dbm:/etc/aliases
  318. #alias_database = dbm:/etc/mail/aliases
  319. #alias_database = hash:/etc/aliases
  320. #alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases
  321. alias_database = hash:/etc/postfix/aliases
  322. sender_canonical_database = hash:/etc/postfix/sender_canonical
  323. recipient_canonical_database = hash:/etc/postfix/recipient_canonical
  324.  
  325. # ADDRESS EXTENSIONS (e.g., user+foo)
  326. #
  327. # The recipient_delimiter parameter specifies the separator between
  328. # user names and address extensions (user+foo). See canonical(5),
  329. # local(8), relocated(5) and virtual(5) for the effects this has on
  330. # aliases, canonical, virtual, relocated and .forward file lookups.
  331. # Basically, the software tries user+foo and .forward+foo before
  332. # trying user and .forward.
  333. #
  334. #recipient_delimiter = +
  335.  
  336. # DELIVERY TO MAILBOX
  337. #
  338. # The home_mailbox parameter specifies the optional pathname of a
  339. # mailbox file relative to a user's home directory. The default
  340. # mailbox file is /var/spool/mail/user or /var/mail/user.  Specify
  341. # "Maildir/" for qmail-style delivery (the / is required).
  342. #
  343. home_mailbox = Maildir/
  344. #home_mailbox = Mailbox
  345. #home_mailbox = Maildir/
  346.  
  347. # The mail_spool_directory parameter specifies the directory where
  348. # UNIX-style mailboxes are kept. The default setting depends on the
  349. # system type.
  350. #
  351. #mail_spool_directory = /var/mail
  352. #mail_spool_directory = /var/spool/mail
  353.  
  354. # The mailbox_command parameter specifies the optional external
  355. # command to use instead of mailbox delivery. The command is run as
  356. # the recipient with proper HOME, SHELL and LOGNAME environment settings.
  357. # Exception:  delivery for root is done as $default_user.
  358. #
  359. # Other environment variables of interest: USER (recipient username),
  360. # EXTENSION (address extension), DOMAIN (domain part of address),
  361. # and LOCAL (the address localpart).
  362. #
  363. # Unlike other Postfix configuration parameters, the mailbox_command
  364. # parameter is not subjected to $parameter substitutions. This is to
  365. # make it easier to specify shell syntax (see example below).
  366. #
  367. # Avoid shell meta characters because they will force Postfix to run
  368. # an expensive shell process. Procmail alone is expensive enough.
  369. #
  370. # IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
  371. # ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
  372. #
  373. #mailbox_command = /some/where/procmail
  374. #mailbox_command = /some/where/procmail -a "$EXTENSION"
  375.  
  376. # The mailbox_transport specifies the optional transport in master.cf
  377. # to use after processing aliases and .forward files. This parameter
  378. # has precedence over the mailbox_command, fallback_transport and
  379. # luser_relay parameters.
  380. #
  381. # Specify a string of the form transport:nexthop, where transport is
  382. # the name of a mail delivery transport defined in master.cf.  The
  383. # :nexthop part is optional. For more details see the sample transport
  384. # configuration file.
  385. #
  386. #mailbox_transport = lmtp:unix:/file/name
  387. #mailbox_transport = cyrus
  388.  
  389. # The fallback_transport specifies the optional transport in master.cf
  390. # to use for recipients that are not found in the UNIX passwd database.
  391. # This parameter has precedence over the luser_relay parameter.
  392. #
  393. # Specify a string of the form transport:nexthop, where transport is
  394. # the name of a mail delivery transport defined in master.cf.  The
  395. # :nexthop part is optional. For more details see the sample transport
  396. # configuration file.
  397. #
  398. #fallback_transport = lmtp:unix:/file/name
  399. #fallback_transport = cyrus
  400. #fallback_transport =
  401.  
  402. # The luser_relay parameter specifies an optional destination address
  403. # for unknown recipients.  By default, mail for unknown local recipients
  404. # is bounced.
  405. #
  406. # The following expansions are done on luser_relay: $user (recipient
  407. # username), $shell (recipient shell), $home (recipient home directory),
  408. # $recipient (full recipient address), $extension (recipient address
  409. # extension), $domain (recipient domain), $local (entire recipient
  410. # localpart), $recipient_delimiter. Specify ${name?value} or
  411. # ${name:value} to expand value only when $name does (does not) exist.
  412. #
  413. # luser_relay works only for the default Postfix local delivery agent.
  414. #
  415. #luser_relay = $[email protected]
  416. #luser_relay = $[email protected]
  417. #luser_relay = admin+$local
  418.  
  419. # JUNK MAIL CONTROLS
  420. #
  421. # The controls listed here are only a very small subset. See the file
  422. # sample-smtpd.cf for an elaborate list of anti-UCE controls.
  423.  
  424. # The header_checks parameter specifies an optional table with patterns
  425. # that each logical message header is matched against, including
  426. # headers that span multiple physical lines.  Patterns are matched
  427. # in the specified order, and the search stops upon the first match.
  428. # When a pattern matches, what happens next depends on the associated
  429. # action that is specified in the right-hand side of the table:
  430. #
  431. # REJECT the entire message is rejected.
  432. # REJECT text.... The text is sent to the originator.
  433. # IGNORE the header line is silently discarded.
  434. # WARN   the header is logged (not rejected) with a warning message.
  435. # WARN text... as above, and the text is logged, too.
  436. #
  437. # These patterns do not apply to MIME headers in the message body.
  438. #
  439. # See also the body_checks example in the sample-filter.cf file.
  440. #
  441. #=====================================================
  442. header_checks = regexp:/etc/postfix/header_checks
  443. body_checks = regexp:/etc/postfix/body_checks
  444. smtpd_sender_restrictions = regexp:/etc/postfix/forbid_from, permit_mynetworks
  445. #=====================================================
  446. # FAST ETRN SERVICE
  447. #
  448. # Postfix maintains per-destination logfiles with information about
  449. # deferred mail, so that mail can be flushed quickly with the SMTP
  450. # "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
  451. #
  452. # By default, Postfix maintains deferred mail logfile information
  453. # only for destinations that Postfix is willing to relay to (as
  454. # specified in the relay_domains parameter). For other destinations,
  455. # Postfix attempts to deliver ALL queued mail after receiving the
  456. # SMTP "ETRN domain.tld" command, or after execution of "sendmail
  457. # -qRdomain.tld". This can be slow when a lot of mail is queued.
  458. #
  459. # The fast_flush_domains parameter controls what destinations are
  460. # eligible for this "fast ETRN/sendmail -qR" service.
  461. #
  462. #fast_flush_domains = $relay_domains
  463. #fast_flush_domains =
  464.  
  465. # SHOW SOFTWARE VERSION OR NOT
  466. #
  467. # The smtpd_banner parameter specifies the text that follows the 220
  468. # code in the SMTP server's greeting banner. Some people like to see
  469. # the mail version advertised. By default, Postfix shows no version.
  470. #
  471. # You MUST specify $myhostname at the start of the text. That is an
  472. # RFC requirement. Postfix itself does not care.
  473. #
  474. #smtpd_banner = $myhostname ESMTP $mail_name
  475. #smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
  476.  
  477. # PARALLEL DELIVERY TO THE SAME DESTINATION
  478. #
  479. # How many parallel deliveries to the same user or domain? With local
  480. # delivery, it does not make sense to do massively parallel delivery
  481. # to the same user, because mailbox updates must happen sequentially,
  482. # and expensive pipelines in .forward files can cause disasters when
  483. # too many are run at the same time. With SMTP deliveries, 10
  484. # simultaneous connections to the same domain could be sufficient to
  485. # raise eyebrows.
  486. #
  487. # Each message delivery transport has its XXX_destination_concurrency_limit
  488. # parameter.  The default is $default_destination_concurrency_limit for
  489. # most delivery transports. For the local delivery agent the default is 2.
  490.  
  491. #local_destination_concurrency_limit = 2
  492. #default_destination_concurrency_limit = 10
  493.  
  494. # DEBUGGING CONTROL
  495. #
  496. # The debug_peer_level parameter specifies the increment in verbose
  497. # logging level when an SMTP client or server host name or address
  498. # matches a pattern in the debug_peer_list parameter.
  499. #
  500. debug_peer_level = 2
  501.  
  502. # The debug_peer_list parameter specifies an optional list of domain
  503. # or network patterns, /file/name patterns or type:name tables. When
  504. # an SMTP client or server host name or address matches a pattern,
  505. # increase the verbose logging level by the amount specified in the
  506. # debug_peer_level parameter.
  507. #
  508. debug_peer_list = 127.0.0.1
  509. #debug_peer_list = some.domain
  510.  
  511. # The debugger_command specifies the external command that is executed
  512. # when a Postfix daemon program is run with the -D option.
  513. #
  514. # Use "command .. & sleep 5" so that the debugger can attach before
  515. # the process marches on. If you use an X-based debugger, be sure to
  516. # set up your XAUTHORITY environment variable before starting Postfix.
  517. #
  518. debugger_command =
  519.          PATH=/usr/bin:/usr/X11R6/bin
  520.          xxgdb $daemon_directory/$process_name $process_id & sleep 5
  521.  
  522. # INSTALL-TIME CONFIGURATION INFORMATION
  523. #
  524. # The following parameters are used when installing a new Postfix version.
  525. #
  526. # sendmail_path: The full pathname of the Postfix sendmail command.
  527. # This is the Sendmail-compatible mail posting interface.
  528. #
  529. sendmail_path = /usr/sbin/sendmail.postfix
  530.  
  531. # newaliases_path: The full pathname of the Postfix newaliases command.
  532. # This is the Sendmail-compatible command to build alias databases.
  533. #
  534. newaliases_path = /usr/bin/newaliases.postfix
  535.  
  536. # mailq_path: The full pathname of the Postfix mailq command.  This
  537. # is the Sendmail-compatible mail queue listing command.
  538. #
  539. mailq_path = /usr/bin/mailq.postfix
  540.  
  541. # setgid_group: The group for mail submission and queue management
  542. # commands.  This must be a group name with a numerical group ID that
  543. # is not shared with other accounts, not even with the Postfix account.
  544. #
  545. setgid_group = postdrop
  546.  
  547. # manpage_directory: The location of the Postfix on-line manual pages.
  548. #
  549. manpage_directory = /usr/share/man
  550.  
  551. # sample_directory: The location of the Postfix sample configuration files.
  552. #
  553. sample_directory = /usr/share/doc/postfix-1.1.11/samples
  554.  
  555. # readme_directory: The location of the Postfix README files.
  556. #
  557. readme_directory = /usr/share/doc/postfix-1.1.11/README_FILES
  558. alias_database = hash:/etc/postfix/aliases
  559. # Amavis
  560. # content_filter=smtp-amavis:[127.0.0.1]:10024
  561. html_directory = no
  562. unknown_local_recipient_reject_code = 450

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