smtp proxy to external smtp server

2011-05-17 Thread Mike Brack
Hi all Can I achieve the following scenariowith qpsmtpd? Acting as smtp proxy connecting to an external target smtp server which is sender dependent. The target smtp server requires smtp auth, so the proxy should pass on the credentials to the target smtp server. -- Thanks for any reply on this.

Re: smtp proxy to external smtp server

2011-05-17 Thread Matt Sergeant
It can be done, but you'll need to customise the smtp-forward plugin yourself to do it. Mike Brack wrote: Hi all Can I achieve the following scenariowith qpsmtpd? Acting as smtp proxy connecting to an external target smtp server which is sender dependent. The target smtp server requires smtp

Re: smtp proxy to external smtp server

2011-05-17 Thread Aleksandar Lazic
Hi Mike, On Die 17.05.2011 10:34, Mike Brack wrote: Hi all Can I achieve the following scenariowith qpsmtpd? Acting as smtp proxy connecting to an external target smtp server which is sender dependent. The target smtp server requires smtp auth, so the proxy should pass on the credentials to th

Re: smtp proxy to external smtp server

2011-05-17 Thread Matt Sergeant
Aleksandar Lazic wrote: Just for my curiosity, why don't you use qpsmtpd::smtp-forward =>Any MTA Setup (postfix,courier,qmail, ...)? It's not sender dependent, and doesn't pass on AUTH. (but would be easily hackable to do that).

Re: smtp proxy to external smtp server

2011-05-17 Thread Mike Brack
On Tue, May 17, 2011 at 9:03 PM, Matt Sergeant wrote: > Aleksandar Lazic wrote: >> >> Just for my curiosity, why don't you use >> >> qpsmtpd::smtp-forward =>Any MTA Setup (postfix,courier,qmail, ...)? > > It's not sender dependent, and doesn't pass on AUTH. (but would be easily > hackable to do th

Re: smtp proxy to external smtp server

2011-05-17 Thread Jason Mills
I wrote a similar plugin a while ago to facilitate my testing environment at home. Not sure if it works with the current code base but at least can act as skeleton. Code: https://gist.github.com/977645 Thread: http://www.mail-archive.com/qpsmtpd@perl.org/msg09252.html On 05/17/2011 03:40 PM, Mike