diff options
author | Renato Botelho <garga@FreeBSD.org> | 2015-04-27 10:07:22 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-04-27 10:07:22 -0300 |
commit | 7c10d4029c809d662156d5116be882ba2f8d6af9 (patch) | |
tree | 684db97e8fb07e7bde81a2bbe1b6d49a396c4ae7 | |
parent | f8dc79aa8b222da9540596d16cee8bc6643afaff (diff) | |
download | pfsense-packages-7c10d4029c809d662156d5116be882ba2f8d6af9.tar.gz pfsense-packages-7c10d4029c809d662156d5116be882ba2f8d6af9.tar.bz2 pfsense-packages-7c10d4029c809d662156d5116be882ba2f8d6af9.zip |
Symlink /etc/aliases -> /etc/mail/aliases and silence errors. Bump package version
-rwxr-xr-x | config/postfix/postfix.inc | 3 | ||||
-rw-r--r-- | pkg_config.10.xml | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/config/postfix/postfix.inc b/config/postfix/postfix.inc index e2b5c7df..fd0832ba 100755 --- a/config/postfix/postfix.inc +++ b/config/postfix/postfix.inc @@ -766,6 +766,8 @@ MASTEREOF2; } if (!file_exists("/etc/mail/aliases")) touch("/etc/mail/aliases"); + if (!file_exists("/etc/aliases")) + @symlink("/etc/mail/aliases", "/etc/aliases"); exec("/usr/local/bin/newaliases"); postfix_start(); @@ -846,6 +848,7 @@ function postfix_php_deinstall_command() { sync_package_postfix(); conf_mount_rw(); unlink_if_exists("/usr/local/etc/rc.d/postfix.sh"); + unlink_if_exists("/etc/aliases"); conf_mount_ro(); } diff --git a/pkg_config.10.xml b/pkg_config.10.xml index 8770843f..269bd1f8 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -464,7 +464,7 @@ <pkginfolink>https://forum.pfsense.org/index.php/topic,40622.0.html</pkginfolink> <config_file>https://packages.pfsense.org/packages/config/postfix/postfix.xml</config_file> <depends_on_package_pbi>postfix-2.11.3_2-##ARCH##.pbi</depends_on_package_pbi> - <version>2.4.1</version> + <version>2.4.2</version> <status>Release</status> <required_version>2.2</required_version> <configurationfile>postfix.xml</configurationfile> |