c26211e314
Resolves: rhbz#1190797 - Defuzzified alternatives, config, large-fs patches - Rebased files patch
108 lines
4.2 KiB
Diff
108 lines
4.2 KiB
Diff
diff --git a/conf/main.cf b/conf/main.cf
|
|
index 1fc886b..c654dbd 100644
|
|
--- a/conf/main.cf
|
|
+++ b/conf/main.cf
|
|
@@ -132,6 +132,10 @@ mail_owner = postfix
|
|
#inet_interfaces = all
|
|
#inet_interfaces = $myhostname
|
|
#inet_interfaces = $myhostname, localhost
|
|
+inet_interfaces = localhost
|
|
+
|
|
+# Enable IPv4, and IPv6 if supported
|
|
+inet_protocols = all
|
|
|
|
# The proxy_interfaces parameter specifies the network interface
|
|
# addresses that this mail system receives mail on by way of a
|
|
@@ -176,7 +180,7 @@ mail_owner = postfix
|
|
#
|
|
# See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
|
|
#
|
|
-#mydestination = $myhostname, localhost.$mydomain, localhost
|
|
+mydestination = $myhostname, localhost.$mydomain, localhost
|
|
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
|
|
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
|
|
# mail.$mydomain, www.$mydomain, ftp.$mydomain
|
|
@@ -398,7 +402,7 @@ unknown_local_recipient_reject_code = 550
|
|
# "postfix reload" to eliminate the delay.
|
|
#
|
|
#alias_maps = dbm:/etc/aliases
|
|
-#alias_maps = hash:/etc/aliases
|
|
+alias_maps = hash:/etc/aliases
|
|
#alias_maps = hash:/etc/aliases, nis:mail.aliases
|
|
#alias_maps = netinfo:/aliases
|
|
|
|
@@ -409,7 +413,7 @@ unknown_local_recipient_reject_code = 550
|
|
#
|
|
#alias_database = dbm:/etc/aliases
|
|
#alias_database = dbm:/etc/mail/aliases
|
|
-#alias_database = hash:/etc/aliases
|
|
+alias_database = hash:/etc/aliases
|
|
#alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases
|
|
|
|
# ADDRESS EXTENSIONS (e.g., user+foo)
|
|
@@ -479,7 +483,27 @@ unknown_local_recipient_reject_code = 550
|
|
#
|
|
# Cyrus IMAP over LMTP. Specify ``lmtpunix cmd="lmtpd"
|
|
# listen="/var/imap/socket/lmtp" prefork=0'' in cyrus.conf.
|
|
-#mailbox_transport = lmtp:unix:/var/imap/socket/lmtp
|
|
+#mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
|
|
+
|
|
+# If using the cyrus-imapd IMAP server deliver local mail to the IMAP
|
|
+# server using LMTP (Local Mail Transport Protocol), this is prefered
|
|
+# over the older cyrus deliver program by setting the
|
|
+# mailbox_transport as below:
|
|
+#
|
|
+# mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
|
|
+#
|
|
+# The efficiency of LMTP delivery for cyrus-imapd can be enhanced via
|
|
+# these settings.
|
|
+#
|
|
+# local_destination_recipient_limit = 300
|
|
+# local_destination_concurrency_limit = 5
|
|
+#
|
|
+# Of course you should adjust these settings as appropriate for the
|
|
+# capacity of the hardware you are using. The recipient limit setting
|
|
+# can be used to take advantage of the single instance message store
|
|
+# capability of Cyrus. The concurrency limit can be used to control
|
|
+# how many simultaneous LMTP sessions will be permitted to the Cyrus
|
|
+# message store.
|
|
#
|
|
# Cyrus IMAP via command line. Uncomment the "cyrus...pipe" and
|
|
# subsequent line in master.cf.
|
|
@@ -499,8 +523,7 @@ unknown_local_recipient_reject_code = 550
|
|
# the main.cf file, otherwise the SMTP server will reject mail for
|
|
# non-UNIX accounts with "User unknown in local recipient table".
|
|
#
|
|
-#fallback_transport = lmtp:unix:/file/name
|
|
-#fallback_transport = cyrus
|
|
+#fallback_transport = lmtp:unix:/var/lib/imap/socket/lmtp
|
|
#fallback_transport =
|
|
|
|
# The luser_relay parameter specifies an optional destination address
|
|
@@ -673,4 +696,3 @@ sample_directory =
|
|
# readme_directory: The location of the Postfix README files.
|
|
#
|
|
readme_directory =
|
|
-inet_protocols = ipv4
|
|
diff --git a/conf/master.cf b/conf/master.cf
|
|
index 1eda7b5..10ee56e 100644
|
|
--- a/conf/master.cf
|
|
+++ b/conf/master.cf
|
|
@@ -95,14 +95,14 @@ scache unix - - n - 1 scache
|
|
# Also specify in main.cf: cyrus_destination_recipient_limit=1
|
|
#
|
|
#cyrus unix - n n - - pipe
|
|
-# user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
|
|
+# user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -r ${sender} -m ${extension} ${user}
|
|
#
|
|
# ====================================================================
|
|
#
|
|
# Old example of delivery via Cyrus.
|
|
#
|
|
#old-cyrus unix - n n - - pipe
|
|
-# flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
|
|
+# flags=R user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -m ${extension} ${user}
|
|
#
|
|
# ====================================================================
|
|
#
|