search for: authenticated_send

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

Did you mean: authenticated_sender
2018 Apr 06
2
Dovecot Submission Proxy Auth
...e 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 10025 without MAIL AUTH parameter in acl_smtp_mail ACL: deny condition = ${if eq{$interface_port}{10025}} condition = ${if eq{$authenticated_sender}{}} message = All connections on port $interface_port need MAIL AUTH...
2019 Jan 09
3
Dovecot Submission Proxy Auth
...L: >> >> 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 10025 without MAIL AUTH parameter in acl_smtp_mail ACL: >> >> deny >> condition = ${if eq{$interface_port}{10025}} >> condition = ${if eq{$authenticated_sender}{}} &gt...
2018 Apr 06
2
Dovecot Submission Proxy Auth
...hparamail > 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 Dovecot Submission service should support this too. It sends an AUTH parameter with the MAIL command (currently only then the username is a valid SMTP address). However, I...
2019 Jan 09
0
Dovecot Submission Proxy Auth
...d 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 10025 without MAIL AUTH parameter in acl_smtp_mail ACL: > > deny > condition = ${if eq{$interface_port}{10025}} > condition = ${if eq{$authenticated_sender}{}} > message = A...
2019 Jan 09
0
Dovecot Submission Proxy Auth
...mtp_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 10025 without MAIL AUTH parameter in acl_smtp_mail ACL: >>> >>> deny >>> condition = ${if eq{$interface_port}{10025}} >>> condition = ${if...
2018 Apr 06
0
Dovecot Submission Proxy Auth
...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 Dovecot Submission service should support this too. It sends an AUTH > parameter with the MAIL command (currently only then the username is a...
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