* Mon Nov 25 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-10.sme
- make compatible for postfix [SME: 1279] use postfix queue, qmail queue removed copy templates of rcpthosts to (us)qpsmtpd for rcpt_ok copy templates of smtproutes to (us)qpsmtpd for check_smtp_forward
This commit is contained in:
parent
ec4d24ba46
commit
302f649f00
18
createlinks
18
createlinks
@ -93,6 +93,24 @@ for $daemon ( qw(qpsmtpd sqpsmtpd uqpsmtpd) )
|
|||||||
tls_protocols
|
tls_protocols
|
||||||
));
|
));
|
||||||
|
|
||||||
|
templates2events("$config/$_", qw(
|
||||||
|
console-save
|
||||||
|
bootstrap-console-save
|
||||||
|
domain-create
|
||||||
|
domain-delete
|
||||||
|
ip-change
|
||||||
|
email-update
|
||||||
|
host-create
|
||||||
|
host-delete
|
||||||
|
host-modify
|
||||||
|
post-upgrade
|
||||||
|
smeserver-qpsmtpd-update
|
||||||
|
))
|
||||||
|
for (qw(
|
||||||
|
rcpthosts
|
||||||
|
smtproutes
|
||||||
|
));
|
||||||
|
|
||||||
templates2events("$config/badrcptto_ext", qw(
|
templates2events("$config/badrcptto_ext", qw(
|
||||||
domain-create
|
domain-create
|
||||||
domain-delete
|
domain-delete
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
queue/postfix-queue FLAG_MASK_EXTERNAL
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
#return "# DelegateMailServer set" if $DelegateMailServer;
|
|
||||||
|
|
||||||
return "queue/qmail-queue";
|
|
||||||
}
|
|
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
use esmith::DomainsDB;
|
||||||
|
|
||||||
|
my $ddb = esmith::DomainsDB->open_ro or die "Couldn't open DomainsDB\n";
|
||||||
|
|
||||||
|
my @rcpt_hosts = ( "$SystemName.$DomainName" );
|
||||||
|
|
||||||
|
foreach my $domain ( $ddb->get_all_by_prop( type => "domain" ) )
|
||||||
|
{
|
||||||
|
push @rcpt_hosts, $domain->key;
|
||||||
|
}
|
||||||
|
|
||||||
|
$OUT = join "\n", @rcpt_hosts;
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
return "" unless (defined $ExternalIP);
|
||||||
|
|
||||||
|
return "[$ExternalIP]";
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
#
|
||||||
|
# qmail's smtproutes mechanism works such that the LAST BEST match
|
||||||
|
# found in /var/qmail/control/smtproutes will be used in preference
|
||||||
|
# to any other entry.
|
||||||
|
#
|
||||||
|
# Consider the following /var/qmail/control/smtproutes example:
|
||||||
|
#
|
||||||
|
# :smarthost.somewhere
|
||||||
|
# domain.place:some.host
|
||||||
|
# domain.place:other.host
|
||||||
|
# :some.other.smarthost.elsewhere
|
||||||
|
#
|
||||||
|
# Mail for user@domain.place will ALWAYS be delivered to
|
||||||
|
# other.host. The entry for some.host will NEVER be used.
|
||||||
|
#
|
||||||
|
# Mail for any other domain will ALWAYS be delivered to
|
||||||
|
# some.other.smarthost.elsewhere. The entry for smarthost.somewhere
|
||||||
|
# will NEVER be used.
|
||||||
|
#
|
||||||
|
# Therefore, if you wish to make any customisations to the
|
||||||
|
# /var/qmail/control/smtproutes templates, you must ensure that they
|
||||||
|
# appear AFTER the standard e-smith template entries.
|
||||||
|
#
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
$OUT = "";
|
||||||
|
|
||||||
|
use esmith::DomainsDB;
|
||||||
|
my $ddb = esmith::DomainsDB->open_ro();
|
||||||
|
|
||||||
|
for my $domain ( $ddb->domains )
|
||||||
|
{
|
||||||
|
my $mail_server = $domain->prop('MailServer')
|
||||||
|
|| $DelegateMailServer
|
||||||
|
|| 'localhost';
|
||||||
|
|
||||||
|
next if ( $mail_server eq 'localhost' );
|
||||||
|
|
||||||
|
$OUT .= $domain->key . ":$mail_server\n";
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
$OUT = "";
|
||||||
|
|
||||||
|
#--------------------------------------------------
|
||||||
|
# Now check for SMTP smart host
|
||||||
|
#--------------------------------------------------
|
||||||
|
|
||||||
|
if (
|
||||||
|
$SMTPSmartHost
|
||||||
|
&&
|
||||||
|
($SMTPSmartHost ne 'off')
|
||||||
|
&&
|
||||||
|
($SMTPSmartHost !~ /^\s*$/)
|
||||||
|
)
|
||||||
|
{
|
||||||
|
# Is the smtp-auth-proxy enabled?
|
||||||
|
if (${'smtp-auth-proxy'}{'status'} eq 'enabled')
|
||||||
|
{
|
||||||
|
$OUT .= ":localhost:26";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$OUT .= ":$SMTPSmartHost";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chomp ($OUT);
|
||||||
|
}
|
@ -4,7 +4,7 @@ Summary: SME Server qpsmtpd module
|
|||||||
%define name smeserver-qpsmtpd
|
%define name smeserver-qpsmtpd
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
%define version 11.0.0
|
%define version 11.0.0
|
||||||
%define release 9
|
%define release 10
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: %{release}%{?dist}
|
Release: %{release}%{?dist}
|
||||||
License: GPL
|
License: GPL
|
||||||
@ -21,7 +21,6 @@ Requires: perl(Net::IMAP::Simple) >= 1.2212
|
|||||||
Requires: qpsmtpd-plugins >= 0.0.1-sme04
|
Requires: qpsmtpd-plugins >= 0.0.1-sme04
|
||||||
Requires: ipsvd
|
Requires: ipsvd
|
||||||
Requires: smeserver-lib >= 1.16.0-08
|
Requires: smeserver-lib >= 1.16.0-08
|
||||||
#Requires: smeserver-cvm-unix-local
|
|
||||||
Requires: smeserver-clamav >= 2.7.0
|
Requires: smeserver-clamav >= 2.7.0
|
||||||
Obsoletes: e-smith-obtuse-smtpd
|
Obsoletes: e-smith-obtuse-smtpd
|
||||||
Obsoletes: e-smith-qmail-smtpd
|
Obsoletes: e-smith-qmail-smtpd
|
||||||
@ -46,6 +45,12 @@ AutoReqProv: no
|
|||||||
SME Server qpsmtpd smtpd module
|
SME Server qpsmtpd smtpd module
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 25 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-10.sme
|
||||||
|
- make compatible for postfix [SME: 1279]
|
||||||
|
use postfix queue, qmail queue removed
|
||||||
|
copy templates of rcpthosts to (us)qpsmtpd for rcpt_ok
|
||||||
|
copy templates of smtproutes to (us)qpsmtpd for check_smtp_forward
|
||||||
|
|
||||||
* Mon Oct 21 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-9.sme
|
* Mon Oct 21 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-9.sme
|
||||||
- fix configuration for auth per deamon [SME: 12451]
|
- fix configuration for auth per deamon [SME: 12451]
|
||||||
- remove deamontools requirement [SME: 12615]
|
- remove deamontools requirement [SME: 12615]
|
||||||
|
Loading…
Reference in New Issue
Block a user