Skip to content

Commit 662a1cd

Browse files
author
Jenkins Build User
committed
Releasing 3.3.11.2
2 parents 1d128c8 + 847524f commit 662a1cd

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM technicalguru/rs-php:7.4.28-apache-2.4.53.1
1+
FROM technicalguru/php:8.1.11-apache-2.4.54.0
22
LABEL maintainer="Ralph Schuster <github@ralph-schuster.eu>"
33

44
RUN apt-get update && apt-get update && apt-get install -y --no-install-recommends \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Related images:
1313
# Tags
1414
The following versions are available from DockerHub. The image tag matches the PostfixAdmin version.
1515

16-
* [3.3.11.1, 3.3.11, 3.3, 3, latest](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.3.11.1) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.3.11.1/Dockerfile)
16+
* [3.3.11.2, 3.3.11, 3.3, 3, latest](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.3.11.2) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.3.11.2/Dockerfile)
1717
* [3.2.4-01, 3.2.4, 3.2](https://hub.docker.com/repository/docker/technicalguru/mailserver-postfixadmin/tree/v3.2.4-01) - [Dockerfile](https://github.com/technicalguru/docker-mailserver-postfixadmin/blob/3.2.4-01/Dockerfile)
1818

1919
# Features

image.name

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
technicalguru/mailserver-postfixadmin

src/config.local.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ function language_hook($PALANG, $language) {
178178
// Mail Server
179179
// Hostname (FQDN) of your mail server.
180180
// This is used to send email to Postfix in order to create mailboxes.
181-
$CONF['smtp_server'] = $_ENV{'PFA_POSTFIX_SERVER'};
182-
$CONF['smtp_port'] = isset($_ENV{'PFA_POSTFIX_PORT'}) ? $_ENV{'PFA_POSTFIX_PORT'} : 25;
181+
$CONF['smtp_server'] = $_ENV['PFA_POSTFIX_SERVER'];
182+
$CONF['smtp_port'] = isset($_ENV['PFA_POSTFIX_PORT']) ? $_ENV['PFA_POSTFIX_PORT'] : 25;
183183

184184
// SMTP Client
185185
// Hostname (FQDN) of the server hosting Postfix Admin
@@ -255,10 +255,10 @@ function language_hook($PALANG, $language) {
255255
// a) a full mail address
256256
// b) only a localpart ('postmaster' => 'admin') - the alias target will point to the same domain
257257
$CONF['default_aliases'] = array (
258-
'abuse' => $_ENV{'PFA_ABUSE_EMAIL'},
259-
'hostmaster' => $_ENV{'PFA_HOSTMASTER_EMAIL'},
260-
'postmaster' => $_ENV{'PFA_POSTMASTER_EMAIL'},
261-
'webmaster' => $_ENV{'PFA_WEBMASTER_EMAIL'}
258+
'abuse' => $_ENV['PFA_ABUSE_EMAIL'],
259+
'hostmaster' => $_ENV['PFA_HOSTMASTER_EMAIL'],
260+
'postmaster' => $_ENV['PFA_POSTMASTER_EMAIL'],
261+
'webmaster' => $_ENV['PFA_WEBMASTER_EMAIL']
262262
);
263263

264264
// Mailboxes

0 commit comments

Comments
 (0)