Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
wwmail
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Claudemir Todo Bom
wwmail
Commits
02ad6eaa
Commit
02ad6eaa
authored
Sep 30, 2019
by
Claudemir Todo Bom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* check domain aliases on exim
parent
1dc80247
Pipeline
#199
passed with stage
in 1 minute and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
exim4/exim4.conf
exim4/exim4.conf
+5
-3
No files found.
exim4/exim4.conf
View file @
02ad6eaa
...
...
@@ -51,12 +51,14 @@ acl_smtp_vrfy = check_vrfy
#!!# later on by the syntax "+local_domains".
#!!# Other domain and host lists may follow.
domainlist
domainaliases
=
mysql
;
SELECT
domainalias
.
domain
FROM
domainalias
,
domains
WHERE
domainalias
.
domain
=
'$domain'
AND
domains
.
domain
=
domainalias
.
goto
AND
domains
.
active
>
0
;
.
ifdef
WW_RELAY_MODE
domainlist
relay_domains
=
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
relay_domains
=
+
domainaliases
:
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
submission_domains
= :
domainlist
local_domains
= :
.
elifdef
WW_SUBMISSION_MODE
WW_MM_MODE
domainlist
submission_domains
=
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
submission_domains
=
+
domainaliases
:
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
relay_domains
= :
domainlist
local_domains
= :
...
...
@@ -69,7 +71,7 @@ WW_MAILMAN_ENABLE=1
domainlist
mailman_domain
= :
.
endif
domainlist
local_domains
= +
mailman_domain
:
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
local_domains
= +
mailman_domain
:
+
domainaliases
:
mysql
;
SELECT
domain
FROM
domains
WHERE
domain
=
'$domain'
AND
active
>
0
;
domainlist
submission_domains
= :
domainlist
relay_domains
= :
.
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment