Bo's Oracle Station

查看: 2935|回复: 0

课程第42-44次(2017-06-24星期六上下午和2017-06-27星期二)

[复制链接]

1005

主题

1469

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
12012
发表于 2017-6-28 16:53:35 | 显示全部楼层 |阅读模式
进行Scheduler
并且确认Oracle 12c环境,做Scheduler部分实验(邮件通知必需11.2.0.1,外部linux作业必需11.2.0.3,Filewatcher建议使用12.1.0.2,远程Filewatcher建议使用12.1.0.2,其他都可以用11.2.0.3)

12c环境本课程开始时的帖子:
https://www.botangdb.com/forum.php?mod=viewthread&tid=658&extra=page%3D2
https://www.botangdb.com/forum.php?mod=viewthread&tid=722&extra=page%3D2

邮件服务器配置文件(/etc/postfix/main.cf):

  1. # Global Postfix configuration file. This file lists only a subset
  2. # of all parameters. For the syntax, and for a complete parameter
  3. # list, see the postconf(5) manual page (command: "man 5 postconf").
  4. #
  5. # For common configuration examples, see BASIC_CONFIGURATION_README
  6. # and STANDARD_CONFIGURATION_README. To find these documents, use
  7. # the command "postconf html_directory readme_directory", or go to
  8. # http://www.postfix.org/.
  9. #
  10. # For best results, change no more than 2-3 parameters at a time,
  11. # and test if Postfix still works after every change.

  12. # SOFT BOUNCE
  13. #
  14. # The soft_bounce parameter provides a limited safety net for
  15. # testing.  When soft_bounce is enabled, mail will remain queued that
  16. # would otherwise bounce. This parameter disables locally-generated
  17. # bounces, and prevents the SMTP server from rejecting mail permanently
  18. # (by changing 5xx replies into 4xx replies). However, soft_bounce
  19. # is no cure for address rewriting mistakes or mail routing mistakes.
  20. #
  21. #soft_bounce = no

  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. # The command_directory parameter specifies the location of all
  31. # postXXX commands.
  32. #
  33. command_directory = /usr/sbin

  34. # The daemon_directory parameter specifies the location of all Postfix
  35. # daemon programs (i.e. programs listed in the master.cf file). This
  36. # directory must be owned by root.
  37. #
  38. daemon_directory = /usr/libexec/postfix

  39. # The data_directory parameter specifies the location of Postfix-writable
  40. # data files (caches, random numbers). This directory must be owned
  41. # by the mail_owner account (see below).
  42. #
  43. data_directory = /var/lib/postfix

  44. # QUEUE AND PROCESS OWNERSHIP
  45. #
  46. # The mail_owner parameter specifies the owner of the Postfix queue
  47. # and of most Postfix daemon processes.  Specify the name of a user
  48. # account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
  49. # AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM.  In
  50. # particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
  51. # USER.
  52. #
  53. mail_owner = postfix

  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. # INTERNET HOST AND DOMAIN NAMES
  61. #
  62. # The myhostname parameter specifies the internet hostname of this
  63. # mail system. The default is to use the fully-qualified domain name
  64. # from gethostname(). $myhostname is used as a default value for many
  65. # other configuration parameters.
  66. #
  67. #myhostname = host.domain.tld
  68. #myhostname = virtual.domain.tld

  69. # The mydomain parameter specifies the local internet domain name.
  70. # The default is to use $myhostname minus the first component.
  71. # $mydomain is used as a default value for many other configuration
  72. # parameters.
  73. #
  74. #mydomain = example.com

  75. # SENDING MAIL
  76. #
  77. # The myorigin parameter specifies the domain that locally-posted
  78. # mail appears to come from. The default is to append $myhostname,
  79. # which is fine for small sites.  If you run a domain with multiple
  80. # machines, you should (1) change this to $mydomain and (2) set up
  81. # a domain-wide alias database that aliases each user to
  82. # user@that.users.mailhost.
  83. #
  84. # For the sake of consistency between sender and recipient addresses,
  85. # myorigin also specifies the default domain name that is appended
  86. # to recipient addresses that have no @domain part.
  87. #
  88. #myorigin = $myhostname
  89. myorigin = $mydomain

  90. # RECEIVING MAIL

  91. # The inet_interfaces parameter specifies the network interface
  92. # addresses that this mail system receives mail on.  By default,
  93. # the software claims all active interfaces on the machine. The
  94. # parameter also controls delivery of mail to user@[ip.address].
  95. #
  96. # See also the proxy_interfaces parameter, for network addresses that
  97. # are forwarded to us via a proxy or network address translator.
  98. #
  99. # Note: you need to stop/start Postfix when this parameter changes.
  100. #
  101. inet_interfaces = all
  102. #inet_interfaces = $myhostname
  103. #inet_interfaces = $myhostname, localhost
  104. #inet_interfaces = localhost

  105. # Enable IPv4, and IPv6 if supported
  106. inet_protocols = all

  107. # The proxy_interfaces parameter specifies the network interface
  108. # addresses that this mail system receives mail on by way of a
  109. # proxy or network address translation unit. This setting extends
  110. # the address list specified with the inet_interfaces parameter.
  111. #
  112. # You must specify your proxy/NAT addresses when your system is a
  113. # backup MX host for other domains, otherwise mail delivery loops
  114. # will happen when the primary MX host is down.
  115. #
  116. #proxy_interfaces =
  117. #proxy_interfaces = 1.2.3.4

  118. # The mydestination parameter specifies the list of domains that this
  119. # machine considers itself the final destination for.
  120. #
  121. # These domains are routed to the delivery agent specified with the
  122. # local_transport parameter setting. By default, that is the UNIX
  123. # compatible delivery agent that lookups all recipients in /etc/passwd
  124. # and /etc/aliases or their equivalent.
  125. #
  126. # The default is $myhostname + localhost.$mydomain.  On a mail domain
  127. # gateway, you should also include $mydomain.
  128. #
  129. # Do not specify the names of virtual domains - those domains are
  130. # specified elsewhere (see VIRTUAL_README).
  131. #
  132. # Do not specify the names of domains that this machine is backup MX
  133. # host for. Specify those names via the relay_domains settings for
  134. # the SMTP server, or use permit_mx_backup if you are lazy (see
  135. # STANDARD_CONFIGURATION_README).
  136. #
  137. # The local machine is always the final destination for mail addressed
  138. # to user@[the.net.work.address] of an interface that the mail system
  139. # receives mail on (see the inet_interfaces parameter).
  140. #
  141. # Specify a list of host or domain names, /file/name or type:table
  142. # patterns, separated by commas and/or whitespace. A /file/name
  143. # pattern is replaced by its contents; a type:table is matched when
  144. # a name matches a lookup key (the right-hand side is ignored).
  145. # Continue long lines by starting the next line with whitespace.
  146. #
  147. # See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
  148. #
  149. mydestination = $myhostname, localhost.$mydomain, localhost, example.com, something.net
  150. #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
  151. #mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
  152. #        mail.$mydomain, www.$mydomain, ftp.$mydomain

  153. # REJECTING MAIL FOR UNKNOWN LOCAL USERS
  154. #
  155. # The local_recipient_maps parameter specifies optional lookup tables
  156. # with all names or addresses of users that are local with respect
  157. # to $mydestination, $inet_interfaces or $proxy_interfaces.
  158. #
  159. # If this parameter is defined, then the SMTP server will reject
  160. # mail for unknown local users. This parameter is defined by default.
  161. #
  162. # To turn off local recipient checking in the SMTP server, specify
  163. # local_recipient_maps = (i.e. empty).
  164. #
  165. # The default setting assumes that you use the default Postfix local
  166. # delivery agent for local delivery. You need to update the
  167. # local_recipient_maps setting if:
  168. #
  169. # - You define $mydestination domain recipients in files other than
  170. #   /etc/passwd, /etc/aliases, or the $virtual_alias_maps files.
  171. #   For example, you define $mydestination domain recipients in   
  172. #   the $virtual_mailbox_maps files.
  173. #
  174. # - You redefine the local delivery agent in master.cf.
  175. #
  176. # - You redefine the "local_transport" setting in main.cf.
  177. #
  178. # - You use the "luser_relay", "mailbox_transport", or "fallback_transport"
  179. #   feature of the Postfix local delivery agent (see local(8)).
  180. #
  181. # Details are described in the LOCAL_RECIPIENT_README file.
  182. #
  183. # Beware: if the Postfix SMTP server runs chrooted, you probably have
  184. # to access the passwd file via the proxymap service, in order to
  185. # overcome chroot restrictions. The alternative, having a copy of
  186. # the system passwd file in the chroot jail is just not practical.
  187. #
  188. # The right-hand side of the lookup tables is conveniently ignored.
  189. # In the left-hand side, specify a bare username, an @domain.tld
  190. # wild-card, or specify a user@domain.tld address.
  191. #
  192. #local_recipient_maps = unix:passwd.byname $alias_maps
  193. #local_recipient_maps = proxy:unix:passwd.byname $alias_maps
  194. #local_recipient_maps =

  195. # The unknown_local_recipient_reject_code specifies the SMTP server
  196. # response code when a recipient domain matches $mydestination or
  197. # ${proxy,inet}_interfaces, while $local_recipient_maps is non-empty
  198. # and the recipient address or address local-part is not found.
  199. #
  200. # The default setting is 550 (reject mail) but it is safer to start
  201. # with 450 (try again later) until you are certain that your
  202. # local_recipient_maps settings are OK.
  203. #
  204. unknown_local_recipient_reject_code = 550

  205. # TRUST AND RELAY CONTROL

  206. # The mynetworks parameter specifies the list of "trusted" SMTP
  207. # clients that have more privileges than "strangers".
  208. #
  209. # In particular, "trusted" SMTP clients are allowed to relay mail
  210. # through Postfix.  See the smtpd_recipient_restrictions parameter
  211. # in postconf(5).
  212. #
  213. # You can specify the list of "trusted" network addresses by hand
  214. # or you can let Postfix do it for you (which is the default).
  215. #
  216. # By default (mynetworks_style = subnet), Postfix "trusts" SMTP
  217. # clients in the same IP subnetworks as the local machine.
  218. # On Linux, this does works correctly only with interfaces specified
  219. # with the "ifconfig" command.
  220. #
  221. # Specify "mynetworks_style = class" when Postfix should "trust" SMTP
  222. # clients in the same IP class A/B/C networks as the local machine.
  223. # Don't do this with a dialup site - it would cause Postfix to "trust"
  224. # your entire provider's network.  Instead, specify an explicit
  225. # mynetworks list by hand, as described below.
  226. #  
  227. # Specify "mynetworks_style = host" when Postfix should "trust"
  228. # only the local machine.
  229. #
  230. #mynetworks_style = class
  231. #mynetworks_style = subnet
  232. #mynetworks_style = host

  233. # Alternatively, you can specify the mynetworks list by hand, in
  234. # which case Postfix ignores the mynetworks_style setting.
  235. #
  236. # Specify an explicit list of network/netmask patterns, where the
  237. # mask specifies the number of bits in the network part of a host
  238. # address.
  239. #
  240. # You can also specify the absolute pathname of a pattern file instead
  241. # of listing the patterns here. Specify type:table for table-based lookups
  242. # (the value on the table right-hand side is not used).
  243. #
  244. mynetworks = 192.168.0.0/24, 127.0.0.0/8
  245. #mynetworks = $config_directory/mynetworks
  246. #mynetworks = hash:/etc/postfix/network_table

  247. # The relay_domains parameter restricts what destinations this system will
  248. # relay mail to.  See the smtpd_recipient_restrictions description in
  249. # postconf(5) for detailed information.
  250. #
  251. # By default, Postfix relays mail
  252. # - from "trusted" clients (IP address matches $mynetworks) to any destination,
  253. # - from "untrusted" clients to destinations that match $relay_domains or
  254. #   subdomains thereof, except addresses with sender-specified routing.
  255. # The default relay_domains value is $mydestination.
  256. #
  257. # In addition to the above, the Postfix SMTP server by default accepts mail
  258. # that Postfix is final destination for:
  259. # - destinations that match $inet_interfaces or $proxy_interfaces,
  260. # - destinations that match $mydestination
  261. # - destinations that match $virtual_alias_domains,
  262. # - destinations that match $virtual_mailbox_domains.
  263. # These destinations do not need to be listed in $relay_domains.
  264. #
  265. # Specify a list of hosts or domains, /file/name patterns or type:name
  266. # lookup tables, separated by commas and/or whitespace.  Continue
  267. # long lines by starting the next line with whitespace. A file name
  268. # is replaced by its contents; a type:name table is matched when a
  269. # (parent) domain appears as lookup key.
  270. #
  271. # NOTE: Postfix will not automatically forward mail for domains that
  272. # list this system as their primary or backup MX host. See the
  273. # permit_mx_backup restriction description in postconf(5).
  274. #
  275. #relay_domains = $mydestination

  276. # INTERNET OR INTRANET

  277. # The relayhost parameter specifies the default host to send mail to
  278. # when no entry is matched in the optional transport(5) table. When
  279. # no relayhost is given, mail is routed directly to the destination.
  280. #
  281. # On an intranet, specify the organizational domain name. If your
  282. # internal DNS uses no MX records, specify the name of the intranet
  283. # gateway host instead.
  284. #
  285. # In the case of SMTP, specify a domain, host, host:port, [host]:port,
  286. # [address] or [address]:port; the form [host] turns off MX lookups.
  287. #
  288. # If you're connected via UUCP, see also the default_transport parameter.
  289. #
  290. #relayhost = $mydomain
  291. #relayhost = [gateway.my.domain]
  292. #relayhost = [mailserver.isp.tld]
  293. #relayhost = uucphost
  294. #relayhost = [an.ip.add.ress]

  295. # REJECTING UNKNOWN RELAY USERS
  296. #
  297. # The relay_recipient_maps parameter specifies optional lookup tables
  298. # with all addresses in the domains that match $relay_domains.
  299. #
  300. # If this parameter is defined, then the SMTP server will reject
  301. # mail for unknown relay users. This feature is off by default.
  302. #
  303. # The right-hand side of the lookup tables is conveniently ignored.
  304. # In the left-hand side, specify an @domain.tld wild-card, or specify
  305. # a user@domain.tld address.
  306. #
  307. #relay_recipient_maps = hash:/etc/postfix/relay_recipients

  308. # INPUT RATE CONTROL
  309. #
  310. # The in_flow_delay configuration parameter implements mail input
  311. # flow control. This feature is turned on by default, although it
  312. # still needs further development (it's disabled on SCO UNIX due
  313. # to an SCO bug).
  314. #
  315. # A Postfix process will pause for $in_flow_delay seconds before
  316. # accepting a new message, when the message arrival rate exceeds the
  317. # message delivery rate. With the default 100 SMTP server process
  318. # limit, this limits the mail inflow to 100 messages a second more
  319. # than the number of messages delivered per second.
  320. #
  321. # Specify 0 to disable the feature. Valid delays are 0..10.
  322. #
  323. #in_flow_delay = 1s

  324. # ADDRESS REWRITING
  325. #
  326. # The ADDRESS_REWRITING_README document gives information about
  327. # address masquerading or other forms of address rewriting including
  328. # username->Firstname.Lastname mapping.

  329. # ADDRESS REDIRECTION (VIRTUAL DOMAIN)
  330. #
  331. # The VIRTUAL_README document gives information about the many forms
  332. # of domain hosting that Postfix supports.

  333. # "USER HAS MOVED" BOUNCE MESSAGES
  334. #
  335. # See the discussion in the ADDRESS_REWRITING_README document.

  336. # TRANSPORT MAP
  337. #
  338. # See the discussion in the ADDRESS_REWRITING_README document.

  339. # ALIAS DATABASE
  340. #
  341. # The alias_maps parameter specifies the list of alias databases used
  342. # by the local delivery agent. The default list is system dependent.
  343. #
  344. # On systems with NIS, the default is to search the local alias
  345. # database, then the NIS alias database. See aliases(5) for syntax
  346. # details.
  347. #
  348. # If you change the alias database, run "postalias /etc/aliases" (or
  349. # wherever your system stores the mail alias file), or simply run
  350. # "newaliases" to build the necessary DBM or DB file.
  351. #
  352. # It will take a minute or so before changes become visible.  Use
  353. # "postfix reload" to eliminate the delay.
  354. #
  355. #alias_maps = dbm:/etc/aliases
  356. alias_maps = hash:/etc/aliases
  357. #alias_maps = hash:/etc/aliases, nis:mail.aliases
  358. #alias_maps = netinfo:/aliases

  359. # The alias_database parameter specifies the alias database(s) that
  360. # are built with "newaliases" or "sendmail -bi".  This is a separate
  361. # configuration parameter, because alias_maps (see above) may specify
  362. # tables that are not necessarily all under control by Postfix.
  363. #
  364. #alias_database = dbm:/etc/aliases
  365. #alias_database = dbm:/etc/mail/aliases
  366. alias_database = hash:/etc/aliases
  367. #alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases

  368. # ADDRESS EXTENSIONS (e.g., user+foo)
  369. #
  370. # The recipient_delimiter parameter specifies the separator between
  371. # user names and address extensions (user+foo). See canonical(5),
  372. # local(8), relocated(5) and virtual(5) for the effects this has on
  373. # aliases, canonical, virtual, relocated and .forward file lookups.
  374. # Basically, the software tries user+foo and .forward+foo before
  375. # trying user and .forward.
  376. #
  377. #recipient_delimiter = +

  378. # DELIVERY TO MAILBOX
  379. #
  380. # The home_mailbox parameter specifies the optional pathname of a
  381. # mailbox file relative to a user's home directory. The default
  382. # mailbox file is /var/spool/mail/user or /var/mail/user.  Specify
  383. # "Maildir/" for qmail-style delivery (the / is required).
  384. #
  385. #home_mailbox = Mailbox
  386. #home_mailbox = Maildir/

  387. # The mail_spool_directory parameter specifies the directory where
  388. # UNIX-style mailboxes are kept. The default setting depends on the
  389. # system type.
  390. #
  391. #mail_spool_directory = /var/mail
  392. #mail_spool_directory = /var/spool/mail

  393. # The mailbox_command parameter specifies the optional external
  394. # command to use instead of mailbox delivery. The command is run as
  395. # the recipient with proper HOME, SHELL and LOGNAME environment settings.
  396. # Exception:  delivery for root is done as $default_user.
  397. #
  398. # Other environment variables of interest: USER (recipient username),
  399. # EXTENSION (address extension), DOMAIN (domain part of address),
  400. # and LOCAL (the address localpart).
  401. #
  402. # Unlike other Postfix configuration parameters, the mailbox_command
  403. # parameter is not subjected to $parameter substitutions. This is to
  404. # make it easier to specify shell syntax (see example below).
  405. #
  406. # Avoid shell meta characters because they will force Postfix to run
  407. # an expensive shell process. Procmail alone is expensive enough.
  408. #
  409. # IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
  410. # ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
  411. #
  412. #mailbox_command = /usr/bin/procmail
  413. #mailbox_command = /some/where/procmail -a "$EXTENSION"

  414. # The mailbox_transport specifies the optional transport in master.cf
  415. # to use after processing aliases and .forward files. This parameter
  416. # has precedence over the mailbox_command, fallback_transport and
  417. # luser_relay parameters.
  418. #
  419. # Specify a string of the form transport:nexthop, where transport is
  420. # the name of a mail delivery transport defined in master.cf.  The
  421. # :nexthop part is optional. For more details see the sample transport
  422. # configuration file.
  423. #
  424. # NOTE: if you use this feature for accounts not in the UNIX password
  425. # file, then you must update the "local_recipient_maps" setting in
  426. # the main.cf file, otherwise the SMTP server will reject mail for   
  427. # non-UNIX accounts with "User unknown in local recipient table".
  428. #
  429. #mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp

  430. # If using the cyrus-imapd IMAP server deliver local mail to the IMAP
  431. # server using LMTP (Local Mail Transport Protocol), this is prefered
  432. # over the older cyrus deliver program by setting the
  433. # mailbox_transport as below:
  434. #
  435. # mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
  436. #
  437. # The efficiency of LMTP delivery for cyrus-imapd can be enhanced via
  438. # these settings.
  439. #
  440. # local_destination_recipient_limit = 300
  441. # local_destination_concurrency_limit = 5
  442. #
  443. # Of course you should adjust these settings as appropriate for the
  444. # capacity of the hardware you are using. The recipient limit setting
  445. # can be used to take advantage of the single instance message store
  446. # capability of Cyrus. The concurrency limit can be used to control
  447. # how many simultaneous LMTP sessions will be permitted to the Cyrus
  448. # message store.
  449. #
  450. # To use the old cyrus deliver program you have to set:
  451. #mailbox_transport = cyrus

  452. # The fallback_transport specifies the optional transport in master.cf
  453. # to use for recipients that are not found in the UNIX passwd database.
  454. # This parameter has precedence over the luser_relay parameter.
  455. #
  456. # Specify a string of the form transport:nexthop, where transport is
  457. # the name of a mail delivery transport defined in master.cf.  The
  458. # :nexthop part is optional. For more details see the sample transport
  459. # configuration file.
  460. #
  461. # NOTE: if you use this feature for accounts not in the UNIX password
  462. # file, then you must update the "local_recipient_maps" setting in
  463. # the main.cf file, otherwise the SMTP server will reject mail for   
  464. # non-UNIX accounts with "User unknown in local recipient table".
  465. #
  466. #fallback_transport = lmtp:unix:/var/lib/imap/socket/lmtp
  467. #fallback_transport =

  468. # The luser_relay parameter specifies an optional destination address
  469. # for unknown recipients.  By default, mail for unknown@$mydestination,
  470. # unknown@[$inet_interfaces] or unknown@[$proxy_interfaces] is returned
  471. # as undeliverable.
  472. #
  473. # The following expansions are done on luser_relay: $user (recipient
  474. # username), $shell (recipient shell), $home (recipient home directory),
  475. # $recipient (full recipient address), $extension (recipient address
  476. # extension), $domain (recipient domain), $local (entire recipient
  477. # localpart), $recipient_delimiter. Specify ${name?value} or
  478. # ${name:value} to expand value only when $name does (does not) exist.
  479. #
  480. # luser_relay works only for the default Postfix local delivery agent.
  481. #
  482. # NOTE: if you use this feature for accounts not in the UNIX password
  483. # file, then you must specify "local_recipient_maps =" (i.e. empty) in
  484. # the main.cf file, otherwise the SMTP server will reject mail for   
  485. # non-UNIX accounts with "User unknown in local recipient table".
  486. #
  487. #luser_relay = $user@other.host
  488. #luser_relay = $local@other.host
  489. #luser_relay = admin+$local
  490.   
  491. # JUNK MAIL CONTROLS
  492. #
  493. # The controls listed here are only a very small subset. The file
  494. # SMTPD_ACCESS_README provides an overview.

  495. # The header_checks parameter specifies an optional table with patterns
  496. # that each logical message header is matched against, including
  497. # headers that span multiple physical lines.
  498. #
  499. # By default, these patterns also apply to MIME headers and to the
  500. # headers of attached messages. With older Postfix versions, MIME and
  501. # attached message headers were treated as body text.
  502. #
  503. # For details, see "man header_checks".
  504. #
  505. #header_checks = regexp:/etc/postfix/header_checks

  506. # FAST ETRN SERVICE
  507. #
  508. # Postfix maintains per-destination logfiles with information about
  509. # deferred mail, so that mail can be flushed quickly with the SMTP
  510. # "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
  511. # See the ETRN_README document for a detailed description.
  512. #
  513. # The fast_flush_domains parameter controls what destinations are
  514. # eligible for this service. By default, they are all domains that
  515. # this server is willing to relay mail to.
  516. #
  517. #fast_flush_domains = $relay_domains

  518. # SHOW SOFTWARE VERSION OR NOT
  519. #
  520. # The smtpd_banner parameter specifies the text that follows the 220
  521. # code in the SMTP server's greeting banner. Some people like to see
  522. # the mail version advertised. By default, Postfix shows no version.
  523. #
  524. # You MUST specify $myhostname at the start of the text. That is an
  525. # RFC requirement. Postfix itself does not care.
  526. #
  527. #smtpd_banner = $myhostname ESMTP $mail_name
  528. #smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)

  529. # PARALLEL DELIVERY TO THE SAME DESTINATION
  530. #
  531. # How many parallel deliveries to the same user or domain? With local
  532. # delivery, it does not make sense to do massively parallel delivery
  533. # to the same user, because mailbox updates must happen sequentially,
  534. # and expensive pipelines in .forward files can cause disasters when
  535. # too many are run at the same time. With SMTP deliveries, 10
  536. # simultaneous connections to the same domain could be sufficient to
  537. # raise eyebrows.
  538. #
  539. # Each message delivery transport has its XXX_destination_concurrency_limit
  540. # parameter.  The default is $default_destination_concurrency_limit for
  541. # most delivery transports. For the local delivery agent the default is 2.

  542. #local_destination_concurrency_limit = 2
  543. #default_destination_concurrency_limit = 20

  544. # DEBUGGING CONTROL
  545. #
  546. # The debug_peer_level parameter specifies the increment in verbose
  547. # logging level when an SMTP client or server host name or address
  548. # matches a pattern in the debug_peer_list parameter.
  549. #
  550. debug_peer_level = 2

  551. # The debug_peer_list parameter specifies an optional list of domain
  552. # or network patterns, /file/name patterns or type:name tables. When
  553. # an SMTP client or server host name or address matches a pattern,
  554. # increase the verbose logging level by the amount specified in the
  555. # debug_peer_level parameter.
  556. #
  557. #debug_peer_list = 127.0.0.1
  558. #debug_peer_list = some.domain

  559. # The debugger_command specifies the external command that is executed
  560. # when a Postfix daemon program is run with the -D option.
  561. #
  562. # Use "command .. & sleep 5" so that the debugger can attach before
  563. # the process marches on. If you use an X-based debugger, be sure to
  564. # set up your XAUTHORITY environment variable before starting Postfix.
  565. #
  566. debugger_command =
  567.          PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
  568.          ddd $daemon_directory/$process_name $process_id & sleep 5

  569. # If you can't use X, use this to capture the call stack when a
  570. # daemon crashes. The result is in a file in the configuration
  571. # directory, and is named after the process name and the process ID.
  572. #
  573. # debugger_command =
  574. #        PATH=/bin:/usr/bin:/usr/local/bin; export PATH; (echo cont;
  575. #        echo where) | gdb $daemon_directory/$process_name $process_id 2>&1
  576. #        >$config_directory/$process_name.$process_id.log & sleep 5
  577. #
  578. # Another possibility is to run gdb under a detached screen session.
  579. # To attach to the screen sesssion, su root and run "screen -r
  580. # <id_string>" where <id_string> uniquely matches one of the detached
  581. # sessions (from "screen -list").
  582. #
  583. # debugger_command =
  584. #        PATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH; screen
  585. #        -dmS $process_name gdb $daemon_directory/$process_name
  586. #        $process_id & sleep 1

  587. # INSTALL-TIME CONFIGURATION INFORMATION
  588. #
  589. # The following parameters are used when installing a new Postfix version.
  590. #
  591. # sendmail_path: The full pathname of the Postfix sendmail command.
  592. # This is the Sendmail-compatible mail posting interface.
  593. #
  594. sendmail_path = /usr/sbin/sendmail.postfix

  595. # newaliases_path: The full pathname of the Postfix newaliases command.
  596. # This is the Sendmail-compatible command to build alias databases.
  597. #
  598. newaliases_path = /usr/bin/newaliases.postfix

  599. # mailq_path: The full pathname of the Postfix mailq command.  This
  600. # is the Sendmail-compatible mail queue listing command.
  601. #
  602. mailq_path = /usr/bin/mailq.postfix

  603. # setgid_group: The group for mail submission and queue management
  604. # commands.  This must be a group name with a numerical group ID that
  605. # is not shared with other accounts, not even with the Postfix account.
  606. #
  607. setgid_group = postdrop

  608. # html_directory: The location of the Postfix HTML documentation.
  609. #
  610. html_directory = no

  611. # manpage_directory: The location of the Postfix on-line manual pages.
  612. #
  613. manpage_directory = /usr/share/man

  614. # sample_directory: The location of the Postfix sample configuration files.
  615. # This parameter is obsolete as of Postfix 2.1.
  616. #
  617. sample_directory = /usr/share/doc/postfix-2.6.6/samples

  618. # readme_directory: The location of the Postfix README files.
  619. #
  620. readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES



  621. #virtual_alias_maps = hash:/etc/postfix/virtual


  622. #smtp_generic_maps = hash:/etc/postfix/generic

  623. smtpd_recipient_restrictions= hash:/etc/postfix/access2,
  624.                               permit_mynetworks,
  625.                               permit_sasl_authenticated,
  626.                               reject_unauth_destination


  627. smtpd_sender_restrictions= hash:/etc/postfix/access,
  628.                               permit_mynetworks,
  629.                               permit_sasl_authenticated,
  630.                               reject_unauth_destination



  631. #smtp_sasl_auth_enable = yes
  632. #smtp_sasl_password_maps= hash:/etc/sasldb2
