aboutsummaryrefslogtreecommitdiffstats
path: root/config/postfix
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-03-29 10:23:53 -0400
committerjim-p <jimp@pfsense.org>2011-03-29 10:23:53 -0400
commit585837f2a0e69bf29feb56b155562e96396e3933 (patch)
treee4d981babfb806f09dc98f91694dc69a04f41b67 /config/postfix
parent3158f08f146b6f2834bf0291048adf6b2dd49303 (diff)
downloadpfsense-packages-585837f2a0e69bf29feb56b155562e96396e3933.tar.gz
pfsense-packages-585837f2a0e69bf29feb56b155562e96396e3933.tar.bz2
pfsense-packages-585837f2a0e69bf29feb56b155562e96396e3933.zip
Add a field to the postfix forwarder package to set the max message size.
Diffstat (limited to 'config/postfix')
-rw-r--r--config/postfix/postfix.inc6
-rw-r--r--config/postfix/postfix.xml18
2 files changed, 22 insertions, 2 deletions
diff --git a/config/postfix/postfix.inc b/config/postfix/postfix.inc
index f100a937..cf470c8f 100644
--- a/config/postfix/postfix.inc
+++ b/config/postfix/postfix.inc
@@ -35,9 +35,12 @@ function sync_package_postfix() {
$relay_domains = "";
$transport = "";
+ $message_size_limit = "10240000";
if (is_array($config['installedpackages']['postfix']['config'])) {
foreach ($config['installedpackages']['postfix']['config'] as $postfix_config) {
+ if (isset($postfix_config['message_size_limit']))
+ $message_size_limit = $postfix_config['message_size_limit'];
if (is_array($postfix_config['row'])) {
foreach ($postfix_config['row'] as $postfix_row) {
$relay_domains .= ' ' . $postfix_row['domain'];
@@ -53,7 +56,8 @@ function sync_package_postfix() {
"transport_maps = hash:/usr/local/etc/postfix/transport\n" .
"local_recipient_maps =\n" .
"mydestination =\n" .
- "mynetworks_style = host\n";
+ "mynetworks_style = host\n" .
+ "message_size_limit = {$message_size_limit}\n";
conf_mount_rw();
diff --git a/config/postfix/postfix.xml b/config/postfix/postfix.xml
index e1e89bae..292ca595 100644
--- a/config/postfix/postfix.xml
+++ b/config/postfix/postfix.xml
@@ -42,7 +42,7 @@
<requirements>Describe your package requirements here</requirements>
<faq>Currently there are no FAQ items provided.</faq>
<name>postfix</name>
- <version>1.0</version>
+ <version>1.1</version>
<title>Services: Postfix Forwarder</title>
<include_file>/usr/local/pkg/postfix.inc</include_file>
<menu>
@@ -63,6 +63,22 @@
</additional_files_needed>
<fields>
<field>
+ <name>Posftix General Settings</name>
+ <type>listtopic</type>
+ </field>
+ <field>
+ <fielddescr>Maximum message size</fielddescr>
+ <fieldname>message_size_limit</fieldname>
+ <type>input</type>
+ <description>
+ This setting governs the largest message size that will be accepted by this mail server. Ensure you have enough space to accommodate this size, and ensure this setting matches or is lower than the destination server(s).&lt;br/&gt;Default: 10240000 (10MB).
+ </description>
+ </field>
+ <field>
+ <name>Domains to Forward</name>
+ <type>listtopic</type>
+ </field>
+ <field>
<fielddescr>Forwarding</fielddescr>
<fieldname>none</fieldname>
<type>rowhelper</type>