search for: acl_smtp_mailauth

Displaying 7 results from an estimated 7 matches for "acl_smtp_mailauth".

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 connections to...
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 parameter fo...
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. > > The...
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 >...
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
0
Dovecot Submission Proxy Auth
...> 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 pa...
2018 Apr 06
2
Dovecot Submission Proxy Auth
Hi, Dovecot 2.3.1 (8e2f634). Could not get Dovecot to forward the (plain) authentication to the SMTP server using submission. Reason why I need it is sender spoofing (do not want my employees to send messages in behalf of me). In exim I can disable sender spoofing with the authenticated user. When sending through dovecot, exim either does not accept the email (need auth) or relay every sender