复制代码
收件服务器(/etc/dovecot/dovecot.conf):
  1. ## Dovecot configuration file

  2. # If you're in a hurry, see http://wiki.dovecot.org/QuickConfiguration

  3. # "doveconf -n" command gives a clean output of the changed settings. Use it
  4. # instead of copy&pasting files when posting to the Dovecot mailing list.

  5. # '#' character and everything after it is treated as comments. Extra spaces
  6. # and tabs are ignored. If you want to use either of these explicitly, put the
  7. # value inside quotes, eg.: key = "# char and trailing whitespace  "

  8. # Default values are shown for each setting, it's not required to uncomment
  9. # those. These are exceptions to this though: No sections (e.g. namespace {})
  10. # or plugin settings are added by default, they're listed only as examples.
  11. # Paths are also just examples with the real defaults being based on configure
  12. # options. The paths listed here are for configure --prefix=/usr
  13. # --sysconfdir=/etc --localstatedir=/var

  14. # Protocols we want to be serving.
  15. #protocols = imap pop3 lmtp

  16. # A comma separated list of IPs or hosts where to listen in for connections.
  17. # "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
  18. # If you want to specify non-default ports or anything more complex,
  19. # edit conf.d/master.conf.
  20. #listen = *, ::

  21. # Base directory where to store runtime data.
  22. #base_dir = /var/run/dovecot/

  23. # Greeting message for clients.
  24. #login_greeting = Dovecot ready.

  25. # Space separated list of trusted network ranges. Connections from these
  26. # IPs are allowed to override their IP addresses and ports (for logging and
  27. # for authentication checks). disable_plaintext_auth is also ignored for
  28. # these networks. Typically you'd specify your IMAP proxy servers here.
  29. login_trusted_networks =  192.168.0.0/24

  30. # Sepace separated list of login access check sockets (e.g. tcpwrap)
  31. #login_access_sockets =

  32. # Show more verbose process titles (in ps). Currently shows user name and
  33. # IP address. Useful for seeing who are actually using the IMAP processes
  34. # (eg. shared mailboxes or if same uid is used for multiple accounts).
  35. #verbose_proctitle = no

  36. # Should all processes be killed when Dovecot master process shuts down.
  37. # Setting this to "no" means that Dovecot can be upgraded without
  38. # forcing existing client connections to close (although that could also be
  39. # a problem if the upgrade is e.g. because of a security fix).
  40. #shutdown_clients = yes

  41. # If non-zero, run mail commands via this many connections to doveadm server,
  42. # instead of running them directly in the same process.
  43. #doveadm_worker_count = 0
  44. # UNIX socket or host:port used for connecting to doveadm server
  45. #doveadm_socket_path = doveadm-server

  46. ##
  47. ## Dictionary server settings
  48. ##

  49. # Dictionary can be used to store key=value lists. This is used by several
  50. # plugins. The dictionary can be accessed either directly or though a
  51. # dictionary server. The following dict block maps dictionary names to URIs
  52. # when the server is used. These can then be referenced using URIs in format
  53. # "proxy::<name>".

  54. dict {
  55.   #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
  56.   #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
  57. }

  58. # Most of the actual configuration gets included below. The filenames are
  59. # first sorted by their ASCII value and parsed in that order. The 00-prefixes
  60. # in filenames are intended to make it easier to understand the ordering.
  61. !include conf.d/*.conf

  62. # A config file can also tried to be included without giving an error if
  63. # it's not found:
  64. #!include_try /etc/dovecot/local.conf
复制代码





回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Bo's Oracle Station   

GMT+8, 2024-3-29 09:06 , Processed in 0.039424 second(s), 28 queries .

快速回复 返回顶部 返回列表