Displaying 5 results from an estimated 5 matches for "acl_smtp_mail".
2018 Apr 06
2
Dovecot Submission Proxy Auth
...18:58, Odhiambo Washington <odhiambo at gmail.com> wrote:
>
> Hi Paul,
>
> Care to share your config (even OFFLIST) that has successfully integrated Dovecot Submission service with Exim??
here the steps I have done to integrate Dovecot submission in Exim:
- Create and set the acl_smtp_mailauth ACL:
acl_smtp_mailauth = acl_check_mailauth
acl_check_mailauth:
accept
hosts = <; 127.0.0.1 ; ::1
condition = ${if eq{$interface_port}{10025}}
log_message = Will accept MAIL AUTH parameter for $authenticated_sender
deny
- add a deny fo all connection...
2019 Jan 09
3
Dovecot Submission Proxy Auth
...wrote:
>>>
>>> Hi Paul,
>>>
>>> Care to share your config (even OFFLIST) that has successfully integrated Dovecot Submission service with Exim??
>> here the steps I have done to integrate Dovecot submission in Exim:
>>
>> - Create and set the acl_smtp_mailauth ACL:
>>
>> acl_smtp_mailauth = acl_check_mailauth
>>
>> acl_check_mailauth:
>> accept
>> hosts = <; 127.0.0.1 ; ::1
>> condition = ${if eq{$interface_port}{10025}}
>> log_message = Will accept MAIL AUTH paramete...
2019 Jan 09
0
Dovecot Submission Proxy Auth
...<odhiambo at gmail.com> wrote:
>>
>> Hi Paul,
>>
>> Care to share your config (even OFFLIST) that has successfully integrated Dovecot Submission service with Exim??
> here the steps I have done to integrate Dovecot submission in Exim:
>
> - Create and set the acl_smtp_mailauth ACL:
>
> acl_smtp_mailauth = acl_check_mailauth
>
> acl_check_mailauth:
> accept
> hosts = <; 127.0.0.1 ; ::1
> condition = ${if eq{$interface_port}{10025}}
> log_message = Will accept MAIL AUTH parameter for $authenticated_sender
&g...
2019 Jan 09
0
Dovecot Submission Proxy Auth
...gt;>>> Hi Paul,
>>>>
>>>> Care to share your config (even OFFLIST) that has successfully integrated Dovecot Submission service with Exim??
>>> here the steps I have done to integrate Dovecot submission in Exim:
>>>
>>> - Create and set the acl_smtp_mailauth ACL:
>>>
>>> acl_smtp_mailauth = acl_check_mailauth
>>>
>>> acl_check_mailauth:
>>> accept
>>> hosts = <; 127.0.0.1 ; ::1
>>> condition = ${if eq{$interface_port}{10025}}
>>> log_message...
2018 Apr 06
2
Dovecot Submission Proxy Auth
...f.org/html/rfc4954#section-5
>
> Which is apparently supported by Exim: https://www.exim.org/exim-html-current/doc/html/spec_html/ch-smtp_authentication.html#SECTauthparamail
> This requires explicit configuration, so it will not work out of the box.
Here is what I did:
I had to add the acl_smtp_mailauth to only allow this on a certain port. Then I had to duplicate my code for sender spoofing for authenticated users and change the $authenticated_id -> $authenticated_sender.
Besides that, I must use TLS (in my case STARTTLS) so that Dovecot actually sends the MAIL AUTH parameter.
>
>...