Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upSMTP Authentication on smtp_forward and smtp_proxy not working #871
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
smfreegard
Mar 2, 2015
Collaborator
Ok - I've just read the code and yes, the docs haven't kept up with the features added and the multi-domain configuration that was added has really confused how the authentication works. Can you confirm that the following in smtp_forward.ini or smtp_proxy.ini works for you.
host=1.2.3.4
[auth]
type=plain
user=auth_username
pass=auth_password
and can you also try this:
host=1.2.3.4
auth.type=plain
auth.user=auth_username
auth.pass=auth_password
Let me know and I'll document it.
|
Ok - I've just read the code and yes, the docs haven't kept up with the features added and the multi-domain configuration that was added has really confused how the authentication works. Can you confirm that the following in smtp_forward.ini or smtp_proxy.ini works for you.
and can you also try this:
Let me know and I'll document it. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
smfreegard
Mar 2, 2015
Collaborator
Actually - I think the latter example won't work at all, but if you can confirm that please.
|
Actually - I think the latter example won't work at all, but if you can confirm that please. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
salvop
Mar 2, 2015
I tried and in both cases auth data are not passed to smtp client. below you can see output from console:
[INFO] [queue/smtp_forward] forwarding to smtp.sendgrid.net:587
Any workaround???
salvop
commented
Mar 2, 2015
|
I tried and in both cases auth data are not passed to smtp client. below you can see output from console: [INFO] [queue/smtp_forward] forwarding to smtp.sendgrid.net:587 Any workaround??? |
salvop
closed this
Mar 2, 2015
salvop
reopened this
Mar 2, 2015
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
Can you gist your smtp_forward.ini file please? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
salvop
commented
Mar 2, 2015
|
host=smtp.sendgrid.net |
smfreegard
referenced this issue
Mar 3, 2015
Merged
Fix SMTP AUTH in smtp_forward/proxy and add docs #872
smfreegard
closed this
in
#872
Mar 3, 2015
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
duanefields
Mar 9, 2015
Contributor
Hmm, this wasn't working for me, so either I'm missing something or it wasn't working - for the moment I've patched this in my branch, https://github.com/glg/Haraka, but I probably don't know enough to do this "correctly"... anyway, it case it's useful to someone...
|
Hmm, this wasn't working for me, so either I'm missing something or it wasn't working - for the moment I've patched this in my branch, https://github.com/glg/Haraka, but I probably don't know enough to do this "correctly"... anyway, it case it's useful to someone... |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
vivek779
Jan 5, 2016
Hi i was working on smtp_proxy plugin it works fine but i am not able to figure out how to set two or more server for sending proxy .Suppose i have 3 server A,B,C i want to send proxy on both server B,C I have mentioned host user and password of both server but it is sending proxy on single server could anyone please guide how it will send proxy to both server and in which manner it will send proxy
vivek779
commented
Jan 5, 2016
|
Hi i was working on smtp_proxy plugin it works fine but i am not able to figure out how to set two or more server for sending proxy .Suppose i have 3 server A,B,C i want to send proxy on both server B,C I have mentioned host user and password of both server but it is sending proxy on single server could anyone please guide how it will send proxy to both server and in which manner it will send proxy |
salvop commentedMar 2, 2015
SMTP authentication on smtp_forward and smtp_proxy is not working, smtp queue are always started without issuing authentication to relay provider. Also documentation is lacking on this.
Module is almost useless without authentication to relay.