Exim ACL to limit sender to send mail only to localdomainExim - send certain “local” user mail to...
Why is it "take a leak?"
Lock enemy's y-axis when using Vector3.MoveTowards to follow the player
Why did the Cray-1 have 8 parity bits per word?
How can neutral atoms have exactly zero electric field when there is a difference in the positions of the charges?
I encountered my boss during an on-site interview at another company. Should I bring it up when seeing him next time?
How does signal strength relate to bandwidth?
Is there a frame of reference in which I was born before I was conceived?
If there are any 3nion, 5nion, 7nion, 9nion, 10nion, etc.
Was it really inappropriate to write a pull request for the company I interviewed with?
Book about a time-travel war fought by computers
Would the melodic leap of the opening phrase of Mozart's K545 be considered dissonant?
Can we carry rice to Japan?
Misplaced tyre lever - alternatives?
Create chunks from an array
Where is the fallacy here?
How to get the first element while continue streaming?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
“I had a flat in the centre of town, but I didn’t like living there, so …”
Four buttons on a table
A bug in Excel? Conditional formatting for marking duplicates also highlights unique value
How to merge row in the first column in LaTeX
Is there a limit on the maximum number of future jobs queued in an org?
Should I use HTTPS on a domain that will only be used for redirection?
Meaning of word ягоза
Exim ACL to limit sender to send mail only to localdomain
Exim - send certain “local” user mail to smtpExim: send every emails with a predefined senderExim Prevent Mail Sent by RelayEXIM - Send local mail to Gateway FirstExim: Change sender address when sending mails out of local networkExim appending hostname to fully qualified sender addressExim TLS Error when trying to send mailExim: Force email auth for users of local domainsExim restrict send emails only from predefined list of emailsExim: send select outgoing mails through different server
I'm currently using exim, and i need to limit a mail address to send mails only to local domain and deny mail to outgoing domains.
I think it could be like this :
deny local_parts = sender@localdomain
domains = !+local_domains
Can you please help me on that way ?
Thanks you very much guys :)
email exim access-control-list
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm currently using exim, and i need to limit a mail address to send mails only to local domain and deny mail to outgoing domains.
I think it could be like this :
deny local_parts = sender@localdomain
domains = !+local_domains
Can you please help me on that way ?
Thanks you very much guys :)
email exim access-control-list
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm currently using exim, and i need to limit a mail address to send mails only to local domain and deny mail to outgoing domains.
I think it could be like this :
deny local_parts = sender@localdomain
domains = !+local_domains
Can you please help me on that way ?
Thanks you very much guys :)
email exim access-control-list
I'm currently using exim, and i need to limit a mail address to send mails only to local domain and deny mail to outgoing domains.
I think it could be like this :
deny local_parts = sender@localdomain
domains = !+local_domains
Can you please help me on that way ?
Thanks you very much guys :)
email exim access-control-list
email exim access-control-list
asked Jan 29 '14 at 17:13
user207367
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Add the next rule at the beginning of acl_rcpt (or how you have called it)
deny condition = ${lookup{$sender_address}nwildlsearch{/path/to/the/local.user.list}{yes}}
domains = !+local_domains
File /path/to/the/local.user.list
should contain regexps one per line:
^john@domain.tld
^.*_dpt@domain.tld
^.*@inner.domain.tld
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
nwildlsearch only treats entries as regexps if they start with a circumflex^
– Phil P
Jan 31 '14 at 6:07
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f570802%2fexim-acl-to-limit-sender-to-send-mail-only-to-localdomain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Add the next rule at the beginning of acl_rcpt (or how you have called it)
deny condition = ${lookup{$sender_address}nwildlsearch{/path/to/the/local.user.list}{yes}}
domains = !+local_domains
File /path/to/the/local.user.list
should contain regexps one per line:
^john@domain.tld
^.*_dpt@domain.tld
^.*@inner.domain.tld
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
nwildlsearch only treats entries as regexps if they start with a circumflex^
– Phil P
Jan 31 '14 at 6:07
add a comment |
Add the next rule at the beginning of acl_rcpt (or how you have called it)
deny condition = ${lookup{$sender_address}nwildlsearch{/path/to/the/local.user.list}{yes}}
domains = !+local_domains
File /path/to/the/local.user.list
should contain regexps one per line:
^john@domain.tld
^.*_dpt@domain.tld
^.*@inner.domain.tld
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
nwildlsearch only treats entries as regexps if they start with a circumflex^
– Phil P
Jan 31 '14 at 6:07
add a comment |
Add the next rule at the beginning of acl_rcpt (or how you have called it)
deny condition = ${lookup{$sender_address}nwildlsearch{/path/to/the/local.user.list}{yes}}
domains = !+local_domains
File /path/to/the/local.user.list
should contain regexps one per line:
^john@domain.tld
^.*_dpt@domain.tld
^.*@inner.domain.tld
Add the next rule at the beginning of acl_rcpt (or how you have called it)
deny condition = ${lookup{$sender_address}nwildlsearch{/path/to/the/local.user.list}{yes}}
domains = !+local_domains
File /path/to/the/local.user.list
should contain regexps one per line:
^john@domain.tld
^.*_dpt@domain.tld
^.*@inner.domain.tld
edited Jan 31 '14 at 14:01
answered Jan 29 '14 at 19:45
KondybasKondybas
6,29121422
6,29121422
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
nwildlsearch only treats entries as regexps if they start with a circumflex^
– Phil P
Jan 31 '14 at 6:07
add a comment |
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
nwildlsearch only treats entries as regexps if they start with a circumflex^
– Phil P
Jan 31 '14 at 6:07
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
hey Kondybas, thanks for the answer :) I'll take a look and test it when i could in the next few days :) !
– user207367
Jan 30 '14 at 16:02
2
2
nwildlsearch only treats entries as regexps if they start with a circumflex
^
– Phil P
Jan 31 '14 at 6:07
nwildlsearch only treats entries as regexps if they start with a circumflex
^
– Phil P
Jan 31 '14 at 6:07
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f570802%2fexim-acl-to-limit-sender-to-send-mail-only-to-localdomain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown