- Timestamp:
- 03/14/08 22:49:36
(9 months ago)
- Author:
- rats
- Message:
Small fix,
Updated all Distros
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1026 |
r1059 |
|
| | 1 | # |
|---|
| | 2 | # ispCP ω (OMEGA) a Virtual Hosting Control System |
|---|
| | 3 | # |
|---|
| | 4 | # @copyright 2001-2006 by moleSoftware GmbH |
|---|
| | 5 | # @copyright 2006-2008 by ispCP | http://isp-control.net |
|---|
| | 6 | # @version SVN: $ID$ |
|---|
| | 7 | # @link http://isp-control.net |
|---|
| | 8 | # @author ispCP Team |
|---|
| | 9 | # |
|---|
| | 10 | # @license |
|---|
| | 11 | # This program is free software; you can redistribute it and/or modify it under |
|---|
| | 12 | # the terms of the MPL General Public License as published by the Free Software |
|---|
| | 13 | # Foundation; either version 1.1 of the License, or (at your option) any later |
|---|
| | 14 | # version. |
|---|
| | 15 | # You should have received a copy of the MPL Mozilla Public License along with |
|---|
| | 16 | # this program; if not, write to the Open Source Initiative (OSI) |
|---|
| | 17 | # http://opensource.org | osi@opensource.org |
|---|
| | 18 | # |
|---|
| | 19 | ################################################################################ |
|---|
| 1 | 20 | |
|---|
| 2 | | # |
|---|
| 3 | | # Postfix MTA Manager Main Configuration File; |
|---|
| 4 | | # |
|---|
| 5 | | # Please do NOT edit this file manually; |
|---|
| 6 | | # |
|---|
| | 21 | # Postfix directory settings; These are critical for normal Postfix MTA functionallity |
|---|
| | 22 | command_directory = /usr/sbin |
|---|
| | 23 | daemon_directory = /usr/lib/postfix |
|---|
| | 24 | program_directory = /usr/lib/postfix |
|---|
| 7 | 25 | |
|---|
| 8 | | # |
|---|
| 9 | | # Postfix directory settings; These are critical for normal Postfix MTA functionallity; |
|---|
| 10 | | # |
|---|
| | 26 | # Some common configuration parameters |
|---|
| | 27 | inet_interfaces = all |
|---|
| | 28 | mynetworks_style = host |
|---|
| 11 | 29 | |
|---|
| 12 | | command_directory = /usr/sbin |
|---|
| 13 | | daemon_directory = /usr/lib/postfix |
|---|
| 14 | | program_directory = /usr/lib/postfix |
|---|
| | 30 | myhostname = {MTA_HOSTNAME} |
|---|
| | 31 | mydomain = {MTA_LOCAL_DOMAIN} |
|---|
| | 32 | myorigin = $myhostname |
|---|
| 15 | 33 | |
|---|
| 16 | | # |
|---|
| 17 | | # Some common configuration parameters; |
|---|
| 18 | | # |
|---|
| | 34 | smtpd_banner = $myhostname ESMTP ispCP {MTA_VERSION} Managed |
|---|
| | 35 | setgid_group = postdrop |
|---|
| 19 | 36 | |
|---|
| 20 | | inet_interfaces = all |
|---|
| 21 | | mynetworks_style = host |
|---|
| | 37 | # Receiving messages parameters |
|---|
| | 38 | mydestination = $myhostname, $mydomain |
|---|
| | 39 | append_dot_mydomain = no |
|---|
| | 40 | append_at_myorigin = yes |
|---|
| | 41 | local_transport = local |
|---|
| | 42 | virtual_transport = virtual |
|---|
| | 43 | transport_maps = hash:{MTA_TRANSPORT_HASH} |
|---|
| | 44 | alias_maps = hash:{MTA_LOCAL_ALIAS_HASH} |
|---|
| | 45 | alias_database = hash:{MTA_LOCAL_ALIAS_HASH} |
|---|
| 22 | 46 | |
|---|
| 23 | | myhostname = {MTA_HOSTNAME} |
|---|
| 24 | | mydomain = {MTA_LOCAL_DOMAIN} |
|---|
| 25 | | myorigin = $myhostname |
|---|
| 26 | | |
|---|
| 27 | | smtpd_banner = $myhostname ESMTP ispCP {MTA_VERSION} Managed |
|---|
| 28 | | setgid_group = maildrop |
|---|
| 29 | | |
|---|
| 30 | | # |
|---|
| 31 | | # Receiving messages parameters; |
|---|
| 32 | | # |
|---|
| 33 | | |
|---|
| 34 | | mydestination = $myhostname, $mydomain |
|---|
| 35 | | append_dot_mydomain = no |
|---|
| 36 | | append_at_myorigin = yes |
|---|
| 37 | | local_transport = local |
|---|
| 38 | | virtual_transport = virtual |
|---|
| 39 | | transport_maps = hash:{MTA_TRANSPORT_HASH} |
|---|
| 40 | | alias_maps = hash:/etc/aliases |
|---|
| 41 | | |
|---|
| 42 | | # |
|---|
| 43 | | # Delivering local messages parameters; |
|---|
| 44 | | # |
|---|
| 45 | | |
|---|
| 46 | | mail_spool_directory = {MTA_LOCAL_MAIL_DIR} |
|---|
| | 47 | # Delivering local messages parameters |
|---|
| | 48 | mail_spool_directory = {MTA_LOCAL_MAIL_DIR} |
|---|
| 47 | 49 | |
|---|
| 48 | 50 | # Mailboxquota |
|---|
| 49 | 51 | # => 0 for unlimited |
|---|
| 50 | 52 | # => 104857600 for 100 MB |
|---|
| 51 | | mailbox_size_limit = 0 |
|---|
| 52 | | mailbox_command = procmail -a "$EXTENSION" |
|---|
| | 53 | mailbox_size_limit = 0 |
|---|
| | 54 | mailbox_command = procmail -a "$EXTENSION" |
|---|
| 53 | 55 | |
|---|
| 54 | | biff = no |
|---|
| 55 | | |
|---|
| 56 | | alias_database = hash:{MTA_LOCAL_ALIAS_HASH} |
|---|
| | 56 | biff = no |
|---|
| | 57 | recipient_delimiter = + |
|---|
| 57 | 58 | |
|---|
| 58 | 59 | local_destination_recipient_limit = 1 |
|---|
| 59 | | local_recipient_maps = unix:passwd.byname $alias_database |
|---|
| | 60 | local_recipient_maps = unix:passwd.byname $alias_database |
|---|
| 60 | 61 | |
|---|
| 61 | | # |
|---|
| 62 | | # ISPCP Autoresponder parameters; |
|---|
| 63 | | # |
|---|
| 64 | | |
|---|
| | 62 | # ispCP Autoresponder parameters |
|---|
| 65 | 63 | ispcp-arpl_destination_recipient_limit = 1 |
|---|
| 66 | 64 | |
|---|
| 67 | | # |
|---|
| 68 | | # Delivering virtual messages parameters; |
|---|
| 69 | | # |
|---|
| | 65 | # Delivering virtual messages parameters |
|---|
| | 66 | virtual_mailbox_base = {MTA_VIRTUAL_MAIL_DIR} |
|---|
| | 67 | virtual_mailbox_limit = 0 |
|---|
| 70 | 68 | |
|---|
| 71 | | virtual_mailbox_base = {MTA_VIRTUAL_MAIL_DIR} |
|---|
| 72 | | virtual_mailbox_limit = 0 |
|---|
| | 69 | virtual_mailbox_domains = hash:{MTA_VIRTUAL_DMN_HASH} |
|---|
| | 70 | virtual_mailbox_maps = hash:{MTA_VIRTUAL_MAILBOX_HASH} |
|---|
| 73 | 71 | |
|---|
| 74 | | virtual_mailbox_domains = hash:{MTA_VIRTUAL_DMN_HASH} |
|---|
| 75 | | virtual_mailbox_maps = hash:{MTA_VIRTUAL_MAILBOX_HASH} |
|---|
| | 72 | virtual_alias_maps = hash:{MTA_VIRTUAL_ALIAS_HASH} |
|---|
| 76 | 73 | |
|---|
| 77 | | virtual_alias_maps = hash:{MTA_VIRTUAL_ALIAS_HASH} |
|---|
| | 74 | virtual_minimum_uid = {MTA_MAILBOX_MIN_UID} |
|---|
| | 75 | virtual_uid_maps = static:{MTA_MAILBOX_UID} |
|---|
| | 76 | virtual_gid_maps = static:{MTA_MAILBOX_GID} |
|---|
| 78 | 77 | |
|---|
| 79 | | virtual_minimum_uid = {MTA_MAILBOX_MIN_UID} |
|---|
| 80 | | virtual_uid_maps = static:{MTA_MAILBOX_UID} |
|---|
| 81 | | virtual_gid_maps = static:{MTA_MAILBOX_GID} |
|---|
| 82 | | |
|---|
| 83 | | # |
|---|
| 84 | | # SASL paramters; |
|---|
| 85 | | # |
|---|
| 86 | | |
|---|
| | 78 | # SASL paramters |
|---|
| 87 | 79 | smtpd_sasl_auth_enable = yes |
|---|
| 88 | 80 | smtpd_sasl2_auth_enable = yes |
|---|
| … | … | |
| 91 | 83 | broken_sasl_auth_clients = yes |
|---|
| 92 | 84 | |
|---|
| 93 | | smtpd_helo_required = yes |
|---|
| | 85 | smtpd_helo_required = yes |
|---|
| 94 | 86 | |
|---|
| 95 | 87 | smtpd_helo_restrictions = permit_mynetworks, |
|---|
| … | … | |
| 116 | 108 | reject_unauth_pipelining |
|---|
| 117 | 109 | |
|---|
| | 110 | # TLS parameters; activate, if avaible/used |
|---|
| | 111 | #smtpd_use_tls = yes |
|---|
| | 112 | #smtpd_tls_loglevel = 2 |
|---|
| | 113 | #smtpd_tls_cert_file = /etc/postfix/cert.pem |
|---|
| | 114 | #smtpd_tls_key_file = /etc/postfix/privkey.pem |
|---|
| | 115 | #smtpd_tls_auth_only = no |
|---|
| | 116 | #smtpd_tls_received_header = yes |
|---|
| 118 | 117 | |
|---|
| 119 | | # |
|---|
| 120 | | # TLS parameters; activate, if avaible/used |
|---|
| 121 | | # |
|---|
| | 118 | # AMaViS parameters; activate, if available/used |
|---|
| | 119 | #content_filter = amavis:[127.0.0.1]:10024 |
|---|
| 122 | 120 | |
|---|
| 123 | | #smtpd_tls_loglevel = 2 |
|---|
| 124 | | #smtpd_tls_cert_file = /etc/postfix/cert.pem |
|---|
| 125 | | #smtpd_tls_key_file = /etc/postfix/privkey.pem |
|---|
| 126 | | #smtpd_use_tls = yes |
|---|
| 127 | | #smtpd_tls_auth_only = no |
|---|
| 128 | | #smtpd_tls_received_header = yes |
|---|
| 129 | | |
|---|
| 130 | | |
|---|
| 131 | | # |
|---|
| 132 | | # AMaViS parameters; activate, if available/used |
|---|
| 133 | | # |
|---|
| 134 | | |
|---|
| 135 | | #content_filter = amavis:[127.0.0.1]:10024 |
|---|
| 136 | | |
|---|
| 137 | | # |
|---|
| 138 | 121 | # Quota support; activate, if available/used |
|---|
| 139 | | # |
|---|
| 140 | | |
|---|
| 141 | 122 | #virtual_create_maildirsize = yes |
|---|
| 142 | 123 | #virtual_mailbox_extended = yes |
|---|
|
Download in other formats:
#########################################################################
# Site footer - Contents are automatically inserted after main Trac HTML
?>