[exim] Mail from and lmtp transport

2007-03-23 Thread Alexey Danilevsky
Hello! I came across a problem with lmtp-transport. When message is deliverd by this transport it does not transfer real sender's address. That is in MAIL FROM command only instead of [EMAIL PROTECTED]. But smtp trasport with protocol smtp transfers sender's address normally. I can't imagine

Re: [exim] Mail from and lmtp transport

2007-03-23 Thread Alexey Danilevsky
group = mail socket = /var/run/dspam.sock and debugs are in attachment. В Птн, 23/03/2007 в 09:31 +, Philip Hazel пишет: On Fri, 23 Mar 2007, Alexey Danilevsky wrote: I came across a problem with lmtp-transport. When message is deliverd by this transport it does not transfer real

[exim] getsockname() failed: Connection reset by peer

2006-04-24 Thread Alexey Danilevsky
Hello! Every 10-20 minutes I see in my exim's paniclog lines: 2006-04-24 12:15:39 getsockname() failed: Connection reset by peer 2006-04-24 12:15:39 daemon: fclose(smtp_out) failed: Broken pipe What does this mean? What is wrong? Can it be because of problems whit connection to LDAP server?

Re: [exim] block host name

2006-03-17 Thread Alexey Danilevsky
Of course, you can block hostnames if they can be resolved via DNS. You can use acls like this: acl_check_coonect: deny message = This hostname is blocked condition = ${if eq{$sender_host_name}{some.hostname.com} {yes} {no}} If you have several host names to block, you can use

[exim] quota and delivering

2006-03-11 Thread Alexey Danilevsky
Hello! While delivering if the mailbox quota is exceeded exim generates temporary fail. It is not convenient for me. Can I make exim to generate fail at once without retrying? -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ##

[exim] Two transport filters

2006-02-28 Thread Alexey Danilevsky
Hello! I need to pass messages through two transport filters. If I write: transport_filter= /path/to/filter1 params | /path/to/filter2 params then messages are passed through only filter1 but not through filter2. Why it does not work? I made shell script where I put the command above but this