1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-14 19:33:59 +02:00

postfix: version update to 3.1.3

Signed-off-by: Denis Shulyaka <Shulyaka@gmail.com>
This commit is contained in:
Denis Shulyaka 2016-08-15 18:43:54 +03:00
parent 066b6319c9
commit c2e98055eb
3 changed files with 48 additions and 49 deletions

View File

@ -10,8 +10,8 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=postfix
PKG_RELEASE:=1
PKG_SOURCE_URL:=ftp://ftp.porcupine.org/mirrors/postfix-release/official/
PKG_VERSION:=3.1.0
PKG_MD5SUM:=b4a506fa74c69c6fb1875c0971268344
PKG_VERSION:=3.1.3
PKG_MD5SUM:=28a1dedbbbedfcf5fc09fd88bac116b6
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MAINTAINER:=Denis Shulyaka <Shulyaka@gmail.com>
PKG_LICENSE:=IPL-1.0

View File

@ -313,8 +313,8 @@ local_transport_rate_delay = $default_transport_rate_delay
luser_relay =
mail_name = Postfix
mail_owner = postfix
mail_release_date = 20160224
mail_version = 3.1.0
mail_release_date = 20161001
mail_version = 3.1.3
mailbox_command =
mailbox_command_maps =
mailbox_delivery_lock = fcntl, dotlock
@ -768,7 +768,7 @@ tls_random_exchange_name = ${data_directory}/prng_exch
tls_random_prng_update_period = 3600s
tls_random_reseed_period = 3600s
tls_random_source = dev:/dev/urandom
tls_session_ticket_cipher = aes-128-cbc
tls_session_ticket_cipher = aes-256-cbc
tls_ssl_options =
tls_wildcard_matches_multiple_labels = yes
tlsmgr_service_name = tlsmgr

View File

@ -3,15 +3,15 @@
START=50
STOP=50
EXTRA_COMMANDS="status abort flush"
EXTRA_COMMANDS="status abort flush postinst"
EXTRA_HELP=" status Display the service status
abort Stop the service abruptly. Running processes are signaled to stop immediately
flush Force delivery: attempt to deliver every message in the deferred mail queue"
flush Force delivery: attempt to deliver every message in the deferred mail queue
postinst Force running a script that checks for users, group, configuration, permissions, etc"
upgrade() {
config_directory="$IPKG_INSTROOT"/etc/postfix
if [ -f "$config_directory"/opkg_postinst ]; then
postinst() {
rm -f "$config_directory"/opkg_postinst
group_exists postfix || group_add postfix 87
@ -52,11 +52,10 @@ upgrade() {
newaliases
postmap "$config_directory"/virtual
postfix check
fi
}
start() {
upgrade
test -f "$config_directory"/opkg_postinst && postinst
postfix start
}
@ -65,7 +64,7 @@ stop() {
}
reload() {
upgrade
test -f "$config_directory"/opkg_postinst && postinst
postfix reload
}