I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-10-25 03:35:49.068156-07 by lujeni
Use options reject_error !
Hi , I have a problem. I want use option 'reject_error' in my dkimproxy_out.conf, I specified this option in my conf file. But when i feign error , my email are send .

dkimproxy_out.conf
reject_error
listen 127.0.0.1:1025
relay 127.0.0.1:1026
keyfile /etc/ssl/dkimproxy/dkimproxy.private.key
selector test
min_servers 10
min_spare_servers 5
max_spare_servers 20
max_servers 50
sender_map /etc/sender_map


kind regards, Jul
Direct Responses: 13026 | Write a response
Posted on 2010-10-25 07:36:38.728517-07 by lujeni in response to 13024
Re: Use options reject_error !
Edit : When i use binary my email are rejected:
$ dkimproxy.out --reject-error --conf_file=/etc/dkimproxy_out.conf
kind regards,
Jul
Direct Responses: 13027 | Write a response
Posted on 2010-10-25 08:29:54.559887-07 by jaslong in response to 13026
Re: Use options reject_error !
DKIMproxy uses the "Net::Server" module to parse its options, which I think has some problems with the boolean options. You could try reject_error 1 in the config file or --reject-error=1 to see if that helps. I would need to do some debugging to see what actually works and what doesn't.
Direct Responses: 13028 | 13029 | Write a response
Posted on 2010-10-25 08:51:37.747481-07 by lujeni in response to 13027
Re: Use options reject_error !
Thanks for this fast answer!

But reject_error1 and --reject-error=1 doesn't works in the config file.
Whereas, $ dkimproxy.out --reject-error --conf_file=/etc/dkimproxy_out.conf rejects my email with errors.
I will try to find a solution for use reject_error in my config file.
sorry for mistakes, I'm French's user.

kind regards,
Jul
Direct Responses: Write a response
Posted on 2010-10-26 02:10:10.045423-07 by lujeni in response to 13027
Re: Use options reject_error !
I find an alternative.
I specified in my runscript / init.d (I use gentoo distribution) --reject-error when he executes /usr/bin/dkimproxy.out
It works !

Kind Regards, Jul
Direct Responses: Write a response